From 91aa560f0dbb3494e35b3468f12aea9e17d3743d Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sat, 7 Oct 2017 09:42:15 -0400 Subject: [PATCH 01/95] High pop reduced MC processing mode. --- code/__DEFINES/configuration.dm | 1 + .../configuration/entries/config.dm | 25 +++++++++++++++- code/controllers/master.dm | 10 +++++++ code/modules/client/client_procs.dm | 5 ++++ config/config.txt | 29 ++++++++++++++++++- 5 files changed, 68 insertions(+), 2 deletions(-) diff --git a/code/__DEFINES/configuration.dm b/code/__DEFINES/configuration.dm index c78dfb28ab..3db0ca24c2 100644 --- a/code/__DEFINES/configuration.dm +++ b/code/__DEFINES/configuration.dm @@ -2,6 +2,7 @@ #define CONFIG_DEF(X) /datum/config_entry/##X { resident_file = CURRENT_RESIDENT_FILE }; /datum/config_entry/##X #define CONFIG_GET(X) global.config.Get(/datum/config_entry/##X) #define CONFIG_SET(X, Y) global.config.Set(/datum/config_entry/##X, ##Y) +#define CONFIG_TWEAK(X) /datum/config_entry/##X #define CONFIG_MAPS_FILE "maps.txt" diff --git a/code/controllers/configuration/entries/config.dm b/code/controllers/configuration/entries/config.dm index ec96e88553..eea47b6612 100644 --- a/code/controllers/configuration/entries/config.dm +++ b/code/controllers/configuration/entries/config.dm @@ -351,4 +351,27 @@ CONFIG_DEF(number/error_msg_delay) // How long to wait between messaging admins CONFIG_DEF(flag/irc_announce_new_game) -CONFIG_DEF(flag/debug_admin_hrefs) \ No newline at end of file +CONFIG_DEF(flag/debug_admin_hrefs) + + +CONFIG_DEF(number/mc_tick_rate/base_mc_tick_rate) + integer = FALSE + value = 1 + +CONFIG_DEF(number/mc_tick_rate/high_pop_mc_tick_rate) + integer = FALSE + value = 1.1 + +CONFIG_DEF(number/mc_tick_rate/high_pop_mc_mode_amount) + value = 65 + +CONFIG_DEF(number/mc_tick_rate/disable_high_pop_mc_mode_amount) + value = 60 + +CONFIG_TWEAK(number/mc_tick_rate) + abstract_type = /datum/config_entry/number/mc_tick_rate + +CONFIG_TWEAK(number/mc_tick_rate/ValidateAndSet(str_val)) + . = ..() + if (.) + Master.UpdateTickRate() diff --git a/code/controllers/master.dm b/code/controllers/master.dm index 6ed3121179..b92853a2c4 100644 --- a/code/controllers/master.dm +++ b/code/controllers/master.dm @@ -573,3 +573,13 @@ GLOBAL_REAL(Master, /datum/controller/master) = new for(var/S in subsystems) var/datum/controller/subsystem/SS = S SS.StopLoadingMap() + + +/datum/controller/master/proc/UpdateTickRate() + if (!processing) + return + var/client_count = length(GLOB.clients) + if (client_count < CONFIG_GET(number/mc_tick_rate/disable_high_pop_mc_mode_amount)) + processing = CONFIG_GET(number/mc_tick_rate/base_mc_tick_rate) + else if (client_count > CONFIG_GET(number/mc_tick_rate/high_pop_mc_mode_amount)) + processing = CONFIG_GET(number/mc_tick_rate/high_pop_mc_tick_rate) \ No newline at end of file diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm index 60936aa5fb..8e8361194d 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -351,7 +351,11 @@ GLOBAL_LIST(external_rsc_urls) if (menuitem) menuitem.Load_checked(src) +<<<<<<< HEAD hook_vr("client_new",list(src)) +======= + Master.UpdateTickRate() +>>>>>>> bc4d4e7... Merge pull request #31374 from MrStonedOne/highpopmode ////////////// //DISCONNECT// @@ -399,6 +403,7 @@ GLOBAL_LIST(external_rsc_urls) if(movingmob != null) movingmob.client_mobs_in_contents -= mob UNSETEMPTY(movingmob.client_mobs_in_contents) + Master.UpdateTickRate() return ..() /client/Destroy() diff --git a/config/config.txt b/config/config.txt index 72f168dcce..a81bdf0d8e 100644 --- a/config/config.txt +++ b/config/config.txt @@ -228,9 +228,13 @@ ALLOW_HOLIDAYS ##This is currently a testing optimized setting. A good value for production would be 98. TICK_LIMIT_MC_INIT 500 -##Defines the ticklag for the world. 0.9 is the normal one, 0.5 is smoother. +##Defines the ticklag for the world. Ticklag is the amount of time between game ticks (aka byond ticks) (in 1/10ths of a second). +## This also controls the client network update rate, as well as the default client fps TICKLAG 0.5 +##Can also be set as per-second value, the following value is identical to the above. +#FPS 20 + ## Comment this out to disable automuting #AUTOMUTE_ON @@ -351,3 +355,26 @@ MINUTE_TOPIC_LIMIT 100 ## Allow admin hrefs that don't use the new token system, will eventually be removed DEBUG_ADMIN_HREFS +<<<<<<< HEAD +======= + +###Master Controller High Pop Mode### + +##The Master Controller(MC) is the primary system controlling timed tasks and events in SS13 (lobby timer, game checks, lighting updates, atmos, etc) +##Default base MC tick rate (1 = process every "byond tick" (see: tick_lag/fps config settings), 2 = process every 2 byond ticks, etc) +## Setting this to 0 will prevent the Master Controller from ticking +BASE_MC_TICK_RATE 1 + +##High population MC tick rate +## Byond rounds timer values UP, but the tick rate is modified with heuristics during lag spites so setting this to something like 2 +## will make it run every 2 byond ticks, but will also double the effect of anti-lag heuristics. You can instead set it to something like +## 1.1 to make it run every 2 byond ticks, but only increase the effect of anti-lag heuristics by 10%. or 1.5 for 50%. +## (As an aside, you could in theory also reduce the effect of anti-lag heuristics in the base tick rate by setting it to something like 0.5) +HIGH_POP_MC_TICK_RATE 1.1 + +##Engage high pop mode if player count raises above this (Player in this context means any connected user. Lobby, ghost or in-game all count) +HIGH_POP_MC_MODE_AMOUNT 65 + +##Disengage high pop mode if player count drops below this +DISABLE_HIGH_POP_MC_MODE_AMOUNT 60 +>>>>>>> bc4d4e7... Merge pull request #31374 from MrStonedOne/highpopmode From 075cb673c09ad2db4655d594bf43d70c46d765c1 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sat, 7 Oct 2017 13:36:33 -0400 Subject: [PATCH 02/95] Remove drop_item, drop_item_v, put_in_hands_or_del --- code/_onclick/hud/screen_objects.dm | 3 +- .../datums/diseases/advance/symptoms/cough.dm | 41 ++ code/datums/martial/cqc.dm | 7 +- code/datums/martial/krav_maga.dm | 2 +- code/datums/martial/sleeping_carp.dm | 9 +- code/datums/mutations.dm | 2 +- code/datums/wires/wires.dm | 5 +- code/game/gamemodes/antag_spawner.dm | 2 +- .../gamemodes/changeling/powers/mutations.dm | 7 +- .../gamemodes/changeling/powers/tiny_prick.dm | 5 +- .../clock_effects/spatial_gateway.dm | 2 +- .../clock_items/clock_components.dm | 1 - .../clock_items/clock_weapons/_call_weapon.dm | 1 - .../clock_cult/clock_items/clockwork_slab.dm | 2 +- code/game/gamemodes/cult/talisman.dm | 7 +- .../gamemodes/devil/true_devil/_true_devil.dm | 2 +- .../miniantags/abduction/abduction_surgery.dm | 2 +- .../gamemodes/miniantags/revenant/revenant.dm | 2 +- .../miniantags/slaughter/slaughter.dm | 2 +- code/game/gamemodes/nuclear/nuclear.dm | 5 +- code/game/gamemodes/nuclear/nuclearbomb.dm | 9 +- code/game/gamemodes/wizard/artefact.dm | 4 +- code/game/gamemodes/wizard/wizard.dm | 2 +- code/game/machinery/PDApainter.dm | 56 +++ code/game/machinery/camera/camera.dm | 4 +- code/game/machinery/camera/camera_assembly.dm | 3 +- .../machinery/computer/gulag_teleporter.dm | 15 +- code/game/machinery/computer/medical.dm | 17 +- code/game/machinery/computer/prisoner.dm | 7 +- code/game/machinery/computer/security.dm | 15 +- .../machinery/computer/telecrystalconsoles.dm | 10 +- code/game/machinery/constructable_frame.dm | 239 +++++++++++ code/game/machinery/doors/airlock.dm | 3 +- code/game/machinery/doors/firedoor.dm | 1 - code/game/machinery/flasher.dm | 3 +- code/game/machinery/gulag_item_reclaimer.dm | 18 +- code/game/machinery/iv_drip.dm | 4 +- code/game/machinery/newscaster.dm | 8 +- code/game/machinery/pipe/pipe_dispenser.dm | 2 - .../porta_turret/portable_turret_construct.dm | 5 +- code/game/machinery/recharger.dm | 3 +- code/game/machinery/slotmachine.dm | 5 +- code/game/machinery/spaceheater.dm | 17 +- code/game/machinery/suit_storage_unit.dm | 9 +- code/game/machinery/syndicatebomb.dm | 6 +- code/game/machinery/vending.dm | 6 +- code/game/mecha/mecha_defense.dm | 5 +- .../effects/effect_system/effects_smoke.dm | 3 +- code/game/objects/items.dm | 2 +- code/game/objects/items/handcuffs.dm | 377 ++++++++++++++++- code/game/objects/items/melee/misc.dm | 6 +- code/game/objects/items/paiwire.dm | 15 + code/game/objects/items/pneumaticCannon.dm | 2 +- code/game/objects/items/robot/robot_parts.dm | 2 +- code/game/objects/items/storage/backpack.dm | 2 +- code/game/objects/items/storage/boxes.dm | 6 +- code/game/objects/items/toys.dm | 8 +- code/game/objects/structures.dm | 44 ++ .../objects/structures/beds_chairs/chair.dm | 4 +- code/game/objects/structures/bedsheet_bin.dm | 9 +- .../structures/crates_lockers/closets.dm | 3 +- code/game/objects/structures/door_assembly.dm | 3 +- code/game/objects/structures/extinguisher.dm | 3 +- code/game/objects/structures/fireaxe.dm | 3 +- code/game/objects/structures/girders.dm | 3 +- code/game/objects/structures/guncase.dm | 3 +- code/game/objects/structures/janicart.dm | 3 +- code/game/objects/structures/safe.dm | 3 +- code/game/objects/structures/signs.dm | 1 - code/game/objects/structures/tables_racks.dm | 10 +- .../game/objects/structures/tank_dispenser.dm | 3 +- code/game/objects/structures/target_stake.dm | 49 +++ code/game/objects/structures/watercloset.dm | 6 +- .../objects/structures/windoor_assembly.dm | 3 +- .../game/turfs/simulated/floor/light_floor.dm | 2 +- code/modules/assembly/bomb.dm | 12 +- .../components/unary_devices/cryo.dm | 3 +- .../portable/portable_atmospherics.dm | 3 +- .../awaymissions/mission_code/Academy.dm | 2 +- code/modules/clothing/clothing.dm | 2 +- .../food_and_drinks/drinks/drinks/bottle.dm | 9 +- .../kitchen_machinery/deep_fryer.dm | 3 +- .../kitchen_machinery/food_cart.dm | 5 +- .../kitchen_machinery/microwave.dm | 3 +- .../kitchen_machinery/processor.dm | 3 +- code/modules/food_and_drinks/pizzabox.dm | 6 +- code/modules/holodeck/items.dm | 6 +- code/modules/hydroponics/biogenerator.dm | 3 +- code/modules/hydroponics/gene_modder.dm | 10 +- code/modules/hydroponics/grown/cereals.dm | 3 +- code/modules/hydroponics/grown/nettle.dm | 2 +- code/modules/hydroponics/seed_extractor.dm | 155 +++++++ code/modules/library/lib_items.dm | 3 +- code/modules/library/lib_machines.dm | 6 +- code/modules/mining/fulton.dm | 3 +- code/modules/mining/laborcamp/laborstacker.dm | 103 +++++ .../mining/lavaland/necropolis_chests.dm | 2 +- code/modules/mining/machine_redemption.dm | 3 +- code/modules/mining/machine_vending.dm | 6 +- code/modules/mining/satchel_ore_boxdm.dm | 4 +- code/modules/mob/inventory.dm | 20 +- code/modules/mob/living/brain/brain_item.dm | 3 +- .../carbon/alien/humanoid/humanoid_defense.dm | 2 +- .../mob/living/carbon/human/human_defense.dm | 4 +- .../mob/living/carbon/human/interactive.dm | 2 +- .../mob/living/carbon/human/species.dm | 2 +- .../living/carbon/monkey/monkey_defense.dm | 16 +- .../modules/mob/living/silicon/robot/robot.dm | 8 +- code/modules/mob/living/silicon/silicon.dm | 386 ++++++++++++++++++ .../mob/living/simple_animal/bot/bot.dm | 3 +- .../mob/living/simple_animal/bot/medbot.dm | 3 +- .../mob/living/simple_animal/bot/mulebot.dm | 6 +- .../mob/living/simple_animal/friendly/dog.dm | 13 +- .../simple_animal/friendly/farm_animals.dm | 1 - .../mob/living/simple_animal/parrot.dm | 5 +- code/modules/mob/mob_movement.dm | 9 +- .../file_system/programs/card.dm | 6 +- .../modular_computers/laptop_vendor.dm | 2 +- code/modules/paperwork/filingcabinet.dm | 3 +- code/modules/paperwork/paper_cutter.dm | 5 +- code/modules/paperwork/photocopier.dm | 10 +- code/modules/power/apc.dm | 3 +- code/modules/power/lighting.dm | 2 +- code/modules/power/singularity/collector.dm | 5 +- code/modules/power/solar.dm | 2 +- code/modules/projectiles/box_magazine.dm | 3 +- code/modules/projectiles/gun.dm | 2 +- .../projectiles/guns/ballistic/revolver.dm | 2 +- .../projectiles/guns/ballistic/shotgun.dm | 4 +- .../projectiles/guns/misc/blastcannon.dm | 3 +- .../chemistry/reagents/drug_reagents.dm | 8 +- .../chemistry/reagents/food_reagents.dm | 2 - .../chemistry/reagents/medicine_reagents.dm | 21 +- code/modules/recycling/conveyor2.dm | 3 +- code/modules/recycling/disposal-unit.dm | 2 +- code/modules/research/destructive_analyzer.dm | 3 +- code/modules/research/experimentor.dm | 3 +- code/modules/research/rdconsole.dm | 3 +- .../research/xenobiology/xenobio_camera.dm | 1 - code/modules/spells/spell_types/conjure.dm | 5 +- code/modules/spells/spell_types/devil.dm | 2 +- .../modules/spells/spell_types/devil_boons.dm | 2 +- .../spells/spell_types/infinite_guns.dm | 5 +- code/modules/surgery/cavity_implant.dm | 3 +- code/modules/surgery/dental_implant.dm | 3 +- code/modules/surgery/limb_augmentation.dm | 61 +++ code/modules/surgery/organ_manipulation.dm | 2 +- code/modules/surgery/organs/autosurgeon.dm | 3 +- code/modules/surgery/organs/heart.dm | 2 +- code/modules/surgery/organs/organ_internal.dm | 5 +- .../modules/surgery/prosthetic_replacement.dm | 3 +- code/modules/vehicles/pimpin_ride.dm | 3 +- 152 files changed, 1778 insertions(+), 425 deletions(-) diff --git a/code/_onclick/hud/screen_objects.dm b/code/_onclick/hud/screen_objects.dm index 397e04a4f5..9730aaf552 100644 --- a/code/_onclick/hud/screen_objects.dm +++ b/code/_onclick/hud/screen_objects.dm @@ -196,7 +196,8 @@ plane = HUD_PLANE /obj/screen/drop/Click() - usr.drop_item_v() + if(usr.stat == CONSCIOUS) + usr.dropItemToGround(usr.get_active_held_item()) /obj/screen/act_intent name = "intent" diff --git a/code/datums/diseases/advance/symptoms/cough.dm b/code/datums/diseases/advance/symptoms/cough.dm index 95577fe351..6b84e88dfb 100644 --- a/code/datums/diseases/advance/symptoms/cough.dm +++ b/code/datums/diseases/advance/symptoms/cough.dm @@ -34,6 +34,7 @@ BONUS Stage Speed 6: Increases cough frequency.
\ If Airborne: Coughing will infect bystanders.
\ Stealth 4: The symptom remains hidden until active." +<<<<<<< HEAD /datum/symptom/cough/Start(datum/disease/advance/A) ..() @@ -72,3 +73,43 @@ BONUS if(infective) A.spread(1) +======= + +/datum/symptom/cough/Start(datum/disease/advance/A) + ..() + if(A.properties["stealth"] >= 4) + suppress_warning = TRUE + if(A.spread_flags &= AIRBORNE) //infect bystanders + infective = TRUE + if(A.properties["resistance"] >= 3) //strong enough to drop items + power = 1.5 + if(A.properties["resistance"] >= 10) //strong enough to stun (rarely) + power = 2 + if(A.properties["stage_rate"] >= 6) //cough more often + symptom_delay_max = 10 + +/datum/symptom/cough/Activate(datum/disease/advance/A) + if(!..()) + return + var/mob/living/M = A.affected_mob + switch(A.stage) + if(1, 2, 3) + if(prob(base_message_chance) && !suppress_warning) + to_chat(M, "[pick("You swallow excess mucus.", "You lightly cough.")]") + else + M.emote("cough") + if(power >= 1.5) + var/obj/item/I = M.get_active_held_item() + if(I && I.w_class == WEIGHT_CLASS_TINY) + M.dropItemToGround(I) + if(power >= 2 && prob(10)) + to_chat(M, "[pick("You have a coughing fit!", "You can't stop coughing!")]") + M.Stun(20) + M.emote("cough") + addtimer(CALLBACK(M, /mob/.proc/emote, "cough"), 6) + addtimer(CALLBACK(M, /mob/.proc/emote, "cough"), 12) + addtimer(CALLBACK(M, /mob/.proc/emote, "cough"), 18) + if(infective) + A.spread(1) + +>>>>>>> b6d349e... Remove drop_item, drop_item_v, put_in_hands_or_del (#31386) diff --git a/code/datums/martial/cqc.dm b/code/datums/martial/cqc.dm index d740a4213c..8974c388b1 100644 --- a/code/datums/martial/cqc.dm +++ b/code/datums/martial/cqc.dm @@ -85,7 +85,7 @@ "[A] strikes your abdomen, neck and back consecutively!") playsound(get_turf(D), 'sound/weapons/cqchit2.ogg', 50, 1, -1) var/obj/item/I = D.get_active_held_item() - if(I && D.drop_item()) + if(I && D.temporarilyRemoveItemFromInventory(I)) A.put_in_hands(I) D.adjustStaminaLoss(50) D.apply_damage(25, BRUTE) @@ -145,7 +145,7 @@ D.visible_message("[A] strikes [D]'s jaw with their hand!", \ "[A] strikes your jaw, disorienting you!") playsound(get_turf(D), 'sound/weapons/cqchit1.ogg', 50, 1, -1) - if(I && D.drop_item()) + if(I && D.temporarilyRemoveItemFromInventory(I)) A.put_in_hands(I) D.Jitter(2) D.apply_damage(5, BRUTE) @@ -193,7 +193,6 @@ to_chat(user, "You remember the basics of CQC.") var/datum/martial_art/cqc/D = new(null) D.teach(user) - user.drop_item() visible_message("[src] beeps ominously, and a moment later it bursts up in flames.") - new /obj/effect/decal/cleanable/ash(get_turf(src)) qdel(src) + new /obj/effect/decal/cleanable/ash(user.drop_location()) diff --git a/code/datums/martial/krav_maga.dm b/code/datums/martial/krav_maga.dm index 84f0f00e45..a898c1866b 100644 --- a/code/datums/martial/krav_maga.dm +++ b/code/datums/martial/krav_maga.dm @@ -150,7 +150,7 @@ if(prob(60)) I = D.get_active_held_item() if(I) - if(D.drop_item()) + if(D.temporarilyRemoveItemFromInventory(I)) A.put_in_hands(I) D.visible_message("[A] has disarmed [D]!", \ "[A] has disarmed [D]!") diff --git a/code/datums/martial/sleeping_carp.dm b/code/datums/martial/sleeping_carp.dm index ac5083cc17..8fe8fcd366 100644 --- a/code/datums/martial/sleeping_carp.dm +++ b/code/datums/martial/sleeping_carp.dm @@ -41,7 +41,7 @@ "[A] grabs your wrist and violently wrenches it to the side!") playsound(get_turf(A), 'sound/weapons/thudswoosh.ogg', 50, 1, -1) D.emote("scream") - D.drop_item() + D.dropItemToGround(D.get_active_held_item()) D.apply_damage(5, BRUTE, pick("l_arm", "r_arm")) D.Stun(60) return 1 @@ -79,7 +79,7 @@ D.visible_message("[A] kicks [D] in the head!", \ "[A] kicks you in the jaw!") D.apply_damage(20, BRUTE, "head") - D.drop_item() + D.drop_all_held_items() playsound(get_turf(D), 'sound/weapons/punch1.ogg', 50, 1, -1) D.Stun(80) return 1 @@ -168,10 +168,9 @@ to_chat(user, message) var/datum/martial_art/the_sleeping_carp/theSleepingCarp = new(null) theSleepingCarp.teach(user) - user.drop_item() - visible_message("[src] lights up in fire and quickly burns to ash.") - new /obj/effect/decal/cleanable/ash(get_turf(src)) qdel(src) + visible_message("[src] lights up in fire and quickly burns to ash.") + new /obj/effect/decal/cleanable/ash(user.drop_location()) /obj/item/twohanded/bostaff name = "bo staff" diff --git a/code/datums/mutations.dm b/code/datums/mutations.dm index 4e8ae4e73a..dea7a7308a 100644 --- a/code/datums/mutations.dm +++ b/code/datums/mutations.dm @@ -270,7 +270,7 @@ GLOBAL_LIST_EMPTY(mutations_list) /datum/mutation/human/cough/on_life(mob/living/carbon/human/owner) if(prob(5) && owner.stat == CONSCIOUS) - owner.drop_item() + owner.drop_all_held_items() owner.emote("cough") /datum/mutation/human/dwarfism diff --git a/code/datums/wires/wires.dm b/code/datums/wires/wires.dm index ae938f18ce..c508907bf4 100644 --- a/code/datums/wires/wires.dm +++ b/code/datums/wires/wires.dm @@ -250,9 +250,10 @@ if(istype(I, /obj/item/device/assembly)) var/obj/item/device/assembly/A = I if(A.attachable) - if(!L.drop_item()) + if(!L.temporarilyRemoveItemFromInventory(A)) return - attach_assembly(target_wire, A) + if(!attach_assembly(target_wire, A)) + A.forceMove(L.drop_location()) . = TRUE else to_chat(L, "You need an attachable assembly!") diff --git a/code/game/gamemodes/antag_spawner.dm b/code/game/gamemodes/antag_spawner.dm index 3b5b862559..c529ab546d 100644 --- a/code/game/gamemodes/antag_spawner.dm +++ b/code/game/gamemodes/antag_spawner.dm @@ -90,7 +90,7 @@ if("healing") M.mind.AddSpell(new /obj/effect/proc_holder/spell/targeted/charge(null)) M.mind.AddSpell(new /obj/effect/proc_holder/spell/targeted/forcewall(null)) - M.put_in_hands_or_del(new /obj/item/gun/magic/staff/healing(M)) + M.put_in_hands(new /obj/item/gun/magic/staff/healing(M), TRUE) to_chat(M, "Your service has not gone unrewarded, however. Studying under [wizard_name], you have learned livesaving survival spells. You are able to cast charge and forcewall.") if("robeless") M.mind.AddSpell(new /obj/effect/proc_holder/spell/aoe_turf/knock(null)) diff --git a/code/game/gamemodes/changeling/powers/mutations.dm b/code/game/gamemodes/changeling/powers/mutations.dm index addca91629..467d23e726 100644 --- a/code/game/gamemodes/changeling/powers/mutations.dm +++ b/code/game/gamemodes/changeling/powers/mutations.dm @@ -37,8 +37,9 @@ return 1 /obj/effect/proc_holder/changeling/weapon/sting_action(mob/living/user) - if(!user.drop_item()) - to_chat(user, "The [user.get_active_held_item()] is stuck to your hand, you cannot grow a [weapon_name_simple] over it!") + var/obj/item/held = user.get_active_held_item() + if(held && !user.dropItemToGround(held)) + to_chat(user, "[held] is stuck to your hand, you cannot grow a [weapon_name_simple] over it!") return var/limb_regen = 0 if(user.active_hand_index % 2 == 0) //we regen the arm before changing it into the weapon @@ -338,7 +339,7 @@ if(INTENT_DISARM) var/obj/item/I = C.get_active_held_item() if(I) - if(C.drop_item()) + if(C.dropItemToGround(I)) C.visible_message("[I] is yanked off [C]'s hand by [src]!","A tentacle pulls [I] away from you!") on_hit(I) //grab the item as if you had hit it directly with the tentacle return 1 diff --git a/code/game/gamemodes/changeling/powers/tiny_prick.dm b/code/game/gamemodes/changeling/powers/tiny_prick.dm index 1732e98630..e98898f37c 100644 --- a/code/game/gamemodes/changeling/powers/tiny_prick.dm +++ b/code/game/gamemodes/changeling/powers/tiny_prick.dm @@ -127,8 +127,9 @@ /obj/effect/proc_holder/changeling/sting/false_armblade/sting_action(mob/user, mob/target) add_logs(user, target, "stung", object="falso armblade sting") - if(!target.drop_item()) - to_chat(user, "The [target.get_active_held_item()] is stuck to their hand, you cannot grow a false armblade over it!") + var/obj/item/held = target.get_active_held_item() + if(held && !target.dropItemToGround(held)) + to_chat(user, "[held] is stuck to their hand, you cannot grow a false armblade over it!") return if(ismonkey(target)) diff --git a/code/game/gamemodes/clock_cult/clock_effects/spatial_gateway.dm b/code/game/gamemodes/clock_cult/clock_effects/spatial_gateway.dm index 9b1ef66c9e..8f8a4bfcbf 100644 --- a/code/game/gamemodes/clock_cult/clock_effects/spatial_gateway.dm +++ b/code/game/gamemodes/clock_cult/clock_effects/spatial_gateway.dm @@ -88,7 +88,7 @@ if(istype(I, /obj/item/clockwork/slab)) to_chat(user, "\"I don't think you want to drop your slab into that.\"\n\"If you really want to, try throwing it.\"") return TRUE - if(user.drop_item() && uses) + if(uses && user.dropItemToGround(I)) user.visible_message("[user] drops [I] into [src]!", "You drop [I] into [src]!") pass_through_gateway(I, TRUE) return TRUE diff --git a/code/game/gamemodes/clock_cult/clock_items/clock_components.dm b/code/game/gamemodes/clock_cult/clock_items/clock_components.dm index b1409aae18..65c4f9f0af 100644 --- a/code/game/gamemodes/clock_cult/clock_items/clock_components.dm +++ b/code/game/gamemodes/clock_cult/clock_items/clock_components.dm @@ -20,7 +20,6 @@ "You crush [src], capturing its escaping energy for use as power.") playsound(user, 'sound/effects/pop_expl.ogg', 50, TRUE) adjust_clockwork_power(POWER_WALL_TOTAL) - user.drop_item() qdel(src) /obj/item/clockwork/component/pickup(mob/living/user) diff --git a/code/game/gamemodes/clock_cult/clock_items/clock_weapons/_call_weapon.dm b/code/game/gamemodes/clock_cult/clock_items/clock_weapons/_call_weapon.dm index afe6aca217..a87767c05e 100644 --- a/code/game/gamemodes/clock_cult/clock_items/clock_weapons/_call_weapon.dm +++ b/code/game/gamemodes/clock_cult/clock_items/clock_weapons/_call_weapon.dm @@ -28,7 +28,6 @@ if(weapon.loc == owner) owner.visible_message("[owner]'s [weapon.name] flickers and disappears!") to_chat(owner, "You dismiss [weapon].") - owner.drop_item() QDEL_NULL(weapon) weapon_reset(RATVARIAN_SPEAR_COOLDOWN * 0.5) return diff --git a/code/game/gamemodes/clock_cult/clock_items/clockwork_slab.dm b/code/game/gamemodes/clock_cult/clock_items/clockwork_slab.dm index a9c241b2c3..563e83e9cd 100644 --- a/code/game/gamemodes/clock_cult/clock_items/clockwork_slab.dm +++ b/code/game/gamemodes/clock_cult/clock_items/clockwork_slab.dm @@ -136,7 +136,7 @@ to_chat(user, "\"You reek of blood. You've got a lot of nerve to even look at that slab.\"") user.visible_message("A sizzling sound comes from [user]'s hands!", "[src] suddenly grows extremely hot in your hands!") playsound(get_turf(user), 'sound/weapons/sear.ogg', 50, 1) - user.drop_item() + user.dropItemToGround(src) user.emote("scream") user.apply_damage(5, BURN, "l_arm") user.apply_damage(5, BURN, "r_arm") diff --git a/code/game/gamemodes/cult/talisman.dm b/code/game/gamemodes/cult/talisman.dm index 2a5f64915b..115f931975 100644 --- a/code/game/gamemodes/cult/talisman.dm +++ b/code/game/gamemodes/cult/talisman.dm @@ -21,7 +21,6 @@ if(invoke(user)) uses-- if(uses <= 0) - user.drop_item() qdel(src) /obj/item/paper/talisman/proc/invoke(mob/living/user, successfuluse = 1) @@ -182,7 +181,6 @@ C.Jitter(15) if(is_servant_of_ratvar(target)) target.adjustBruteLoss(15) - user.drop_item() qdel(src) return ..() @@ -204,13 +202,13 @@ user.equip_to_slot_or_del(new /obj/item/clothing/suit/cultrobes/alt(user), slot_wear_suit) user.equip_to_slot_or_del(new /obj/item/clothing/shoes/cult/alt(user), slot_shoes) user.equip_to_slot_or_del(new /obj/item/storage/backpack/cultpack(user), slot_back) - user.drop_item() + user.dropItemToGround(src) user.put_in_hands(new /obj/item/melee/cultblade(user)) user.put_in_hands(new /obj/item/restraints/legcuffs/bola/cult(user)) /obj/item/paper/talisman/armor/attack(mob/living/target, mob/living/user) if(iscultist(user) && iscultist(target)) - user.drop_item() + user.temporarilyRemoveItemFromInventory(src) invoke(target) qdel(src) return @@ -335,7 +333,6 @@ else to_chat(user, "[C] is already bound.") if(uses <= 0) - user.drop_item() qdel(src) /obj/item/restraints/handcuffs/energy/cult //For the talisman of shackling diff --git a/code/game/gamemodes/devil/true_devil/_true_devil.dm b/code/game/gamemodes/devil/true_devil/_true_devil.dm index 5b85cbd811..9b24d096c4 100644 --- a/code/game/gamemodes/devil/true_devil/_true_devil.dm +++ b/code/game/gamemodes/devil/true_devil/_true_devil.dm @@ -184,7 +184,7 @@ "[M] has pushed down [src]!") else if (prob(25)) - drop_item() + dropItemToGround(get_active_held_item()) playsound(loc, 'sound/weapons/thudswoosh.ogg', 50, 1, -1) visible_message("[M] has disarmed [src]!", \ "[M] has disarmed [src]!") diff --git a/code/game/gamemodes/miniantags/abduction/abduction_surgery.dm b/code/game/gamemodes/miniantags/abduction/abduction_surgery.dm index 879f68e960..5b5bafdd21 100644 --- a/code/game/gamemodes/miniantags/abduction/abduction_surgery.dm +++ b/code/game/gamemodes/miniantags/abduction/abduction_surgery.dm @@ -49,7 +49,7 @@ /datum/surgery_step/gland_insert/success(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery) user.visible_message("[user] inserts [tool] into [target].", "You insert [tool] into [target].") - user.drop_item() + user.temporarilyRemoveItemFromInventory(tool, TRUE) var/obj/item/organ/heart/gland/gland = tool gland.Insert(target, 2) return 1 diff --git a/code/game/gamemodes/miniantags/revenant/revenant.dm b/code/game/gamemodes/miniantags/revenant/revenant.dm index 5e1d80e175..e72babc5b0 100644 --- a/code/game/gamemodes/miniantags/revenant/revenant.dm +++ b/code/game/gamemodes/miniantags/revenant/revenant.dm @@ -353,7 +353,7 @@ return ..() user.visible_message("[user] scatters [src] in all directions.", \ "You scatter [src] across the area. The particles slowly fade away.") - user.drop_item() + user.dropItemToGround(src) scatter() /obj/item/ectoplasm/revenant/throw_impact(atom/hit_atom) diff --git a/code/game/gamemodes/miniantags/slaughter/slaughter.dm b/code/game/gamemodes/miniantags/slaughter/slaughter.dm index 7aba0adf26..b9a07093d3 100644 --- a/code/game/gamemodes/miniantags/slaughter/slaughter.dm +++ b/code/game/gamemodes/miniantags/slaughter/slaughter.dm @@ -97,7 +97,7 @@ return user.visible_message("[user]'s eyes flare a deep crimson!", \ "You feel a strange power seep into your body... you have absorbed the demon's blood-travelling powers!") - user.drop_item() + user.temporarilyRemoveItemFromInventory(src, TRUE) src.Insert(user) //Consuming the heart literally replaces your heart with a demon heart. H A R D C O R E /obj/item/organ/heart/demon/Insert(mob/living/carbon/M, special = 0) diff --git a/code/game/gamemodes/nuclear/nuclear.dm b/code/game/gamemodes/nuclear/nuclear.dm index 2179177fc1..a24efbe3f5 100644 --- a/code/game/gamemodes/nuclear/nuclear.dm +++ b/code/game/gamemodes/nuclear/nuclear.dm @@ -91,7 +91,7 @@ to_chat(synd_mind.current, "In your hand you will find a special item capable of triggering a greater challenge for your team. Examine it carefully and consult with your fellow operatives before activating it.") var/obj/item/device/nuclear_challenge/challenge = new /obj/item/device/nuclear_challenge - synd_mind.current.put_in_hands_or_del(challenge) + synd_mind.current.put_in_hands(challenge, TRUE) var/list/foundIDs = synd_mind.current.search_contents_for(/obj/item/card/id) if(foundIDs.len) @@ -110,8 +110,7 @@ P.info = "The nuclear authorization code is: [nuke_code]" P.name = "nuclear bomb code" var/mob/living/carbon/human/H = synd_mind.current - P.forceMove(H.drop_location()) - H.put_in_hands_or_del(P) + H.put_in_hands(P, TRUE) H.update_icons() else nuke_code = "code will be provided later" diff --git a/code/game/gamemodes/nuclear/nuclearbomb.dm b/code/game/gamemodes/nuclear/nuclearbomb.dm index 8870399f24..8cae25eb38 100644 --- a/code/game/gamemodes/nuclear/nuclearbomb.dm +++ b/code/game/gamemodes/nuclear/nuclearbomb.dm @@ -105,9 +105,8 @@ /obj/machinery/nuclearbomb/attackby(obj/item/I, mob/user, params) if (istype(I, /obj/item/disk/nuclear)) - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) return - I.forceMove(src) auth = I add_fingerprint(user) return @@ -309,10 +308,8 @@ . = TRUE if("insert_disk") if(!auth) - var/obj/item/I = usr.get_active_held_item() - if(istype(I, /obj/item/disk/nuclear)) - usr.drop_item() - I.forceMove(src) + var/obj/item/I = usr.is_holding_item_of_type(/obj/item/disk/nuclear) + if(I && usr.transferItemToLoc(I, src)) auth = I . = TRUE if("keypad") diff --git a/code/game/gamemodes/wizard/artefact.dm b/code/game/gamemodes/wizard/artefact.dm index 42d676c29b..ced6ebbd35 100644 --- a/code/game/gamemodes/wizard/artefact.dm +++ b/code/game/gamemodes/wizard/artefact.dm @@ -193,8 +193,8 @@ H.equip_to_slot_or_del(new hat(H), slot_head) H.equip_to_slot_or_del(new /obj/item/clothing/under/roman(H), slot_w_uniform) H.equip_to_slot_or_del(new /obj/item/clothing/shoes/roman(H), slot_shoes) - H.put_in_hands_or_del(new /obj/item/shield/riot/roman(H)) - H.put_in_hands_or_del(new /obj/item/claymore(H)) + H.put_in_hands(new /obj/item/shield/riot/roman(H), TRUE) + H.put_in_hands(new /obj/item/claymore(H), TRUE) H.equip_to_slot_or_del(new /obj/item/twohanded/spear(H), slot_back) diff --git a/code/game/gamemodes/wizard/wizard.dm b/code/game/gamemodes/wizard/wizard.dm index dee9ab4a3d..fb9fb31fff 100644 --- a/code/game/gamemodes/wizard/wizard.dm +++ b/code/game/gamemodes/wizard/wizard.dm @@ -159,7 +159,7 @@ wizard_mob.equip_to_slot_or_del(new /obj/item/teleportation_scroll(wizard_mob), slot_r_store) var/obj/item/spellbook/spellbook = new /obj/item/spellbook(wizard_mob) spellbook.owner = wizard_mob - wizard_mob.put_in_hands_or_del(spellbook) + wizard_mob.put_in_hands(spellbook, TRUE) to_chat(wizard_mob, "You will find a list of available spells in your spell book. Choose your magic arsenal carefully.") to_chat(wizard_mob, "The spellbook is bound to you, and others cannot use it.") diff --git a/code/game/machinery/PDApainter.dm b/code/game/machinery/PDApainter.dm index bd84e7a464..9721fb6ee1 100644 --- a/code/game/machinery/PDApainter.dm +++ b/code/game/machinery/PDApainter.dm @@ -46,6 +46,7 @@ /obj/machinery/pdapainter/Destroy() QDEL_NULL(storedpda) +<<<<<<< HEAD return ..() /obj/machinery/pdapainter/on_deconstruction() @@ -103,6 +104,61 @@ return ..() /obj/machinery/pdapainter/deconstruct(disassembled = TRUE) +======= + return ..() + +/obj/machinery/pdapainter/on_deconstruction() + if(storedpda) + storedpda.forceMove(loc) + storedpda = null + +/obj/machinery/pdapainter/contents_explosion(severity, target) + if(storedpda) + storedpda.ex_act(severity, target) + +/obj/machinery/pdapainter/handle_atom_del(atom/A) + if(A == storedpda) + storedpda = null + update_icon() + +/obj/machinery/pdapainter/attackby(obj/item/O, mob/user, params) + if(default_unfasten_wrench(user, O)) + power_change() + return + + else if(istype(O, /obj/item/device/pda)) + if(storedpda) + to_chat(user, "There is already a PDA inside!") + return + else if(!user.transferItemToLoc(O, src)) + return + storedpda = O + O.add_fingerprint(user) + update_icon() + + else if(istype(O, /obj/item/weldingtool) && user.a_intent != INTENT_HARM) + var/obj/item/weldingtool/WT = O + if(stat & BROKEN) + if(WT.remove_fuel(0,user)) + user.visible_message("[user] is repairing [src].", \ + "You begin repairing [src]...", \ + "You hear welding.") + playsound(loc, WT.usesound, 40, 1) + if(do_after(user,40*WT.toolspeed, 1, target = src)) + if(!WT.isOn() || !(stat & BROKEN)) + return + to_chat(user, "You repair [src].") + playsound(loc, 'sound/items/welder2.ogg', 50, 1) + stat &= ~BROKEN + obj_integrity = max_integrity + update_icon() + else + to_chat(user, "[src] does not need repairs.") + else + return ..() + +/obj/machinery/pdapainter/deconstruct(disassembled = TRUE) +>>>>>>> b6d349e... Remove drop_item, drop_item_v, put_in_hands_or_del (#31386) if(!(flags_1 & NODECONSTRUCT_1)) if(!(stat & BROKEN)) stat |= BROKEN diff --git a/code/game/machinery/camera/camera.dm b/code/game/machinery/camera/camera.dm index 7d3c40a0d9..80d50cfb17 100644 --- a/code/game/machinery/camera/camera.dm +++ b/code/game/machinery/camera/camera.dm @@ -149,10 +149,10 @@ else if(istype(W, /obj/item/device/analyzer)) if(!isXRay()) - if(!user.drop_item(W)) + if(!user.temporarilyRemoveItemFromInventory(W)) return - upgradeXRay() qdel(W) + upgradeXRay() to_chat(user, "[msg]") else to_chat(user, "[msg2]") diff --git a/code/game/machinery/camera/camera_assembly.dm b/code/game/machinery/camera/camera_assembly.dm index 1e6fe4c532..5b828af820 100644 --- a/code/game/machinery/camera/camera_assembly.dm +++ b/code/game/machinery/camera/camera_assembly.dm @@ -109,11 +109,10 @@ // Upgrades! if(is_type_in_typecache(W, possible_upgrades) && !is_type_in_list(W, upgrades)) // Is a possible upgrade and isn't in the camera already. - if(!user.drop_item(W)) + if(!user.transferItemToLoc(W, src)) return to_chat(user, "You attach \the [W] into the assembly inner circuits.") upgrades += W - W.forceMove(src) return // Taking out upgrades diff --git a/code/game/machinery/computer/gulag_teleporter.dm b/code/game/machinery/computer/gulag_teleporter.dm index d80dc73f15..b1d56f2b2e 100644 --- a/code/game/machinery/computer/gulag_teleporter.dm +++ b/code/game/machinery/computer/gulag_teleporter.dm @@ -92,18 +92,13 @@ beacon = findbeacon() if("handle_id") if(id) - if(!usr.get_active_held_item()) - usr.put_in_hands(id) - id = null - else - id.forceMove(get_turf(src)) - id = null + usr.put_in_hands(id) + id = null else - var/obj/item/I = usr.get_active_held_item() - if(istype(I, /obj/item/card/id/prisoner)) - if(!usr.drop_item()) + var/obj/item/I = usr.is_holding_item_of_type(/obj/item/card/id/prisoner) + if(I) + if(!usr.transferItemToLoc(I, src)) return - I.forceMove(src) id = I if("set_goal") var/new_goal = input("Set the amount of points:", "Points", id.goal) as num|null diff --git a/code/game/machinery/computer/medical.dm b/code/game/machinery/computer/medical.dm index 6ec144d257..f13cfe8c00 100644 --- a/code/game/machinery/computer/medical.dm +++ b/code/game/machinery/computer/medical.dm @@ -27,9 +27,8 @@ /obj/machinery/computer/med_data/attackby(obj/item/O, mob/user, params) if(istype(O, /obj/item/card/id) && !scan) - if(!user.drop_item()) + if(!user.transferItemToLoc(O, src)) return - O.loc = src scan = O to_chat(user, "You insert [O].") else @@ -215,17 +214,13 @@ src.temp = null if(href_list["scan"]) if(src.scan) - if(ishuman(usr) && !usr.get_active_held_item()) - usr.put_in_hands(scan) - else - scan.loc = get_turf(src) - src.scan = null + usr.put_in_hands(scan) + scan = null else - var/obj/item/I = usr.get_active_held_item() - if(istype(I, /obj/item/card/id)) - if(!usr.drop_item()) + var/obj/item/I = usr.is_holding_item_of_type(/obj/item/card/id) + if(I) + if(!usr.transferItemToLoc(I, src)) return - I.loc = src src.scan = I else if(href_list["logout"]) src.authenticated = null diff --git a/code/game/machinery/computer/prisoner.dm b/code/game/machinery/computer/prisoner.dm index a7626258ae..c983bc319f 100644 --- a/code/game/machinery/computer/prisoner.dm +++ b/code/game/machinery/computer/prisoner.dm @@ -90,11 +90,10 @@ if(href_list["id"]) if(href_list["id"] =="insert" && !inserted_id) - var/obj/item/card/id/prisoner/I = usr.get_active_held_item() - if(istype(I)) - if(!usr.drop_item()) + var/obj/item/card/id/prisoner/I = usr.is_holding_item_of_type(/obj/item/card/id/prisoner) + if(I) + if(!usr.transferItemToLoc(I, src)) return - I.loc = src inserted_id = I else to_chat(usr, "No valid ID.") else if(inserted_id) diff --git a/code/game/machinery/computer/security.dm b/code/game/machinery/computer/security.dm index 1a74c44c30..7fadcac2f2 100644 --- a/code/game/machinery/computer/security.dm +++ b/code/game/machinery/computer/security.dm @@ -37,9 +37,8 @@ /obj/machinery/computer/secure_data/attackby(obj/item/O, mob/user, params) if(istype(O, /obj/item/card/id)) if(!scan) - if(!user.drop_item()) + if(!user.transferItemToLoc(O, src)) return - O.loc = src scan = O to_chat(user, "You insert [O].") else @@ -303,17 +302,13 @@ What a mess.*/ if("Confirm Identity") if(scan) - if(ishuman(usr) && !usr.get_active_held_item()) - usr.put_in_hands(scan) - else - scan.loc = get_turf(src) + usr.put_in_hands(scan) scan = null else - var/obj/item/I = usr.get_active_held_item() - if(istype(I, /obj/item/card/id)) - if(!usr.drop_item()) + var/obj/item/I = usr.is_holding_item_of_type(/obj/item/card/id) + if(I) + if(!usr.transferItemToLoc(I, src)) return - I.loc = src scan = I if("Log Out") diff --git a/code/game/machinery/computer/telecrystalconsoles.dm b/code/game/machinery/computer/telecrystalconsoles.dm index 52de3830df..eb6c2902e8 100644 --- a/code/game/machinery/computer/telecrystalconsoles.dm +++ b/code/game/machinery/computer/telecrystalconsoles.dm @@ -29,21 +29,19 @@ GLOBAL_LIST_INIT(possible_uplinker_IDs, list("Alfa","Bravo","Charlie","Delta","E ID = rand(1,999) name = "[name] [ID]" -/obj/machinery/computer/telecrystals/uplinker/attackby(obj/item/O, mob/user, params) +/obj/machinery/computer/telecrystals/uplinker/attackby(obj/item/I, mob/user, params) if(uplinkholder) to_chat(user, "The [src] already has an uplink in it.") return - if(O.hidden_uplink) - var/obj/item/I = user.get_active_held_item() - if(!user.drop_item()) + if(I.hidden_uplink) + if(!user.transferItemToLoc(I, src)) return uplinkholder = I - I.loc = src I.add_fingerprint(user) update_icon() updateUsrDialog() else - to_chat(user, "The [O] doesn't appear to be an uplink...") + to_chat(user, "[I] doesn't appear to be an uplink...") /obj/machinery/computer/telecrystals/uplinker/update_icon() ..() diff --git a/code/game/machinery/constructable_frame.dm b/code/game/machinery/constructable_frame.dm index 04c2ad6e29..bca494e8e0 100644 --- a/code/game/machinery/constructable_frame.dm +++ b/code/game/machinery/constructable_frame.dm @@ -15,6 +15,7 @@ /obj/structure/frame/deconstruct(disassembled = TRUE) if(!(flags_1 & NODECONSTRUCT_1)) +<<<<<<< HEAD new /obj/item/stack/sheet/metal(loc, 5) if(circuit) circuit.forceMove(loc) @@ -253,6 +254,244 @@ /obj/structure/frame/machine/deconstruct(disassembled = TRUE) +======= + new /obj/item/stack/sheet/metal(loc, 5) + if(circuit) + circuit.forceMove(loc) + circuit = null + qdel(src) + + +/obj/structure/frame/machine + name = "machine frame" + var/list/components = null + var/list/req_components = null + var/list/req_component_names = null // user-friendly names of components + +/obj/structure/frame/machine/examine(user) + ..() + if(state == 3 && req_components && req_component_names) + var/hasContent = 0 + var/requires = "It requires" + + for(var/i = 1 to req_components.len) + var/tname = req_components[i] + var/amt = req_components[tname] + if(amt == 0) + continue + var/use_and = i == req_components.len + requires += "[(hasContent ? (use_and ? ", and" : ",") : "")] [amt] [amt == 1 ? req_component_names[tname] : "[req_component_names[tname]]\s"]" + hasContent = 1 + + if(hasContent) + to_chat(user, requires + ".") + else + to_chat(user, "It does not require any more components.") + +/obj/structure/frame/machine/proc/update_namelist() + if(!req_components) + return + + req_component_names = new() + for(var/tname in req_components) + if(ispath(tname, /obj/item/stack)) + var/obj/item/stack/S = tname + var/singular_name = initial(S.singular_name) + if(singular_name) + req_component_names[tname] = singular_name + else + req_component_names[tname] = initial(S.name) + else + var/obj/O = tname + req_component_names[tname] = initial(O.name) + +/obj/structure/frame/machine/proc/get_req_components_amt() + var/amt = 0 + for(var/path in req_components) + amt += req_components[path] + return amt + +/obj/structure/frame/machine/attackby(obj/item/P, mob/user, params) + switch(state) + if(1) + if(istype(P, /obj/item/circuitboard/machine)) + to_chat(user, "The frame needs wiring first!") + return + else if(istype(P, /obj/item/circuitboard)) + to_chat(user, "This frame does not accept circuit boards of this type!") + return + if(istype(P, /obj/item/stack/cable_coil)) + var/obj/item/stack/cable_coil/C = P + if(C.get_amount() >= 5) + playsound(src.loc, 'sound/items/deconstruct.ogg', 50, 1) + to_chat(user, "You start to add cables to the frame...") + if(do_after(user, 20*P.toolspeed, target = src)) + if(C.get_amount() >= 5 && state == 1) + C.use(5) + to_chat(user, "You add cables to the frame.") + state = 2 + icon_state = "box_1" + else + to_chat(user, "You need five length of cable to wire the frame!") + return + if(istype(P, /obj/item/screwdriver) && !anchored) + playsound(src.loc, P.usesound, 50, 1) + user.visible_message("[user] disassembles the frame.", \ + "You start to disassemble the frame...", "You hear banging and clanking.") + if(do_after(user, 40*P.toolspeed, target = src)) + if(state == 1) + to_chat(user, "You disassemble the frame.") + var/obj/item/stack/sheet/metal/M = new (loc, 5) + M.add_fingerprint(user) + qdel(src) + return + if(istype(P, /obj/item/wrench)) + to_chat(user, "You start [anchored ? "un" : ""]securing [name]...") + playsound(src.loc, P.usesound, 75, 1) + if(do_after(user, 40*P.toolspeed, target = src)) + if(state == 1) + to_chat(user, "You [anchored ? "un" : ""]secure [name].") + anchored = !anchored + return + + if(2) + if(istype(P, /obj/item/wrench)) + to_chat(user, "You start [anchored ? "un" : ""]securing [name]...") + playsound(src.loc, P.usesound, 75, 1) + if(do_after(user, 40*P.toolspeed, target = src)) + to_chat(user, "You [anchored ? "un" : ""]secure [name].") + anchored = !anchored + return + + if(istype(P, /obj/item/circuitboard/machine)) + if(!anchored) + to_chat(user, "The frame needs to be secured first!") + return + var/obj/item/circuitboard/machine/B = P + if(!user.transferItemToLoc(B, src)) + return + playsound(src.loc, 'sound/items/deconstruct.ogg', 50, 1) + to_chat(user, "You add the circuit board to the frame.") + circuit = B + icon_state = "box_2" + state = 3 + components = list() + req_components = B.req_components.Copy() + update_namelist() + return + + else if(istype(P, /obj/item/circuitboard)) + to_chat(user, "This frame does not accept circuit boards of this type!") + return + + if(istype(P, /obj/item/wirecutters)) + playsound(src.loc, P.usesound, 50, 1) + to_chat(user, "You remove the cables.") + state = 1 + icon_state = "box_0" + var/obj/item/stack/cable_coil/A = new /obj/item/stack/cable_coil( src.loc ) + A.amount = 5 + return + + if(3) + if(istype(P, /obj/item/crowbar)) + playsound(src.loc, P.usesound, 50, 1) + state = 2 + circuit.loc = src.loc + components.Remove(circuit) + circuit = null + if(components.len == 0) + to_chat(user, "You remove the circuit board.") + else + to_chat(user, "You remove the circuit board and other components.") + for(var/atom/movable/A in components) + A.loc = src.loc + desc = initial(desc) + req_components = null + components = null + icon_state = "box_1" + return + + if(istype(P, /obj/item/screwdriver)) + var/component_check = 1 + for(var/R in req_components) + if(req_components[R] > 0) + component_check = 0 + break + if(component_check) + playsound(src.loc, P.usesound, 50, 1) + var/obj/machinery/new_machine = new src.circuit.build_path(src.loc, 1) + new_machine.on_construction() + for(var/obj/O in new_machine.component_parts) + qdel(O) + new_machine.component_parts = list() + for(var/obj/O in src) + O.loc = null + new_machine.component_parts += O + circuit.loc = null + new_machine.RefreshParts() + qdel(src) + return + + if(istype(P, /obj/item/storage/part_replacer) && P.contents.len && get_req_components_amt()) + var/obj/item/storage/part_replacer/replacer = P + var/list/added_components = list() + var/list/part_list = list() + + //Assemble a list of current parts, then sort them by their rating! + for(var/obj/item/stock_parts/co in replacer) + part_list += co + //Sort the parts. This ensures that higher tier items are applied first. + part_list = sortTim(part_list, /proc/cmp_rped_sort) + + for(var/path in req_components) + while(req_components[path] > 0 && (locate(path) in part_list)) + var/obj/item/part = (locate(path) in part_list) + added_components[part] = path + replacer.remove_from_storage(part, src) + req_components[path]-- + part_list -= part + + for(var/obj/item/stock_parts/part in added_components) + components += part + to_chat(user, "[part.name] applied.") + if(added_components.len) + replacer.play_rped_sound() + return + + if(isitem(P) && get_req_components_amt()) + for(var/I in req_components) + if(istype(P, I) && (req_components[I] > 0)) + if(istype(P, /obj/item/stack)) + var/obj/item/stack/S = P + var/used_amt = min(round(S.get_amount()), req_components[I]) + + if(used_amt && S.use(used_amt)) + var/obj/item/stack/NS = locate(S.merge_type) in components + + if(!NS) + NS = new S.merge_type(src, used_amt) + components += NS + else + NS.add(used_amt) + + req_components[I] -= used_amt + to_chat(user, "You add [P] to [src].") + return + if(!user.transferItemToLoc(P, src)) + break + to_chat(user, "You add [P] to [src].") + components += P + req_components[I]-- + return 1 + to_chat(user, "You cannot add that to the machine!") + return 0 + if(user.a_intent == INTENT_HARM) + return ..() + + +/obj/structure/frame/machine/deconstruct(disassembled = TRUE) +>>>>>>> b6d349e... Remove drop_item, drop_item_v, put_in_hands_or_del (#31386) if(!(flags_1 & NODECONSTRUCT_1)) if(state >= 2) new /obj/item/stack/cable_coil(loc , 5) diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm index e7fa7447b5..e00f1c9b9e 100644 --- a/code/game/machinery/doors/airlock.dm +++ b/code/game/machinery/doors/airlock.dm @@ -1170,10 +1170,9 @@ to_chat(user, "The maintenance panel is destroyed!") return to_chat(user, "You apply [C]. Next time someone opens the door, it will explode.") - user.drop_item() panel_open = FALSE update_icon() - C.forceMove(src) + user.transferItemToLoc(C, src, TRUE) charge = C else if(istype(C, /obj/item/paper) || istype(C, /obj/item/photo)) if(note) diff --git a/code/game/machinery/doors/firedoor.dm b/code/game/machinery/doors/firedoor.dm index 95adf12875..542989fa15 100644 --- a/code/game/machinery/doors/firedoor.dm +++ b/code/game/machinery/doors/firedoor.dm @@ -426,7 +426,6 @@ return if(constructionStep != CONSTRUCTION_NOCIRCUIT) return - user.drop_item() qdel(C) user.visible_message("[user] adds a circuit to [src].", \ "You insert and secure [C].") diff --git a/code/game/machinery/flasher.dm b/code/game/machinery/flasher.dm index f8186a8a51..9bf40542a7 100644 --- a/code/game/machinery/flasher.dm +++ b/code/game/machinery/flasher.dm @@ -63,10 +63,9 @@ else if (istype(W, /obj/item/device/assembly/flash/handheld)) if (!bulb) - if(!user.drop_item()) + if(!user.transferItemToLoc(W, src)) return user.visible_message("[user] installs [W] into [src].", "You install [W] into [src].") - W.forceMove(src) bulb = W power_change() else diff --git a/code/game/machinery/gulag_item_reclaimer.dm b/code/game/machinery/gulag_item_reclaimer.dm index ffa903c3e9..571899d860 100644 --- a/code/game/machinery/gulag_item_reclaimer.dm +++ b/code/game/machinery/gulag_item_reclaimer.dm @@ -33,9 +33,8 @@ /obj/machinery/gulag_item_reclaimer/attackby(obj/item/I, mob/user) if(istype(I, /obj/item/card/id/prisoner)) if(!inserted_id) - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) return - I.forceMove(src) inserted_id = I to_chat(user, "You insert [I].") return @@ -82,18 +81,13 @@ switch(action) if("handle_id") if(inserted_id) - if(!usr.get_active_held_item()) - usr.put_in_hands(inserted_id) - inserted_id = null - else - inserted_id.forceMove(get_turf(src)) - inserted_id = null + usr.put_in_hands(inserted_id) + inserted_id = null else - var/obj/item/I = usr.get_active_held_item() - if(istype(I, /obj/item/card/id/prisoner)) - if(!usr.drop_item()) + var/obj/item/I = usr.is_holding_item_of_type(/obj/item/card/id/prisoner) + if(I) + if(!usr.transferItemToLoc(I, src)) return - I.forceMove(src) inserted_id = I if("release_items") var/mob/M = locate(params["mobref"]) diff --git a/code/game/machinery/iv_drip.dm b/code/game/machinery/iv_drip.dm index c5c0200493..23048caf67 100644 --- a/code/game/machinery/iv_drip.dm +++ b/code/game/machinery/iv_drip.dm @@ -95,10 +95,8 @@ if(beaker) to_chat(user, "There is already a reagent container loaded!") return - if(!user.drop_item()) + if(!user.transferItemToLoc(W, src)) return - - W.forceMove(src) beaker = W to_chat(user, "You attach [W] to [src].") update_icon() diff --git a/code/game/machinery/newscaster.dm b/code/game/machinery/newscaster.dm index 204ae83c9d..863eb3286b 100644 --- a/code/game/machinery/newscaster.dm +++ b/code/game/machinery/newscaster.dm @@ -786,11 +786,9 @@ GLOBAL_LIST_EMPTY(allCasters) else qdel(photo) photo = null - if(istype(user.get_active_held_item(), /obj/item/photo)) - photo = user.get_active_held_item() - if(!user.drop_item()) - return - photo.loc = src + photo = user.is_holding_item_of_type(/obj/item/photo) + if(photo && !user.transferItemToLoc(photo, src)) + photo = null if(issilicon(user)) var/list/nametemp = list() var/find diff --git a/code/game/machinery/pipe/pipe_dispenser.dm b/code/game/machinery/pipe/pipe_dispenser.dm index cedb94b7b3..26559c5ef9 100644 --- a/code/game/machinery/pipe/pipe_dispenser.dm +++ b/code/game/machinery/pipe/pipe_dispenser.dm @@ -71,8 +71,6 @@ add_fingerprint(user) if (istype(W, /obj/item/pipe) || istype(W, /obj/item/pipe_meter)) to_chat(usr, "You put [W] back into [src].") - if(!user.drop_item()) - return qdel(W) return else if (istype(W, /obj/item/wrench)) diff --git a/code/game/machinery/porta_turret/portable_turret_construct.dm b/code/game/machinery/porta_turret/portable_turret_construct.dm index 7eace08636..ab16ee67ed 100644 --- a/code/game/machinery/porta_turret/portable_turret_construct.dm +++ b/code/game/machinery/porta_turret/portable_turret_construct.dm @@ -84,9 +84,8 @@ if(PTURRET_INTERNAL_ARMOUR_ON) if(istype(I, /obj/item/gun/energy)) //the gun installation part var/obj/item/gun/energy/E = I - if(!user.drop_item()) + if(!user.transferItemToLoc(E, src)) return - E.forceMove(src) installed_gun = E to_chat(user, "You add [I] to the turret.") build_step = PTURRET_GUN_EQUIPPED @@ -101,7 +100,7 @@ if(PTURRET_GUN_EQUIPPED) if(isprox(I)) build_step = PTURRET_SENSORS_ON - if(!user.drop_item()) + if(!user.temporarilyRemoveItemFromInventory(I)) return to_chat(user, "You add the proximity sensor to the turret.") qdel(I) diff --git a/code/game/machinery/recharger.dm b/code/game/machinery/recharger.dm index 4a72fa90c6..d373e1267a 100755 --- a/code/game/machinery/recharger.dm +++ b/code/game/machinery/recharger.dm @@ -50,9 +50,8 @@ to_chat(user, "Your gun has no external power connector.") return 1 - if(!user.drop_item()) + if(!user.transferItemToLoc(G, src)) return 1 - G.loc = src charging = G use_power = ACTIVE_POWER_USE update_icon(scan = TRUE) diff --git a/code/game/machinery/slotmachine.dm b/code/game/machinery/slotmachine.dm index 957f533a29..a9162b85f8 100644 --- a/code/game/machinery/slotmachine.dm +++ b/code/game/machinery/slotmachine.dm @@ -83,16 +83,15 @@ if(istype(I, /obj/item/coin)) var/obj/item/coin/C = I if(prob(2)) - if(!user.drop_item()) + if(!user.transferItemToLoc(C, drop_location())) return - C.loc = loc C.throw_at(user, 3, 10) if(prob(10)) balance = max(balance - SPIN_PRICE, 0) to_chat(user, "[src] spits your coin back out!") else - if(!user.drop_item()) + if(!user.temporarilyRemoveItemFromInventory(C)) return to_chat(user, "You insert a [C.cmineral] coin into [src]'s slot!") balance += C.value diff --git a/code/game/machinery/spaceheater.dm b/code/game/machinery/spaceheater.dm index 886798156e..b45b393ab2 100644 --- a/code/game/machinery/spaceheater.dm +++ b/code/game/machinery/spaceheater.dm @@ -140,18 +140,13 @@ if(cell) to_chat(user, "There is already a power cell inside!") return - else - // insert cell - var/obj/item/stock_parts/cell/C = usr.get_active_held_item() - if(istype(C)) - if(!user.drop_item()) - return - cell = C - C.loc = src - C.add_fingerprint(usr) + else if(!user.transferItemToLoc(I, src)) + return + cell = I + I.add_fingerprint(usr) - user.visible_message("\The [user] inserts a power cell into \the [src].", "You insert the power cell into \the [src].") - SStgui.update_uis(src) + user.visible_message("\The [user] inserts a power cell into \the [src].", "You insert the power cell into \the [src].") + SStgui.update_uis(src) else to_chat(user, "The hatch must be open to insert a power cell!") return diff --git a/code/game/machinery/suit_storage_unit.dm b/code/game/machinery/suit_storage_unit.dm index 7c51c383fa..0854e63e5b 100644 --- a/code/game/machinery/suit_storage_unit.dm +++ b/code/game/machinery/suit_storage_unit.dm @@ -298,32 +298,31 @@ if(suit) to_chat(user, "The unit already contains a suit!.") return - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) return suit = I else if(istype(I, /obj/item/clothing/head/helmet)) if(helmet) to_chat(user, "The unit already contains a helmet!") return - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) return helmet = I else if(istype(I, /obj/item/clothing/mask)) if(mask) to_chat(user, "The unit already contains a mask!") return - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) return mask = I else if(storage) to_chat(user, "The auxiliary storage compartment is full!") return - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) return storage = I - I.loc = src visible_message("[user] inserts [I] into [src]", "You load [I] into [src].") update_icon() return diff --git a/code/game/machinery/syndicatebomb.dm b/code/game/machinery/syndicatebomb.dm index efb872b766..d279f2849f 100644 --- a/code/game/machinery/syndicatebomb.dm +++ b/code/game/machinery/syndicatebomb.dm @@ -150,11 +150,10 @@ to_chat(user, "The cover is screwed on, it won't pry off!") else if(istype(I, /obj/item/bombcore)) if(!payload) - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) return payload = I to_chat(user, "You place [payload] into [src].") - payload.loc = src else to_chat(user, "[payload] is already loaded into [src]! You'll have to remove it first.") else if(istype(I, /obj/item/weldingtool)) @@ -463,11 +462,10 @@ return else if(istype(I, /obj/item/reagent_containers/glass/beaker) || istype(I, /obj/item/reagent_containers/glass/bottle)) if(beakers.len < max_beakers) - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) return beakers += I to_chat(user, "You load [src] with [I].") - I.loc = src else to_chat(user, "The [I] wont fit! The [src] can only hold up to [max_beakers] containers.") return diff --git a/code/game/machinery/vending.dm b/code/game/machinery/vending.dm index d4a06d0580..bf08e98992 100644 --- a/code/game/machinery/vending.dm +++ b/code/game/machinery/vending.dm @@ -189,9 +189,8 @@ var/obj/item/reagent_containers/food/snacks/S = W if(!S.junkiness) if(!iscompartmentfull(user)) - if(!user.drop_item()) + if(!user.transferItemToLoc(W, src)) return - W.loc = src food_load(W) to_chat(user, "You insert [W] into [src]'s chef compartment.") else @@ -279,9 +278,8 @@ if(!premium.len) to_chat(user, "[src] doesn't have a coin slot.") return - if(!user.drop_item()) + if(!user.transferItemToLoc(W, src)) return - W.loc = src coin = W to_chat(user, "You insert [W] into [src].") return diff --git a/code/game/mecha/mecha_defense.dm b/code/game/mecha/mecha_defense.dm index 7091bfd72a..a75294c28f 100644 --- a/code/game/mecha/mecha_defense.dm +++ b/code/game/mecha/mecha_defense.dm @@ -161,7 +161,7 @@ var/obj/item/mecha_parts/mecha_equipment/E = W spawn() if(E.can_attach(src)) - if(!user.drop_item()) + if(!user.temporarilyRemoveItemFromInventory(W)) return E.attach(src) user.visible_message("[user] attaches [W] to [src].", "You attach [W] to [src].") @@ -226,11 +226,10 @@ else if(istype(W, /obj/item/stock_parts/cell)) if(state==4) if(!cell) - if(!user.drop_item()) + if(!user.transferItemToLoc(W, src)) return var/obj/item/stock_parts/cell/C = W to_chat(user, "You install the powercell.") - C.forceMove(src) cell = C log_message("Powercell installed") else diff --git a/code/game/objects/effects/effect_system/effects_smoke.dm b/code/game/objects/effects/effect_system/effects_smoke.dm index 3f32b18178..41ba67d616 100644 --- a/code/game/objects/effects/effect_system/effects_smoke.dm +++ b/code/game/objects/effects/effect_system/effects_smoke.dm @@ -128,7 +128,7 @@ /obj/effect/particle_effect/smoke/bad/smoke_mob(mob/living/carbon/M) if(..()) - M.drop_item() + M.drop_all_held_items() M.adjustOxyLoss(1) M.emote("cough") return 1 @@ -205,7 +205,6 @@ /obj/effect/particle_effect/smoke/sleeping/smoke_mob(mob/living/carbon/M) if(..()) - M.drop_item() M.Sleeping(200) M.emote("cough") return 1 diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index 362148c801..76e1468751 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -531,7 +531,7 @@ GLOBAL_VAR_INIT(rpg_loot_items, FALSE) to_chat(M, "You become nearsighted!") if(prob(50)) if(M.stat != DEAD) - if(M.drop_item()) + if(M.drop_all_held_items()) to_chat(M, "You drop what you're holding and clutch at your eyes!") M.adjust_blurriness(10) M.Unconscious(20) diff --git a/code/game/objects/items/handcuffs.dm b/code/game/objects/items/handcuffs.dm index 50b0f4e7e6..e7dfc96ab5 100644 --- a/code/game/objects/items/handcuffs.dm +++ b/code/game/objects/items/handcuffs.dm @@ -1,3 +1,4 @@ +<<<<<<< HEAD /obj/item/restraints breakouttime = 600 @@ -369,4 +370,378 @@ var/obj/item/restraints/legcuffs/beartrap/B = new /obj/item/restraints/legcuffs/beartrap/energy/cyborg(get_turf(hit_atom)) B.Crossed(hit_atom) qdel(src) - ..() \ No newline at end of file + ..() +======= +/obj/item/restraints + breakouttime = 600 + +//Handcuffs + +/obj/item/restraints/handcuffs + name = "handcuffs" + desc = "Use this to keep prisoners in line." + gender = PLURAL + icon = 'icons/obj/items_and_weapons.dmi' + icon_state = "handcuff" + lefthand_file = 'icons/mob/inhands/equipment/security_lefthand.dmi' + righthand_file = 'icons/mob/inhands/equipment/security_righthand.dmi' + flags_1 = CONDUCT_1 + slot_flags = SLOT_BELT + throwforce = 0 + w_class = WEIGHT_CLASS_SMALL + throw_speed = 3 + throw_range = 5 + materials = list(MAT_METAL=500) + origin_tech = "engineering=3;combat=3" + breakouttime = 600 //Deciseconds = 60s = 1 minute + armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 50) + var/cuffsound = 'sound/weapons/handcuffs.ogg' + var/trashtype = null //for disposable cuffs + +/obj/item/restraints/handcuffs/attack(mob/living/carbon/C, mob/living/carbon/human/user) + if(!istype(C)) + return + if(user.disabilities & CLUMSY && prob(50)) + to_chat(user, "Uh... how do those things work?!") + apply_cuffs(user,user) + return + + // chance of monkey retaliation + if(ismonkey(C) && prob(MONKEY_CUFF_RETALIATION_PROB)) + var/mob/living/carbon/monkey/M + M = C + M.retaliate(user) + + if(!C.handcuffed) + if(C.get_num_arms() >= 2 || C.get_arm_ignore()) + C.visible_message("[user] is trying to put [src.name] on [C]!", \ + "[user] is trying to put [src.name] on [C]!") + + playsound(loc, cuffsound, 30, 1, -2) + if(do_mob(user, C, 30) && (C.get_num_arms() >= 2 || C.get_arm_ignore())) + apply_cuffs(C,user) + to_chat(user, "You handcuff [C].") + SSblackbox.add_details("handcuffs","[type]") + + add_logs(user, C, "handcuffed") + else + to_chat(user, "You fail to handcuff [C]!") + else + to_chat(user, "[C] doesn't have two hands...") + +/obj/item/restraints/handcuffs/proc/apply_cuffs(mob/living/carbon/target, mob/user, var/dispense = 0) + if(target.handcuffed) + return + + if(!user.temporarilyRemoveItemFromInventory(src) && !dispense) + return + + var/obj/item/restraints/handcuffs/cuffs = src + if(trashtype) + cuffs = new trashtype() + else if(dispense) + cuffs = new type() + + cuffs.forceMove(target) + target.handcuffed = cuffs + + target.update_handcuffed() + if(trashtype && !dispense) + qdel(src) + return + +/obj/item/restraints/handcuffs/sinew + name = "sinew restraints" + desc = "A pair of restraints fashioned from long strands of flesh." + icon = 'icons/obj/mining.dmi' + icon_state = "sinewcuff" + item_state = "sinewcuff" + breakouttime = 300 //Deciseconds = 30s + cuffsound = 'sound/weapons/cablecuff.ogg' + +/obj/item/restraints/handcuffs/cable + name = "cable restraints" + desc = "Looks like some cables tied together. Could be used to tie something up." + icon_state = "cuff_red" + item_state = "coil_red" + lefthand_file = 'icons/mob/inhands/equipment/tools_lefthand.dmi' + righthand_file = 'icons/mob/inhands/equipment/tools_righthand.dmi' + materials = list(MAT_METAL=150, MAT_GLASS=75) + origin_tech = "engineering=2" + breakouttime = 300 //Deciseconds = 30s + cuffsound = 'sound/weapons/cablecuff.ogg' + var/datum/robot_energy_storage/wirestorage = null + +/obj/item/restraints/handcuffs/cable/attack(mob/living/carbon/C, mob/living/carbon/human/user) + if(!istype(C)) + return + if(wirestorage && wirestorage.energy < 15) + to_chat(user, "You need at least 15 wire to restrain [C]!") + return + return ..() + +/obj/item/restraints/handcuffs/cable/apply_cuffs(mob/living/carbon/target, mob/user, var/dispense = 0) + if(wirestorage) + if(!wirestorage.use_charge(15)) + to_chat(user, "You need at least 15 wire to restrain [target]!") + return + return ..(target, user, 1) + + return ..() + +/obj/item/restraints/handcuffs/cable/red + icon_state = "cuff_red" + item_state = "coil_red" + +/obj/item/restraints/handcuffs/cable/yellow + icon_state = "cuff_yellow" + item_state = "coil_yellow" + +/obj/item/restraints/handcuffs/cable/blue + icon_state = "cuff_blue" + item_state = "coil_blue" + +/obj/item/restraints/handcuffs/cable/green + icon_state = "cuff_green" + item_state = "coil_green" + +/obj/item/restraints/handcuffs/cable/pink + icon_state = "cuff_pink" + item_state = "coil_pink" + +/obj/item/restraints/handcuffs/cable/orange + icon_state = "cuff_orange" + item_state = "coil_orange" + +/obj/item/restraints/handcuffs/cable/cyan + icon_state = "cuff_cyan" + item_state = "coil_cyan" + +/obj/item/restraints/handcuffs/cable/white + icon_state = "cuff_white" + item_state = "coil_white" + +/obj/item/restraints/handcuffs/alien + icon_state = "handcuffAlien" + +/obj/item/restraints/handcuffs/fake + name = "fake handcuffs" + desc = "Fake handcuffs meant for gag purposes." + breakouttime = 10 //Deciseconds = 1s + +/obj/item/restraints/handcuffs/fake/kinky + name = "kinky handcuffs" + desc = "Fake handcuffs meant for erotic roleplay." + icon_state = "handcuffGag" + +/obj/item/restraints/handcuffs/cable/attackby(obj/item/I, mob/user, params) + ..() + if(istype(I, /obj/item/stack/rods)) + var/obj/item/stack/rods/R = I + if (R.use(1)) + var/obj/item/wirerod/W = new /obj/item/wirerod + remove_item_from_storage(user) + user.put_in_hands(W) + to_chat(user, "You wrap the cable restraint around the top of the rod.") + qdel(src) + else + to_chat(user, "You need one rod to make a wired rod!") + return + else if(istype(I, /obj/item/stack/sheet/metal)) + var/obj/item/stack/sheet/metal/M = I + if(M.get_amount() < 6) + to_chat(user, "You need at least six metal sheets to make good enough weights!") + return + to_chat(user, "You begin to apply [I] to [src]...") + if(do_after(user, 35, target = src)) + if(M.get_amount() < 6 || !M) + return + var/obj/item/restraints/legcuffs/bola/S = new /obj/item/restraints/legcuffs/bola + M.use(6) + user.put_in_hands(S) + to_chat(user, "You make some weights out of [I] and tie them to [src].") + remove_item_from_storage(user) + qdel(src) + else + return ..() + +/obj/item/restraints/handcuffs/cable/zipties/cyborg/attack(mob/living/carbon/C, mob/user) + if(iscyborg(user)) + if(!C.handcuffed) + playsound(loc, 'sound/weapons/cablecuff.ogg', 30, 1, -2) + C.visible_message("[user] is trying to put zipties on [C]!", \ + "[user] is trying to put zipties on [C]!") + if(do_mob(user, C, 30)) + if(!C.handcuffed) + C.handcuffed = new /obj/item/restraints/handcuffs/cable/zipties/used(C) + C.update_handcuffed() + to_chat(user, "You handcuff [C].") + add_logs(user, C, "handcuffed") + else + to_chat(user, "You fail to handcuff [C]!") + +/obj/item/restraints/handcuffs/cable/zipties + name = "zipties" + desc = "Plastic, disposable zipties that can be used to restrain temporarily but are destroyed after use." + icon_state = "cuff_white" + lefthand_file = 'icons/mob/inhands/equipment/security_lefthand.dmi' + righthand_file = 'icons/mob/inhands/equipment/security_righthand.dmi' + materials = list() + breakouttime = 450 //Deciseconds = 45s + trashtype = /obj/item/restraints/handcuffs/cable/zipties/used + +/obj/item/restraints/handcuffs/cable/zipties/used + desc = "A pair of broken zipties." + icon_state = "cuff_white_used" + item_state = "cuff_white" + +/obj/item/restraints/handcuffs/cable/zipties/used/attack() + return + + +//Legcuffs + +/obj/item/restraints/legcuffs + name = "leg cuffs" + desc = "Use this to keep prisoners in line." + gender = PLURAL + icon = 'icons/obj/items_and_weapons.dmi' + icon_state = "handcuff" + lefthand_file = 'icons/mob/inhands/equipment/security_lefthand.dmi' + righthand_file = 'icons/mob/inhands/equipment/security_righthand.dmi' + flags_1 = CONDUCT_1 + throwforce = 0 + w_class = WEIGHT_CLASS_NORMAL + origin_tech = "engineering=3;combat=3" + slowdown = 7 + breakouttime = 300 //Deciseconds = 30s = 0.5 minute + +/obj/item/restraints/legcuffs/beartrap + name = "bear trap" + throw_speed = 1 + throw_range = 1 + icon_state = "beartrap" + desc = "A trap used to catch bears and other legged creatures." + origin_tech = "engineering=4" + var/armed = 0 + var/trap_damage = 20 + +/obj/item/restraints/legcuffs/beartrap/Initialize() + . = ..() + icon_state = "[initial(icon_state)][armed]" + +/obj/item/restraints/legcuffs/beartrap/suicide_act(mob/user) + user.visible_message("[user] is sticking [user.p_their()] head in the [src.name]! It looks like [user.p_theyre()] trying to commit suicide!") + playsound(loc, 'sound/weapons/bladeslice.ogg', 50, 1, -1) + return (BRUTELOSS) + +/obj/item/restraints/legcuffs/beartrap/attack_self(mob/user) + ..() + if(ishuman(user) && !user.stat && !user.restrained()) + armed = !armed + icon_state = "[initial(icon_state)][armed]" + to_chat(user, "[src] is now [armed ? "armed" : "disarmed"]") + +/obj/item/restraints/legcuffs/beartrap/Crossed(AM as mob|obj) + if(armed && isturf(src.loc)) + if(isliving(AM)) + var/mob/living/L = AM + var/snap = 0 + var/def_zone = "chest" + if(iscarbon(L)) + var/mob/living/carbon/C = L + snap = 1 + if(!C.lying) + def_zone = pick("l_leg", "r_leg") + if(!C.legcuffed && C.get_num_legs() >= 2) //beartrap can't cuff your leg if there's already a beartrap or legcuffs, or you don't have two legs. + C.legcuffed = src + src.loc = C + C.update_inv_legcuffed() + SSblackbox.add_details("handcuffs","[type]") + else if(isanimal(L)) + var/mob/living/simple_animal/SA = L + if(SA.mob_size > MOB_SIZE_TINY) + snap = 1 + if(L.movement_type & FLYING) + snap = 0 + if(snap) + armed = 0 + icon_state = "[initial(icon_state)][armed]" + playsound(src.loc, 'sound/effects/snap.ogg', 50, 1) + L.visible_message("[L] triggers \the [src].", \ + "You trigger \the [src]!") + L.apply_damage(trap_damage,BRUTE, def_zone) + ..() + +/obj/item/restraints/legcuffs/beartrap/energy + name = "energy snare" + armed = 1 + icon_state = "e_snare" + trap_damage = 0 + flags_1 = DROPDEL_1 + +/obj/item/restraints/legcuffs/beartrap/energy/New() + ..() + addtimer(CALLBACK(src, .proc/dissipate), 100) + +/obj/item/restraints/legcuffs/beartrap/energy/proc/dissipate() + if(!ismob(loc)) + do_sparks(1, TRUE, src) + qdel(src) + +/obj/item/restraints/legcuffs/beartrap/energy/attack_hand(mob/user) + Crossed(user) //honk + +/obj/item/restraints/legcuffs/beartrap/energy/cyborg + breakouttime = 20 // Cyborgs shouldn't have a strong restraint + +/obj/item/restraints/legcuffs/bola + name = "bola" + desc = "A restraining device designed to be thrown at the target. Upon connecting with said target, it will wrap around their legs, making it difficult for them to move quickly." + icon_state = "bola" + breakouttime = 35//easy to apply, easy to break out of + gender = NEUTER + origin_tech = "engineering=3;combat=1" + var/knockdown = 0 + +/obj/item/restraints/legcuffs/bola/throw_at(atom/target, range, speed, mob/thrower, spin=1, diagonals_first = 0, datum/callback/callback) + if(!..()) + return + playsound(src.loc,'sound/weapons/bolathrow.ogg', 75, 1) + +/obj/item/restraints/legcuffs/bola/throw_impact(atom/hit_atom) + if(..() || !iscarbon(hit_atom))//if it gets caught or the target can't be cuffed, + return//abort + var/mob/living/carbon/C = hit_atom + if(!C.legcuffed && C.get_num_legs() >= 2) + visible_message("\The [src] ensnares [C]!") + C.legcuffed = src + src.loc = C + C.update_inv_legcuffed() + SSblackbox.add_details("handcuffs","[type]") + to_chat(C, "\The [src] ensnares you!") + C.Knockdown(knockdown) + +/obj/item/restraints/legcuffs/bola/tactical//traitor variant + name = "reinforced bola" + desc = "A strong bola, made with a long steel chain. It looks heavy, enough so that it could trip somebody." + icon_state = "bola_r" + breakouttime = 70 + origin_tech = "engineering=4;combat=3" + knockdown = 20 + +/obj/item/restraints/legcuffs/bola/energy //For Security + name = "energy bola" + desc = "A specialized hard-light bola designed to ensnare fleeing criminals and aid in arrests." + icon_state = "ebola" + hitsound = 'sound/weapons/taserhit.ogg' + w_class = WEIGHT_CLASS_SMALL + breakouttime = 60 + +/obj/item/restraints/legcuffs/bola/energy/throw_impact(atom/hit_atom) + if(iscarbon(hit_atom)) + var/obj/item/restraints/legcuffs/beartrap/B = new /obj/item/restraints/legcuffs/beartrap/energy/cyborg(get_turf(hit_atom)) + B.Crossed(hit_atom) + qdel(src) + ..() +>>>>>>> b6d349e... Remove drop_item, drop_item_v, put_in_hands_or_del (#31386) diff --git a/code/game/objects/items/melee/misc.dm b/code/game/objects/items/melee/misc.dm index d727c517bd..cff958926d 100644 --- a/code/game/objects/items/melee/misc.dm +++ b/code/game/objects/items/melee/misc.dm @@ -233,7 +233,7 @@ /obj/item/melee/supermatter_sword/afterattack(target, mob/user, proximity_flag) if(user && target == user) - user.drop_item() + user.dropItemToGround(src) if(proximity_flag) consume_everything(target) ..() @@ -243,7 +243,7 @@ if(ismob(target)) var/mob/M if(src.loc == M) - M.drop_item() + M.dropItemToGround(src) consume_everything(target) /obj/item/melee/supermatter_sword/pickup(user) @@ -267,7 +267,7 @@ /obj/item/melee/supermatter_sword/suicide_act(mob/user) user.visible_message("[user] touches [src]'s blade. It looks like [user.p_theyre()] tired of waiting for the radiation to kill [user.p_them()]!") - user.drop_item() + user.dropItemToGround(src, TRUE) shard.CollidedWith(user) /obj/item/melee/supermatter_sword/proc/consume_everything(target) diff --git a/code/game/objects/items/paiwire.dm b/code/game/objects/items/paiwire.dm index e0900ba50d..6b6b3101c6 100644 --- a/code/game/objects/items/paiwire.dm +++ b/code/game/objects/items/paiwire.dm @@ -1,3 +1,4 @@ +<<<<<<< HEAD /obj/item/pai_cable desc = "A flexible coated cable with a universal jack on one end." name = "data cable" @@ -11,4 +12,18 @@ return user.visible_message("[user] inserts [src] into a data port on [M].", "You insert [src] into a data port on [M].", "You hear the satisfying click of a wire jack fastening into place.") src.loc = M +======= +/obj/item/pai_cable + desc = "A flexible coated cable with a universal jack on one end." + name = "data cable" + icon = 'icons/obj/power.dmi' + icon_state = "wire1" + flags_1 = NOBLUDGEON_1 + var/obj/machinery/machine + +/obj/item/pai_cable/proc/plugin(obj/machinery/M, mob/living/user) + if(!user.transferItemToLoc(src, M)) + return + user.visible_message("[user] inserts [src] into a data port on [M].", "You insert [src] into a data port on [M].", "You hear the satisfying click of a wire jack fastening into place.") +>>>>>>> b6d349e... Remove drop_item, drop_item_v, put_in_hands_or_del (#31386) machine = M \ No newline at end of file diff --git a/code/game/objects/items/pneumaticCannon.dm b/code/game/objects/items/pneumaticCannon.dm index 6cb26b3144..9400303b84 100644 --- a/code/game/objects/items/pneumaticCannon.dm +++ b/code/game/objects/items/pneumaticCannon.dm @@ -122,7 +122,7 @@ return if(user.disabilities & CLUMSY && prob(75) && clumsyCheck) user.visible_message("[user] loses their grip on [src], causing it to go off!", "[src] slips out of your hands and goes off!") - user.drop_item() + user.dropItemToGround(src, TRUE) if(prob(10)) target = get_turf(user) else diff --git a/code/game/objects/items/robot/robot_parts.dm b/code/game/objects/items/robot/robot_parts.dm index 3d7b4a9603..f47c5d30eb 100644 --- a/code/game/objects/items/robot/robot_parts.dm +++ b/code/game/objects/items/robot/robot_parts.dm @@ -254,7 +254,7 @@ if(!isturf(loc)) to_chat(user, "You cannot install[M], the frame has to be standing on the ground to be perfectly precise!") return - if(!user.drop_item()) + if(!user.temporarilyRemoveItemFromInventory(M)) to_chat(user, "[M] is stuck to your hand!") return qdel(M) diff --git a/code/game/objects/items/storage/backpack.dm b/code/game/objects/items/storage/backpack.dm index 3e9231f562..2428524383 100644 --- a/code/game/objects/items/storage/backpack.dm +++ b/code/game/objects/items/storage/backpack.dm @@ -48,7 +48,7 @@ /obj/item/storage/backpack/holding/suicide_act(mob/living/user) user.visible_message("[user] is jumping into [src]! It looks like [user.p_theyre()] trying to commit suicide.") - user.drop_item() + user.dropItemToGround(src, TRUE) user.Stun(100, ignore_canstun = TRUE) sleep(20) playsound(src, "rustle", 50, 1, -5) diff --git a/code/game/objects/items/storage/boxes.dm b/code/game/objects/items/storage/boxes.dm index 489f1c6bf0..313988b7d4 100644 --- a/code/game/objects/items/storage/boxes.dm +++ b/code/game/objects/items/storage/boxes.dm @@ -57,11 +57,9 @@ close_all() to_chat(user, "You fold [src] flat.") - var/obj/item/I = new foldable(get_turf(src)) - user.drop_item() - user.put_in_hands(I) - user.update_inv_hands() + var/obj/item/I = new foldable qdel(src) + user.put_in_hands(I) /obj/item/storage/box/attackby(obj/item/W, mob/user, params) if(istype(W, /obj/item/stack/packageWrap)) diff --git a/code/game/objects/items/toys.dm b/code/game/objects/items/toys.dm index a683902a6c..85f5de7526 100644 --- a/code/game/objects/items/toys.dm +++ b/code/game/objects/items/toys.dm @@ -1022,8 +1022,8 @@ throwforce = 12 //pelt your enemies to death with lumps of snow /obj/item/toy/snowball/afterattack(atom/target as mob|obj|turf|area, mob/user) - user.drop_item() - src.throw_at(target, throw_range, throw_speed) + if(user.dropItemToGround(src)) + throw_at(target, throw_range, throw_speed) /obj/item/toy/snowball/throw_impact(atom/hit_atom) if(!..()) @@ -1041,8 +1041,8 @@ w_class = WEIGHT_CLASS_BULKY //Stops people from hiding it in their bags/pockets /obj/item/toy/beach_ball/afterattack(atom/target as mob|obj|turf|area, mob/user) - user.drop_item() - src.throw_at(target, throw_range, throw_speed) + if(user.dropItemToGround(src)) + throw_at(target, throw_range, throw_speed) /* * Xenomorph action figure diff --git a/code/game/objects/structures.dm b/code/game/objects/structures.dm index b1103ac1da..5504c1a8fc 100644 --- a/code/game/objects/structures.dm +++ b/code/game/objects/structures.dm @@ -20,6 +20,7 @@ /obj/structure/Destroy() GLOB.cameranet.updateVisibility(src) +<<<<<<< HEAD if(smooth) queue_smooth_neighbors(src) return ..() @@ -61,6 +62,49 @@ /obj/structure/proc/do_climb(atom/movable/A) if(climbable) +======= + if(smooth) + queue_smooth_neighbors(src) + return ..() + +/obj/structure/attack_hand(mob/user) + . = ..() + add_fingerprint(user) + if(structureclimber && structureclimber != user) + user.changeNext_move(CLICK_CD_MELEE) + user.do_attack_animation(src) + structureclimber.Knockdown(40) + structureclimber.visible_message("[structureclimber.name] has been knocked off the [src]", "You're knocked off the [src]!", "You see [structureclimber.name] get knocked off the [src]") + interact(user) + +/obj/structure/interact(mob/user) + ui_interact(user) + +/obj/structure/ui_act(action, params) + ..() + add_fingerprint(usr) + +/obj/structure/MouseDrop_T(atom/movable/O, mob/user) + . = ..() + if(!climbable) + return + if(user == O && iscarbon(O)) + if(user.canmove) + climb_structure(user) + return + if ((!( istype(O, /obj/item) ) || user.get_active_held_item() != O)) + return + if(iscyborg(user)) + return + if(!user.drop_all_held_items()) + return + if (O.loc != src.loc) + step(O, get_dir(O, src)) + return + +/obj/structure/proc/do_climb(atom/movable/A) + if(climbable) +>>>>>>> b6d349e... Remove drop_item, drop_item_v, put_in_hands_or_del (#31386) density = FALSE . = step(A,get_dir(A,src.loc)) density = TRUE diff --git a/code/game/objects/structures/beds_chairs/chair.dm b/code/game/objects/structures/beds_chairs/chair.dm index 9d6985c620..606b10da0a 100644 --- a/code/game/objects/structures/beds_chairs/chair.dm +++ b/code/game/objects/structures/beds_chairs/chair.dm @@ -58,14 +58,14 @@ playsound(src.loc, W.usesound, 50, 1) deconstruct() else if(istype(W, /obj/item/assembly/shock_kit)) - if(!user.drop_item()) + if(!user.temporarilyRemoveItemFromInventory(W)) return var/obj/item/assembly/shock_kit/SK = W var/obj/structure/chair/e_chair/E = new /obj/structure/chair/e_chair(src.loc) playsound(src.loc, 'sound/items/deconstruct.ogg', 50, 1) E.setDir(dir) E.part = SK - SK.loc = E + SK.forceMove(E) SK.master = E qdel(src) else diff --git a/code/game/objects/structures/bedsheet_bin.dm b/code/game/objects/structures/bedsheet_bin.dm index 68de701967..f6e2023943 100644 --- a/code/game/objects/structures/bedsheet_bin.dm +++ b/code/game/objects/structures/bedsheet_bin.dm @@ -27,7 +27,8 @@ LINEN BINS ..() /obj/item/bedsheet/attack_self(mob/user) - user.drop_item() + if(!user.dropItemToGround(src)) + return if(layer == initial(layer)) layer = ABOVE_MOB_LAYER to_chat(user, "You cover yourself with [src].") @@ -275,18 +276,16 @@ LINEN BINS /obj/structure/bedsheetbin/attackby(obj/item/I, mob/user, params) if(istype(I, /obj/item/bedsheet)) - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) return - I.loc = src sheets.Add(I) amount++ to_chat(user, "You put [I] in [src].") update_icon() else if(amount && !hidden && I.w_class < WEIGHT_CLASS_BULKY) //make sure there's sheets to hide it among, make sure nothing else is hidden in there. - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) to_chat(user, "\The [I] is stuck to your hand, you cannot hide it among the sheets!") return - I.loc = src hidden = I to_chat(user, "You hide [I] among the sheets.") diff --git a/code/game/objects/structures/crates_lockers/closets.dm b/code/game/objects/structures/crates_lockers/closets.dm index 3d77be1bb5..4e3056f39a 100644 --- a/code/game/objects/structures/crates_lockers/closets.dm +++ b/code/game/objects/structures/crates_lockers/closets.dm @@ -229,8 +229,7 @@ "You cut \the [src] apart with \the [W].") deconstruct(TRUE) return 0 - if(user.drop_item()) // so we put in unlit welder too - W.forceMove(loc) + if(user.transferItemToLoc(W, drop_location())) // so we put in unlit welder too return 1 else if(istype(W, /obj/item/weldingtool) && can_weld_shut) var/obj/item/weldingtool/WT = W diff --git a/code/game/objects/structures/door_assembly.dm b/code/game/objects/structures/door_assembly.dm index a5173a5f80..448b358c1a 100644 --- a/code/game/objects/structures/door_assembly.dm +++ b/code/game/objects/structures/door_assembly.dm @@ -602,10 +602,9 @@ if(do_after(user, 40, target = src)) if( src.state != 1 ) return - if(!user.drop_item()) + if(!user.transferItemToLoc(W, src)) return - W.loc = src to_chat(user, "You install the airlock electronics.") src.state = 2 src.name = "near finished airlock assembly" diff --git a/code/game/objects/structures/extinguisher.dm b/code/game/objects/structures/extinguisher.dm index e61e1a1870..0a3574b1a6 100644 --- a/code/game/objects/structures/extinguisher.dm +++ b/code/game/objects/structures/extinguisher.dm @@ -54,9 +54,8 @@ return if(istype(I, /obj/item/extinguisher)) if(!stored_extinguisher && opened) - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) return - contents += I stored_extinguisher = I to_chat(user, "You place [I] in [src].") update_icon() diff --git a/code/game/objects/structures/fireaxe.dm b/code/game/objects/structures/fireaxe.dm index 803c4d4627..afcd855caf 100644 --- a/code/game/objects/structures/fireaxe.dm +++ b/code/game/objects/structures/fireaxe.dm @@ -53,10 +53,9 @@ if(F.wielded) to_chat(user, "Unwield the [F.name] first.") return - if(!user.drop_item()) + if(!user.transferItemToLoc(F, src)) return fireaxe = F - F.forceMove(src) to_chat(user, "You place the [F.name] back in the [name].") update_icon() return diff --git a/code/game/objects/structures/girders.dm b/code/game/objects/structures/girders.dm index 3d7e9be21a..b3b6022834 100644 --- a/code/game/objects/structures/girders.dm +++ b/code/game/objects/structures/girders.dm @@ -259,9 +259,8 @@ else if(istype(W, /obj/item/pipe)) var/obj/item/pipe/P = W if (P.pipe_type in list(0, 1, 5)) //simple pipes, simple bends, and simple manifolds. - if(!user.drop_item()) + if(!user.transferItemToLoc(P, drop_location())) return - P.loc = src.loc to_chat(user, "You fit the pipe into \the [src].") else return ..() diff --git a/code/game/objects/structures/guncase.dm b/code/game/objects/structures/guncase.dm index 24a6bd4ceb..ac6a69ed93 100644 --- a/code/game/objects/structures/guncase.dm +++ b/code/game/objects/structures/guncase.dm @@ -39,9 +39,8 @@ return if(istype(I, gun_category) && open) if(LAZYLEN(contents) < capacity) - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) return - I.forceMove(src) to_chat(user, "You place [I] in [src].") update_icon() else diff --git a/code/game/objects/structures/janicart.dm b/code/game/objects/structures/janicart.dm index 58db777abe..747e0b3317 100644 --- a/code/game/objects/structures/janicart.dm +++ b/code/game/objects/structures/janicart.dm @@ -32,9 +32,8 @@ return 1 /obj/structure/janitorialcart/proc/put_in_cart(obj/item/I, mob/user) - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) return - I.loc = src updateUsrDialog() to_chat(user, "You put [I] into [src].") return diff --git a/code/game/objects/structures/safe.dm b/code/game/objects/structures/safe.dm index dc4ffe37b6..0ba290ac31 100644 --- a/code/game/objects/structures/safe.dm +++ b/code/game/objects/structures/safe.dm @@ -159,10 +159,9 @@ FLOOR SAFES . = 1 //no afterattack if(I.w_class + space <= maxspace) space += I.w_class - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) to_chat(user, "\The [I] is stuck to your hand, you cannot put it in the safe!") return - I.forceMove(src) to_chat(user, "You put [I] in [src].") updateUsrDialog() return diff --git a/code/game/objects/structures/signs.dm b/code/game/objects/structures/signs.dm index afa74cbb5e..fb46dd45de 100644 --- a/code/game/objects/structures/signs.dm +++ b/code/game/objects/structures/signs.dm @@ -104,7 +104,6 @@ "You attach the sign to [T].") playsound(T, 'sound/items/deconstruct.ogg', 50, 1) new sign_path(T) - user.drop_item() qdel(src) else return ..() diff --git a/code/game/objects/structures/tables_racks.dm b/code/game/objects/structures/tables_racks.dm index c54661066a..a3dfe2b669 100644 --- a/code/game/objects/structures/tables_racks.dm +++ b/code/game/objects/structures/tables_racks.dm @@ -131,8 +131,7 @@ // If the tray IS empty, continue on (tray will be placed on the table like other items) if(user.a_intent != INTENT_HARM && !(I.flags_1 & ABSTRACT_1)) - if(user.drop_item()) - I.Move(loc) + if(user.transferItemToLoc(I, drop_location())) var/list/click_params = params2list(params) //Center the icon where the user clicked. if(!click_params || !click_params["icon-x"] || !click_params["icon-y"]) @@ -439,7 +438,7 @@ /obj/structure/rack/MouseDrop_T(obj/O, mob/user) if ((!( istype(O, /obj/item) ) || user.get_active_held_item() != O)) return - if(!user.drop_item()) + if(!user.dropItemToGround(O)) return if(O.loc != src.loc) step(O, get_dir(O, src)) @@ -452,8 +451,7 @@ return if(user.a_intent == INTENT_HARM) return ..() - if(user.drop_item()) - W.Move(loc) + if(user.transferItemToLoc(W, drop_location())) return 1 /obj/structure/rack/attack_paw(mob/living/user) @@ -516,7 +514,7 @@ building = TRUE to_chat(user, "You start constructing a rack...") if(do_after(user, 50, target = user, progress=TRUE)) - if(!user.drop_item()) + if(!user.temporarilyRemoveItemFromInventory(src)) return var/obj/structure/rack/R = new /obj/structure/rack(user.loc) user.visible_message("[user] assembles \a [R].\ diff --git a/code/game/objects/structures/tank_dispenser.dm b/code/game/objects/structures/tank_dispenser.dm index 1699010309..076f39b85f 100644 --- a/code/game/objects/structures/tank_dispenser.dm +++ b/code/game/objects/structures/tank_dispenser.dm @@ -62,9 +62,8 @@ to_chat(user, "[src] can't hold any more of [I].") return - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) return - I.loc = src to_chat(user, "You put [I] in [src].") update_icon() diff --git a/code/game/objects/structures/target_stake.dm b/code/game/objects/structures/target_stake.dm index dc6d350c91..b70326b893 100644 --- a/code/game/objects/structures/target_stake.dm +++ b/code/game/objects/structures/target_stake.dm @@ -5,6 +5,7 @@ icon_state = "target_stake" density = TRUE flags_1 = CONDUCT_1 +<<<<<<< HEAD var/obj/item/target/pinned_target /obj/structure/target_stake/Destroy() @@ -52,4 +53,52 @@ if(pinned_target) pinned_target.bullet_act(P) else +======= + var/obj/item/target/pinned_target + +/obj/structure/target_stake/Destroy() + if(pinned_target) + pinned_target.nullPinnedLoc() + return ..() + +/obj/structure/target_stake/proc/nullPinnedTarget() + pinned_target = null + +/obj/structure/target_stake/Move() + ..() + if(pinned_target) + pinned_target.loc = loc + +/obj/structure/target_stake/attackby(obj/item/target/T, mob/user) + if(pinned_target) + return + if(istype(T) && user.transferItemToLoc(T, drop_location())) + pinned_target = T + T.pinnedLoc = src + T.density = TRUE + T.layer = OBJ_LAYER + 0.01 + to_chat(user, "You slide the target into the stake.") + +/obj/structure/target_stake/attack_hand(mob/user) + if(pinned_target) + removeTarget(user) + +/obj/structure/target_stake/proc/removeTarget(mob/user) + pinned_target.layer = OBJ_LAYER + pinned_target.loc = user.loc + pinned_target.nullPinnedLoc() + nullPinnedTarget() + if(ishuman(user)) + if(!user.get_active_held_item()) + user.put_in_hands(pinned_target) + to_chat(user, "You take the target out of the stake.") + else + pinned_target.loc = get_turf(user) + to_chat(user, "You take the target out of the stake.") + +/obj/structure/target_stake/bullet_act(obj/item/projectile/P) + if(pinned_target) + pinned_target.bullet_act(P) + else +>>>>>>> b6d349e... Remove drop_item, drop_item_v, put_in_hands_or_del (#31386) ..() \ No newline at end of file diff --git a/code/game/objects/structures/watercloset.dm b/code/game/objects/structures/watercloset.dm index a475bb7069..18d8b8f7f0 100644 --- a/code/game/objects/structures/watercloset.dm +++ b/code/game/objects/structures/watercloset.dm @@ -88,10 +88,9 @@ if(w_items + I.w_class > WEIGHT_CLASS_HUGE) to_chat(user, "The cistern is full!") return - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) to_chat(user, "\The [I] is stuck to your hand, you cannot put it in the cistern!") return - I.loc = src w_items += I.w_class to_chat(user, "You carefully place [I] into the cistern.") @@ -173,10 +172,9 @@ if(I.w_class > 1) to_chat(user, "[I] is too large for the drain enclosure.") return - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) to_chat(user, "\[I] is stuck to your hand, you cannot put it in the drain enclosure!") return - I.forceMove(src) hiddenitem = I to_chat(user, "You place [I] into the drain enclosure.") diff --git a/code/game/objects/structures/windoor_assembly.dm b/code/game/objects/structures/windoor_assembly.dm index c4a0d48dde..cb22c2a8c1 100644 --- a/code/game/objects/structures/windoor_assembly.dm +++ b/code/game/objects/structures/windoor_assembly.dm @@ -208,11 +208,10 @@ //Adding airlock electronics for access. Step 6 complete. else if(istype(W, /obj/item/electronics/airlock)) - if(!user.drop_item()) + if(!user.transferItemToLoc(W, src)) return playsound(loc, W.usesound, 100, 1) user.visible_message("[user] installs the electronics into the airlock assembly.", "You start to install electronics into the airlock assembly...") - W.loc = src if(do_after(user, 40, target = src)) if(!src || electronics) diff --git a/code/game/turfs/simulated/floor/light_floor.dm b/code/game/turfs/simulated/floor/light_floor.dm index 0dd3673f6a..f0fb7c4448 100644 --- a/code/game/turfs/simulated/floor/light_floor.dm +++ b/code/game/turfs/simulated/floor/light_floor.dm @@ -72,7 +72,7 @@ if(..()) return if(istype(C, /obj/item/light/bulb)) //only for light tiles - if(state && user.drop_item()) + if(state && user.temporarilyRemoveItemFromInventory(C)) qdel(C) state = 0 //fixing it by bashing it with a light bulb, fun eh? update_icon() diff --git a/code/modules/assembly/bomb.dm b/code/modules/assembly/bomb.dm index 0dcd676213..ebd2214aba 100644 --- a/code/modules/assembly/bomb.dm +++ b/code/modules/assembly/bomb.dm @@ -89,22 +89,20 @@ var/mob/M = user if(isigniter(S.a_left) == isigniter(S.a_right)) //Check if either part of the assembly has an igniter, but if both parts are igniters, then fuck it return - if(!M.drop_item()) //Remove the assembly from your hands + if(!M.temporarilyRemoveItemFromInventory(src)) //Remove the assembly from your hands return - var/obj/item/device/onetankbomb/R = new /obj/item/device/onetankbomb(loc) + var/obj/item/device/onetankbomb/R = new - M.temporarilyRemoveItemFromInventory(src, TRUE) //Remove the tank from your character,in case you were holding it - if(!M.put_in_hands(R)) //Equips the bomb if possible, or puts it on the floor. - forceMove(get_turf(M)) + M.put_in_hands(R) //Equips the bomb if possible, or puts it on the floor. R.bombassembly = S //Tell the bomb about its assembly part S.master = R //Tell the assembly about its new owner - S.loc = R //Move the assembly out of the fucking way + S.forceMove(R) //Move the assembly out of the fucking way R.bombtank = src //Same for tank master = R - loc = R + forceMove(R) R.update_icon() return diff --git a/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm b/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm index e368fdde92..efc6a8e899 100644 --- a/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm +++ b/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm @@ -276,10 +276,9 @@ if(beaker) to_chat(user, "A beaker is already loaded into [src]!") return - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) return beaker = I - I.loc = src user.visible_message("[user] places [I] in [src].", \ "You place [I] in [src].") var/reagentlist = pretty_string_from_reagent_list(I.reagents.reagent_list) diff --git a/code/modules/atmospherics/machinery/portable/portable_atmospherics.dm b/code/modules/atmospherics/machinery/portable/portable_atmospherics.dm index 9a2ecb6fea..96a5b8e489 100644 --- a/code/modules/atmospherics/machinery/portable/portable_atmospherics.dm +++ b/code/modules/atmospherics/machinery/portable/portable_atmospherics.dm @@ -80,9 +80,8 @@ if(istype(W, /obj/item/tank)) if(!(stat & BROKEN)) var/obj/item/tank/T = W - if(holding || !user.drop_item()) + if(holding || !user.transferItemToLoc(T, src)) return - T.loc = src holding = T update_icon() else if(istype(W, /obj/item/wrench)) diff --git a/code/modules/awaymissions/mission_code/Academy.dm b/code/modules/awaymissions/mission_code/Academy.dm index 1bc43cc293..87583ebea1 100644 --- a/code/modules/awaymissions/mission_code/Academy.dm +++ b/code/modules/awaymissions/mission_code/Academy.dm @@ -174,7 +174,7 @@ /obj/item/dice/d20/fate/equipped(mob/user, slot) if(!ishuman(user) || !user.mind || (user.mind in SSticker.mode.wizards)) to_chat(user, "You feel the magic of the dice is restricted to ordinary humans! You should leave it alone.") - user.drop_item() + user.dropItemToGround(src) /obj/item/dice/d20/fate/proc/effect(var/mob/living/carbon/human/user,roll) diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index 237714eb8e..ed81aa0fbf 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -592,7 +592,7 @@ BLIND // can't see anything to_chat(user, "[src] already has an accessory.") return else - if(user && !user.drop_item()) + if(user && !user.temporarilyRemoveItemFromInventory(I)) return if(!A.attach(src, user)) return diff --git a/code/modules/food_and_drinks/drinks/drinks/bottle.dm b/code/modules/food_and_drinks/drinks/drinks/bottle.dm index 67fd017153..63ff85ac17 100644 --- a/code/modules/food_and_drinks/drinks/drinks/bottle.dm +++ b/code/modules/food_and_drinks/drinks/drinks/bottle.dm @@ -22,13 +22,10 @@ /obj/item/reagent_containers/food/drinks/bottle/proc/smash(mob/living/target, mob/living/user, ranged = 0) //Creates a shattering noise and replaces the bottle with a broken_bottle - var/new_location = get_turf(loc) + var/new_location = get_turf(src) var/obj/item/broken_bottle/B = new /obj/item/broken_bottle(new_location) - if(ranged) - B.loc = new_location - else - user.drop_item() - user.put_in_active_hand(B) + if(!ranged) + user.put_in_hands(B) B.icon_state = src.icon_state var/icon/I = new('icons/obj/drinks.dmi', src.icon_state) diff --git a/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm b/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm index 0f27265b4b..df323a99ff 100644 --- a/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm +++ b/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm @@ -58,10 +58,9 @@ insert ascii eagle on american flag background here else if(is_type_in_typecache(I, deepfry_blacklisted_items)) . = ..() - else if(user.drop_item() && !frying) + else if(!frying && user.transferItemToLoc(I, src)) to_chat(user, "You put [I] into [src].") frying = I - frying.forceMove(src) icon_state = "fryer_on" /obj/machinery/deepfryer/process() diff --git a/code/modules/food_and_drinks/kitchen_machinery/food_cart.dm b/code/modules/food_and_drinks/kitchen_machinery/food_cart.dm index ee29690027..d6037af55b 100644 --- a/code/modules/food_and_drinks/kitchen_machinery/food_cart.dm +++ b/code/modules/food_and_drinks/kitchen_machinery/food_cart.dm @@ -68,8 +68,6 @@ if(istype(O, /obj/item/reagent_containers/food/drinks/drinkingglass)) var/obj/item/reagent_containers/food/drinks/drinkingglass/DG = O if(!DG.reagents.total_volume) //glass is empty - if(!user.drop_item()) - return qdel(DG) glasses++ to_chat(user, "The [src] accepts the drinking glass, sterilizing it.") @@ -78,9 +76,8 @@ to_chat(user, "The [src] is at full capacity.") else var/obj/item/reagent_containers/food/snacks/S = O - if(!user.drop_item()) + if(!user.transferItemToLoc(S, src)) return - S.loc = src if(stored_food[sanitize(S.name)]) stored_food[sanitize(S.name)]++ else diff --git a/code/modules/food_and_drinks/kitchen_machinery/microwave.dm b/code/modules/food_and_drinks/kitchen_machinery/microwave.dm index e25b29f721..fd2471b96e 100644 --- a/code/modules/food_and_drinks/kitchen_machinery/microwave.dm +++ b/code/modules/food_and_drinks/kitchen_machinery/microwave.dm @@ -142,11 +142,10 @@ to_chat(user, "[src] is full, you can't put anything in!") return 1 else - if(!user.drop_item()) + if(!user.transferItemToLoc(O, src)) to_chat(user, "\the [O] is stuck to your hand, you cannot put it in \the [src]!") return 0 - O.loc = src user.visible_message( \ "[user] has added \the [O] to \the [src].", \ "You add \the [O] to \the [src].") diff --git a/code/modules/food_and_drinks/kitchen_machinery/processor.dm b/code/modules/food_and_drinks/kitchen_machinery/processor.dm index 6e245bd386..fb871f2c3a 100644 --- a/code/modules/food_and_drinks/kitchen_machinery/processor.dm +++ b/code/modules/food_and_drinks/kitchen_machinery/processor.dm @@ -195,8 +195,7 @@ if(P) user.visible_message("[user] put [O] into [src].", \ "You put [O] into [src].") - user.drop_item() - O.loc = src + user.transferItemToLoc(O, src, TRUE) return 1 else if(user.a_intent != INTENT_HARM) diff --git a/code/modules/food_and_drinks/pizzabox.dm b/code/modules/food_and_drinks/pizzabox.dm index 82fcc8c538..6788d1fc92 100644 --- a/code/modules/food_and_drinks/pizzabox.dm +++ b/code/modules/food_and_drinks/pizzabox.dm @@ -178,20 +178,18 @@ if(pizza) to_chat(user, "[src] already has \a [pizza.name]!") return - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) return pizza = I - I.loc = src to_chat(user, "You put [I] in [src].") update_icon() return else if(istype(I, /obj/item/bombcore/pizza)) if(open && !bomb) - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) return wires = new /datum/wires/explosive/pizza(src) bomb = I - I.loc = src to_chat(user, "You put [I] in [src]. Sneeki breeki...") update_icon() return diff --git a/code/modules/holodeck/items.dm b/code/modules/holodeck/items.dm index 86481b4c14..a735a48ff4 100644 --- a/code/modules/holodeck/items.dm +++ b/code/modules/holodeck/items.dm @@ -104,7 +104,7 @@ /obj/structure/holohoop/attackby(obj/item/W as obj, mob/user as mob, params) if(get_dist(src,user)<2) - if(user.drop_item(src)) + if(user.transferItemToLoc(W, drop_location())) visible_message(" [user] dunks [W] into \the [src]!") /obj/structure/holohoop/attack_hand(mob/user) @@ -211,9 +211,7 @@ /obj/machinery/conveyor/holodeck /obj/machinery/conveyor/holodeck/attackby(obj/item/I, mob/user, params) - if(user.drop_item()) - I.loc = src.loc - else + if(!user.transferItemToLoc(I, drop_location())) return ..() /obj/item/paper/fluff/holodeck/trek_diploma diff --git a/code/modules/hydroponics/biogenerator.dm b/code/modules/hydroponics/biogenerator.dm index 5c9b0dac5e..1535173f8d 100644 --- a/code/modules/hydroponics/biogenerator.dm +++ b/code/modules/hydroponics/biogenerator.dm @@ -95,9 +95,8 @@ if(beaker) to_chat(user, "A container is already loaded into the machine.") else - if(!user.drop_item()) + if(!user.transferItemToLoc(O, src)) return - O.loc = src beaker = O to_chat(user, "You add the container to the machine.") update_icon() diff --git a/code/modules/hydroponics/gene_modder.dm b/code/modules/hydroponics/gene_modder.dm index 9439346bba..de881a0611 100644 --- a/code/modules/hydroponics/gene_modder.dm +++ b/code/modules/hydroponics/gene_modder.dm @@ -80,7 +80,7 @@ if(seed) to_chat(user, "A sample is already loaded into the machine!") else - if(!user.drop_item()) + if(!user.temporarilyRemoveItemFromInventory()) return insert_seed(I) to_chat(user, "You add [I] to the machine.") @@ -90,10 +90,9 @@ if(disk) to_chat(user, "A data disk is already loaded into the machine!") else - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) return disk = I - disk.loc = src to_chat(user, "You add [I] to the machine.") interact(user) else @@ -269,7 +268,7 @@ else var/obj/item/I = usr.get_active_held_item() if (istype(I, /obj/item/seeds)) - if(!usr.drop_item()) + if(!usr.temporarilyRemoveItemFromInventory(I)) return insert_seed(I) to_chat(usr, "You add [I] to the machine.") @@ -283,10 +282,9 @@ else var/obj/item/I = usr.get_active_held_item() if(istype(I, /obj/item/disk/plantgene)) - if(!usr.drop_item()) + if(!usr.transferItemToLoc(I, src)) return disk = I - disk.loc = src to_chat(usr, "You add [I] to the machine.") else if(href_list["op"] == "insert" && disk && disk.gene && seed) if(!operation) // Wait for confirmation diff --git a/code/modules/hydroponics/grown/cereals.dm b/code/modules/hydroponics/grown/cereals.dm index 5e32701526..7834ed15e8 100644 --- a/code/modules/hydroponics/grown/cereals.dm +++ b/code/modules/hydroponics/grown/cereals.dm @@ -87,8 +87,7 @@ /obj/item/reagent_containers/food/snacks/grown/meatwheat/attack_self(mob/living/user) user.visible_message("[user] crushes [src] into meat.", "You crush [src] into something that resembles meat.") playsound(user, 'sound/effects/blobattack.ogg', 50, 1) - var/obj/item/reagent_containers/food/snacks/meat/slab/meatwheat/M = new(get_turf(user)) - user.drop_item() + var/obj/item/reagent_containers/food/snacks/meat/slab/meatwheat/M = new qdel(src) user.put_in_hands(M) return 1 diff --git a/code/modules/hydroponics/grown/nettle.dm b/code/modules/hydroponics/grown/nettle.dm index ba56219062..6f54ea5e9b 100644 --- a/code/modules/hydroponics/grown/nettle.dm +++ b/code/modules/hydroponics/grown/nettle.dm @@ -114,4 +114,4 @@ if(prob(20)) M.Unconscious(force / 0.3) M.Knockdown(force / 0.75) - M.drop_item() + M.drop_all_held_items() diff --git a/code/modules/hydroponics/seed_extractor.dm b/code/modules/hydroponics/seed_extractor.dm index 5d609a9e69..3cc45bf9be 100644 --- a/code/modules/hydroponics/seed_extractor.dm +++ b/code/modules/hydroponics/seed_extractor.dm @@ -1,3 +1,4 @@ +<<<<<<< HEAD /proc/seedify(obj/item/O, t_max, obj/machinery/seed_extractor/extractor, mob/living/user) var/t_amount = 0 if(t_max == -1) @@ -42,6 +43,52 @@ desc = "Extracts and bags seeds from produce." icon = 'icons/obj/hydroponics/equipment.dmi' icon_state = "sextractor" +======= +/proc/seedify(obj/item/O, t_max, obj/machinery/seed_extractor/extractor, mob/living/user) + var/t_amount = 0 + if(t_max == -1) + if(extractor) + t_max = rand(1,4) * extractor.seed_multiplier + else + t_max = rand(1,4) + + var/seedloc = O.loc + if(extractor) + seedloc = extractor.loc + + if(istype(O, /obj/item/reagent_containers/food/snacks/grown/)) + var/obj/item/reagent_containers/food/snacks/grown/F = O + if(F.seed) + if(user && !user.temporarilyRemoveItemFromInventory(O)) //couldn't drop the item + return + while(t_amount < t_max) + var/obj/item/seeds/t_prod = F.seed.Copy() + t_prod.loc = seedloc + t_amount++ + qdel(O) + return 1 + + else if(istype(O, /obj/item/grown)) + var/obj/item/grown/F = O + if(F.seed) + if(user && !user.temporarilyRemoveItemFromInventory(O)) + return + while(t_amount < t_max) + var/obj/item/seeds/t_prod = F.seed.Copy() + t_prod.loc = seedloc + t_amount++ + qdel(O) + return 1 + + return 0 + + +/obj/machinery/seed_extractor + name = "seed extractor" + desc = "Extracts and bags seeds from produce." + icon = 'icons/obj/hydroponics/equipment.dmi' + icon_state = "sextractor" +>>>>>>> b6d349e... Remove drop_item, drop_item_v, put_in_hands_or_del (#31386) density = TRUE anchored = TRUE circuit = /obj/item/circuitboard/machine/seed_extractor @@ -90,6 +137,7 @@ to_chat(user, "You extract some seeds.") return else if (istype(O, /obj/item/seeds)) +<<<<<<< HEAD if(add_seed(O)) to_chat(user, "You add [O] to [src.name].") updateUsrDialog() @@ -196,3 +244,110 @@ piles += new /datum/seed_pile(O.plantname, O.lifespan, O.endurance, O.maturation, O.production, O.yield, O.potency) return +======= + if(add_seed(O)) + to_chat(user, "You add [O] to [src.name].") + updateUsrDialog() + return + else if(user.a_intent != INTENT_HARM) + to_chat(user, "You can't extract any seeds from \the [O.name]!") + else + return ..() + +/datum/seed_pile + var/name = "" + var/lifespan = 0 //Saved stats + var/endurance = 0 + var/maturation = 0 + var/production = 0 + var/yield = 0 + var/potency = 0 + var/amount = 0 + +/datum/seed_pile/New(var/name, var/life, var/endur, var/matur, var/prod, var/yie, var/poten, var/am = 1) + src.name = name + src.lifespan = life + src.endurance = endur + src.maturation = matur + src.production = prod + src.yield = yie + src.potency = poten + src.amount = am + +/obj/machinery/seed_extractor/attack_hand(mob/user) + user.set_machine(src) + interact(user) + +/obj/machinery/seed_extractor/interact(mob/user) + if (stat) + return 0 + + var/dat = "Stored seeds:
" + + if (contents.len == 0) + dat += "No seeds" + else + dat += "" + for (var/datum/seed_pile/O in piles) + dat += "" + dat += "" + dat += "
NameLifespanEnduranceMaturationProductionYieldPotencyStock
[O.name][O.lifespan][O.endurance][O.maturation][O.production][O.yield][O.potency]" + dat += "Vend ([O.amount] left)
" + var/datum/browser/popup = new(user, "seed_ext", name, 700, 400) + popup.set_content(dat) + popup.open() + return + +/obj/machinery/seed_extractor/Topic(var/href, var/list/href_list) + if(..()) + return + usr.set_machine(src) + + href_list["li"] = text2num(href_list["li"]) + href_list["en"] = text2num(href_list["en"]) + href_list["ma"] = text2num(href_list["ma"]) + href_list["pr"] = text2num(href_list["pr"]) + href_list["yi"] = text2num(href_list["yi"]) + href_list["pot"] = text2num(href_list["pot"]) + + for (var/datum/seed_pile/N in piles)//Find the pile we need to reduce... + if (href_list["name"] == N.name && href_list["li"] == N.lifespan && href_list["en"] == N.endurance && href_list["ma"] == N.maturation && href_list["pr"] == N.production && href_list["yi"] == N.yield && href_list["pot"] == N.potency) + if(N.amount <= 0) + return + N.amount = max(N.amount - 1, 0) + if (N.amount <= 0) + piles -= N + qdel(N) + break + + for (var/obj/T in contents)//Now we find the seed we need to vend + var/obj/item/seeds/O = T + if (O.plantname == href_list["name"] && O.lifespan == href_list["li"] && O.endurance == href_list["en"] && O.maturation == href_list["ma"] && O.production == href_list["pr"] && O.yield == href_list["yi"] && O.potency == href_list["pot"]) + O.loc = src.loc + break + + src.updateUsrDialog() + return + +/obj/machinery/seed_extractor/proc/add_seed(obj/item/seeds/O) + if(contents.len >= 999) + to_chat(usr, "\The [src] is full.") + return 0 + + if(ismob(O.loc)) + var/mob/M = O.loc + if(!M.transferItemToLoc(O, src)) + return 0 + else if(istype(O.loc, /obj/item/storage)) + var/obj/item/storage/S = O.loc + S.remove_from_storage(O,src) + + . = 1 + for (var/datum/seed_pile/N in piles) + if (O.plantname == N.name && O.lifespan == N.lifespan && O.endurance == N.endurance && O.maturation == N.maturation && O.production == N.production && O.yield == N.yield && O.potency == N.potency) + ++N.amount + return + + piles += new /datum/seed_pile(O.plantname, O.lifespan, O.endurance, O.maturation, O.production, O.yield, O.potency) + return +>>>>>>> b6d349e... Remove drop_item, drop_item_v, put_in_hands_or_del (#31386) diff --git a/code/modules/library/lib_items.dm b/code/modules/library/lib_items.dm index 33f02bc759..711ac4f33a 100644 --- a/code/modules/library/lib_items.dm +++ b/code/modules/library/lib_items.dm @@ -84,9 +84,8 @@ if(2) if(is_type_in_list(I, allowed_books)) - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) return - I.loc = src update_icon() else if(istype(I, /obj/item/storage/bag/books)) var/obj/item/storage/bag/books/B = I diff --git a/code/modules/library/lib_machines.dm b/code/modules/library/lib_machines.dm index dc48bbae2d..081ecdcdaa 100644 --- a/code/modules/library/lib_machines.dm +++ b/code/modules/library/lib_machines.dm @@ -507,9 +507,8 @@ GLOBAL_LIST(cachedbooks) // List of our cached book datums /obj/machinery/libraryscanner/attackby(obj/O, mob/user, params) if(istype(O, /obj/item/book)) - if(!user.drop_item()) + if(!user.transferItemToLoc(O, src)) return - O.loc = src else return ..() @@ -576,9 +575,8 @@ GLOBAL_LIST(cachedbooks) // List of our cached book datums if(busy) to_chat(user, "The book binder is busy. Please wait for completion of previous operation.") return - if(!user.drop_item()) + if(!user.transferItemToLoc(P, src)) return - P.loc = src user.visible_message("[user] loads some paper into [src].", "You load some paper into [src].") audible_message("[src] begins to hum as it warms up its printing drums.") busy = TRUE diff --git a/code/modules/mining/fulton.dm b/code/modules/mining/fulton.dm index d419ce7e38..d76278a410 100644 --- a/code/modules/mining/fulton.dm +++ b/code/modules/mining/fulton.dm @@ -67,8 +67,7 @@ GLOBAL_LIST_EMPTY(total_extraction_beacons) B.handle_item_insertion(src) uses_left-- if(uses_left <= 0) - user.drop_item(src) - loc = A + user.transferItemToLoc(src, A, TRUE) var/mutable_appearance/balloon var/mutable_appearance/balloon2 var/mutable_appearance/balloon3 diff --git a/code/modules/mining/laborcamp/laborstacker.dm b/code/modules/mining/laborcamp/laborstacker.dm index 9ada4c768e..2bcccdb164 100644 --- a/code/modules/mining/laborcamp/laborstacker.dm +++ b/code/modules/mining/laborcamp/laborstacker.dm @@ -20,6 +20,7 @@ Radio = new/obj/item/device/radio(src) Radio.listening = FALSE locate_stacking_machine() +<<<<<<< HEAD /obj/machinery/mineral/labor_claim_console/attackby(obj/item/I, mob/user, params) if(istype(I, /obj/item/card/id/prisoner)) @@ -122,6 +123,108 @@ /obj/machinery/mineral/labor_claim_console/emag_act(mob/user) if(!emagged) +======= + +/obj/machinery/mineral/labor_claim_console/attackby(obj/item/I, mob/user, params) + if(istype(I, /obj/item/card/id/prisoner)) + if(!inserted_id) + if(!user.transferItemToLoc(I, src)) + return + inserted_id = I + to_chat(user, "You insert [I].") + return + else + to_chat(user, "There's an ID inserted already.") + return ..() + +/obj/machinery/mineral/labor_claim_console/ui_interact(mob/user, ui_key = "main", datum/tgui/ui = null, force_open = FALSE, \ + datum/tgui/master_ui = null, datum/ui_state/state = GLOB.default_state) + ui = SStgui.try_update_ui(user, src, ui_key, ui, force_open) + if(!ui) + ui = new(user, src, ui_key, "labor_claim_console", name, 450, 475, master_ui, state) + ui.open() + +/obj/machinery/mineral/labor_claim_console/ui_data(mob/user) + var/list/data = list() + var/can_go_home = FALSE + + data["emagged"] = emagged + if(inserted_id) + data["id"] = inserted_id + data["id_name"] = inserted_id.registered_name + data["points"] = inserted_id.points + data["goal"] = inserted_id.goal + if(check_auth()) + can_go_home = TRUE + + var/list/ores = list() + if(stacking_machine) + data["unclaimed_points"] = stacking_machine.points + for(var/ore in stacking_machine.ore_values) + var/list/O = list() + O["ore"] = ore + O["value"] = stacking_machine.ore_values[ore] + ores += list(O) + + data["ores"] = ores + data["can_go_home"] = can_go_home + + return data + +/obj/machinery/mineral/labor_claim_console/ui_act(action, params) + if(..()) + return + switch(action) + if("handle_id") + if(inserted_id) + if(!usr.get_active_held_item()) + usr.put_in_hands(inserted_id) + inserted_id = null + else + inserted_id.forceMove(get_turf(src)) + inserted_id = null + else + var/obj/item/I = usr.get_active_held_item() + if(istype(I, /obj/item/card/id/prisoner)) + if(!usr.transferItemToLoc(I, src)) + return + inserted_id = I + if("claim_points") + inserted_id.points += stacking_machine.points + stacking_machine.points = 0 + to_chat(usr, "Points transferred.") + if("move_shuttle") + if(!alone_in_area(get_area(src), usr)) + to_chat(usr, "Prisoners are only allowed to be released while alone.") + else + switch(SSshuttle.moveShuttle("laborcamp","laborcamp_home")) + if(1) + to_chat(usr, "Shuttle not found") + if(2) + to_chat(usr, "Shuttle already at station") + if(3) + to_chat(usr, "No permission to dock could be granted.") + else + if(!emagged) + Radio.set_frequency(GLOB.SEC_FREQ) + Radio.talk_into(src, "[inserted_id.registered_name] has returned to the station. Minerals and Prisoner ID card ready for retrieval.", GLOB.SEC_FREQ, get_spans(), get_default_language()) + to_chat(usr, "Shuttle received message and will be sent shortly.") + +/obj/machinery/mineral/labor_claim_console/proc/check_auth() + if(emagged) + return 1 //Shuttle is emagged, let any ol' person through + return (istype(inserted_id) && inserted_id.points >= inserted_id.goal) //Otherwise, only let them out if the prisoner's reached his quota. + +/obj/machinery/mineral/labor_claim_console/proc/locate_stacking_machine() + stacking_machine = locate(/obj/machinery/mineral/stacking_machine, get_step(src, machinedir)) + if(stacking_machine) + stacking_machine.CONSOLE = src + else + qdel(src) + +/obj/machinery/mineral/labor_claim_console/emag_act(mob/user) + if(!emagged) +>>>>>>> b6d349e... Remove drop_item, drop_item_v, put_in_hands_or_del (#31386) emagged = TRUE to_chat(user, "PZZTTPFFFT") diff --git a/code/modules/mining/lavaland/necropolis_chests.dm b/code/modules/mining/lavaland/necropolis_chests.dm index 95c4898605..efc46faa31 100644 --- a/code/modules/mining/lavaland/necropolis_chests.dm +++ b/code/modules/mining/lavaland/necropolis_chests.dm @@ -1005,7 +1005,7 @@ if(H == L) continue to_chat(H, "You have an overwhelming desire to kill [L]. [L.p_they(TRUE)] [L.p_have()] been marked red! Go kill [L.p_them()]!") - H.put_in_hands_or_del(new /obj/item/kitchen/knife/butcher(H)) + H.put_in_hands(new /obj/item/kitchen/knife/butcher(H), TRUE) qdel(src) diff --git a/code/modules/mining/machine_redemption.dm b/code/modules/mining/machine_redemption.dm index 38e02474f4..437073a1fc 100644 --- a/code/modules/mining/machine_redemption.dm +++ b/code/modules/mining/machine_redemption.dm @@ -166,9 +166,8 @@ if(istype(W, /obj/item/card/id)) var/obj/item/card/id/I = user.get_active_held_item() if(istype(I) && !istype(inserted_id)) - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) return - I.forceMove(src) inserted_id = I interact(user) return diff --git a/code/modules/mining/machine_vending.dm b/code/modules/mining/machine_vending.dm index 8ae3632d34..5a228973ce 100644 --- a/code/modules/mining/machine_vending.dm +++ b/code/modules/mining/machine_vending.dm @@ -116,9 +116,8 @@ else if(href_list["choice"] == "insert") var/obj/item/card/id/I = usr.get_active_held_item() if(istype(I)) - if(!usr.drop_item()) + if(!usr.transferItemToLoc(I, src)) return - I.loc = src inserted_id = I to_chat(usr, "You insert the ID into [src]'s card slot.") else @@ -155,9 +154,8 @@ if(istype(I, /obj/item/card/id)) var/obj/item/card/id/C = usr.get_active_held_item() if(istype(C) && !istype(inserted_id)) - if(!usr.drop_item()) + if(!usr.transferItemToLoc(C, src)) return - C.loc = src inserted_id = C to_chat(usr, "You insert the ID into [src]'s card slot.") interact(user) diff --git a/code/modules/mining/satchel_ore_boxdm.dm b/code/modules/mining/satchel_ore_boxdm.dm index 2836bd67f8..17c89b3af9 100644 --- a/code/modules/mining/satchel_ore_boxdm.dm +++ b/code/modules/mining/satchel_ore_boxdm.dm @@ -11,9 +11,7 @@ /obj/structure/ore_box/attackby(obj/item/W, mob/user, params) if (istype(W, /obj/item/ore)) - if(!user.drop_item()) - return - W.forceMove(src) + user.transferItemToLoc(W, src) else if (istype(W, /obj/item/storage)) var/obj/item/storage/S = W for(var/obj/item/ore/O in S.contents) diff --git a/code/modules/mob/inventory.dm b/code/modules/mob/inventory.dm index 59e7db1286..486a918c06 100644 --- a/code/modules/mob/inventory.dm +++ b/code/modules/mob/inventory.dm @@ -222,26 +222,10 @@ I.dropped(src) return FALSE - -/mob/proc/put_in_hands_or_del(obj/item/I) - return put_in_hands(I, TRUE) - - -/mob/proc/drop_item_v() //this is dumb. - if(stat == CONSCIOUS && isturf(loc)) - return drop_item() - return FALSE - - /mob/proc/drop_all_held_items() + . = FALSE for(var/obj/item/I in held_items) - dropItemToGround(I) - -//Drops the item in our active hand. -/mob/proc/drop_item() - var/obj/item/held = get_active_held_item() - return dropItemToGround(held) - + . |= dropItemToGround(I) //Here lie drop_from_inventory and before_item_take, already forgotten and not missed. diff --git a/code/modules/mob/living/brain/brain_item.dm b/code/modules/mob/living/brain/brain_item.dm index aa15e28e66..6ac5ab1bad 100644 --- a/code/modules/mob/living/brain/brain_item.dm +++ b/code/modules/mob/living/brain/brain_item.dm @@ -115,9 +115,8 @@ //since these people will be dead M != usr if(!C.getorgan(/obj/item/organ/brain)) - if(!C.get_bodypart("head")) + if(!C.get_bodypart("head") || !C.temporarilyRemoveItemFromInventory(src)) return - user.drop_item() var/msg = "[C] has [src] inserted into [C.p_their()] head by [user]." if(C == user) msg = "[user] inserts [src] into [user.p_their()] head!" diff --git a/code/modules/mob/living/carbon/alien/humanoid/humanoid_defense.dm b/code/modules/mob/living/carbon/alien/humanoid/humanoid_defense.dm index a09734ff49..36ed5ec884 100644 --- a/code/modules/mob/living/carbon/alien/humanoid/humanoid_defense.dm +++ b/code/modules/mob/living/carbon/alien/humanoid/humanoid_defense.dm @@ -51,7 +51,7 @@ "[M] has pushed down [src]!") else if (prob(50)) - drop_item() + dropItemToGround(get_active_held_item()) playsound(loc, 'sound/weapons/thudswoosh.ogg', 50, 1, -1) visible_message("[M] has disarmed [src]!", \ "[M] has disarmed [src]!", null, COMBAT_MESSAGE_RANGE) diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm index b4a57ea361..7be010b3ba 100644 --- a/code/modules/mob/living/carbon/human/human_defense.dm +++ b/code/modules/mob/living/carbon/human/human_defense.dm @@ -205,7 +205,7 @@ return 0 if(M.a_intent == INTENT_DISARM) //Always drop item in hand, if no item, get stunned instead. - if(get_active_held_item() && drop_item()) + if(dropItemToGround(get_active_held_item())) playsound(loc, 'sound/weapons/slash.ogg', 25, 1, -1) visible_message("[M] disarmed [src]!", \ "[M] disarmed [src]!") @@ -259,7 +259,7 @@ damage_clothes(damage, BRUTE, "melee", affecting.body_zone) if(M.a_intent == INTENT_DISARM) //Always drop item in hand, if no item, get stun instead. - if(get_active_held_item() && drop_item()) + if(dropItemToGround(get_active_held_item())) playsound(loc, 'sound/weapons/slash.ogg', 25, 1, -1) visible_message("[M] disarmed [src]!", \ "[M] disarmed [src]!") diff --git a/code/modules/mob/living/carbon/human/interactive.dm b/code/modules/mob/living/carbon/human/interactive.dm index 51b65bf44f..35e83a8e04 100644 --- a/code/modules/mob/living/carbon/human/interactive.dm +++ b/code/modules/mob/living/carbon/human/interactive.dm @@ -657,7 +657,7 @@ insert_into_backpack() //---------FASHION if(istype(TARGET, /obj/item/clothing)) - drop_item() + temporarilyRemoveItemFromInventory(TARGET, TRUE) dressup(TARGET) update_hands = 1 if(MYPDA in src.loc || MYID in src.loc) diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm index 34d4ae8e51..12131ea94e 100644 --- a/code/modules/mob/living/carbon/human/species.dm +++ b/code/modules/mob/living/carbon/human/species.dm @@ -1373,7 +1373,7 @@ target.stop_pulling() else I = target.get_active_held_item() - if(target.drop_item()) + if(target.dropItemToGround(I)) target.visible_message("[user] has disarmed [target]!", \ "[user] has disarmed [target]!", null, COMBAT_MESSAGE_RANGE) else diff --git a/code/modules/mob/living/carbon/monkey/monkey_defense.dm b/code/modules/mob/living/carbon/monkey/monkey_defense.dm index d95b10a148..96cafa4501 100644 --- a/code/modules/mob/living/carbon/monkey/monkey_defense.dm +++ b/code/modules/mob/living/carbon/monkey/monkey_defense.dm @@ -74,11 +74,9 @@ add_logs(M, src, "pushed") visible_message("[M] has pushed down [src]!", \ "[M] has pushed down [src]!", null, COMBAT_MESSAGE_RANGE) - else - if(drop_item()) - playsound(loc, 'sound/weapons/thudswoosh.ogg', 50, 1, -1) - visible_message("[M] has disarmed [src]!", \ - "[M] has disarmed [src]!", null, COMBAT_MESSAGE_RANGE) + else if(dropItemToGround(get_active_held_item())) + playsound(src, 'sound/weapons/thudswoosh.ogg', 50, 1, -1) + visible_message("[M] has disarmed [src]!", "[M] has disarmed [src]!", null, COMBAT_MESSAGE_RANGE) /mob/living/carbon/monkey/attack_alien(mob/living/carbon/alien/humanoid/M) if(..()) //if harm or disarm intent. @@ -119,12 +117,10 @@ "[M] has tackled down [name]!", null, COMBAT_MESSAGE_RANGE) else I = get_active_held_item() - if(drop_item()) - visible_message("[M] has disarmed [name]!", \ - "[M] has disarmed [name]!", null, COMBAT_MESSAGE_RANGE) + if(dropItemToGround(I)) + visible_message("[M] has disarmed [name]!", "[M] has disarmed [name]!", null, COMBAT_MESSAGE_RANGE) else - I = null//did not manage to actually disarm the item, gross but no time to refactor - + I = null add_logs(M, src, "disarmed", "[I ? " removing \the [I]" : ""]") updatehealth() diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index f8e4c4d752..5f995956be 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -427,9 +427,8 @@ else if(cell) to_chat(user, "There is a power cell already installed!") else - if(!user.drop_item()) + if(!user.transferItemToLoc(W, src)) return - W.loc = src cell = W to_chat(user, "You insert the power cell.") update_icons() @@ -518,7 +517,7 @@ else if(U.locked) to_chat(user, "The upgrade is locked and cannot be used yet!") else - if(!user.drop_item()) + if(!user.temporarilyRemoveItemFromInventory(U)) return if(U.action(src)) to_chat(user, "You apply the upgrade to [src].") @@ -529,12 +528,13 @@ upgrades += U else to_chat(user, "Upgrade error.") + U.forceMove(drop_location()) else if(istype(W, /obj/item/device/toner)) if(toner >= tonermax) to_chat(user, "The toner level of [src] is at its highest level possible!") else - if(!user.drop_item()) + if(!user.temporarilyRemoveItemFromInventory(W)) return toner = tonermax qdel(W) diff --git a/code/modules/mob/living/silicon/silicon.dm b/code/modules/mob/living/silicon/silicon.dm index 562b51945b..c15c287f7c 100644 --- a/code/modules/mob/living/silicon/silicon.dm +++ b/code/modules/mob/living/silicon/silicon.dm @@ -1,3 +1,4 @@ +<<<<<<< HEAD /mob/living/silicon gender = NEUTER voice_name = "synthesized voice" @@ -384,3 +385,388 @@ /mob/living/silicon/is_literate() return 1 +======= +/mob/living/silicon + gender = NEUTER + voice_name = "synthesized voice" + has_unlimited_silicon_privilege = 1 + verb_say = "states" + verb_ask = "queries" + verb_exclaim = "declares" + verb_yell = "alarms" + initial_language_holder = /datum/language_holder/synthetic + see_in_dark = 8 + bubble_icon = "machine" + weather_immunities = list("ash") + possible_a_intents = list(INTENT_HELP, INTENT_HARM) + + var/syndicate = 0 + var/datum/ai_laws/laws = null//Now... THEY ALL CAN ALL HAVE LAWS + var/last_lawchange_announce = 0 + var/list/alarms_to_show = list() + var/list/alarms_to_clear = list() + var/designation = "" + var/radiomod = "" //Radio character used before state laws/arrivals announce to allow department transmissions, default, or none at all. + var/obj/item/device/camera/siliconcam/aicamera = null //photography + hud_possible = list(ANTAG_HUD, DIAG_STAT_HUD, DIAG_HUD, DIAG_TRACK_HUD) + + var/obj/item/device/radio/borg/radio = null //AIs dont use this but this is at the silicon level to advoid copypasta in say() + + var/list/alarm_types_show = list("Motion" = 0, "Fire" = 0, "Atmosphere" = 0, "Power" = 0, "Camera" = 0) + var/list/alarm_types_clear = list("Motion" = 0, "Fire" = 0, "Atmosphere" = 0, "Power" = 0, "Camera" = 0) + + var/lawcheck[1] + var/ioncheck[1] + var/devillawcheck[5] + + var/med_hud = DATA_HUD_MEDICAL_ADVANCED //Determines the med hud to use + var/sec_hud = DATA_HUD_SECURITY_ADVANCED //Determines the sec hud to use + var/d_hud = DATA_HUD_DIAGNOSTIC //There is only one kind of diag hud + + var/law_change_counter = 0 + var/obj/machinery/camera/builtInCamera = null + var/updating = FALSE //portable camera camerachunk update + +/mob/living/silicon/Initialize() + . = ..() + GLOB.silicon_mobs += src + var/datum/atom_hud/data/diagnostic/diag_hud = GLOB.huds[DATA_HUD_DIAGNOSTIC] + diag_hud.add_to_hud(src) + diag_hud_set_status() + diag_hud_set_health() + +/mob/living/silicon/med_hud_set_health() + return //we use a different hud + +/mob/living/silicon/med_hud_set_status() + return //we use a different hud + +/mob/living/silicon/Destroy() + radio = null + aicamera = null + QDEL_NULL(builtInCamera) + GLOB.silicon_mobs -= src + return ..() + +/mob/living/silicon/contents_explosion(severity, target) + return + +/mob/living/silicon/proc/cancelAlarm() + return + +/mob/living/silicon/proc/triggerAlarm() + return + +/mob/living/silicon/proc/queueAlarm(message, type, incoming = 1) + var/in_cooldown = (alarms_to_show.len > 0 || alarms_to_clear.len > 0) + if(incoming) + alarms_to_show += message + alarm_types_show[type] += 1 + else + alarms_to_clear += message + alarm_types_clear[type] += 1 + + if(!in_cooldown) + spawn(3 * 10) // 3 seconds + + if(alarms_to_show.len < 5) + for(var/msg in alarms_to_show) + to_chat(src, msg) + else if(alarms_to_show.len) + + var/msg = "--- " + + if(alarm_types_show["Burglar"]) + msg += "BURGLAR: [alarm_types_show["Burglar"]] alarms detected. - " + + if(alarm_types_show["Motion"]) + msg += "MOTION: [alarm_types_show["Motion"]] alarms detected. - " + + if(alarm_types_show["Fire"]) + msg += "FIRE: [alarm_types_show["Fire"]] alarms detected. - " + + if(alarm_types_show["Atmosphere"]) + msg += "ATMOSPHERE: [alarm_types_show["Atmosphere"]] alarms detected. - " + + if(alarm_types_show["Power"]) + msg += "POWER: [alarm_types_show["Power"]] alarms detected. - " + + if(alarm_types_show["Camera"]) + msg += "CAMERA: [alarm_types_show["Camera"]] alarms detected. - " + + msg += "\[Show Alerts\]" + to_chat(src, msg) + + if(alarms_to_clear.len < 3) + for(var/msg in alarms_to_clear) + to_chat(src, msg) + + else if(alarms_to_clear.len) + var/msg = "--- " + + if(alarm_types_clear["Motion"]) + msg += "MOTION: [alarm_types_clear["Motion"]] alarms cleared. - " + + if(alarm_types_clear["Fire"]) + msg += "FIRE: [alarm_types_clear["Fire"]] alarms cleared. - " + + if(alarm_types_clear["Atmosphere"]) + msg += "ATMOSPHERE: [alarm_types_clear["Atmosphere"]] alarms cleared. - " + + if(alarm_types_clear["Power"]) + msg += "POWER: [alarm_types_clear["Power"]] alarms cleared. - " + + if(alarm_types_show["Camera"]) + msg += "CAMERA: [alarm_types_clear["Camera"]] alarms cleared. - " + + msg += "\[Show Alerts\]" + to_chat(src, msg) + + + alarms_to_show = list() + alarms_to_clear = list() + for(var/key in alarm_types_show) + alarm_types_show[key] = 0 + for(var/key in alarm_types_clear) + alarm_types_clear[key] = 0 + +/mob/living/silicon/can_inject(mob/user, error_msg) + if(error_msg) + to_chat(user, "Their outer shell is too tough.") + return 0 + +/mob/living/silicon/IsAdvancedToolUser() + return 1 + +/proc/islinked(mob/living/silicon/robot/bot, mob/living/silicon/ai/ai) + if(!istype(bot) || !istype(ai)) + return 0 + if (bot.connected_ai == ai) + return 1 + return 0 + +/mob/living/silicon/Topic(href, href_list) + if (href_list["lawc"]) // Toggling whether or not a law gets stated by the State Laws verb --NeoFite + var/L = text2num(href_list["lawc"]) + switch(lawcheck[L+1]) + if ("Yes") + lawcheck[L+1] = "No" + if ("No") + lawcheck[L+1] = "Yes" + checklaws() + + if (href_list["lawi"]) // Toggling whether or not a law gets stated by the State Laws verb --NeoFite + var/L = text2num(href_list["lawi"]) + switch(ioncheck[L]) + if ("Yes") + ioncheck[L] = "No" + if ("No") + ioncheck[L] = "Yes" + checklaws() + + if (href_list["lawdevil"]) // Toggling whether or not a law gets stated by the State Laws verb --NeoFite + var/L = text2num(href_list["lawdevil"]) + switch(devillawcheck[L]) + if ("Yes") + devillawcheck[L] = "No" + if ("No") + devillawcheck[L] = "Yes" + checklaws() + + + if (href_list["laws"]) // With how my law selection code works, I changed statelaws from a verb to a proc, and call it through my law selection panel. --NeoFite + statelaws() + + return + + +/mob/living/silicon/proc/statelaws(force = 0) + + //"radiomod" is inserted before a hardcoded message to change if and how it is handled by an internal radio. + src.say("[radiomod] Current Active Laws:") + //src.laws_sanity_check() + //src.laws.show_laws(world) + var/number = 1 + sleep(10) + + if (src.laws.devillaws && src.laws.devillaws.len) + for(var/index = 1, index <= src.laws.devillaws.len, index++) + if (force || src.devillawcheck[index] == "Yes") + src.say("[radiomod] 666. [src.laws.devillaws[index]]") + sleep(10) + + + if (src.laws.zeroth) + if (force || src.lawcheck[1] == "Yes") + src.say("[radiomod] 0. [src.laws.zeroth]") + sleep(10) + + for (var/index = 1, index <= src.laws.ion.len, index++) + var/law = src.laws.ion[index] + var/num = ionnum() + if (length(law) > 0) + if (force || src.ioncheck[index] == "Yes") + src.say("[radiomod] [num]. [law]") + sleep(10) + + for (var/index = 1, index <= src.laws.inherent.len, index++) + var/law = src.laws.inherent[index] + + if (length(law) > 0) + if (force || src.lawcheck[index+1] == "Yes") + src.say("[radiomod] [number]. [law]") + number++ + sleep(10) + + for (var/index = 1, index <= src.laws.supplied.len, index++) + var/law = src.laws.supplied[index] + + if (length(law) > 0) + if(src.lawcheck.len >= number+1) + if (force || src.lawcheck[number+1] == "Yes") + src.say("[radiomod] [number]. [law]") + number++ + sleep(10) + + +/mob/living/silicon/proc/checklaws() //Gives you a link-driven interface for deciding what laws the statelaws() proc will share with the crew. --NeoFite + + var/list = "Which laws do you want to include when stating them for the crew?

" + + if (src.laws.devillaws && src.laws.devillaws.len) + for(var/index = 1, index <= src.laws.devillaws.len, index++) + if (!src.devillawcheck[index]) + src.devillawcheck[index] = "No" + list += {"[src.devillawcheck[index]] 666: [src.laws.devillaws[index]]
"} + + if (src.laws.zeroth) + if (!src.lawcheck[1]) + src.lawcheck[1] = "No" //Given Law 0's usual nature, it defaults to NOT getting reported. --NeoFite + list += {"[src.lawcheck[1]] 0: [src.laws.zeroth]
"} + + for (var/index = 1, index <= src.laws.ion.len, index++) + var/law = src.laws.ion[index] + + if (length(law) > 0) + if (!src.ioncheck[index]) + src.ioncheck[index] = "Yes" + list += {"[src.ioncheck[index]] [ionnum()]: [law]
"} + src.ioncheck.len += 1 + + var/number = 1 + for (var/index = 1, index <= src.laws.inherent.len, index++) + var/law = src.laws.inherent[index] + + if (length(law) > 0) + src.lawcheck.len += 1 + + if (!src.lawcheck[number+1]) + src.lawcheck[number+1] = "Yes" + list += {"[src.lawcheck[number+1]] [number]: [law]
"} + number++ + + for (var/index = 1, index <= src.laws.supplied.len, index++) + var/law = src.laws.supplied[index] + if (length(law) > 0) + src.lawcheck.len += 1 + if (!src.lawcheck[number+1]) + src.lawcheck[number+1] = "Yes" + list += {"[src.lawcheck[number+1]] [number]: [law]
"} + number++ + list += {"

State Laws"} + + usr << browse(list, "window=laws") + +/mob/living/silicon/proc/set_autosay() //For allowing the AI and borgs to set the radio behavior of auto announcements (state laws, arrivals). + if(!radio) + to_chat(src, "Radio not detected.") + return + + //Ask the user to pick a channel from what it has available. + var/Autochan = input("Select a channel:") as null|anything in list("Default","None") + radio.channels + + if(!Autochan) + return + if(Autochan == "Default") //Autospeak on whatever frequency to which the radio is set, usually Common. + radiomod = ";" + Autochan += " ([radio.frequency])" + else if(Autochan == "None") //Prevents use of the radio for automatic annoucements. + radiomod = "" + else //For department channels, if any, given by the internal radio. + for(var/key in GLOB.department_radio_keys) + if(GLOB.department_radio_keys[key] == Autochan) + radiomod = ":" + key + break + + to_chat(src, "Automatic announcements [Autochan == "None" ? "will not use the radio." : "set to [Autochan]."]") + +/mob/living/silicon/put_in_hand_check() // This check is for borgs being able to receive items, not put them in others' hands. + return 0 + +// The src mob is trying to place an item on someone +// But the src mob is a silicon!! Disable. +/mob/living/silicon/stripPanelEquip(obj/item/what, mob/who, slot) + return 0 + + +/mob/living/silicon/assess_threat(judgement_criteria, lasercolor = "", datum/callback/weaponcheck=null) //Secbots won't hunt silicon units + return -10 + +/mob/living/silicon/proc/remove_med_sec_hud() + var/datum/atom_hud/secsensor = GLOB.huds[sec_hud] + var/datum/atom_hud/medsensor = GLOB.huds[med_hud] + var/datum/atom_hud/diagsensor = GLOB.huds[d_hud] + secsensor.remove_hud_from(src) + medsensor.remove_hud_from(src) + diagsensor.remove_hud_from(src) + +/mob/living/silicon/proc/add_sec_hud() + var/datum/atom_hud/secsensor = GLOB.huds[sec_hud] + secsensor.add_hud_to(src) + +/mob/living/silicon/proc/add_med_hud() + var/datum/atom_hud/medsensor = GLOB.huds[med_hud] + medsensor.add_hud_to(src) + +/mob/living/silicon/proc/add_diag_hud() + var/datum/atom_hud/diagsensor = GLOB.huds[d_hud] + diagsensor.add_hud_to(src) + +/mob/living/silicon/proc/sensor_mode() + if(incapacitated()) + return + var/sensor_type = input("Please select sensor type.", "Sensor Integration", null) in list("Security", "Medical","Diagnostic","Disable") + remove_med_sec_hud() + switch(sensor_type) + if ("Security") + add_sec_hud() + to_chat(src, "Security records overlay enabled.") + if ("Medical") + add_med_hud() + to_chat(src, "Life signs monitor overlay enabled.") + if ("Diagnostic") + add_diag_hud() + to_chat(src, "Robotics diagnostic overlay enabled.") + if ("Disable") + to_chat(src, "Sensor augmentations disabled.") + + +/mob/living/silicon/proc/GetPhoto() + if (aicamera) + return aicamera.selectpicture(aicamera) + +/mob/living/silicon/update_transform() + var/matrix/ntransform = matrix(transform) //aka transform.Copy() + var/changed = 0 + if(resize != RESIZE_DEFAULT_SIZE) + changed++ + ntransform.Scale(resize) + resize = RESIZE_DEFAULT_SIZE + + if(changed) + animate(src, transform = ntransform, time = 2,easing = EASE_IN|EASE_OUT) + return ..() + +/mob/living/silicon/is_literate() + return 1 +>>>>>>> b6d349e... Remove drop_item, drop_item_v, put_in_hands_or_del (#31386) diff --git a/code/modules/mob/living/simple_animal/bot/bot.dm b/code/modules/mob/living/simple_animal/bot/bot.dm index 1afcdaaed4..98b1b46ed8 100644 --- a/code/modules/mob/living/simple_animal/bot/bot.dm +++ b/code/modules/mob/living/simple_animal/bot/bot.dm @@ -846,9 +846,8 @@ Pass a positive integer as an argument to override a bot's default speed. else if(allow_pai && !key) if(!locked && !open) if(card.pai && card.pai.mind) - if(!user.drop_item()) + if(!user.transferItemToLoc(card, src)) return - card.forceMove(src) paicard = card user.visible_message("[user] inserts [card] into [src]!","You insert [card] into [src].") paicard.pai.mind.transfer_to(src) diff --git a/code/modules/mob/living/simple_animal/bot/medbot.dm b/code/modules/mob/living/simple_animal/bot/medbot.dm index bbbe4e310c..3a46e46beb 100644 --- a/code/modules/mob/living/simple_animal/bot/medbot.dm +++ b/code/modules/mob/living/simple_animal/bot/medbot.dm @@ -223,10 +223,9 @@ if(!isnull(reagent_glass)) to_chat(user, "There is already a beaker loaded!") return - if(!user.drop_item()) + if(!user.transferItemToLoc(W, src)) return - W.loc = src reagent_glass = W to_chat(user, "You insert [W].") show_controls(user) diff --git a/code/modules/mob/living/simple_animal/bot/mulebot.dm b/code/modules/mob/living/simple_animal/bot/mulebot.dm index e6a4b978ca..6130d92aff 100644 --- a/code/modules/mob/living/simple_animal/bot/mulebot.dm +++ b/code/modules/mob/living/simple_animal/bot/mulebot.dm @@ -84,11 +84,9 @@ if(open) on = FALSE else if(istype(I, /obj/item/stock_parts/cell) && open && !cell) - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) return - var/obj/item/stock_parts/cell/C = I - C.loc = src - cell = C + cell = I visible_message("[user] inserts a cell into [src].", "You insert the new cell into [src].") else if(istype(I, /obj/item/crowbar) && open && cell) diff --git a/code/modules/mob/living/simple_animal/friendly/dog.dm b/code/modules/mob/living/simple_animal/friendly/dog.dm index 6467990776..35b4b37445 100644 --- a/code/modules/mob/living/simple_animal/friendly/dog.dm +++ b/code/modules/mob/living/simple_animal/friendly/dog.dm @@ -174,7 +174,7 @@ usr.visible_message("[usr] pets [src].","You rest your hand on [src]'s back for a moment.") return - if(!usr.drop_item()) + if(!usr.temporarilyRemoveItemFromInventory(item_to_add)) to_chat(usr, "\The [item_to_add] is stuck to your hand, you cannot put it on [src]'s back!") return @@ -189,7 +189,7 @@ if(!allowed) to_chat(usr, "You set [item_to_add] on [src]'s back, but it falls off!") - item_to_add.loc = loc + item_to_add.forceMove(drop_location()) if(prob(25)) step_rand(item_to_add) for(var/i in list(1,2,4,8,4,8,4,dir)) @@ -197,8 +197,7 @@ sleep(1) return - usr.drop_item() - item_to_add.loc = src + item_to_add.forceMove(src) src.inventory_back = item_to_add update_corgi_fluff() regenerate_icons() @@ -226,7 +225,7 @@ user.visible_message("[user] pets [src].","You rest your hand on [src]'s head for a moment.") return - if(user && !user.drop_item()) + if(user && !user.temporarilyRemoveItemFromInventory(item_to_add)) to_chat(user, "\The [item_to_add] is stuck to your hand, you cannot put it on [src]'s head!") return 0 @@ -243,13 +242,13 @@ user.visible_message("[user] puts [item_to_add] on [real_name]'s head. [src] looks at [user] and barks once.", "You put [item_to_add] on [real_name]'s head. [src] gives you a peculiar look, then wags [p_their()] tail once and barks.", "You hear a friendly-sounding bark.") - item_to_add.loc = src + item_to_add.forceMove(src) src.inventory_head = item_to_add update_corgi_fluff() regenerate_icons() else to_chat(user, "You set [item_to_add] on [src]'s head, but it falls off!") - item_to_add.loc = loc + item_to_add.forceMove(drop_location()) if(prob(25)) step_rand(item_to_add) for(var/i in list(1,2,4,8,4,8,4,dir)) diff --git a/code/modules/mob/living/simple_animal/friendly/farm_animals.dm b/code/modules/mob/living/simple_animal/friendly/farm_animals.dm index c29236c2fc..6fb1c500b2 100644 --- a/code/modules/mob/living/simple_animal/friendly/farm_animals.dm +++ b/code/modules/mob/living/simple_animal/friendly/farm_animals.dm @@ -275,7 +275,6 @@ if(!stat && eggsleft < 8) var/feedmsg = "[user] feeds [O] to [name]! [pick(feedMessages)]" user.visible_message(feedmsg) - user.drop_item() qdel(O) eggsleft += rand(1, 4) else diff --git a/code/modules/mob/living/simple_animal/parrot.dm b/code/modules/mob/living/simple_animal/parrot.dm index 09d9f66f61..7ceffa198b 100644 --- a/code/modules/mob/living/simple_animal/parrot.dm +++ b/code/modules/mob/living/simple_animal/parrot.dm @@ -246,8 +246,8 @@ var/obj/item/device/radio/headset/headset_to_add = item_to_add - usr.drop_item() - headset_to_add.loc = src + if(!usr.transferItemToLoc(headset_to_add, src)) + return src.ears = headset_to_add to_chat(usr, "You fit the headset onto [src].") @@ -340,7 +340,6 @@ drop_held_item(0) else if(istype(O, /obj/item/reagent_containers/food/snacks/cracker)) //Poly wants a cracker. qdel(O) - user.drop_item() if(health < maxHealth) adjustBruteLoss(-10) speak_chance *= 1.27 // 20 crackers to go from 1% to 100% diff --git a/code/modules/mob/mob_movement.dm b/code/modules/mob/mob_movement.dm index 4da630bb31..a66b45d4a2 100644 --- a/code/modules/mob/mob_movement.dm +++ b/code/modules/mob/mob_movement.dm @@ -53,10 +53,11 @@ /client/Northwest() - if(!usr.get_active_held_item()) + var/obj/item/I = usr.get_active_held_item() + if(!I) to_chat(usr, "You have nothing to drop in your hand!") return - usr.drop_item() + usr.dropItemToGround(I) //This gets called when you press the delete button. /client/verb/delete_key_pressed() @@ -85,8 +86,8 @@ /client/verb/drop_item() set hidden = 1 - if(!iscyborg(mob)) - mob.drop_item_v() + if(!iscyborg(mob) && mob.stat == CONSCIOUS) + mob.dropItemToGround(mob.get_active_held_item()) return diff --git a/code/modules/modular_computers/file_system/programs/card.dm b/code/modules/modular_computers/file_system/programs/card.dm index ead6a35eea..0562bf700d 100644 --- a/code/modules/modular_computers/file_system/programs/card.dm +++ b/code/modules/modular_computers/file_system/programs/card.dm @@ -175,9 +175,8 @@ else var/obj/item/I = usr.get_active_held_item() if (istype(I, /obj/item/card/id)) - if(!usr.drop_item()) + if(!usr.transferItemToLoc(I, computer)) return - I.forceMove(computer) card_slot.stored_card = I if("auth") if(auth_card) @@ -191,9 +190,8 @@ else var/obj/item/I = usr.get_active_held_item() if (istype(I, /obj/item/card/id)) - if(!usr.drop_item()) + if(!usr.transferItemToLoc(I, computer)) return - I.forceMove(computer) card_slot.stored_card2 = I if("PRG_terminate") if(computer && ((id_card.assignment in head_subordinates) || id_card.assignment == "Assistant")) diff --git a/code/modules/modular_computers/laptop_vendor.dm b/code/modules/modular_computers/laptop_vendor.dm index adec1aa19d..99eb6f1a23 100644 --- a/code/modules/modular_computers/laptop_vendor.dm +++ b/code/modules/modular_computers/laptop_vendor.dm @@ -244,7 +244,7 @@ if(istype(I, /obj/item/stack/spacecash)) var/obj/item/stack/spacecash/c = I - if(!user.drop_item(c)) + if(!user.temporarilyRemoveItemFromInventory(c)) return credits += c.value visible_message("[usr] inserts [c.value] credits into the [src].") diff --git a/code/modules/paperwork/filingcabinet.dm b/code/modules/paperwork/filingcabinet.dm index f8c4cf1f73..8b4be79e99 100644 --- a/code/modules/paperwork/filingcabinet.dm +++ b/code/modules/paperwork/filingcabinet.dm @@ -47,10 +47,9 @@ /obj/structure/filingcabinet/attackby(obj/item/P, mob/user, params) if(istype(P, /obj/item/paper) || istype(P, /obj/item/folder) || istype(P, /obj/item/photo) || istype(P, /obj/item/documents)) - if(!user.drop_item()) + if(!user.transferItemToLoc(P, src)) return to_chat(user, "You put [P] in [src].") - P.loc = src icon_state = "[initial(icon_state)]-open" sleep(5) icon_state = initial(icon_state) diff --git a/code/modules/paperwork/paper_cutter.dm b/code/modules/paperwork/paper_cutter.dm index 2c704b8568..4a85d03df7 100644 --- a/code/modules/paperwork/paper_cutter.dm +++ b/code/modules/paperwork/paper_cutter.dm @@ -44,16 +44,15 @@ /obj/item/papercutter/attackby(obj/item/P, mob/user, params) if(istype(P, /obj/item/paper) && !storedpaper) - if(!user.drop_item()) + if(!user.transferItemToLoc(P, src)) return playsound(loc, "pageturn", 60, 1) to_chat(user, "You place [P] in [src].") - P.loc = src storedpaper = P update_icon() return if(istype(P, /obj/item/hatchet/cutterblade) && !storedcutter) - if(!user.drop_item()) + if(!user.transferItemToLoc(P, src)) return to_chat(user, "You replace [src]'s [P].") P.loc = src diff --git a/code/modules/paperwork/photocopier.dm b/code/modules/paperwork/photocopier.dm index 0dcd5d09a0..d4e78c4ef3 100644 --- a/code/modules/paperwork/photocopier.dm +++ b/code/modules/paperwork/photocopier.dm @@ -240,7 +240,7 @@ updateUsrDialog() /obj/machinery/photocopier/proc/do_insertion(obj/item/O, mob/user) - O.loc = src + O.forceMove(src) to_chat(user, "You insert [O] into [src].") flick("photocopier1", src) updateUsrDialog() @@ -261,7 +261,7 @@ resistance_flags |= FLAMMABLE fire_act() else - if(!user.drop_item()) + if(!user.temporarilyRemoveItemFromInventory(O)) return copy = O do_insertion(O, user) @@ -270,7 +270,7 @@ else if(istype(O, /obj/item/photo)) if(copier_empty()) - if(!user.drop_item()) + if(!user.temporarilyRemoveItemFromInventory(O)) return photocopy = O do_insertion(O, user) @@ -279,7 +279,7 @@ else if(istype(O, /obj/item/documents)) if(copier_empty()) - if(!user.drop_item()) + if(!user.temporarilyRemoveItemFromInventory(O)) return doccopy = O do_insertion(O, user) @@ -288,7 +288,7 @@ else if(istype(O, /obj/item/device/toner)) if(toner <= 0) - if(!user.drop_item()) + if(!user.temporarilyRemoveItemFromInventory(O)) return qdel(O) toner = 40 diff --git a/code/modules/power/apc.dm b/code/modules/power/apc.dm index 8e20925f9b..ad3e2c9d33 100644 --- a/code/modules/power/apc.dm +++ b/code/modules/power/apc.dm @@ -449,9 +449,8 @@ if (stat & MAINT) to_chat(user, "There is no connector for your power cell!") return - if(!user.drop_item()) + if(!user.transferItemToLoc(W, src)) return - W.forceMove(src) cell = W user.visible_message(\ "[user.name] has inserted the power cell to [src.name]!",\ diff --git a/code/modules/power/lighting.dm b/code/modules/power/lighting.dm index 096c050fcc..8634e5af5b 100644 --- a/code/modules/power/lighting.dm +++ b/code/modules/power/lighting.dm @@ -315,7 +315,7 @@ src.add_fingerprint(user) var/obj/item/light/L = W if(istype(L, light_type)) - if(!user.drop_item()) + if(!user.temporarilyRemoveItemFromInventory()) return src.add_fingerprint(user) diff --git a/code/modules/power/singularity/collector.dm b/code/modules/power/singularity/collector.dm index 8399f73e79..9b5592af3b 100644 --- a/code/modules/power/singularity/collector.dm +++ b/code/modules/power/singularity/collector.dm @@ -87,10 +87,9 @@ GLOBAL_LIST_EMPTY(rad_collectors) if(loaded_tank) to_chat(user, "There's already a plasma tank loaded!") return TRUE - if(!user.drop_item()) - return TRUE + if(!user.transferItemToLoc(W, src)) + return loaded_tank = W - W.forceMove(src) update_icons() else if(istype(W, /obj/item/crowbar)) if(loaded_tank) diff --git a/code/modules/power/solar.dm b/code/modules/power/solar.dm index dcc8c0a200..fb530f128f 100644 --- a/code/modules/power/solar.dm +++ b/code/modules/power/solar.dm @@ -240,7 +240,7 @@ if(!tracker) if(istype(W, /obj/item/electronics/tracker)) - if(!user.drop_item()) + if(!user.temporarilyRemoveItemFromInventory(W)) return tracker = 1 qdel(W) diff --git a/code/modules/projectiles/box_magazine.dm b/code/modules/projectiles/box_magazine.dm index 29e27d18ba..324470ede4 100644 --- a/code/modules/projectiles/box_magazine.dm +++ b/code/modules/projectiles/box_magazine.dm @@ -81,8 +81,7 @@ if(istype(A, /obj/item/ammo_casing)) var/obj/item/ammo_casing/AC = A if(give_round(AC, replace_spent)) - user.drop_item() - AC.forceMove(src) + user.transferItemToLoc(AC, src, TRUE) num_loaded++ if(num_loaded) diff --git a/code/modules/projectiles/gun.dm b/code/modules/projectiles/gun.dm index e5767e48ba..564bcd04d8 100644 --- a/code/modules/projectiles/gun.dm +++ b/code/modules/projectiles/gun.dm @@ -164,7 +164,7 @@ to_chat(user, "You shoot yourself in the foot with [src]!") var/shot_leg = pick("l_leg", "r_leg") process_fire(user,user,0,params, zone_override = shot_leg) - user.drop_item() + user.dropItemToGround(src, TRUE) return if(weapon_weight == WEAPON_HEAVY && user.get_inactive_held_item()) diff --git a/code/modules/projectiles/guns/ballistic/revolver.dm b/code/modules/projectiles/guns/ballistic/revolver.dm index 44bada2771..7c0ec28a44 100644 --- a/code/modules/projectiles/guns/ballistic/revolver.dm +++ b/code/modules/projectiles/guns/ballistic/revolver.dm @@ -358,5 +358,5 @@ if(process_fire(user, user, 0, zone_override = "head")) user.visible_message("[user] somehow manages to shoot [user.p_them()]self in the face!", "You somehow shoot yourself in the face! How the hell?!") user.emote("scream") - user.drop_item() + user.drop_all_held_items() user.Knockdown(80) diff --git a/code/modules/projectiles/guns/ballistic/shotgun.dm b/code/modules/projectiles/guns/ballistic/shotgun.dm index bbaf20689c..6cd603c8d1 100644 --- a/code/modules/projectiles/guns/ballistic/shotgun.dm +++ b/code/modules/projectiles/guns/ballistic/shotgun.dm @@ -172,11 +172,11 @@ if(guns_left) var/obj/item/gun/ballistic/shotgun/boltaction/enchanted/GUN = new gun_type GUN.guns_left = guns_left - 1 - user.drop_item() + user.dropItemToGround(src, TRUE) user.swap_hand() user.put_in_hands(GUN) else - user.drop_item() + user.dropItemToGround(src, TRUE) discard_gun(user) // Automatic Shotguns// diff --git a/code/modules/projectiles/guns/misc/blastcannon.dm b/code/modules/projectiles/guns/misc/blastcannon.dm index 5ee2ecec05..8772ae05c0 100644 --- a/code/modules/projectiles/guns/misc/blastcannon.dm +++ b/code/modules/projectiles/guns/misc/blastcannon.dm @@ -49,12 +49,11 @@ if(!T.tank_one || !T.tank_two) to_chat(user, "What good would an incomplete bomb do?") return FALSE - if(!user.drop_item(O)) + if(!user.transferItemToLoc(O, src)) to_chat(user, "The [O] seems to be stuck to your hand!") return FALSE user.visible_message("[user] attaches the [O] to the [src]!") bomb = O - O.forceMove(src) update_icon() return TRUE return ..() diff --git a/code/modules/reagents/chemistry/reagents/drug_reagents.dm b/code/modules/reagents/chemistry/reagents/drug_reagents.dm index 8fdb973ef6..a6f6782d30 100644 --- a/code/modules/reagents/chemistry/reagents/drug_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/drug_reagents.dm @@ -189,9 +189,7 @@ M.emote("laugh") if(prob(33)) M.visible_message("[M]'s hands flip out and flail everywhere!") - var/obj/item/I = M.get_active_held_item() - if(I) - M.drop_item() + M.drop_all_held_items() ..() M.adjustToxLoss(1, 0) M.adjustBrainLoss(pick(0.5, 0.6, 0.7, 0.8, 0.9, 1)) @@ -268,9 +266,7 @@ if(prob(20)) M.emote(pick("twitch","drool","moan")) if(prob(33)) - var/obj/item/I = M.get_active_held_item() - if(I) - M.drop_item() + M.drop_all_held_items() ..() /datum/reagent/drug/bath_salts/addiction_act_stage1(mob/living/M) diff --git a/code/modules/reagents/chemistry/reagents/food_reagents.dm b/code/modules/reagents/chemistry/reagents/food_reagents.dm index 72001d5ca9..f1b076ca68 100644 --- a/code/modules/reagents/chemistry/reagents/food_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/food_reagents.dm @@ -256,7 +256,6 @@ victim.confused = max(M.confused, 3) victim.damageoverlaytemp = 60 victim.Knockdown(60) - victim.drop_item() return else if ( eyes_covered ) // Eye cover is better than mouth cover victim.blur_eyes(3) @@ -270,7 +269,6 @@ victim.confused = max(M.confused, 6) victim.damageoverlaytemp = 75 victim.Knockdown(100) - victim.drop_item() victim.update_damage_hud() /datum/reagent/consumable/condensedcapsaicin/on_mob_life(mob/living/M) diff --git a/code/modules/reagents/chemistry/reagents/medicine_reagents.dm b/code/modules/reagents/chemistry/reagents/medicine_reagents.dm index ab9d95582b..01d50fb606 100644 --- a/code/modules/reagents/chemistry/reagents/medicine_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/medicine_reagents.dm @@ -626,27 +626,20 @@ /datum/reagent/medicine/morphine/overdose_process(mob/living/M) if(prob(33)) - var/obj/item/I = M.get_active_held_item() - if(I) - M.drop_item() + M.drop_all_held_items() M.Dizzy(2) M.Jitter(2) ..() /datum/reagent/medicine/morphine/addiction_act_stage1(mob/living/M) if(prob(33)) - var/obj/item/I = M.get_active_held_item() - if(I) - M.drop_item() - M.Dizzy(2) + M.drop_all_held_items() M.Jitter(2) ..() /datum/reagent/medicine/morphine/addiction_act_stage2(mob/living/M) if(prob(33)) - var/obj/item/I = M.get_active_held_item() - if(I) - M.drop_item() + M.drop_all_held_items() M.adjustToxLoss(1*REM, 0) . = 1 M.Dizzy(3) @@ -655,9 +648,7 @@ /datum/reagent/medicine/morphine/addiction_act_stage3(mob/living/M) if(prob(33)) - var/obj/item/I = M.get_active_held_item() - if(I) - M.drop_item() + M.drop_all_held_items() M.adjustToxLoss(2*REM, 0) . = 1 M.Dizzy(4) @@ -666,9 +657,7 @@ /datum/reagent/medicine/morphine/addiction_act_stage4(mob/living/M) if(prob(33)) - var/obj/item/I = M.get_active_held_item() - if(I) - M.drop_item() + M.drop_all_held_items() M.adjustToxLoss(3*REM, 0) . = 1 M.Dizzy(5) diff --git a/code/modules/recycling/conveyor2.dm b/code/modules/recycling/conveyor2.dm index 49e375b723..2a194ee95c 100644 --- a/code/modules/recycling/conveyor2.dm +++ b/code/modules/recycling/conveyor2.dm @@ -141,8 +141,7 @@ to_chat(user, "You reverse [src]'s direction.") else if(user.a_intent != INTENT_HARM) - if(user.drop_item()) - I.loc = src.loc + user.transferItemToLoc(I, drop_location()) else return ..() diff --git a/code/modules/recycling/disposal-unit.dm b/code/modules/recycling/disposal-unit.dm index 517b4aa195..9fdc62c8d2 100644 --- a/code/modules/recycling/disposal-unit.dm +++ b/code/modules/recycling/disposal-unit.dm @@ -96,7 +96,7 @@ return if(user.a_intent != INTENT_HARM) - if(!user.drop_item() || (I.flags_1 & ABSTRACT_1)) + if((I.flags_1 & ABSTRACT_1) || !user.temporarilyRemoveItemFromInventory(I)) return place_item_in_disposal(I, user) update_icon() diff --git a/code/modules/research/destructive_analyzer.dm b/code/modules/research/destructive_analyzer.dm index 5d3cde7aac..790cba0889 100644 --- a/code/modules/research/destructive_analyzer.dm +++ b/code/modules/research/destructive_analyzer.dm @@ -43,12 +43,11 @@ Note: Must be placed within 3 tiles of the R&D Console if (temp_tech.len == 0) to_chat(user, "You cannot deconstruct this item!") return - if(!user.drop_item()) + if(!user.transferItemToLoc(O, src)) to_chat(user, "\The [O] is stuck to your hand, you cannot put it in the [src.name]!") return busy = TRUE loaded_item = O - O.forceMove(src) to_chat(user, "You add the [O.name] to the [src.name]!") flick("d_analyzer_la", src) addtimer(CALLBACK(src, .proc/finish_loading), 10) diff --git a/code/modules/research/experimentor.dm b/code/modules/research/experimentor.dm index 4d8938b1b8..3a2b1f6b7f 100644 --- a/code/modules/research/experimentor.dm +++ b/code/modules/research/experimentor.dm @@ -122,10 +122,9 @@ if (temp_tech.len == 0) to_chat(user, "You cannot experiment on this item!") return - if(!user.drop_item()) + if(!user.transferItemToLoc(O, src)) return loaded_item = O - O.loc = src to_chat(user, "You add the [O.name] to the machine.") flick("h_lathe_load", src) diff --git a/code/modules/research/rdconsole.dm b/code/modules/research/rdconsole.dm index 70e4bf7f62..efb64c6623 100644 --- a/code/modules/research/rdconsole.dm +++ b/code/modules/research/rdconsole.dm @@ -127,9 +127,8 @@ won't update every console in existence) but it's more of a hassle to do. Also, else to_chat(user, "Machine cannot accept disks in that format.") return - if(!user.drop_item()) + if(!user.transferItemToLoc(D, src)) return - D.loc = src to_chat(user, "You add the disk to the machine!") else if(!(linked_destroy && linked_destroy.busy) && !(linked_lathe && linked_lathe.busy) && !(linked_imprinter && linked_imprinter.busy)) . = ..() diff --git a/code/modules/research/xenobiology/xenobio_camera.dm b/code/modules/research/xenobiology/xenobio_camera.dm index 1be515f177..02180b273f 100644 --- a/code/modules/research/xenobiology/xenobio_camera.dm +++ b/code/modules/research/xenobiology/xenobio_camera.dm @@ -70,7 +70,6 @@ if(istype(O, /obj/item/reagent_containers/food/snacks/monkeycube)) monkeys++ to_chat(user, "You feed [O] to [src]. It now has [monkeys] monkey cubes stored.") - user.drop_item() qdel(O) return else if(istype(O, /obj/item/storage/bag)) diff --git a/code/modules/spells/spell_types/conjure.dm b/code/modules/spells/spell_types/conjure.dm index 08837c956d..c73c5de58a 100644 --- a/code/modules/spells/spell_types/conjure.dm +++ b/code/modules/spells/spell_types/conjure.dm @@ -75,9 +75,8 @@ item = null else for(var/mob/living/carbon/C in targets) - if(C.drop_item()) - item = make_item() - C.put_in_hands(item) + if(C.dropItemToGround(C.get_active_held_item())) + C.put_in_hands(make_item(), TRUE) /obj/effect/proc_holder/spell/targeted/conjure_item/Destroy() if(item) diff --git a/code/modules/spells/spell_types/devil.dm b/code/modules/spells/spell_types/devil.dm index 9d1afdcebc..b1867413a3 100644 --- a/code/modules/spells/spell_types/devil.dm +++ b/code/modules/spells/spell_types/devil.dm @@ -49,7 +49,7 @@ for(var/mob/living/carbon/C in targets) if(C.mind && user.mind) if(C.stat == DEAD) - if(user.drop_item()) + if(user.dropItemToGround(user.get_active_held_item())) var/obj/item/paper/contract/infernal/revive/contract = new(user.loc, C.mind, user.mind) user.put_in_hands(contract) else diff --git a/code/modules/spells/spell_types/devil_boons.dm b/code/modules/spells/spell_types/devil_boons.dm index a0be169d85..5d335745d2 100644 --- a/code/modules/spells/spell_types/devil_boons.dm +++ b/code/modules/spells/spell_types/devil_boons.dm @@ -14,7 +14,7 @@ /obj/effect/proc_holder/spell/targeted/summon_wealth/cast(list/targets, mob/user = usr) for(var/mob/living/carbon/C in targets) - if(user.drop_item()) + if(user.dropItemToGround(user.get_active_held_item())) var/obj/item = pick( new /obj/item/coin/gold(user.loc), new /obj/item/coin/diamond(user.loc), diff --git a/code/modules/spells/spell_types/infinite_guns.dm b/code/modules/spells/spell_types/infinite_guns.dm index 6036d1a70b..feb6eeddb6 100644 --- a/code/modules/spells/spell_types/infinite_guns.dm +++ b/code/modules/spells/spell_types/infinite_guns.dm @@ -14,12 +14,9 @@ /obj/effect/proc_holder/spell/targeted/infinite_guns/cast(list/targets, mob/user = usr) for(var/mob/living/carbon/C in targets) - C.drop_item() - C.swap_hand() - C.drop_item() + C.drop_all_held_items() var/GUN = new summon_path C.put_in_hands(GUN) - C.swap_hand(C.get_held_index_of_item(GUN)) /obj/effect/proc_holder/spell/targeted/infinite_guns/gun diff --git a/code/modules/surgery/cavity_implant.dm b/code/modules/surgery/cavity_implant.dm index a37502a96b..8bad429102 100644 --- a/code/modules/surgery/cavity_implant.dm +++ b/code/modules/surgery/cavity_implant.dm @@ -29,9 +29,8 @@ return 0 else user.visible_message("[user] stuffs [tool] into [target]'s [target_zone]!", "You stuff [tool] into [target]'s [target_zone].") - user.drop_item() + user.transferItemToLoc(tool, target, TRUE) CH.cavity_item = tool - tool.loc = target return 1 else if(IC) diff --git a/code/modules/surgery/dental_implant.dm b/code/modules/surgery/dental_implant.dm index db3771ad21..0073c59f8d 100644 --- a/code/modules/surgery/dental_implant.dm +++ b/code/modules/surgery/dental_implant.dm @@ -15,8 +15,7 @@ if(!istype(tool)) return 0 - user.drop_item() - tool.loc = target + user.transferItemToLoc(tool, target, TRUE) var/datum/action/item_action/hands_free/activate_pill/P = new(tool) P.button.name = "Activate [tool.name]" diff --git a/code/modules/surgery/limb_augmentation.dm b/code/modules/surgery/limb_augmentation.dm index 6272039201..4df1d847be 100644 --- a/code/modules/surgery/limb_augmentation.dm +++ b/code/modules/surgery/limb_augmentation.dm @@ -1,3 +1,4 @@ +<<<<<<< HEAD /////AUGMENTATION SURGERIES////// @@ -57,6 +58,66 @@ qdel(tool) target.update_body_parts() target.updatehealth() +======= + +/////AUGMENTATION SURGERIES////// + + +//SURGERY STEPS + +/datum/surgery_step/replace + name = "sever muscles" + implements = list(/obj/item/scalpel = 100, /obj/item/wirecutters = 55) + time = 32 + + +/datum/surgery_step/replace/preop(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery) + user.visible_message("[user] begins to sever the muscles on [target]'s [parse_zone(user.zone_selected)].", "You begin to sever the muscles on [target]'s [parse_zone(user.zone_selected)]...") + + +/datum/surgery_step/add_limb + name = "replace limb" + implements = list(/obj/item/bodypart = 100) + time = 32 + var/obj/item/bodypart/L = null // L because "limb" + + +/datum/surgery_step/add_limb/preop(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery) + var/obj/item/bodypart/aug = tool + if(aug.status != BODYPART_ROBOTIC) + to_chat(user, "that's not an augment silly!") + return -1 + if(aug.body_zone != target_zone) + to_chat(user, "[tool] isn't the right type for [parse_zone(target_zone)].") + return -1 + L = surgery.operated_bodypart + if(L) + user.visible_message("[user] begins to augment [target]'s [parse_zone(user.zone_selected)].", "You begin to augment [target]'s [parse_zone(user.zone_selected)]...") + else + user.visible_message("[user] looks for [target]'s [parse_zone(user.zone_selected)].", "You look for [target]'s [parse_zone(user.zone_selected)]...") + + +//ACTUAL SURGERIES + +/datum/surgery/augmentation + name = "augmentation" + steps = list(/datum/surgery_step/incise, /datum/surgery_step/clamp_bleeders, /datum/surgery_step/retract_skin, /datum/surgery_step/replace, /datum/surgery_step/saw, /datum/surgery_step/add_limb) + species = list(/mob/living/carbon/human) + possible_locs = list("r_arm","l_arm","r_leg","l_leg","chest","head") + requires_real_bodypart = TRUE + +//SURGERY STEP SUCCESSES + +/datum/surgery_step/add_limb/success(mob/user, mob/living/carbon/target, target_zone, obj/item/bodypart/tool, datum/surgery/surgery) + if(L) + user.visible_message("[user] successfully augments [target]'s [parse_zone(target_zone)]!", "You successfully augment [target]'s [parse_zone(target_zone)].") + L.change_bodypart_status(BODYPART_ROBOTIC, TRUE) + L.icon = tool.icon + L.max_damage = tool.max_damage + qdel(tool) + target.update_body_parts() + target.updatehealth() +>>>>>>> b6d349e... Remove drop_item, drop_item_v, put_in_hands_or_del (#31386) target.update_hair() add_logs(user, target, "augmented", addition="by giving him new [parse_zone(target_zone)] INTENT: [uppertext(user.a_intent)]") else diff --git a/code/modules/surgery/organ_manipulation.dm b/code/modules/surgery/organ_manipulation.dm index 4ba9faaf41..f30d45e422 100644 --- a/code/modules/surgery/organ_manipulation.dm +++ b/code/modules/surgery/organ_manipulation.dm @@ -127,7 +127,7 @@ tool = I else I = tool - user.drop_item() + user.temporarilyRemoveItemFromInventory(I, TRUE) I.Insert(target) user.visible_message("[user] inserts [tool] into [target]'s [parse_zone(target_zone)]!", "You insert [tool] into [target]'s [parse_zone(target_zone)].") diff --git a/code/modules/surgery/organs/autosurgeon.dm b/code/modules/surgery/organs/autosurgeon.dm index caa6cc7a97..0de1683fbd 100644 --- a/code/modules/surgery/organs/autosurgeon.dm +++ b/code/modules/surgery/organs/autosurgeon.dm @@ -49,9 +49,8 @@ else if(!uses) to_chat(user, "[src] has already been used up.") return - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) return - I.forceMove(src) storedorgan = I to_chat(user, "You insert the [I] into [src].") else if(istype(I, /obj/item/screwdriver)) diff --git a/code/modules/surgery/organs/heart.dm b/code/modules/surgery/organs/heart.dm index d1699cb257..9308154c48 100644 --- a/code/modules/surgery/organs/heart.dm +++ b/code/modules/surgery/organs/heart.dm @@ -89,7 +89,7 @@ /obj/item/organ/heart/cursed/attack(mob/living/carbon/human/H, mob/living/carbon/human/user, obj/target) if(H == user && istype(H)) playsound(user,'sound/effects/singlebeat.ogg',40,1) - user.drop_item() + user.temporarilyRemoveItemFromInventory(src, TRUE) Insert(user) else return ..() diff --git a/code/modules/surgery/organs/organ_internal.dm b/code/modules/surgery/organs/organ_internal.dm index 4fdda7a7bc..681dcb21cf 100644 --- a/code/modules/surgery/organs/organ_internal.dm +++ b/code/modules/surgery/organs/organ_internal.dm @@ -92,10 +92,9 @@ if(status == ORGAN_ORGANIC) var/obj/item/reagent_containers/food/snacks/S = prepare_eat() if(S) - H.drop_item() - H.put_in_active_hand(S) - S.attack(H, H) qdel(src) + if(H.put_in_active_hand(S)) + S.attack(H, H) else ..() diff --git a/code/modules/surgery/prosthetic_replacement.dm b/code/modules/surgery/prosthetic_replacement.dm index e817416d7e..2dddb95872 100644 --- a/code/modules/surgery/prosthetic_replacement.dm +++ b/code/modules/surgery/prosthetic_replacement.dm @@ -63,9 +63,8 @@ tool.desc = "A container for holding body parts." tool.cut_overlays() tool = tool.contents[1] - if(istype(tool, /obj/item/bodypart)) + if(istype(tool, /obj/item/bodypart) && user.temporarilyRemoveItemFromInventory(tool)) var/obj/item/bodypart/L = tool - user.drop_item() L.attach_limb(target) if(organ_rejection_dam) target.adjustToxLoss(organ_rejection_dam) diff --git a/code/modules/vehicles/pimpin_ride.dm b/code/modules/vehicles/pimpin_ride.dm index 7be42b6e4d..0d97cb63c1 100644 --- a/code/modules/vehicles/pimpin_ride.dm +++ b/code/modules/vehicles/pimpin_ride.dm @@ -47,10 +47,9 @@ if(mybag) to_chat(user, "[src] already has a trashbag hooked!") return - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) return to_chat(user, "You hook the trashbag onto [src].") - I.loc = src mybag = I update_icon() else if(istype(I, /obj/item/janiupgrade)) From 988dd758503c66aeaed6c596e89a6b83bf720ae3 Mon Sep 17 00:00:00 2001 From: Kyle Spier-Swenson Date: Sat, 7 Oct 2017 10:37:27 -0700 Subject: [PATCH 03/95] Allows editing config.allow_admin_ooccolor --- .../configuration/entries/config.dm | 29 +++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff --git a/code/controllers/configuration/entries/config.dm b/code/controllers/configuration/entries/config.dm index ec96e88553..9da8e0105c 100644 --- a/code/controllers/configuration/entries/config.dm +++ b/code/controllers/configuration/entries/config.dm @@ -56,7 +56,6 @@ CONFIG_DEF(flag/log_twitter) // log certain expliotable parrots and other such f CONFIG_DEF(flag/log_world_topic) // log all world.Topic() calls CONFIG_DEF(flag/allow_admin_ooccolor) // Allows admins with relevant permissions to have their own ooc colour - protection = CONFIG_ENTRY_LOCKED CONFIG_DEF(flag/allow_vote_restart) // allow votes to restart @@ -351,4 +350,30 @@ CONFIG_DEF(number/error_msg_delay) // How long to wait between messaging admins CONFIG_DEF(flag/irc_announce_new_game) -CONFIG_DEF(flag/debug_admin_hrefs) \ No newline at end of file +<<<<<<< HEAD +CONFIG_DEF(flag/debug_admin_hrefs) +======= +CONFIG_DEF(flag/debug_admin_hrefs) + +CONFIG_DEF(number/mc_tick_rate/base_mc_tick_rate) + integer = FALSE + value = 1 + +CONFIG_DEF(number/mc_tick_rate/high_pop_mc_tick_rate) + integer = FALSE + value = 1.1 + +CONFIG_DEF(number/mc_tick_rate/high_pop_mc_mode_amount) + value = 65 + +CONFIG_DEF(number/mc_tick_rate/disable_high_pop_mc_mode_amount) + value = 60 + +CONFIG_TWEAK(number/mc_tick_rate) + abstract_type = /datum/config_entry/number/mc_tick_rate + +CONFIG_TWEAK(number/mc_tick_rate/ValidateAndSet(str_val)) + . = ..() + if (.) + Master.UpdateTickRate() +>>>>>>> 119f3fa... Allows editing config.allow_admin_ooccolor (#31371) From 4f32b7a0d4d8a27b4d26cbbed5212651e7fe9dba Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sat, 7 Oct 2017 14:36:28 -0400 Subject: [PATCH 04/95] Moves assert_gas() into a define it should always have been, speeding up atmos slightly --- code/__DEFINES/atmospherics.dm | 10 +- .../game/mecha/equipment/tools/other_tools.dm | 2 +- .../effects/effect_system/effects_smoke.dm | 2 +- code/game/objects/items/tanks/jetpack.dm | 214 ++++++++++++++++++ code/game/objects/items/tanks/tank_types.dm | 17 +- code/game/turfs/turf.dm | 2 +- code/modules/admin/verbs/debug.dm | 2 +- .../atmospherics/gasmixtures/gas_mixture.dm | 43 ++-- .../gasmixtures/immutable_mixtures.dm | 2 +- .../atmospherics/gasmixtures/reactions.dm | 8 +- .../components/trinary_devices/filter.dm | 3 +- .../unary_devices/oxygen_generator.dm | 2 +- .../components/unary_devices/tank.dm | 2 +- .../components/unary_devices/vent_scrubber.dm | 14 +- .../atmospherics/machinery/other/miner.dm | 2 +- .../machinery/portable/canister.dm | 2 +- .../machinery/portable/scrubber.dm | 2 +- 17 files changed, 266 insertions(+), 63 deletions(-) diff --git a/code/__DEFINES/atmospherics.dm b/code/__DEFINES/atmospherics.dm index c6ca2cf0ec..c38f4d932e 100644 --- a/code/__DEFINES/atmospherics.dm +++ b/code/__DEFINES/atmospherics.dm @@ -175,4 +175,12 @@ #define LAVALAND_EQUIPMENT_EFFECT_PRESSURE 50 //what pressure you have to be under to increase the effect of equipment meant for lavaland #define LAVALAND_DEFAULT_ATMOS "o2=14;n2=23;TEMP=300" -#define THERMAL_ENERGY(gas) (gas.temperature * gas.heat_capacity()) \ No newline at end of file +#define THERMAL_ENERGY(gas) (gas.temperature * gas.heat_capacity()) + +#define ADD_GAS(gas_id, out_list)\ + var/list/tmp_gaslist = GLOB.gaslist_cache[gas_id];\ + out_list[gas_id] = tmp_gaslist.Copy(); + +//ASSERT_GAS(gas_id, gas_mixture) - used to guarantee that the gas list for this id exists in gas_mixture.gases. +//Must be used before adding to a gas. May be used before reading from a gas. +#define ASSERT_GAS(gas_id, gas_mixture) if (!gas_mixture.gases[gas_id]) { ADD_GAS(gas_id, gas_mixture.gases) }; diff --git a/code/game/mecha/equipment/tools/other_tools.dm b/code/game/mecha/equipment/tools/other_tools.dm index e22db80bb7..3eaddc14d2 100644 --- a/code/game/mecha/equipment/tools/other_tools.dm +++ b/code/game/mecha/equipment/tools/other_tools.dm @@ -426,7 +426,7 @@ if(!istype(T)) return var/datum/gas_mixture/GM = new - GM.assert_gas("plasma") + ASSERT_GAS("plasma", GM) if(prob(10)) GM.gases["plasma"][MOLES] += 100 GM.temperature = 1500+T0C //should be enough to start a fire diff --git a/code/game/objects/effects/effect_system/effects_smoke.dm b/code/game/objects/effects/effect_system/effects_smoke.dm index 3f32b18178..538ea3bd84 100644 --- a/code/game/objects/effects/effect_system/effects_smoke.dm +++ b/code/game/objects/effects/effect_system/effects_smoke.dm @@ -169,7 +169,7 @@ qdel(H) var/list/G_gases = G.gases if(G_gases["plasma"]) - G.assert_gas("n2") + ASSERT_GAS("n2", G) G_gases["n2"][MOLES] += (G_gases["plasma"][MOLES]) G_gases["plasma"][MOLES] = 0 G.garbage_collect() diff --git a/code/game/objects/items/tanks/jetpack.dm b/code/game/objects/items/tanks/jetpack.dm index 650da88240..65e37ed906 100644 --- a/code/game/objects/items/tanks/jetpack.dm +++ b/code/game/objects/items/tanks/jetpack.dm @@ -1,3 +1,4 @@ +<<<<<<< HEAD /obj/item/tank/jetpack name = "jetpack (empty)" desc = "A tank of compressed gas for use as propulsion in zero-gravity areas. Use with caution." @@ -209,3 +210,216 @@ var/obj/item/clothing/suit/space/hardsuit/C = wear_suit J = C.jetpack return J +======= +/obj/item/tank/jetpack + name = "jetpack (empty)" + desc = "A tank of compressed gas for use as propulsion in zero-gravity areas. Use with caution." + icon_state = "jetpack" + item_state = "jetpack" + lefthand_file = 'icons/mob/inhands/equipment/jetpacks_lefthand.dmi' + righthand_file = 'icons/mob/inhands/equipment/jetpacks_righthand.dmi' + w_class = WEIGHT_CLASS_BULKY + distribute_pressure = ONE_ATMOSPHERE * O2STANDARD + actions_types = list(/datum/action/item_action/set_internals, /datum/action/item_action/toggle_jetpack, /datum/action/item_action/jetpack_stabilization) + var/gas_type = "o2" + var/on = FALSE + var/stabilizers = FALSE + var/full_speed = TRUE // If the jetpack will have a speedboost in space/nograv or not + var/datum/effect_system/trail_follow/ion/ion_trail + +/obj/item/tank/jetpack/New() + ..() + if(gas_type) + ASSERT_GAS(gas_type,air_contents) + air_contents.gases[gas_type][MOLES] = (6 * ONE_ATMOSPHERE) * volume / (R_IDEAL_GAS_EQUATION * T20C) + + ion_trail = new + ion_trail.set_up(src) + +/obj/item/tank/jetpack/ui_action_click(mob/user, action) + if(istype(action, /datum/action/item_action/toggle_jetpack)) + cycle(user) + else if(istype(action, /datum/action/item_action/jetpack_stabilization)) + if(on) + stabilizers = !stabilizers + to_chat(user, "You turn the jetpack stabilization [stabilizers ? "on" : "off"].") + else + toggle_internals(user) + + +/obj/item/tank/jetpack/proc/cycle(mob/user) + if(user.incapacitated()) + return + + if(!on) + turn_on() + to_chat(user, "You turn the jetpack on.") + else + turn_off() + to_chat(user, "You turn the jetpack off.") + for(var/X in actions) + var/datum/action/A = X + A.UpdateButtonIcon() + + +/obj/item/tank/jetpack/proc/turn_on() + on = TRUE + icon_state = "[initial(icon_state)]-on" + ion_trail.start() + +/obj/item/tank/jetpack/proc/turn_off() + on = FALSE + stabilizers = FALSE + icon_state = initial(icon_state) + ion_trail.stop() + +/obj/item/tank/jetpack/proc/allow_thrust(num, mob/living/user) + if(!on) + return + if((num < 0.005 || air_contents.total_moles() < num)) + turn_off() + return + + var/datum/gas_mixture/removed = air_contents.remove(num) + if(removed.total_moles() < 0.005) + turn_off() + return + + var/turf/T = get_turf(user) + T.assume_air(removed) + + return 1 + +/obj/item/tank/jetpack/suicide_act(mob/user) + if (istype(user, /mob/living/carbon/human/)) + var/mob/living/carbon/human/H = user + H.forcesay("WHAT THE FUCK IS CARBON DIOXIDE?") + H.visible_message("[user] is suffocating [user.p_them()]self with [src]! It looks like [user.p_they()] didn't read what that jetpack says!") + return (OXYLOSS) + else + ..() + +/obj/item/tank/jetpack/void + name = "void jetpack (oxygen)" + desc = "It works well in a void." + icon_state = "jetpack-void" + item_state = "jetpack-void" + +/obj/item/tank/jetpack/oxygen + name = "jetpack (oxygen)" + desc = "A tank of compressed oxygen for use as propulsion in zero-gravity areas. Use with caution." + icon_state = "jetpack" + item_state = "jetpack" + +/obj/item/tank/jetpack/oxygen/harness + name = "jet harness (oxygen)" + desc = "A lightweight tactical harness, used by those who don't want to be weighed down by traditional jetpacks." + icon_state = "jetpack-mini" + item_state = "jetpack-mini" + volume = 40 + throw_range = 7 + w_class = WEIGHT_CLASS_NORMAL + +/obj/item/tank/jetpack/oxygen/captain + name = "\improper Captain's jetpack" + desc = "A compact, lightweight jetpack containing a high amount of compressed oxygen." + icon_state = "jetpack-captain" + item_state = "jetpack-captain" + w_class = WEIGHT_CLASS_NORMAL + volume = 90 + resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | ACID_PROOF //steal objective items are hard to destroy. + +/obj/item/tank/jetpack/oxygen/security + name = "security jetpack (oxygen)" + desc = "A tank of compressed oxygen for use as propulsion in zero-gravity areas by security forces." + icon_state = "jetpack-sec" + item_state = "jetpack-sec" + +/obj/item/tank/jetpack/carbondioxide + name = "jetpack (carbon dioxide)" + desc = "A tank of compressed carbon dioxide for use as propulsion in zero-gravity areas. Painted black to indicate that it should not be used as a source for internals." + icon_state = "jetpack-black" + item_state = "jetpack-black" + distribute_pressure = 0 + gas_type = "co2" + + +/obj/item/tank/jetpack/suit + name = "hardsuit jetpack upgrade" + desc = "A modular, compact set of thrusters designed to integrate with a hardsuit. It is fueled by a tank inserted into the suit's storage compartment." + origin_tech = "materials=4;magnets=4;engineering=5" + icon_state = "jetpack-mining" + item_state = "jetpack-black" + w_class = WEIGHT_CLASS_NORMAL + actions_types = list(/datum/action/item_action/toggle_jetpack, /datum/action/item_action/jetpack_stabilization) + volume = 1 + slot_flags = null + gas_type = null + full_speed = FALSE + var/datum/gas_mixture/temp_air_contents + var/obj/item/tank/internals/tank = null + +/obj/item/tank/jetpack/suit/New() + ..() + STOP_PROCESSING(SSobj, src) + temp_air_contents = air_contents + +/obj/item/tank/jetpack/suit/attack_self() + return + +/obj/item/tank/jetpack/suit/cycle(mob/user) + if(!istype(loc, /obj/item/clothing/suit/space/hardsuit)) + to_chat(user, "\The [src] must be connected to a hardsuit!") + return + + var/mob/living/carbon/human/H = user + if(!istype(H.s_store, /obj/item/tank/internals)) + to_chat(user, "You need a tank in your suit storage!") + return + ..() + +/obj/item/tank/jetpack/suit/turn_on() + if(!istype(loc, /obj/item/clothing/suit/space/hardsuit) || !ishuman(loc.loc)) + return + var/mob/living/carbon/human/H = loc.loc + tank = H.s_store + air_contents = tank.air_contents + START_PROCESSING(SSobj, src) + ..() + +/obj/item/tank/jetpack/suit/turn_off() + tank = null + air_contents = temp_air_contents + STOP_PROCESSING(SSobj, src) + ..() + +/obj/item/tank/jetpack/suit/process() + if(!istype(loc, /obj/item/clothing/suit/space/hardsuit) || !ishuman(loc.loc)) + turn_off() + return + var/mob/living/carbon/human/H = loc.loc + if(!tank || tank != H.s_store) + turn_off() + return + ..() + + +//Return a jetpack that the mob can use +//Back worn jetpacks, hardsuit internal packs, and so on. +//Used in Process_Spacemove() and wherever you want to check for/get a jetpack + +/mob/proc/get_jetpack() + return + +/mob/living/carbon/get_jetpack() + var/obj/item/tank/jetpack/J = back + if(istype(J)) + return J + +/mob/living/carbon/human/get_jetpack() + var/obj/item/tank/jetpack/J = ..() + if(!istype(J) && istype(wear_suit, /obj/item/clothing/suit/space/hardsuit)) + var/obj/item/clothing/suit/space/hardsuit/C = wear_suit + J = C.jetpack + return J +>>>>>>> 6b9832d... Merge pull request #31388 from vuonojenmustaturska/atmoscherrypicking diff --git a/code/game/objects/items/tanks/tank_types.dm b/code/game/objects/items/tanks/tank_types.dm index 9892c35445..146693dd05 100644 --- a/code/game/objects/items/tanks/tank_types.dm +++ b/code/game/objects/items/tanks/tank_types.dm @@ -21,7 +21,7 @@ /obj/item/tank/internals/oxygen/New() ..() - air_contents.assert_gas("o2") + ASSERT_GAS("o2", air_contents) air_contents.gases["o2"][MOLES] = (6*ONE_ATMOSPHERE)*volume/(R_IDEAL_GAS_EQUATION*T20C) return @@ -87,7 +87,7 @@ /obj/item/tank/internals/plasma/New() ..() - air_contents.assert_gas("plasma") + ASSERT_GAS("plasma", air_contents) air_contents.gases["plasma"][MOLES] = (3*ONE_ATMOSPHERE)*volume/(R_IDEAL_GAS_EQUATION*T20C) return @@ -105,8 +105,7 @@ return ..() /obj/item/tank/internals/plasma/full/New() - ..() - air_contents.assert_gas("plasma") + ..() // Plasma asserted in parent air_contents.gases["plasma"][MOLES] = (10*ONE_ATMOSPHERE)*volume/(R_IDEAL_GAS_EQUATION*T20C) return @@ -125,13 +124,12 @@ /obj/item/tank/internals/plasmaman/New() ..() - air_contents.assert_gas("plasma") + ASSERT_GAS("plasma", air_contents) air_contents.gases["plasma"][MOLES] = (3*ONE_ATMOSPHERE)*volume/(R_IDEAL_GAS_EQUATION*T20C) return /obj/item/tank/internals/plasmaman/full/New() - ..() - air_contents.assert_gas("plasma") + ..() // Plasma asserted in parent air_contents.gases["plasma"][MOLES] = (10*ONE_ATMOSPHERE)*volume/(R_IDEAL_GAS_EQUATION*T20C) return @@ -145,8 +143,7 @@ w_class = WEIGHT_CLASS_SMALL //thanks i forgot this /obj/item/tank/internals/plasmaman/belt/full/New() - ..() - air_contents.assert_gas("plasma") + ..() // Plasma asserted in parent air_contents.gases["plasma"][MOLES] = (10*ONE_ATMOSPHERE)*volume/(R_IDEAL_GAS_EQUATION*T20C) return @@ -169,7 +166,7 @@ /obj/item/tank/internals/emergency_oxygen/New() ..() - air_contents.assert_gas("o2") + ASSERT_GAS("o2", air_contents) air_contents.gases["o2"][MOLES] = (3*ONE_ATMOSPHERE)*volume/(R_IDEAL_GAS_EQUATION*T20C) return diff --git a/code/game/turfs/turf.dm b/code/game/turfs/turf.dm index b02444281c..66406b88be 100755 --- a/code/game/turfs/turf.dm +++ b/code/game/turfs/turf.dm @@ -289,7 +289,7 @@ continue var/list/S_gases = S.air.gases for(var/id in S_gases) - total.assert_gas(id) + ASSERT_GAS(id, total) total_gases[id][MOLES] += S_gases[id][MOLES] total.temperature += S.air.temperature diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index cff80e6117..7fc6bc2e9f 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -715,7 +715,7 @@ GLOBAL_PROTECT(LastAdminCalledProc) if(Rad.anchored) if(!Rad.loaded_tank) var/obj/item/tank/internals/plasma/Plasma = new/obj/item/tank/internals/plasma(Rad) - Plasma.air_contents.assert_gas("plasma") + ASSERT_GAS("plasma", Plasma.air_contents) Plasma.air_contents.gases["plasma"][MOLES] = 70 Rad.drainratio = 0 Rad.loaded_tank = Plasma diff --git a/code/modules/atmospherics/gasmixtures/gas_mixture.dm b/code/modules/atmospherics/gasmixtures/gas_mixture.dm index ac8349f5f7..b9cba55ae6 100644 --- a/code/modules/atmospherics/gasmixtures/gas_mixture.dm +++ b/code/modules/atmospherics/gasmixtures/gas_mixture.dm @@ -21,10 +21,6 @@ GLOBAL_LIST_INIT(gaslist_cache, init_gaslist_cache()) cached_gas[ARCHIVE] = 0 cached_gas[GAS_META] = GLOB.meta_gas_info[id] -#define GASLIST(id, out_list)\ - var/list/tmp_gaslist = GLOB.gaslist_cache[id];\ - out_list = tmp_gaslist.Copy(); - /datum/gas_mixture var/list/gases var/temperature //kelvins @@ -43,30 +39,18 @@ GLOBAL_LIST_INIT(gaslist_cache, init_gaslist_cache()) //listmos procs - //assert_gas(gas_id) - used to guarantee that the gas list for this id exists. - //Must be used before adding to a gas. May be used before reading from a gas. -/datum/gas_mixture/proc/assert_gas(gas_id) - var/cached_gases = gases - if(cached_gases[gas_id]) - return - GASLIST(gas_id, cached_gases[gas_id]) +// The following procs used to live here: thermal_energy(), assert_gas() and add_gas(). They have been moved into defines in code/__DEFINES/atmospherics.dm - //assert_gases(args) - shorthand for calling assert_gas() once for each gas type. + //assert_gases(args) - shorthand for calling ASSERT_GAS() once for each gas type. /datum/gas_mixture/proc/assert_gases() for(var/id in args) - assert_gas(id) - - //add_gas(gas_id) - similar to assert_gas(), but does not check for an existing - //gas list for this id. This can clobber existing gases. - //Used instead of assert_gas() when you know the gas does not exist. Faster than assert_gas(). -/datum/gas_mixture/proc/add_gas(gas_id) - GASLIST(gas_id, gases[gas_id]) + ASSERT_GAS(id, src) //add_gases(args) - shorthand for calling add_gas() once for each gas_type. /datum/gas_mixture/proc/add_gases() var/cached_gases = gases for(var/id in args) - GASLIST(id, cached_gases[id]) + ADD_GAS(id, cached_gases) //garbage_collect() - removes any gas list which is empty. //If called with a list as an argument, only removes gas lists with IDs from that list. @@ -80,6 +64,7 @@ GLOBAL_LIST_INIT(gaslist_cache, init_gaslist_cache()) cached_gases -= id //PV = nRT + /datum/gas_mixture/proc/heat_capacity() //joules per kelvin var/list/cached_gases = gases . = 0 @@ -195,7 +180,7 @@ GLOBAL_LIST_INIT(gaslist_cache, init_gaslist_cache()) var/list/giver_gases = giver.gases //gas transfer for(var/giver_id in giver_gases) - assert_gas(giver_id) + ASSERT_GAS(giver_id, src) cached_gases[giver_id][MOLES] += giver_gases[giver_id][MOLES] return 1 @@ -212,7 +197,7 @@ GLOBAL_LIST_INIT(gaslist_cache, init_gaslist_cache()) removed.temperature = temperature for(var/id in cached_gases) - removed.add_gas(id) + ADD_GAS(id, removed.gases) removed_gases[id][MOLES] = QUANTIZE((cached_gases[id][MOLES] / sum) * amount) cached_gases[id][MOLES] -= removed_gases[id][MOLES] garbage_collect() @@ -230,7 +215,7 @@ GLOBAL_LIST_INIT(gaslist_cache, init_gaslist_cache()) removed.temperature = temperature for(var/id in cached_gases) - removed.add_gas(id) + ADD_GAS(id, removed.gases) removed_gases[id][MOLES] = QUANTIZE(cached_gases[id][MOLES] * ratio) cached_gases[id][MOLES] -= removed_gases[id][MOLES] @@ -245,18 +230,19 @@ GLOBAL_LIST_INIT(gaslist_cache, init_gaslist_cache()) copy.temperature = temperature for(var/id in cached_gases) - copy.add_gas(id) + ADD_GAS(id, copy.gases) copy_gases[id][MOLES] = cached_gases[id][MOLES] return copy + /datum/gas_mixture/copy_from(datum/gas_mixture/sample) var/list/cached_gases = gases //accessing datum vars is slower than proc vars var/list/sample_gases = sample.gases temperature = sample.temperature for(var/id in sample_gases) - assert_gas(id) + ASSERT_GAS(id,src) cached_gases[id][MOLES] = sample_gases[id][MOLES] //remove all gases not in the sample @@ -282,7 +268,7 @@ GLOBAL_LIST_INIT(gaslist_cache, init_gaslist_cache()) gas -= "TEMP" gases.Cut() for(var/id in gas) - add_gas(id) + ADD_GAS(id, gases) gases[id][MOLES] = text2num(gas[id]) return 1 @@ -310,10 +296,9 @@ GLOBAL_LIST_INIT(gaslist_cache, init_gaslist_cache()) //GAS TRANSFER for(var/id in sharer_gases - cached_gases) // create gases not in our cache - add_gas(id) + ADD_GAS(id, gases) for(var/id in cached_gases) // transfer gases - if(!sharer_gases[id]) //checking here prevents an uneeded proc call if the check fails. - sharer.add_gas(id) + ASSERT_GAS(id, sharer) var/gas = cached_gases[id] var/sharergas = sharer_gases[id] diff --git a/code/modules/atmospherics/gasmixtures/immutable_mixtures.dm b/code/modules/atmospherics/gasmixtures/immutable_mixtures.dm index 086e21daca..50e1b38e52 100644 --- a/code/modules/atmospherics/gasmixtures/immutable_mixtures.dm +++ b/code/modules/atmospherics/gasmixtures/immutable_mixtures.dm @@ -69,7 +69,7 @@ /datum/gas_mixture/immutable/cloner/garbage_collect() ..() - add_gas("n2") + ADD_GAS("n2", gases) gases["n2"][MOLES] = MOLES_O2STANDARD + MOLES_N2STANDARD /datum/gas_mixture/immutable/cloner/heat_capacity() diff --git a/code/modules/atmospherics/gasmixtures/reactions.dm b/code/modules/atmospherics/gasmixtures/reactions.dm index abbfcf8924..c466213409 100644 --- a/code/modules/atmospherics/gasmixtures/reactions.dm +++ b/code/modules/atmospherics/gasmixtures/reactions.dm @@ -57,7 +57,7 @@ cached_gases["co2"][MOLES] -= reaction_rate cached_gases["agent_b"][MOLES] -= reaction_rate*0.05 - air.assert_gas("o2") //only need to assert oxygen, as this reaction doesn't occur without the other gases existing + ASSERT_GAS("o2", air) //only need to assert oxygen, as this reaction doesn't occur without the other gases existing cached_gases["o2"][MOLES] += reaction_rate air.temperature -= (reaction_rate*20000)/air.heat_capacity() @@ -126,7 +126,7 @@ if(burned_fuel) energy_released += FIRE_CARBON_ENERGY_RELEASED * burned_fuel - air.assert_gas("co2") + ASSERT_GAS("co2", air) cached_gases["co2"][MOLES] += burned_fuel cached_results[id] += burned_fuel @@ -142,14 +142,14 @@ else temperature_scale = (temperature-PLASMA_MINIMUM_BURN_TEMPERATURE)/(PLASMA_UPPER_TEMPERATURE-PLASMA_MINIMUM_BURN_TEMPERATURE) if(temperature_scale > 0) - air.assert_gas("o2") + ASSERT_GAS("o2", air) oxygen_burn_rate = OXYGEN_BURN_RATE_BASE - temperature_scale if(cached_gases["o2"][MOLES] > cached_gases["plasma"][MOLES]*PLASMA_OXYGEN_FULLBURN) plasma_burn_rate = (cached_gases["plasma"][MOLES]*temperature_scale)/PLASMA_BURN_RATE_DELTA else plasma_burn_rate = (temperature_scale*(cached_gases["o2"][MOLES]/PLASMA_OXYGEN_FULLBURN))/PLASMA_BURN_RATE_DELTA if(plasma_burn_rate > MINIMUM_HEAT_CAPACITY) - air.assert_gas("co2") + ASSERT_GAS("co2", air) cached_gases["plasma"][MOLES] = QUANTIZE(cached_gases["plasma"][MOLES] - plasma_burn_rate) cached_gases["o2"][MOLES] = QUANTIZE(cached_gases["o2"][MOLES] - (plasma_burn_rate * oxygen_burn_rate)) cached_gases["co2"][MOLES] += plasma_burn_rate diff --git a/code/modules/atmospherics/machinery/components/trinary_devices/filter.dm b/code/modules/atmospherics/machinery/components/trinary_devices/filter.dm index 2b5a94ef64..4e3ef0f3cc 100644 --- a/code/modules/atmospherics/machinery/components/trinary_devices/filter.dm +++ b/code/modules/atmospherics/machinery/components/trinary_devices/filter.dm @@ -96,7 +96,7 @@ var/datum/gas_mixture/filtered_out = new filtered_out.temperature = removed.temperature - filtered_out.assert_gas(filter_type) + ASSERT_GAS(filter_type, filtered_out) filtered_out.gases[filter_type][MOLES] = removed.gases[filter_type][MOLES] removed.gases[filter_type][MOLES] = 0 @@ -166,4 +166,3 @@ if(. && on && is_operational()) to_chat(user, "You cannot unwrench [src], turn it off first!") return FALSE - diff --git a/code/modules/atmospherics/machinery/components/unary_devices/oxygen_generator.dm b/code/modules/atmospherics/machinery/components/unary_devices/oxygen_generator.dm index e31d1efa96..0be10fecf0 100644 --- a/code/modules/atmospherics/machinery/components/unary_devices/oxygen_generator.dm +++ b/code/modules/atmospherics/machinery/components/unary_devices/oxygen_generator.dm @@ -47,7 +47,7 @@ var/added_oxygen = oxygen_content - total_moles air_contents.temperature = (current_heat_capacity*air_contents.temperature + 20*added_oxygen*T0C)/(current_heat_capacity+20*added_oxygen) - air_contents.assert_gas("o2") + ASSERT_GAS("o2", air_contents) air_contents.gases["o2"][MOLES] += added_oxygen update_parents() diff --git a/code/modules/atmospherics/machinery/components/unary_devices/tank.dm b/code/modules/atmospherics/machinery/components/unary_devices/tank.dm index 4b2b1843fe..3b0055edab 100644 --- a/code/modules/atmospherics/machinery/components/unary_devices/tank.dm +++ b/code/modules/atmospherics/machinery/components/unary_devices/tank.dm @@ -16,7 +16,7 @@ air_contents.volume = volume air_contents.temperature = T20C if(gas_type) - air_contents.assert_gas(gas_type) + ASSERT_GAS(gas_type, air_contents) air_contents.gases[gas_type][MOLES] = AIR_CONTENTS name = "[name] ([air_contents.gases[gas_type][GAS_META][META_GAS_NAME]])" diff --git a/code/modules/atmospherics/machinery/components/unary_devices/vent_scrubber.dm b/code/modules/atmospherics/machinery/components/unary_devices/vent_scrubber.dm index d92b061cec..1abf84df10 100644 --- a/code/modules/atmospherics/machinery/components/unary_devices/vent_scrubber.dm +++ b/code/modules/atmospherics/machinery/components/unary_devices/vent_scrubber.dm @@ -196,37 +196,37 @@ filtered_out.temperature = removed.temperature if(scrub_Toxins && removed_gases["plasma"]) - filtered_out.add_gas("plasma") + ADD_GAS("plasma", filtered_out.gases) filtered_gases["plasma"][MOLES] = removed_gases["plasma"][MOLES] removed.gases["plasma"][MOLES] = 0 if(scrub_CO2 && removed_gases["co2"]) - filtered_out.add_gas("co2") + ADD_GAS("co2", filtered_out.gases) filtered_gases["co2"][MOLES] = removed_gases["co2"][MOLES] removed_gases["co2"][MOLES] = 0 if(removed_gases["agent_b"]) - filtered_out.add_gas("agent_b") + ADD_GAS("agent_b", filtered_out.gases) filtered_gases["agent_b"][MOLES] = removed_gases["agent_b"][MOLES] removed_gases["agent_b"][MOLES] = 0 if(scrub_N2O && removed_gases["n2o"]) - filtered_out.add_gas("n2o") + ADD_GAS("n2o", filtered_out.gases) filtered_gases["n2o"][MOLES] = removed_gases["n2o"][MOLES] removed_gases["n2o"][MOLES] = 0 if(scrub_BZ && removed_gases["bz"]) - filtered_out.add_gas("bz") + ADD_GAS("bz", filtered_out.gases) filtered_gases["bz"][MOLES] = removed_gases["bz"][MOLES] removed_gases["bz"][MOLES] = 0 if(scrub_Freon && removed_gases["freon"]) - filtered_out.add_gas("freon") + ADD_GAS("freon", filtered_out.gases) filtered_gases["freon"][MOLES] = removed_gases["freon"][MOLES] removed_gases["freon"][MOLES] = 0 if(scrub_WaterVapor && removed_gases["water_vapor"]) - filtered_out.add_gas("water_vapor") + ADD_GAS("water_vapor", filtered_out.gases) filtered_gases["water_vapor"][MOLES] = removed_gases["water_vapor"][MOLES] removed_gases["water_vapor"][MOLES] = 0 diff --git a/code/modules/atmospherics/machinery/other/miner.dm b/code/modules/atmospherics/machinery/other/miner.dm index 20439e5c2b..1db4c5edd3 100644 --- a/code/modules/atmospherics/machinery/other/miner.dm +++ b/code/modules/atmospherics/machinery/other/miner.dm @@ -132,7 +132,7 @@ if(!isopenturf(O)) return FALSE var/datum/gas_mixture/merger = new - merger.assert_gas(spawn_id) + ASSERT_GAS(spawn_id, merger) merger.gases[spawn_id][MOLES] = (spawn_mol) merger.temperature = spawn_temp O.assume_air(merger) diff --git a/code/modules/atmospherics/machinery/portable/canister.dm b/code/modules/atmospherics/machinery/portable/canister.dm index 024330ed7e..c08ef25b61 100644 --- a/code/modules/atmospherics/machinery/portable/canister.dm +++ b/code/modules/atmospherics/machinery/portable/canister.dm @@ -174,7 +174,7 @@ /obj/machinery/portable_atmospherics/canister/proc/create_gas() if(gas_type) - air_contents.add_gas(gas_type) + ADD_GAS(gas_type, air_contents.gases) if(starter_temp) air_contents.temperature = starter_temp air_contents.gases[gas_type][MOLES] = (maximum_pressure * filled) * air_contents.volume / (R_IDEAL_GAS_EQUATION * air_contents.temperature) diff --git a/code/modules/atmospherics/machinery/portable/scrubber.dm b/code/modules/atmospherics/machinery/portable/scrubber.dm index 93475a00a7..7a76405a90 100644 --- a/code/modules/atmospherics/machinery/portable/scrubber.dm +++ b/code/modules/atmospherics/machinery/portable/scrubber.dm @@ -45,7 +45,7 @@ filtered.temperature = filtering.temperature for(var/gas in filtering.gases & scrubbing) - filtered.add_gas(gas) + ADD_GAS(gas, filtered.gases) filtered.gases[gas][MOLES] = filtering.gases[gas][MOLES] // Shuffle the "bad" gasses to the filtered mixture. filtering.gases[gas][MOLES] = 0 filtering.garbage_collect() // Now that the gasses are set to 0, clean up the mixture. From 98a34c22115468b0b9f81f7d92a5a3896792e7dd Mon Sep 17 00:00:00 2001 From: Robustin Date: Sat, 7 Oct 2017 19:01:30 -0400 Subject: [PATCH 05/95] Virus Neuter Fix (#31392) --- code/datums/diseases/advance/advance.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/datums/diseases/advance/advance.dm b/code/datums/diseases/advance/advance.dm index 26f42fa059..2f39f99ca0 100644 --- a/code/datums/diseases/advance/advance.dm +++ b/code/datums/diseases/advance/advance.dm @@ -290,9 +290,10 @@ if(!id) var/list/L = list() for(var/datum/symptom/S in symptoms) - L += S.id if(S.neutered) - L += "N" + L += "[S.id]N" + else + L += S.id L = sortList(L) // Sort the list so it doesn't matter which order the symptoms are in. var/result = jointext(L, ":") id = result From 0ad78d0c4463daffe6a2fc2fd87f92ff9bb17069 Mon Sep 17 00:00:00 2001 From: bawhoppen Date: Sat, 7 Oct 2017 19:11:17 -0500 Subject: [PATCH 07/95] frown emoji (#31393) --- code/game/objects/items/stacks/wrap.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/objects/items/stacks/wrap.dm b/code/game/objects/items/stacks/wrap.dm index 8d42b97e95..baa462e907 100644 --- a/code/game/objects/items/stacks/wrap.dm +++ b/code/game/objects/items/stacks/wrap.dm @@ -7,7 +7,7 @@ /obj/item/stack/wrapping_paper name = "wrapping paper" desc = "Wrap packages with this festive paper to make gifts." - icon = 'icons/obj/items_and_weapons.dmi' + icon = 'icons/obj/stack_objects.dmi' icon_state = "wrap_paper" flags_1 = NOBLUDGEON_1 amount = 25 @@ -28,7 +28,7 @@ /obj/item/stack/packageWrap name = "package wrapper" desc = "You can use this to wrap items in." - icon = 'icons/obj/items_and_weapons.dmi' + icon = 'icons/obj/stack_objects.dmi' icon_state = "deliveryPaper" flags_1 = NOBLUDGEON_1 amount = 25 @@ -109,7 +109,7 @@ /obj/item/c_tube name = "cardboard tube" desc = "A tube... of cardboard." - icon = 'icons/obj/items_and_weapons.dmi' + icon = 'icons/obj/stack_objects.dmi' icon_state = "c_tube" throwforce = 0 w_class = WEIGHT_CLASS_TINY From 92ec5c11ab79402d12561c143861fecc13776132 Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Sat, 7 Oct 2017 20:12:53 -0400 Subject: [PATCH 09/95] Fixes being able to sell camera mobs to CentCom (#31306) * Fixes being able to sell camera mobs to CENTCOM * Did it Ninja's way. --- code/__DEFINES/is_helpers.dm | 2 ++ code/__HELPERS/unsorted.dm | 2 +- code/modules/holodeck/area_copy.dm | 2 +- code/modules/shuttle/supply.dm | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/code/__DEFINES/is_helpers.dm b/code/__DEFINES/is_helpers.dm index 1de917d5e1..c3da908ee1 100644 --- a/code/__DEFINES/is_helpers.dm +++ b/code/__DEFINES/is_helpers.dm @@ -133,6 +133,8 @@ #define isovermind(A) (istype(A, /mob/camera/blob)) +#define iscameramob(A) (istype(A, /mob/camera)) + //Objects #define isobj(A) istype(A, /obj) //override the byond proc because it returns true on children of /atom/movable that aren't objs diff --git a/code/__HELPERS/unsorted.dm b/code/__HELPERS/unsorted.dm index 5e190ab709..6c7bb0cda6 100644 --- a/code/__HELPERS/unsorted.dm +++ b/code/__HELPERS/unsorted.dm @@ -289,7 +289,7 @@ Turf and target are separate in case you want to teleport some distance from a t var/list/pois = list() for(var/mob/M in mobs) if(skip_mindless && (!M.mind && !M.ckey)) - if(!isbot(M) && !istype(M, /mob/camera) && !ismegafauna(M)) + if(!isbot(M) && !iscameramob(M) && !ismegafauna(M)) continue if(M.client && M.client.holder && M.client.holder.fakekey) //stealthmins continue diff --git a/code/modules/holodeck/area_copy.dm b/code/modules/holodeck/area_copy.dm index 9da772eaee..295441b04e 100644 --- a/code/modules/holodeck/area_copy.dm +++ b/code/modules/holodeck/area_copy.dm @@ -103,7 +103,7 @@ GLOBAL_LIST_INIT(duplicate_forbidden_vars,list("tag","area","type","loc","locs", copiedobjs += O2.GetAllContents() for(var/mob/M in T) - if(istype(M, /mob/camera)) + if(iscameramob(M)) continue // If we need to check for more mobs, I'll add a variable var/mob/SM = DuplicateObject(M , perfectcopy=TRUE, newloc = B, holoitem=TRUE) copiedobjs += SM.GetAllContents() diff --git a/code/modules/shuttle/supply.dm b/code/modules/shuttle/supply.dm index 56c7b85410..7e1dee155d 100644 --- a/code/modules/shuttle/supply.dm +++ b/code/modules/shuttle/supply.dm @@ -120,7 +120,7 @@ GLOBAL_LIST_INIT(blacklisted_cargo_types, typecacheof(list( for(var/place in shuttle_areas) var/area/shuttle/shuttle_area = place for(var/atom/movable/AM in shuttle_area) - if(AM.anchored) + if(AM.anchored || iscameramob(AM)) continue sold_atoms += export_item_and_contents(AM, contraband, emagged, dry_run = FALSE) From 661c2d293b69e4399476fe115a873d1c8a9d96eb Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sat, 7 Oct 2017 22:45:04 -0500 Subject: [PATCH 11/95] Update client_procs.dm --- code/modules/client/client_procs.dm | 3 --- 1 file changed, 3 deletions(-) diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm index 8e8361194d..e755ff28ac 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -351,11 +351,8 @@ GLOBAL_LIST(external_rsc_urls) if (menuitem) menuitem.Load_checked(src) -<<<<<<< HEAD hook_vr("client_new",list(src)) -======= Master.UpdateTickRate() ->>>>>>> bc4d4e7... Merge pull request #31374 from MrStonedOne/highpopmode ////////////// //DISCONNECT// From 12506ade241109b675b2164ddd00376830ea7971 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sat, 7 Oct 2017 22:48:23 -0500 Subject: [PATCH 12/95] Update cough.dm --- .../datums/diseases/advance/symptoms/cough.dm | 101 ++++++------------ 1 file changed, 30 insertions(+), 71 deletions(-) diff --git a/code/datums/diseases/advance/symptoms/cough.dm b/code/datums/diseases/advance/symptoms/cough.dm index 6b84e88dfb..f0178576bf 100644 --- a/code/datums/diseases/advance/symptoms/cough.dm +++ b/code/datums/diseases/advance/symptoms/cough.dm @@ -1,79 +1,39 @@ -/* -////////////////////////////////////// - -Coughing - - Noticable. - Little Resistance. - Doesn't increase stage speed much. - Transmittable. - Low Level. - -BONUS - Will force the affected mob to drop small items! - -////////////////////////////////////// -*/ - -/datum/symptom/cough - - name = "Cough" +/* +////////////////////////////////////// + +Coughing + + Noticable. + Little Resistance. + Doesn't increase stage speed much. + Transmittable. + Low Level. + +BONUS + Will force the affected mob to drop small items! + +////////////////////////////////////// +*/ + +/datum/symptom/cough + + name = "Cough" desc = "The virus irritates the throat of the host, causing occasional coughing." - stealth = -1 - resistance = 3 - stage_speed = 1 - transmittable = 2 - level = 1 - severity = 1 - base_message_chance = 15 - symptom_delay_min = 2 - symptom_delay_max = 15 - var/infective = FALSE + stealth = -1 + resistance = 3 + stage_speed = 1 + transmittable = 2 + level = 1 + severity = 1 + base_message_chance = 15 + symptom_delay_min = 2 + symptom_delay_max = 15 + var/infective = FALSE threshold_desc = "Resistance 3: Host will drop small items when coughing.
\ Resistance 10: Occasionally causes coughing fits that stun the host.
\ Stage Speed 6: Increases cough frequency.
\ If Airborne: Coughing will infect bystanders.
\ Stealth 4: The symptom remains hidden until active." -<<<<<<< HEAD - -/datum/symptom/cough/Start(datum/disease/advance/A) - ..() - if(A.properties["stealth"] >= 4) - suppress_warning = TRUE - if(A.spread_flags &= AIRBORNE) //infect bystanders - infective = TRUE - if(A.properties["resistance"] >= 3) //strong enough to drop items - power = 1.5 - if(A.properties["resistance"] >= 10) //strong enough to stun (rarely) - power = 2 - if(A.properties["stage_rate"] >= 6) //cough more often - symptom_delay_max = 10 - -/datum/symptom/cough/Activate(datum/disease/advance/A) - if(!..()) - return - var/mob/living/M = A.affected_mob - switch(A.stage) - if(1, 2, 3) - if(prob(base_message_chance) && !suppress_warning) - to_chat(M, "[pick("You swallow excess mucus.", "You lightly cough.")]") - else - M.emote("cough") - if(power >= 1.5) - var/obj/item/I = M.get_active_held_item() - if(I && I.w_class == WEIGHT_CLASS_TINY) - M.drop_item() - if(power >= 2 && prob(10)) - to_chat(M, "[pick("You have a coughing fit!", "You can't stop coughing!")]") - M.Stun(20) - M.emote("cough") - addtimer(CALLBACK(M, /mob/.proc/emote, "cough"), 6) - addtimer(CALLBACK(M, /mob/.proc/emote, "cough"), 12) - addtimer(CALLBACK(M, /mob/.proc/emote, "cough"), 18) - if(infective) - A.spread(1) - -======= /datum/symptom/cough/Start(datum/disease/advance/A) ..() @@ -112,4 +72,3 @@ BONUS if(infective) A.spread(1) ->>>>>>> b6d349e... Remove drop_item, drop_item_v, put_in_hands_or_del (#31386) From 68fa18f489df3a94a532ffefd80e204d09d6c389 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sat, 7 Oct 2017 22:48:55 -0500 Subject: [PATCH 13/95] Update PDApainter.dm --- code/game/machinery/PDApainter.dm | 218 +++++++++++------------------- 1 file changed, 79 insertions(+), 139 deletions(-) diff --git a/code/game/machinery/PDApainter.dm b/code/game/machinery/PDApainter.dm index 9721fb6ee1..00289ee84b 100644 --- a/code/game/machinery/PDApainter.dm +++ b/code/game/machinery/PDApainter.dm @@ -1,32 +1,32 @@ -/obj/machinery/pdapainter - name = "\improper PDA painter" - desc = "A PDA painting machine. To use, simply insert your PDA and choose the desired preset paint scheme." - icon = 'icons/obj/pda.dmi' - icon_state = "pdapainter" +/obj/machinery/pdapainter + name = "\improper PDA painter" + desc = "A PDA painting machine. To use, simply insert your PDA and choose the desired preset paint scheme." + icon = 'icons/obj/pda.dmi' + icon_state = "pdapainter" density = TRUE anchored = TRUE - var/obj/item/device/pda/storedpda = null - var/list/colorlist = list() - max_integrity = 200 - - -/obj/machinery/pdapainter/update_icon() - cut_overlays() - - if(stat & BROKEN) - icon_state = "[initial(icon_state)]-broken" - return - - if(storedpda) - add_overlay("[initial(icon_state)]-closed") - - if(powered()) - icon_state = initial(icon_state) - else - icon_state = "[initial(icon_state)]-off" - - return - + var/obj/item/device/pda/storedpda = null + var/list/colorlist = list() + max_integrity = 200 + + +/obj/machinery/pdapainter/update_icon() + cut_overlays() + + if(stat & BROKEN) + icon_state = "[initial(icon_state)]-broken" + return + + if(storedpda) + add_overlay("[initial(icon_state)]-closed") + + if(powered()) + icon_state = initial(icon_state) + else + icon_state = "[initial(icon_state)]-off" + + return + /obj/machinery/pdapainter/Initialize() . = ..() var/list/blocked = list( @@ -37,74 +37,15 @@ /obj/item/device/pda/syndicate) for(var/P in typesof(/obj/item/device/pda) - blocked) - var/obj/item/device/pda/D = new P - - //D.name = "PDA Style [colorlist.len+1]" //Gotta set the name, otherwise it all comes up as "PDA" - D.name = D.icon_state //PDAs don't have unique names, but using the sprite names works. - - src.colorlist += D - -/obj/machinery/pdapainter/Destroy() + var/obj/item/device/pda/D = new P + + //D.name = "PDA Style [colorlist.len+1]" //Gotta set the name, otherwise it all comes up as "PDA" + D.name = D.icon_state //PDAs don't have unique names, but using the sprite names works. + + src.colorlist += D + +/obj/machinery/pdapainter/Destroy() QDEL_NULL(storedpda) -<<<<<<< HEAD - return ..() - -/obj/machinery/pdapainter/on_deconstruction() - if(storedpda) - storedpda.forceMove(loc) - storedpda = null - -/obj/machinery/pdapainter/contents_explosion(severity, target) - if(storedpda) - storedpda.ex_act(severity, target) - -/obj/machinery/pdapainter/handle_atom_del(atom/A) - if(A == storedpda) - storedpda = null - update_icon() - -/obj/machinery/pdapainter/attackby(obj/item/O, mob/user, params) - if(default_unfasten_wrench(user, O)) - power_change() - return - - else if(istype(O, /obj/item/device/pda)) - if(storedpda) - to_chat(user, "There is already a PDA inside!") - return - else - var/obj/item/device/pda/P = user.get_active_held_item() - if(istype(P)) - if(!user.drop_item()) - return - storedpda = P - P.loc = src - P.add_fingerprint(user) - update_icon() - - else if(istype(O, /obj/item/weldingtool) && user.a_intent != INTENT_HARM) - var/obj/item/weldingtool/WT = O - if(stat & BROKEN) - if(WT.remove_fuel(0,user)) - user.visible_message("[user] is repairing [src].", \ - "You begin repairing [src]...", \ - "You hear welding.") - playsound(loc, WT.usesound, 40, 1) - if(do_after(user,40*WT.toolspeed, 1, target = src)) - if(!WT.isOn() || !(stat & BROKEN)) - return - to_chat(user, "You repair [src].") - playsound(loc, 'sound/items/welder2.ogg', 50, 1) - stat &= ~BROKEN - obj_integrity = max_integrity - update_icon() - else - to_chat(user, "[src] does not need repairs.") - else - return ..() - -/obj/machinery/pdapainter/deconstruct(disassembled = TRUE) -======= return ..() /obj/machinery/pdapainter/on_deconstruction() @@ -158,49 +99,48 @@ return ..() /obj/machinery/pdapainter/deconstruct(disassembled = TRUE) ->>>>>>> b6d349e... Remove drop_item, drop_item_v, put_in_hands_or_del (#31386) if(!(flags_1 & NODECONSTRUCT_1)) - if(!(stat & BROKEN)) - stat |= BROKEN - update_icon() - -/obj/machinery/pdapainter/attack_hand(mob/user) - if(!..()) - add_fingerprint(user) - - if(storedpda) - var/obj/item/device/pda/P - P = input(user, "Select your color!", "PDA Painting") as null|anything in colorlist - if(!P) - return - if(!in_range(src, user)) - return - if(!storedpda)//is the pda still there? - return - storedpda.icon_state = P.icon_state - storedpda.desc = P.desc - ejectpda() - - else - to_chat(user, "\The [src] is empty.") - - -/obj/machinery/pdapainter/verb/ejectpda() - set name = "Eject PDA" - set category = "Object" - set src in oview(1) - - if(usr.stat || usr.restrained() || !usr.canmove) - return - - if(storedpda) - storedpda.loc = get_turf(src.loc) - storedpda = null - update_icon() - else - to_chat(usr, "The [src] is empty.") - - -/obj/machinery/pdapainter/power_change() - ..() - update_icon() + if(!(stat & BROKEN)) + stat |= BROKEN + update_icon() + +/obj/machinery/pdapainter/attack_hand(mob/user) + if(!..()) + add_fingerprint(user) + + if(storedpda) + var/obj/item/device/pda/P + P = input(user, "Select your color!", "PDA Painting") as null|anything in colorlist + if(!P) + return + if(!in_range(src, user)) + return + if(!storedpda)//is the pda still there? + return + storedpda.icon_state = P.icon_state + storedpda.desc = P.desc + ejectpda() + + else + to_chat(user, "\The [src] is empty.") + + +/obj/machinery/pdapainter/verb/ejectpda() + set name = "Eject PDA" + set category = "Object" + set src in oview(1) + + if(usr.stat || usr.restrained() || !usr.canmove) + return + + if(storedpda) + storedpda.loc = get_turf(src.loc) + storedpda = null + update_icon() + else + to_chat(usr, "The [src] is empty.") + + +/obj/machinery/pdapainter/power_change() + ..() + update_icon() From eabe7f67f51cc7a0c03ed909f087e170de270f85 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sat, 7 Oct 2017 22:49:19 -0500 Subject: [PATCH 14/95] Update constructable_frame.dm --- code/game/machinery/constructable_frame.dm | 283 ++------------------- 1 file changed, 21 insertions(+), 262 deletions(-) diff --git a/code/game/machinery/constructable_frame.dm b/code/game/machinery/constructable_frame.dm index bca494e8e0..99cbded13a 100644 --- a/code/game/machinery/constructable_frame.dm +++ b/code/game/machinery/constructable_frame.dm @@ -1,260 +1,20 @@ -/obj/structure/frame - name = "frame" - icon = 'icons/obj/stock_parts.dmi' - icon_state = "box_0" +/obj/structure/frame + name = "frame" + icon = 'icons/obj/stock_parts.dmi' + icon_state = "box_0" density = TRUE - max_integrity = 250 - var/obj/item/circuitboard/circuit = null - var/state = 1 - -/obj/structure/frame/examine(user) - ..() - if(circuit) - to_chat(user, "It has \a [circuit] installed.") - - -/obj/structure/frame/deconstruct(disassembled = TRUE) + max_integrity = 250 + var/obj/item/circuitboard/circuit = null + var/state = 1 + +/obj/structure/frame/examine(user) + ..() + if(circuit) + to_chat(user, "It has \a [circuit] installed.") + + +/obj/structure/frame/deconstruct(disassembled = TRUE) if(!(flags_1 & NODECONSTRUCT_1)) -<<<<<<< HEAD - new /obj/item/stack/sheet/metal(loc, 5) - if(circuit) - circuit.forceMove(loc) - circuit = null - qdel(src) - - -/obj/structure/frame/machine - name = "machine frame" - var/list/components = null - var/list/req_components = null - var/list/req_component_names = null // user-friendly names of components - -/obj/structure/frame/machine/examine(user) - ..() - if(state == 3 && req_components && req_component_names) - var/hasContent = 0 - var/requires = "It requires" - - for(var/i = 1 to req_components.len) - var/tname = req_components[i] - var/amt = req_components[tname] - if(amt == 0) - continue - var/use_and = i == req_components.len - requires += "[(hasContent ? (use_and ? ", and" : ",") : "")] [amt] [amt == 1 ? req_component_names[tname] : "[req_component_names[tname]]\s"]" - hasContent = 1 - - if(hasContent) - to_chat(user, requires + ".") - else - to_chat(user, "It does not require any more components.") - -/obj/structure/frame/machine/proc/update_namelist() - if(!req_components) - return - - req_component_names = new() - for(var/tname in req_components) - if(ispath(tname, /obj/item/stack)) - var/obj/item/stack/S = tname - var/singular_name = initial(S.singular_name) - if(singular_name) - req_component_names[tname] = singular_name - else - req_component_names[tname] = initial(S.name) - else - var/obj/O = tname - req_component_names[tname] = initial(O.name) - -/obj/structure/frame/machine/proc/get_req_components_amt() - var/amt = 0 - for(var/path in req_components) - amt += req_components[path] - return amt - -/obj/structure/frame/machine/attackby(obj/item/P, mob/user, params) - switch(state) - if(1) - if(istype(P, /obj/item/circuitboard/machine)) - to_chat(user, "The frame needs wiring first!") - return - else if(istype(P, /obj/item/circuitboard)) - to_chat(user, "This frame does not accept circuit boards of this type!") - return - if(istype(P, /obj/item/stack/cable_coil)) - var/obj/item/stack/cable_coil/C = P - if(C.get_amount() >= 5) - playsound(src.loc, 'sound/items/deconstruct.ogg', 50, 1) - to_chat(user, "You start to add cables to the frame...") - if(do_after(user, 20*P.toolspeed, target = src)) - if(C.get_amount() >= 5 && state == 1) - C.use(5) - to_chat(user, "You add cables to the frame.") - state = 2 - icon_state = "box_1" - else - to_chat(user, "You need five length of cable to wire the frame!") - return - if(istype(P, /obj/item/screwdriver) && !anchored) - playsound(src.loc, P.usesound, 50, 1) - user.visible_message("[user] disassembles the frame.", \ - "You start to disassemble the frame...", "You hear banging and clanking.") - if(do_after(user, 40*P.toolspeed, target = src)) - if(state == 1) - to_chat(user, "You disassemble the frame.") - var/obj/item/stack/sheet/metal/M = new (loc, 5) - M.add_fingerprint(user) - qdel(src) - return - if(istype(P, /obj/item/wrench)) - to_chat(user, "You start [anchored ? "un" : ""]securing [name]...") - playsound(src.loc, P.usesound, 75, 1) - if(do_after(user, 40*P.toolspeed, target = src)) - if(state == 1) - to_chat(user, "You [anchored ? "un" : ""]secure [name].") - anchored = !anchored - return - - if(2) - if(istype(P, /obj/item/wrench)) - to_chat(user, "You start [anchored ? "un" : ""]securing [name]...") - playsound(src.loc, P.usesound, 75, 1) - if(do_after(user, 40*P.toolspeed, target = src)) - to_chat(user, "You [anchored ? "un" : ""]secure [name].") - anchored = !anchored - return - - if(istype(P, /obj/item/circuitboard/machine)) - if(!anchored) - to_chat(user, "The frame needs to be secured first!") - return - var/obj/item/circuitboard/machine/B = P - if(!user.drop_item()) - return - playsound(src.loc, 'sound/items/deconstruct.ogg', 50, 1) - to_chat(user, "You add the circuit board to the frame.") - circuit = B - B.loc = src - icon_state = "box_2" - state = 3 - components = list() - req_components = B.req_components.Copy() - update_namelist() - return - - else if(istype(P, /obj/item/circuitboard)) - to_chat(user, "This frame does not accept circuit boards of this type!") - return - - if(istype(P, /obj/item/wirecutters)) - playsound(src.loc, P.usesound, 50, 1) - to_chat(user, "You remove the cables.") - state = 1 - icon_state = "box_0" - var/obj/item/stack/cable_coil/A = new /obj/item/stack/cable_coil( src.loc ) - A.amount = 5 - return - - if(3) - if(istype(P, /obj/item/crowbar)) - playsound(src.loc, P.usesound, 50, 1) - state = 2 - circuit.loc = src.loc - components.Remove(circuit) - circuit = null - if(components.len == 0) - to_chat(user, "You remove the circuit board.") - else - to_chat(user, "You remove the circuit board and other components.") - for(var/atom/movable/A in components) - A.loc = src.loc - desc = initial(desc) - req_components = null - components = null - icon_state = "box_1" - return - - if(istype(P, /obj/item/screwdriver)) - var/component_check = 1 - for(var/R in req_components) - if(req_components[R] > 0) - component_check = 0 - break - if(component_check) - playsound(src.loc, P.usesound, 50, 1) - var/obj/machinery/new_machine = new src.circuit.build_path(src.loc, 1) - new_machine.on_construction() - for(var/obj/O in new_machine.component_parts) - qdel(O) - new_machine.component_parts = list() - for(var/obj/O in src) - O.loc = null - new_machine.component_parts += O - circuit.loc = null - new_machine.RefreshParts() - qdel(src) - return - - if(istype(P, /obj/item/storage/part_replacer) && P.contents.len && get_req_components_amt()) - var/obj/item/storage/part_replacer/replacer = P - var/list/added_components = list() - var/list/part_list = list() - - //Assemble a list of current parts, then sort them by their rating! - for(var/obj/item/stock_parts/co in replacer) - part_list += co - //Sort the parts. This ensures that higher tier items are applied first. - part_list = sortTim(part_list, /proc/cmp_rped_sort) - - for(var/path in req_components) - while(req_components[path] > 0 && (locate(path) in part_list)) - var/obj/item/part = (locate(path) in part_list) - added_components[part] = path - replacer.remove_from_storage(part, src) - req_components[path]-- - part_list -= part - - for(var/obj/item/stock_parts/part in added_components) - components += part - to_chat(user, "[part.name] applied.") - if(added_components.len) - replacer.play_rped_sound() - return - - if(isitem(P) && get_req_components_amt()) - for(var/I in req_components) - if(istype(P, I) && (req_components[I] > 0)) - if(istype(P, /obj/item/stack)) - var/obj/item/stack/S = P - var/used_amt = min(round(S.get_amount()), req_components[I]) - - if(used_amt && S.use(used_amt)) - var/obj/item/stack/NS = locate(S.merge_type) in components - - if(!NS) - NS = new S.merge_type(src, used_amt) - components += NS - else - NS.add(used_amt) - - req_components[I] -= used_amt - to_chat(user, "You add [P] to [src].") - return - if(!user.drop_item()) - break - to_chat(user, "You add [P] to [src].") - P.forceMove(src) - components += P - req_components[I]-- - return 1 - to_chat(user, "You cannot add that to the machine!") - return 0 - if(user.a_intent == INTENT_HARM) - return ..() - - -/obj/structure/frame/machine/deconstruct(disassembled = TRUE) -======= new /obj/item/stack/sheet/metal(loc, 5) if(circuit) circuit.forceMove(loc) @@ -491,11 +251,10 @@ /obj/structure/frame/machine/deconstruct(disassembled = TRUE) ->>>>>>> b6d349e... Remove drop_item, drop_item_v, put_in_hands_or_del (#31386) if(!(flags_1 & NODECONSTRUCT_1)) - if(state >= 2) - new /obj/item/stack/cable_coil(loc , 5) - for(var/X in components) - var/obj/item/I = X - I.forceMove(loc) - ..() \ No newline at end of file + if(state >= 2) + new /obj/item/stack/cable_coil(loc , 5) + for(var/X in components) + var/obj/item/I = X + I.forceMove(loc) + ..() From 62d2b26c7a85516f392eacbb69417b9bc8f4e935 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sat, 7 Oct 2017 22:49:52 -0500 Subject: [PATCH 15/95] Update handcuffs.dm --- code/game/objects/items/handcuffs.dm | 376 +-------------------------- 1 file changed, 1 insertion(+), 375 deletions(-) diff --git a/code/game/objects/items/handcuffs.dm b/code/game/objects/items/handcuffs.dm index e7dfc96ab5..6fb85e5ad5 100644 --- a/code/game/objects/items/handcuffs.dm +++ b/code/game/objects/items/handcuffs.dm @@ -1,377 +1,3 @@ -<<<<<<< HEAD -/obj/item/restraints - breakouttime = 600 - -//Handcuffs - -/obj/item/restraints/handcuffs - name = "handcuffs" - desc = "Use this to keep prisoners in line." - gender = PLURAL - icon = 'icons/obj/items_and_weapons.dmi' - icon_state = "handcuff" - lefthand_file = 'icons/mob/inhands/equipment/security_lefthand.dmi' - righthand_file = 'icons/mob/inhands/equipment/security_righthand.dmi' - flags_1 = CONDUCT_1 - slot_flags = SLOT_BELT - throwforce = 0 - w_class = WEIGHT_CLASS_SMALL - throw_speed = 3 - throw_range = 5 - materials = list(MAT_METAL=500) - origin_tech = "engineering=3;combat=3" - breakouttime = 600 //Deciseconds = 60s = 1 minute - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 50) - var/cuffsound = 'sound/weapons/handcuffs.ogg' - var/trashtype = null //for disposable cuffs - -/obj/item/restraints/handcuffs/attack(mob/living/carbon/C, mob/living/carbon/human/user) - if(!istype(C)) - return - if(user.disabilities & CLUMSY && prob(50)) - to_chat(user, "Uh... how do those things work?!") - apply_cuffs(user,user) - return - - // chance of monkey retaliation - if(ismonkey(C) && prob(MONKEY_CUFF_RETALIATION_PROB)) - var/mob/living/carbon/monkey/M - M = C - M.retaliate(user) - - if(!C.handcuffed) - if(C.get_num_arms() >= 2 || C.get_arm_ignore()) - C.visible_message("[user] is trying to put [src.name] on [C]!", \ - "[user] is trying to put [src.name] on [C]!") - - playsound(loc, cuffsound, 30, 1, -2) - if(do_mob(user, C, 30) && (C.get_num_arms() >= 2 || C.get_arm_ignore())) - apply_cuffs(C,user) - to_chat(user, "You handcuff [C].") - SSblackbox.add_details("handcuffs","[type]") - - add_logs(user, C, "handcuffed") - else - to_chat(user, "You fail to handcuff [C]!") - else - to_chat(user, "[C] doesn't have two hands...") - -/obj/item/restraints/handcuffs/proc/apply_cuffs(mob/living/carbon/target, mob/user, var/dispense = 0) - if(target.handcuffed) - return - - if(!user.drop_item() && !dispense) - return - - var/obj/item/restraints/handcuffs/cuffs = src - if(trashtype) - cuffs = new trashtype() - else if(dispense) - cuffs = new type() - - cuffs.loc = target - target.handcuffed = cuffs - - target.update_handcuffed() - if(trashtype && !dispense) - qdel(src) - return - -/obj/item/restraints/handcuffs/sinew - name = "sinew restraints" - desc = "A pair of restraints fashioned from long strands of flesh." - icon = 'icons/obj/mining.dmi' - icon_state = "sinewcuff" - item_state = "sinewcuff" - breakouttime = 300 //Deciseconds = 30s - cuffsound = 'sound/weapons/cablecuff.ogg' - -/obj/item/restraints/handcuffs/cable - name = "cable restraints" - desc = "Looks like some cables tied together. Could be used to tie something up." - icon_state = "cuff_red" - item_state = "coil_red" - lefthand_file = 'icons/mob/inhands/equipment/tools_lefthand.dmi' - righthand_file = 'icons/mob/inhands/equipment/tools_righthand.dmi' - materials = list(MAT_METAL=150, MAT_GLASS=75) - origin_tech = "engineering=2" - breakouttime = 300 //Deciseconds = 30s - cuffsound = 'sound/weapons/cablecuff.ogg' - var/datum/robot_energy_storage/wirestorage = null - -/obj/item/restraints/handcuffs/cable/attack(mob/living/carbon/C, mob/living/carbon/human/user) - if(!istype(C)) - return - if(wirestorage && wirestorage.energy < 15) - to_chat(user, "You need at least 15 wire to restrain [C]!") - return - return ..() - -/obj/item/restraints/handcuffs/cable/apply_cuffs(mob/living/carbon/target, mob/user, var/dispense = 0) - if(wirestorage) - if(!wirestorage.use_charge(15)) - to_chat(user, "You need at least 15 wire to restrain [target]!") - return - return ..(target, user, 1) - - return ..() - -/obj/item/restraints/handcuffs/cable/red - icon_state = "cuff_red" - item_state = "coil_red" - -/obj/item/restraints/handcuffs/cable/yellow - icon_state = "cuff_yellow" - item_state = "coil_yellow" - -/obj/item/restraints/handcuffs/cable/blue - icon_state = "cuff_blue" - item_state = "coil_blue" - -/obj/item/restraints/handcuffs/cable/green - icon_state = "cuff_green" - item_state = "coil_green" - -/obj/item/restraints/handcuffs/cable/pink - icon_state = "cuff_pink" - item_state = "coil_pink" - -/obj/item/restraints/handcuffs/cable/orange - icon_state = "cuff_orange" - item_state = "coil_orange" - -/obj/item/restraints/handcuffs/cable/cyan - icon_state = "cuff_cyan" - item_state = "coil_cyan" - -/obj/item/restraints/handcuffs/cable/white - icon_state = "cuff_white" - item_state = "coil_white" - -/obj/item/restraints/handcuffs/alien - icon_state = "handcuffAlien" - -/obj/item/restraints/handcuffs/fake - name = "fake handcuffs" - desc = "Fake handcuffs meant for gag purposes." - breakouttime = 10 //Deciseconds = 1s - -/obj/item/restraints/handcuffs/fake/kinky - name = "kinky handcuffs" - desc = "Fake handcuffs meant for erotic roleplay." - icon_state = "handcuffGag" - -/obj/item/restraints/handcuffs/cable/attackby(obj/item/I, mob/user, params) - ..() - if(istype(I, /obj/item/stack/rods)) - var/obj/item/stack/rods/R = I - if (R.use(1)) - var/obj/item/wirerod/W = new /obj/item/wirerod - remove_item_from_storage(user) - user.put_in_hands(W) - to_chat(user, "You wrap the cable restraint around the top of the rod.") - qdel(src) - else - to_chat(user, "You need one rod to make a wired rod!") - return - else if(istype(I, /obj/item/stack/sheet/metal)) - var/obj/item/stack/sheet/metal/M = I - if(M.get_amount() < 6) - to_chat(user, "You need at least six metal sheets to make good enough weights!") - return - to_chat(user, "You begin to apply [I] to [src]...") - if(do_after(user, 35, target = src)) - if(M.get_amount() < 6 || !M) - return - var/obj/item/restraints/legcuffs/bola/S = new /obj/item/restraints/legcuffs/bola - M.use(6) - user.put_in_hands(S) - to_chat(user, "You make some weights out of [I] and tie them to [src].") - remove_item_from_storage(user) - qdel(src) - else - return ..() - -/obj/item/restraints/handcuffs/cable/zipties/cyborg/attack(mob/living/carbon/C, mob/user) - if(iscyborg(user)) - if(!C.handcuffed) - playsound(loc, 'sound/weapons/cablecuff.ogg', 30, 1, -2) - C.visible_message("[user] is trying to put zipties on [C]!", \ - "[user] is trying to put zipties on [C]!") - if(do_mob(user, C, 30)) - if(!C.handcuffed) - C.handcuffed = new /obj/item/restraints/handcuffs/cable/zipties/used(C) - C.update_handcuffed() - to_chat(user, "You handcuff [C].") - add_logs(user, C, "handcuffed") - else - to_chat(user, "You fail to handcuff [C]!") - -/obj/item/restraints/handcuffs/cable/zipties - name = "zipties" - desc = "Plastic, disposable zipties that can be used to restrain temporarily but are destroyed after use." - icon_state = "cuff_white" - lefthand_file = 'icons/mob/inhands/equipment/security_lefthand.dmi' - righthand_file = 'icons/mob/inhands/equipment/security_righthand.dmi' - materials = list() - breakouttime = 450 //Deciseconds = 45s - trashtype = /obj/item/restraints/handcuffs/cable/zipties/used - -/obj/item/restraints/handcuffs/cable/zipties/used - desc = "A pair of broken zipties." - icon_state = "cuff_white_used" - item_state = "cuff_white" - -/obj/item/restraints/handcuffs/cable/zipties/used/attack() - return - - -//Legcuffs - -/obj/item/restraints/legcuffs - name = "leg cuffs" - desc = "Use this to keep prisoners in line." - gender = PLURAL - icon = 'icons/obj/items_and_weapons.dmi' - icon_state = "handcuff" - lefthand_file = 'icons/mob/inhands/equipment/security_lefthand.dmi' - righthand_file = 'icons/mob/inhands/equipment/security_righthand.dmi' - flags_1 = CONDUCT_1 - throwforce = 0 - w_class = WEIGHT_CLASS_NORMAL - origin_tech = "engineering=3;combat=3" - slowdown = 7 - breakouttime = 300 //Deciseconds = 30s = 0.5 minute - -/obj/item/restraints/legcuffs/beartrap - name = "bear trap" - throw_speed = 1 - throw_range = 1 - icon_state = "beartrap" - desc = "A trap used to catch bears and other legged creatures." - origin_tech = "engineering=4" - var/armed = 0 - var/trap_damage = 20 - -/obj/item/restraints/legcuffs/beartrap/Initialize() - . = ..() - icon_state = "[initial(icon_state)][armed]" - -/obj/item/restraints/legcuffs/beartrap/suicide_act(mob/user) - user.visible_message("[user] is sticking [user.p_their()] head in the [src.name]! It looks like [user.p_theyre()] trying to commit suicide!") - playsound(loc, 'sound/weapons/bladeslice.ogg', 50, 1, -1) - return (BRUTELOSS) - -/obj/item/restraints/legcuffs/beartrap/attack_self(mob/user) - ..() - if(ishuman(user) && !user.stat && !user.restrained()) - armed = !armed - icon_state = "[initial(icon_state)][armed]" - to_chat(user, "[src] is now [armed ? "armed" : "disarmed"]") - -/obj/item/restraints/legcuffs/beartrap/Crossed(AM as mob|obj) - if(armed && isturf(src.loc)) - if(isliving(AM)) - var/mob/living/L = AM - var/snap = 0 - var/def_zone = "chest" - if(iscarbon(L)) - var/mob/living/carbon/C = L - snap = 1 - if(!C.lying) - def_zone = pick("l_leg", "r_leg") - if(!C.legcuffed && C.get_num_legs() >= 2) //beartrap can't cuff your leg if there's already a beartrap or legcuffs, or you don't have two legs. - C.legcuffed = src - src.loc = C - C.update_inv_legcuffed() - SSblackbox.add_details("handcuffs","[type]") - else if(isanimal(L)) - var/mob/living/simple_animal/SA = L - if(SA.mob_size > MOB_SIZE_TINY) - snap = 1 - if(L.movement_type & FLYING) - snap = 0 - if(snap) - armed = 0 - icon_state = "[initial(icon_state)][armed]" - playsound(src.loc, 'sound/effects/snap.ogg', 50, 1) - L.visible_message("[L] triggers \the [src].", \ - "You trigger \the [src]!") - L.apply_damage(trap_damage,BRUTE, def_zone) - ..() - -/obj/item/restraints/legcuffs/beartrap/energy - name = "energy snare" - armed = 1 - icon_state = "e_snare" - trap_damage = 0 - flags_1 = DROPDEL_1 - -/obj/item/restraints/legcuffs/beartrap/energy/New() - ..() - addtimer(CALLBACK(src, .proc/dissipate), 100) - -/obj/item/restraints/legcuffs/beartrap/energy/proc/dissipate() - if(!ismob(loc)) - do_sparks(1, TRUE, src) - qdel(src) - -/obj/item/restraints/legcuffs/beartrap/energy/attack_hand(mob/user) - Crossed(user) //honk - -/obj/item/restraints/legcuffs/beartrap/energy/cyborg - breakouttime = 20 // Cyborgs shouldn't have a strong restraint - -/obj/item/restraints/legcuffs/bola - name = "bola" - desc = "A restraining device designed to be thrown at the target. Upon connecting with said target, it will wrap around their legs, making it difficult for them to move quickly." - icon_state = "bola" - breakouttime = 35//easy to apply, easy to break out of - gender = NEUTER - origin_tech = "engineering=3;combat=1" - var/knockdown = 0 - -/obj/item/restraints/legcuffs/bola/throw_at(atom/target, range, speed, mob/thrower, spin=1, diagonals_first = 0, datum/callback/callback) - if(!..()) - return - playsound(src.loc,'sound/weapons/bolathrow.ogg', 75, 1) - -/obj/item/restraints/legcuffs/bola/throw_impact(atom/hit_atom) - if(..() || !iscarbon(hit_atom))//if it gets caught or the target can't be cuffed, - return//abort - var/mob/living/carbon/C = hit_atom - if(!C.legcuffed && C.get_num_legs() >= 2) - visible_message("\The [src] ensnares [C]!") - C.legcuffed = src - src.loc = C - C.update_inv_legcuffed() - SSblackbox.add_details("handcuffs","[type]") - to_chat(C, "\The [src] ensnares you!") - C.Knockdown(knockdown) - -/obj/item/restraints/legcuffs/bola/tactical//traitor variant - name = "reinforced bola" - desc = "A strong bola, made with a long steel chain. It looks heavy, enough so that it could trip somebody." - icon_state = "bola_r" - breakouttime = 70 - origin_tech = "engineering=4;combat=3" - knockdown = 20 - -/obj/item/restraints/legcuffs/bola/energy //For Security - name = "energy bola" - desc = "A specialized hard-light bola designed to ensnare fleeing criminals and aid in arrests." - icon_state = "ebola" - hitsound = 'sound/weapons/taserhit.ogg' - w_class = WEIGHT_CLASS_SMALL - breakouttime = 60 - -/obj/item/restraints/legcuffs/bola/energy/throw_impact(atom/hit_atom) - if(iscarbon(hit_atom)) - var/obj/item/restraints/legcuffs/beartrap/B = new /obj/item/restraints/legcuffs/beartrap/energy/cyborg(get_turf(hit_atom)) - B.Crossed(hit_atom) - qdel(src) - ..() -======= /obj/item/restraints breakouttime = 600 @@ -744,4 +370,4 @@ B.Crossed(hit_atom) qdel(src) ..() ->>>>>>> b6d349e... Remove drop_item, drop_item_v, put_in_hands_or_del (#31386) + From 6332ae6004cc1395566e959eed10c2a1e88755e8 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sat, 7 Oct 2017 22:50:21 -0500 Subject: [PATCH 16/95] Update paiwire.dm --- code/game/objects/items/paiwire.dm | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/code/game/objects/items/paiwire.dm b/code/game/objects/items/paiwire.dm index 6b6b3101c6..a20f89bc2b 100644 --- a/code/game/objects/items/paiwire.dm +++ b/code/game/objects/items/paiwire.dm @@ -1,18 +1,3 @@ -<<<<<<< HEAD -/obj/item/pai_cable - desc = "A flexible coated cable with a universal jack on one end." - name = "data cable" - icon = 'icons/obj/power.dmi' - icon_state = "wire1" - flags_1 = NOBLUDGEON_1 - var/obj/machinery/machine - -/obj/item/pai_cable/proc/plugin(obj/machinery/M, mob/living/user) - if(!user.drop_item()) - return - user.visible_message("[user] inserts [src] into a data port on [M].", "You insert [src] into a data port on [M].", "You hear the satisfying click of a wire jack fastening into place.") - src.loc = M -======= /obj/item/pai_cable desc = "A flexible coated cable with a universal jack on one end." name = "data cable" @@ -25,5 +10,4 @@ if(!user.transferItemToLoc(src, M)) return user.visible_message("[user] inserts [src] into a data port on [M].", "You insert [src] into a data port on [M].", "You hear the satisfying click of a wire jack fastening into place.") ->>>>>>> b6d349e... Remove drop_item, drop_item_v, put_in_hands_or_del (#31386) - machine = M \ No newline at end of file + machine = M From a7ac93dd2bd5780c104df1ae35b7d22b97f240e7 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sat, 7 Oct 2017 22:50:38 -0500 Subject: [PATCH 17/95] Update structures.dm --- code/game/objects/structures.dm | 176 ++++++++++++-------------------- 1 file changed, 66 insertions(+), 110 deletions(-) diff --git a/code/game/objects/structures.dm b/code/game/objects/structures.dm index 5504c1a8fc..85d124fefc 100644 --- a/code/game/objects/structures.dm +++ b/code/game/objects/structures.dm @@ -1,68 +1,25 @@ -/obj/structure - icon = 'icons/obj/structures.dmi' - pressure_resistance = 8 - max_integrity = 300 - var/climb_time = 20 - var/climb_stun = 20 - var/climbable = FALSE - var/mob/living/structureclimber - var/broken = 0 //similar to machinery's stat BROKEN - -/obj/structure/Initialize() - if (!armor) - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 50) - . = ..() - if(smooth) - queue_smooth(src) - queue_smooth_neighbors(src) - icon_state = "" +/obj/structure + icon = 'icons/obj/structures.dmi' + pressure_resistance = 8 + max_integrity = 300 + var/climb_time = 20 + var/climb_stun = 20 + var/climbable = FALSE + var/mob/living/structureclimber + var/broken = 0 //similar to machinery's stat BROKEN + +/obj/structure/Initialize() + if (!armor) + armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 50) + . = ..() + if(smooth) + queue_smooth(src) + queue_smooth_neighbors(src) + icon_state = "" GLOB.cameranet.updateVisibility(src) - -/obj/structure/Destroy() + +/obj/structure/Destroy() GLOB.cameranet.updateVisibility(src) -<<<<<<< HEAD - if(smooth) - queue_smooth_neighbors(src) - return ..() - -/obj/structure/attack_hand(mob/user) - . = ..() - add_fingerprint(user) - if(structureclimber && structureclimber != user) - user.changeNext_move(CLICK_CD_MELEE) - user.do_attack_animation(src) - structureclimber.Knockdown(40) - structureclimber.visible_message("[structureclimber.name] has been knocked off the [src]", "You're knocked off the [src]!", "You see [structureclimber.name] get knocked off the [src]") - interact(user) - -/obj/structure/interact(mob/user) - ui_interact(user) - -/obj/structure/ui_act(action, params) - ..() - add_fingerprint(usr) - -/obj/structure/MouseDrop_T(atom/movable/O, mob/user) - . = ..() - if(!climbable) - return - if(user == O && iscarbon(O)) - if(user.canmove) - climb_structure(user) - return - if ((!( istype(O, /obj/item/weapon) ) || user.get_active_held_item() != O)) - return - if(iscyborg(user)) - return - if(!user.drop_item()) - return - if (O.loc != src.loc) - step(O, get_dir(O, src)) - return - -/obj/structure/proc/do_climb(atom/movable/A) - if(climbable) -======= if(smooth) queue_smooth_neighbors(src) return ..() @@ -104,52 +61,51 @@ /obj/structure/proc/do_climb(atom/movable/A) if(climbable) ->>>>>>> b6d349e... Remove drop_item, drop_item_v, put_in_hands_or_del (#31386) density = FALSE - . = step(A,get_dir(A,src.loc)) + . = step(A,get_dir(A,src.loc)) density = TRUE - -/obj/structure/proc/climb_structure(mob/living/user) - src.add_fingerprint(user) - user.visible_message("[user] starts climbing onto [src].", \ - "You start climbing onto [src]...") - var/adjusted_climb_time = climb_time - if(user.restrained()) //climbing takes twice as long when restrained. - adjusted_climb_time *= 2 - if(isalien(user)) - adjusted_climb_time *= 0.25 //aliens are terrifyingly fast - structureclimber = user - if(do_mob(user, user, adjusted_climb_time)) - if(src.loc) //Checking if structure has been destroyed - if(do_climb(user)) - user.visible_message("[user] climbs onto [src].", \ - "You climb onto [src].") - add_logs(user, src, "climbed onto") - if(climb_stun) - user.Stun(climb_stun) - . = 1 - else - to_chat(user, "You fail to climb onto [src].") - structureclimber = null - -/obj/structure/examine(mob/user) - ..() - if(!(resistance_flags & INDESTRUCTIBLE)) - if(resistance_flags & ON_FIRE) - to_chat(user, "It's on fire!") - if(broken) - to_chat(user, "It appears to be broken.") - var/examine_status = examine_status(user) - if(examine_status) - to_chat(user, examine_status) - -/obj/structure/proc/examine_status(mob/user) //An overridable proc, mostly for falsewalls. - var/healthpercent = (obj_integrity/max_integrity) * 100 - switch(healthpercent) - if(50 to 99) - return "It looks slightly damaged." - if(25 to 50) - return "It appears heavily damaged." - if(0 to 25) - if(!broken) - return "It's falling apart!" + +/obj/structure/proc/climb_structure(mob/living/user) + src.add_fingerprint(user) + user.visible_message("[user] starts climbing onto [src].", \ + "You start climbing onto [src]...") + var/adjusted_climb_time = climb_time + if(user.restrained()) //climbing takes twice as long when restrained. + adjusted_climb_time *= 2 + if(isalien(user)) + adjusted_climb_time *= 0.25 //aliens are terrifyingly fast + structureclimber = user + if(do_mob(user, user, adjusted_climb_time)) + if(src.loc) //Checking if structure has been destroyed + if(do_climb(user)) + user.visible_message("[user] climbs onto [src].", \ + "You climb onto [src].") + add_logs(user, src, "climbed onto") + if(climb_stun) + user.Stun(climb_stun) + . = 1 + else + to_chat(user, "You fail to climb onto [src].") + structureclimber = null + +/obj/structure/examine(mob/user) + ..() + if(!(resistance_flags & INDESTRUCTIBLE)) + if(resistance_flags & ON_FIRE) + to_chat(user, "It's on fire!") + if(broken) + to_chat(user, "It appears to be broken.") + var/examine_status = examine_status(user) + if(examine_status) + to_chat(user, examine_status) + +/obj/structure/proc/examine_status(mob/user) //An overridable proc, mostly for falsewalls. + var/healthpercent = (obj_integrity/max_integrity) * 100 + switch(healthpercent) + if(50 to 99) + return "It looks slightly damaged." + if(25 to 50) + return "It appears heavily damaged." + if(0 to 25) + if(!broken) + return "It's falling apart!" From bc2b6b01c102f3f3248504a1df69ca80ec77866a Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sat, 7 Oct 2017 22:50:50 -0500 Subject: [PATCH 18/95] Update target_stake.dm --- code/game/objects/structures/target_stake.dm | 62 ++------------------ 1 file changed, 6 insertions(+), 56 deletions(-) diff --git a/code/game/objects/structures/target_stake.dm b/code/game/objects/structures/target_stake.dm index b70326b893..c3496678c2 100644 --- a/code/game/objects/structures/target_stake.dm +++ b/code/game/objects/structures/target_stake.dm @@ -1,59 +1,10 @@ -/obj/structure/target_stake - name = "target stake" - desc = "A thin platform with negatively-magnetized wheels." - icon = 'icons/obj/objects.dmi' - icon_state = "target_stake" +/obj/structure/target_stake + name = "target stake" + desc = "A thin platform with negatively-magnetized wheels." + icon = 'icons/obj/objects.dmi' + icon_state = "target_stake" density = TRUE flags_1 = CONDUCT_1 -<<<<<<< HEAD - var/obj/item/target/pinned_target - -/obj/structure/target_stake/Destroy() - if(pinned_target) - pinned_target.nullPinnedLoc() - return ..() - -/obj/structure/target_stake/proc/nullPinnedTarget() - pinned_target = null - -/obj/structure/target_stake/Move() - ..() - if(pinned_target) - pinned_target.loc = loc - -/obj/structure/target_stake/attackby(obj/item/target/T, mob/user) - if(pinned_target) - return - if(istype(T) && user.drop_item()) - pinned_target = T - T.pinnedLoc = src - T.density = TRUE - T.layer = OBJ_LAYER + 0.01 - T.loc = loc - to_chat(user, "You slide the target into the stake.") - -/obj/structure/target_stake/attack_hand(mob/user) - if(pinned_target) - removeTarget(user) - -/obj/structure/target_stake/proc/removeTarget(mob/user) - pinned_target.layer = OBJ_LAYER - pinned_target.loc = user.loc - pinned_target.nullPinnedLoc() - nullPinnedTarget() - if(ishuman(user)) - if(!user.get_active_held_item()) - user.put_in_hands(pinned_target) - to_chat(user, "You take the target out of the stake.") - else - pinned_target.loc = get_turf(user) - to_chat(user, "You take the target out of the stake.") - -/obj/structure/target_stake/bullet_act(obj/item/projectile/P) - if(pinned_target) - pinned_target.bullet_act(P) - else -======= var/obj/item/target/pinned_target /obj/structure/target_stake/Destroy() @@ -100,5 +51,4 @@ if(pinned_target) pinned_target.bullet_act(P) else ->>>>>>> b6d349e... Remove drop_item, drop_item_v, put_in_hands_or_del (#31386) - ..() \ No newline at end of file + ..() From cc3bd63d88bf7c16a36c51efe8e17657eb2a6752 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sat, 7 Oct 2017 22:51:05 -0500 Subject: [PATCH 19/95] Update seed_extractor.dm --- code/modules/hydroponics/seed_extractor.dm | 343 +++++++++------------ 1 file changed, 148 insertions(+), 195 deletions(-) diff --git a/code/modules/hydroponics/seed_extractor.dm b/code/modules/hydroponics/seed_extractor.dm index 3cc45bf9be..a917b6afeb 100644 --- a/code/modules/hydroponics/seed_extractor.dm +++ b/code/modules/hydroponics/seed_extractor.dm @@ -1,49 +1,3 @@ -<<<<<<< HEAD -/proc/seedify(obj/item/O, t_max, obj/machinery/seed_extractor/extractor, mob/living/user) - var/t_amount = 0 - if(t_max == -1) - if(extractor) - t_max = rand(1,4) * extractor.seed_multiplier - else - t_max = rand(1,4) - - var/seedloc = O.loc - if(extractor) - seedloc = extractor.loc - - if(istype(O, /obj/item/reagent_containers/food/snacks/grown/)) - var/obj/item/reagent_containers/food/snacks/grown/F = O - if(F.seed) - if(user && !user.drop_item()) //couldn't drop the item - return - while(t_amount < t_max) - var/obj/item/seeds/t_prod = F.seed.Copy() - t_prod.loc = seedloc - t_amount++ - qdel(O) - return 1 - - else if(istype(O, /obj/item/grown)) - var/obj/item/grown/F = O - if(F.seed) - if(user && !user.drop_item()) - return - while(t_amount < t_max) - var/obj/item/seeds/t_prod = F.seed.Copy() - t_prod.loc = seedloc - t_amount++ - qdel(O) - return 1 - - return 0 - - -/obj/machinery/seed_extractor - name = "seed extractor" - desc = "Extracts and bags seeds from produce." - icon = 'icons/obj/hydroponics/equipment.dmi' - icon_state = "sextractor" -======= /proc/seedify(obj/item/O, t_max, obj/machinery/seed_extractor/extractor, mob/living/user) var/t_amount = 0 if(t_max == -1) @@ -88,162 +42,161 @@ desc = "Extracts and bags seeds from produce." icon = 'icons/obj/hydroponics/equipment.dmi' icon_state = "sextractor" ->>>>>>> b6d349e... Remove drop_item, drop_item_v, put_in_hands_or_del (#31386) density = TRUE anchored = TRUE circuit = /obj/item/circuitboard/machine/seed_extractor - var/piles = list() - var/max_seeds = 1000 - var/seed_multiplier = 1 - -/obj/machinery/seed_extractor/RefreshParts() - for(var/obj/item/stock_parts/matter_bin/B in component_parts) - max_seeds = 1000 * B.rating - for(var/obj/item/stock_parts/manipulator/M in component_parts) - seed_multiplier = M.rating - -/obj/machinery/seed_extractor/attackby(obj/item/O, mob/user, params) - - if(default_deconstruction_screwdriver(user, "sextractor_open", "sextractor", O)) - return - - if(exchange_parts(user, O)) - return - - if(default_pry_open(O)) - return - - if(default_unfasten_wrench(user, O)) - return - - if(default_deconstruction_crowbar(O)) - return - + var/piles = list() + var/max_seeds = 1000 + var/seed_multiplier = 1 + +/obj/machinery/seed_extractor/RefreshParts() + for(var/obj/item/stock_parts/matter_bin/B in component_parts) + max_seeds = 1000 * B.rating + for(var/obj/item/stock_parts/manipulator/M in component_parts) + seed_multiplier = M.rating + +/obj/machinery/seed_extractor/attackby(obj/item/O, mob/user, params) + + if(default_deconstruction_screwdriver(user, "sextractor_open", "sextractor", O)) + return + + if(exchange_parts(user, O)) + return + + if(default_pry_open(O)) + return + + if(default_unfasten_wrench(user, O)) + return + + if(default_deconstruction_crowbar(O)) + return + if (istype(O, /obj/item/storage/bag/plants)) - var/obj/item/storage/P = O - var/loaded = 0 - for(var/obj/item/seeds/G in P.contents) - if(contents.len >= max_seeds) - break - ++loaded - add_seed(G) - if (loaded) - to_chat(user, "You put the seeds from \the [O.name] into [src].") - else - to_chat(user, "There are no seeds in \the [O.name].") - return - - else if(seedify(O,-1, src, user)) - to_chat(user, "You extract some seeds.") - return + var/obj/item/storage/P = O + var/loaded = 0 + for(var/obj/item/seeds/G in P.contents) + if(contents.len >= max_seeds) + break + ++loaded + add_seed(G) + if (loaded) + to_chat(user, "You put the seeds from \the [O.name] into [src].") + else + to_chat(user, "There are no seeds in \the [O.name].") + return + + else if(seedify(O,-1, src, user)) + to_chat(user, "You extract some seeds.") + return else if (istype(O, /obj/item/seeds)) <<<<<<< HEAD - if(add_seed(O)) - to_chat(user, "You add [O] to [src.name].") - updateUsrDialog() - return - else if(user.a_intent != INTENT_HARM) - to_chat(user, "You can't extract any seeds from \the [O.name]!") - else - return ..() - -/datum/seed_pile - var/name = "" - var/lifespan = 0 //Saved stats - var/endurance = 0 - var/maturation = 0 - var/production = 0 - var/yield = 0 - var/potency = 0 - var/amount = 0 - -/datum/seed_pile/New(var/name, var/life, var/endur, var/matur, var/prod, var/yie, var/poten, var/am = 1) - src.name = name - src.lifespan = life - src.endurance = endur - src.maturation = matur - src.production = prod - src.yield = yie - src.potency = poten - src.amount = am - -/obj/machinery/seed_extractor/attack_hand(mob/user) - user.set_machine(src) - interact(user) - -/obj/machinery/seed_extractor/interact(mob/user) - if (stat) - return 0 - - var/dat = "Stored seeds:
" - - if (contents.len == 0) - dat += "No seeds" - else - dat += "" - for (var/datum/seed_pile/O in piles) - dat += "" - dat += "" - dat += "
NameLifespanEnduranceMaturationProductionYieldPotencyStock
[O.name][O.lifespan][O.endurance][O.maturation][O.production][O.yield][O.potency]" - dat += "Vend ([O.amount] left)
" - var/datum/browser/popup = new(user, "seed_ext", name, 700, 400) - popup.set_content(dat) - popup.open() - return - -/obj/machinery/seed_extractor/Topic(var/href, var/list/href_list) - if(..()) - return - usr.set_machine(src) - - href_list["li"] = text2num(href_list["li"]) - href_list["en"] = text2num(href_list["en"]) - href_list["ma"] = text2num(href_list["ma"]) - href_list["pr"] = text2num(href_list["pr"]) - href_list["yi"] = text2num(href_list["yi"]) - href_list["pot"] = text2num(href_list["pot"]) - - for (var/datum/seed_pile/N in piles)//Find the pile we need to reduce... - if (href_list["name"] == N.name && href_list["li"] == N.lifespan && href_list["en"] == N.endurance && href_list["ma"] == N.maturation && href_list["pr"] == N.production && href_list["yi"] == N.yield && href_list["pot"] == N.potency) - if(N.amount <= 0) - return - N.amount = max(N.amount - 1, 0) - if (N.amount <= 0) - piles -= N - qdel(N) - break - - for (var/obj/T in contents)//Now we find the seed we need to vend - var/obj/item/seeds/O = T - if (O.plantname == href_list["name"] && O.lifespan == href_list["li"] && O.endurance == href_list["en"] && O.maturation == href_list["ma"] && O.production == href_list["pr"] && O.yield == href_list["yi"] && O.potency == href_list["pot"]) - O.loc = src.loc - break - - src.updateUsrDialog() - return - -/obj/machinery/seed_extractor/proc/add_seed(obj/item/seeds/O) - if(contents.len >= 999) - to_chat(usr, "\The [src] is full.") - return 0 - - if(ismob(O.loc)) - var/mob/M = O.loc - if(!M.drop_item()) - return 0 + if(add_seed(O)) + to_chat(user, "You add [O] to [src.name].") + updateUsrDialog() + return + else if(user.a_intent != INTENT_HARM) + to_chat(user, "You can't extract any seeds from \the [O.name]!") + else + return ..() + +/datum/seed_pile + var/name = "" + var/lifespan = 0 //Saved stats + var/endurance = 0 + var/maturation = 0 + var/production = 0 + var/yield = 0 + var/potency = 0 + var/amount = 0 + +/datum/seed_pile/New(var/name, var/life, var/endur, var/matur, var/prod, var/yie, var/poten, var/am = 1) + src.name = name + src.lifespan = life + src.endurance = endur + src.maturation = matur + src.production = prod + src.yield = yie + src.potency = poten + src.amount = am + +/obj/machinery/seed_extractor/attack_hand(mob/user) + user.set_machine(src) + interact(user) + +/obj/machinery/seed_extractor/interact(mob/user) + if (stat) + return 0 + + var/dat = "Stored seeds:
" + + if (contents.len == 0) + dat += "No seeds" + else + dat += "" + for (var/datum/seed_pile/O in piles) + dat += "" + dat += "" + dat += "
NameLifespanEnduranceMaturationProductionYieldPotencyStock
[O.name][O.lifespan][O.endurance][O.maturation][O.production][O.yield][O.potency]" + dat += "Vend ([O.amount] left)
" + var/datum/browser/popup = new(user, "seed_ext", name, 700, 400) + popup.set_content(dat) + popup.open() + return + +/obj/machinery/seed_extractor/Topic(var/href, var/list/href_list) + if(..()) + return + usr.set_machine(src) + + href_list["li"] = text2num(href_list["li"]) + href_list["en"] = text2num(href_list["en"]) + href_list["ma"] = text2num(href_list["ma"]) + href_list["pr"] = text2num(href_list["pr"]) + href_list["yi"] = text2num(href_list["yi"]) + href_list["pot"] = text2num(href_list["pot"]) + + for (var/datum/seed_pile/N in piles)//Find the pile we need to reduce... + if (href_list["name"] == N.name && href_list["li"] == N.lifespan && href_list["en"] == N.endurance && href_list["ma"] == N.maturation && href_list["pr"] == N.production && href_list["yi"] == N.yield && href_list["pot"] == N.potency) + if(N.amount <= 0) + return + N.amount = max(N.amount - 1, 0) + if (N.amount <= 0) + piles -= N + qdel(N) + break + + for (var/obj/T in contents)//Now we find the seed we need to vend + var/obj/item/seeds/O = T + if (O.plantname == href_list["name"] && O.lifespan == href_list["li"] && O.endurance == href_list["en"] && O.maturation == href_list["ma"] && O.production == href_list["pr"] && O.yield == href_list["yi"] && O.potency == href_list["pot"]) + O.loc = src.loc + break + + src.updateUsrDialog() + return + +/obj/machinery/seed_extractor/proc/add_seed(obj/item/seeds/O) + if(contents.len >= 999) + to_chat(usr, "\The [src] is full.") + return 0 + + if(ismob(O.loc)) + var/mob/M = O.loc + if(!M.drop_item()) + return 0 else if(istype(O.loc, /obj/item/storage)) - var/obj/item/storage/S = O.loc - S.remove_from_storage(O,src) - - O.loc = src - . = 1 - for (var/datum/seed_pile/N in piles) - if (O.plantname == N.name && O.lifespan == N.lifespan && O.endurance == N.endurance && O.maturation == N.maturation && O.production == N.production && O.yield == N.yield && O.potency == N.potency) - ++N.amount - return - - piles += new /datum/seed_pile(O.plantname, O.lifespan, O.endurance, O.maturation, O.production, O.yield, O.potency) - return + var/obj/item/storage/S = O.loc + S.remove_from_storage(O,src) + + O.loc = src + . = 1 + for (var/datum/seed_pile/N in piles) + if (O.plantname == N.name && O.lifespan == N.lifespan && O.endurance == N.endurance && O.maturation == N.maturation && O.production == N.production && O.yield == N.yield && O.potency == N.potency) + ++N.amount + return + + piles += new /datum/seed_pile(O.plantname, O.lifespan, O.endurance, O.maturation, O.production, O.yield, O.potency) + return ======= if(add_seed(O)) to_chat(user, "You add [O] to [src.name].") From 5ce923a4d750db7efd0aa56b41dc7cffb08af450 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sat, 7 Oct 2017 22:51:35 -0500 Subject: [PATCH 20/95] Update laborstacker.dm --- code/modules/mining/laborcamp/laborstacker.dm | 217 +++++------------- 1 file changed, 56 insertions(+), 161 deletions(-) diff --git a/code/modules/mining/laborcamp/laborstacker.dm b/code/modules/mining/laborcamp/laborstacker.dm index 2bcccdb164..12c9bfb30e 100644 --- a/code/modules/mining/laborcamp/laborstacker.dm +++ b/code/modules/mining/laborcamp/laborstacker.dm @@ -1,129 +1,25 @@ -/**********************Prisoners' Console**************************/ - -/obj/machinery/mineral/labor_claim_console - name = "point claim console" - desc = "A stacking console with an electromagnetic writer, used to track ore mined by prisoners." - icon = 'icons/obj/machines/mining_machines.dmi' - icon_state = "console" +/**********************Prisoners' Console**************************/ + +/obj/machinery/mineral/labor_claim_console + name = "point claim console" + desc = "A stacking console with an electromagnetic writer, used to track ore mined by prisoners." + icon = 'icons/obj/machines/mining_machines.dmi' + icon_state = "console" density = FALSE anchored = TRUE - var/obj/machinery/mineral/stacking_machine/laborstacker/stacking_machine = null - var/machinedir = SOUTH - var/obj/item/card/id/prisoner/inserted_id - var/obj/machinery/door/airlock/release_door - var/door_tag = "prisonshuttle" - var/obj/item/device/radio/Radio //needed to send messages to sec radio - - + var/obj/machinery/mineral/stacking_machine/laborstacker/stacking_machine = null + var/machinedir = SOUTH + var/obj/item/card/id/prisoner/inserted_id + var/obj/machinery/door/airlock/release_door + var/door_tag = "prisonshuttle" + var/obj/item/device/radio/Radio //needed to send messages to sec radio + + /obj/machinery/mineral/labor_claim_console/Initialize() . = ..() - Radio = new/obj/item/device/radio(src) + Radio = new/obj/item/device/radio(src) Radio.listening = FALSE locate_stacking_machine() -<<<<<<< HEAD - -/obj/machinery/mineral/labor_claim_console/attackby(obj/item/I, mob/user, params) - if(istype(I, /obj/item/card/id/prisoner)) - if(!inserted_id) - if(!user.drop_item()) - return - I.forceMove(src) - inserted_id = I - to_chat(user, "You insert [I].") - return - else - to_chat(user, "There's an ID inserted already.") - return ..() - -/obj/machinery/mineral/labor_claim_console/ui_interact(mob/user, ui_key = "main", datum/tgui/ui = null, force_open = FALSE, \ - datum/tgui/master_ui = null, datum/ui_state/state = GLOB.default_state) - ui = SStgui.try_update_ui(user, src, ui_key, ui, force_open) - if(!ui) - ui = new(user, src, ui_key, "labor_claim_console", name, 450, 475, master_ui, state) - ui.open() - -/obj/machinery/mineral/labor_claim_console/ui_data(mob/user) - var/list/data = list() - var/can_go_home = FALSE - - data["emagged"] = emagged - if(inserted_id) - data["id"] = inserted_id - data["id_name"] = inserted_id.registered_name - data["points"] = inserted_id.points - data["goal"] = inserted_id.goal - if(check_auth()) - can_go_home = TRUE - - var/list/ores = list() - if(stacking_machine) - data["unclaimed_points"] = stacking_machine.points - for(var/ore in stacking_machine.ore_values) - var/list/O = list() - O["ore"] = ore - O["value"] = stacking_machine.ore_values[ore] - ores += list(O) - - data["ores"] = ores - data["can_go_home"] = can_go_home - - return data - -/obj/machinery/mineral/labor_claim_console/ui_act(action, params) - if(..()) - return - switch(action) - if("handle_id") - if(inserted_id) - if(!usr.get_active_held_item()) - usr.put_in_hands(inserted_id) - inserted_id = null - else - inserted_id.forceMove(get_turf(src)) - inserted_id = null - else - var/obj/item/I = usr.get_active_held_item() - if(istype(I, /obj/item/card/id/prisoner)) - if(!usr.drop_item()) - return - I.forceMove(src) - inserted_id = I - if("claim_points") - inserted_id.points += stacking_machine.points - stacking_machine.points = 0 - to_chat(usr, "Points transferred.") - if("move_shuttle") - if(!alone_in_area(get_area(src), usr)) - to_chat(usr, "Prisoners are only allowed to be released while alone.") - else - switch(SSshuttle.moveShuttle("laborcamp","laborcamp_home")) - if(1) - to_chat(usr, "Shuttle not found") - if(2) - to_chat(usr, "Shuttle already at station") - if(3) - to_chat(usr, "No permission to dock could be granted.") - else - if(!emagged) - Radio.set_frequency(GLOB.SEC_FREQ) - Radio.talk_into(src, "[inserted_id.registered_name] has returned to the station. Minerals and Prisoner ID card ready for retrieval.", GLOB.SEC_FREQ, get_spans(), get_default_language()) - to_chat(usr, "Shuttle received message and will be sent shortly.") - -/obj/machinery/mineral/labor_claim_console/proc/check_auth() - if(emagged) - return 1 //Shuttle is emagged, let any ol' person through - return (istype(inserted_id) && inserted_id.points >= inserted_id.goal) //Otherwise, only let them out if the prisoner's reached his quota. - -/obj/machinery/mineral/labor_claim_console/proc/locate_stacking_machine() - stacking_machine = locate(/obj/machinery/mineral/stacking_machine, get_step(src, machinedir)) - if(stacking_machine) - stacking_machine.CONSOLE = src - else - qdel(src) - -/obj/machinery/mineral/labor_claim_console/emag_act(mob/user) - if(!emagged) -======= /obj/machinery/mineral/labor_claim_console/attackby(obj/item/I, mob/user, params) if(istype(I, /obj/item/card/id/prisoner)) @@ -224,48 +120,47 @@ /obj/machinery/mineral/labor_claim_console/emag_act(mob/user) if(!emagged) ->>>>>>> b6d349e... Remove drop_item, drop_item_v, put_in_hands_or_del (#31386) emagged = TRUE - to_chat(user, "PZZTTPFFFT") - - -/**********************Prisoner Collection Unit**************************/ - - -/obj/machinery/mineral/stacking_machine/laborstacker - var/points = 0 //The unclaimed value of ore stacked. Value for each ore loosely relative to its rarity. + to_chat(user, "PZZTTPFFFT") + + +/**********************Prisoner Collection Unit**************************/ + + +/obj/machinery/mineral/stacking_machine/laborstacker + var/points = 0 //The unclaimed value of ore stacked. Value for each ore loosely relative to its rarity. var/list/ore_values = list("glass" = 1, "metal" = 2, "reinforced glass" = 4, "gold" = 20, "silver" = 20, "uranium" = 20, "titanium" = 20, "solid plasma" = 20, "plasteel" = 23, "plasma glass" = 23, "diamond" = 25, "bluespace polycrystal" = 30, "plastitanium" = 45, "bananium" = 50) - -/obj/machinery/mineral/stacking_machine/laborstacker/process_sheet(obj/item/stack/sheet/inp) - if(istype(inp)) - var/n = inp.name - var/a = inp.amount - if(n in ore_values) - points += ore_values[n] * a - ..() - - -/**********************Point Lookup Console**************************/ -/obj/machinery/mineral/labor_points_checker - name = "points checking console" - desc = "A console used by prisoners to check the progress on their quotas. Simply swipe a prisoner ID." - icon = 'icons/obj/machines/mining_machines.dmi' - icon_state = "console" + +/obj/machinery/mineral/stacking_machine/laborstacker/process_sheet(obj/item/stack/sheet/inp) + if(istype(inp)) + var/n = inp.name + var/a = inp.amount + if(n in ore_values) + points += ore_values[n] * a + ..() + + +/**********************Point Lookup Console**************************/ +/obj/machinery/mineral/labor_points_checker + name = "points checking console" + desc = "A console used by prisoners to check the progress on their quotas. Simply swipe a prisoner ID." + icon = 'icons/obj/machines/mining_machines.dmi' + icon_state = "console" density = FALSE anchored = TRUE - -/obj/machinery/mineral/labor_points_checker/attack_hand(mob/user) - user.examinate(src) - -/obj/machinery/mineral/labor_points_checker/attackby(obj/item/I, mob/user, params) - if(istype(I, /obj/item/card/id)) - if(istype(I, /obj/item/card/id/prisoner)) - var/obj/item/card/id/prisoner/prisoner_id = I - to_chat(user, "ID: [prisoner_id.registered_name]") - to_chat(user, "Points Collected:[prisoner_id.points]") - to_chat(user, "Point Quota: [prisoner_id.goal]") - to_chat(user, "Collect points by bringing smelted minerals to the Labor Shuttle stacking machine. Reach your quota to earn your release.") - else - to_chat(user, "Error: Invalid ID") - else - return ..() + +/obj/machinery/mineral/labor_points_checker/attack_hand(mob/user) + user.examinate(src) + +/obj/machinery/mineral/labor_points_checker/attackby(obj/item/I, mob/user, params) + if(istype(I, /obj/item/card/id)) + if(istype(I, /obj/item/card/id/prisoner)) + var/obj/item/card/id/prisoner/prisoner_id = I + to_chat(user, "ID: [prisoner_id.registered_name]") + to_chat(user, "Points Collected:[prisoner_id.points]") + to_chat(user, "Point Quota: [prisoner_id.goal]") + to_chat(user, "Collect points by bringing smelted minerals to the Labor Shuttle stacking machine. Reach your quota to earn your release.") + else + to_chat(user, "Error: Invalid ID") + else + return ..() From 641ffe003b96ccb076de4214a97e55e20a2deb1e Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sat, 7 Oct 2017 22:51:58 -0500 Subject: [PATCH 21/95] Update silicon.dm --- code/modules/mob/living/silicon/silicon.dm | 389 --------------------- 1 file changed, 389 deletions(-) diff --git a/code/modules/mob/living/silicon/silicon.dm b/code/modules/mob/living/silicon/silicon.dm index c15c287f7c..46a62a1d50 100644 --- a/code/modules/mob/living/silicon/silicon.dm +++ b/code/modules/mob/living/silicon/silicon.dm @@ -1,391 +1,3 @@ -<<<<<<< HEAD -/mob/living/silicon - gender = NEUTER - voice_name = "synthesized voice" - has_unlimited_silicon_privilege = 1 - verb_say = "states" - verb_ask = "queries" - verb_exclaim = "declares" - verb_yell = "alarms" - initial_language_holder = /datum/language_holder/synthetic - see_in_dark = 8 - bubble_icon = "machine" - weather_immunities = list("ash") - possible_a_intents = list(INTENT_HELP, INTENT_HARM) - - var/syndicate = 0 - var/datum/ai_laws/laws = null//Now... THEY ALL CAN ALL HAVE LAWS - var/last_lawchange_announce = 0 - var/list/alarms_to_show = list() - var/list/alarms_to_clear = list() - var/designation = "" - var/radiomod = "" //Radio character used before state laws/arrivals announce to allow department transmissions, default, or none at all. - var/obj/item/device/camera/siliconcam/aicamera = null //photography - hud_possible = list(ANTAG_HUD, DIAG_STAT_HUD, DIAG_HUD, DIAG_TRACK_HUD) - - var/obj/item/device/radio/borg/radio = null //AIs dont use this but this is at the silicon level to advoid copypasta in say() - - var/list/alarm_types_show = list("Motion" = 0, "Fire" = 0, "Atmosphere" = 0, "Power" = 0, "Camera" = 0) - var/list/alarm_types_clear = list("Motion" = 0, "Fire" = 0, "Atmosphere" = 0, "Power" = 0, "Camera" = 0) - - var/lawcheck[1] - var/ioncheck[1] - var/devillawcheck[5] - - var/med_hud = DATA_HUD_MEDICAL_ADVANCED //Determines the med hud to use - var/sec_hud = DATA_HUD_SECURITY_ADVANCED //Determines the sec hud to use - var/d_hud = DATA_HUD_DIAGNOSTIC //There is only one kind of diag hud - - var/law_change_counter = 0 - var/obj/machinery/camera/builtInCamera = null - var/updating = FALSE //portable camera camerachunk update - -/mob/living/silicon/Initialize() - . = ..() - GLOB.silicon_mobs += src - var/datum/atom_hud/data/diagnostic/diag_hud = GLOB.huds[DATA_HUD_DIAGNOSTIC] - diag_hud.add_to_hud(src) - diag_hud_set_status() - diag_hud_set_health() - -/mob/living/silicon/med_hud_set_health() - return //we use a different hud - -/mob/living/silicon/med_hud_set_status() - return //we use a different hud - -/mob/living/silicon/Destroy() - radio = null - aicamera = null - QDEL_NULL(builtInCamera) - GLOB.silicon_mobs -= src - return ..() - -/mob/living/silicon/contents_explosion(severity, target) - return - -/mob/living/silicon/proc/cancelAlarm() - return - -/mob/living/silicon/proc/triggerAlarm() - return - -/mob/living/silicon/proc/queueAlarm(message, type, incoming = 1) - var/in_cooldown = (alarms_to_show.len > 0 || alarms_to_clear.len > 0) - if(incoming) - alarms_to_show += message - alarm_types_show[type] += 1 - else - alarms_to_clear += message - alarm_types_clear[type] += 1 - - if(!in_cooldown) - spawn(3 * 10) // 3 seconds - - if(alarms_to_show.len < 5) - for(var/msg in alarms_to_show) - to_chat(src, msg) - else if(alarms_to_show.len) - - var/msg = "--- " - - if(alarm_types_show["Burglar"]) - msg += "BURGLAR: [alarm_types_show["Burglar"]] alarms detected. - " - - if(alarm_types_show["Motion"]) - msg += "MOTION: [alarm_types_show["Motion"]] alarms detected. - " - - if(alarm_types_show["Fire"]) - msg += "FIRE: [alarm_types_show["Fire"]] alarms detected. - " - - if(alarm_types_show["Atmosphere"]) - msg += "ATMOSPHERE: [alarm_types_show["Atmosphere"]] alarms detected. - " - - if(alarm_types_show["Power"]) - msg += "POWER: [alarm_types_show["Power"]] alarms detected. - " - - if(alarm_types_show["Camera"]) - msg += "CAMERA: [alarm_types_show["Camera"]] alarms detected. - " - - msg += "\[Show Alerts\]" - to_chat(src, msg) - - if(alarms_to_clear.len < 3) - for(var/msg in alarms_to_clear) - to_chat(src, msg) - - else if(alarms_to_clear.len) - var/msg = "--- " - - if(alarm_types_clear["Motion"]) - msg += "MOTION: [alarm_types_clear["Motion"]] alarms cleared. - " - - if(alarm_types_clear["Fire"]) - msg += "FIRE: [alarm_types_clear["Fire"]] alarms cleared. - " - - if(alarm_types_clear["Atmosphere"]) - msg += "ATMOSPHERE: [alarm_types_clear["Atmosphere"]] alarms cleared. - " - - if(alarm_types_clear["Power"]) - msg += "POWER: [alarm_types_clear["Power"]] alarms cleared. - " - - if(alarm_types_show["Camera"]) - msg += "CAMERA: [alarm_types_clear["Camera"]] alarms cleared. - " - - msg += "\[Show Alerts\]" - to_chat(src, msg) - - - alarms_to_show = list() - alarms_to_clear = list() - for(var/key in alarm_types_show) - alarm_types_show[key] = 0 - for(var/key in alarm_types_clear) - alarm_types_clear[key] = 0 - -/mob/living/silicon/drop_item() - return - -/mob/living/silicon/can_inject(mob/user, error_msg) - if(error_msg) - to_chat(user, "Their outer shell is too tough.") - return 0 - -/mob/living/silicon/IsAdvancedToolUser() - return 1 - -/proc/islinked(mob/living/silicon/robot/bot, mob/living/silicon/ai/ai) - if(!istype(bot) || !istype(ai)) - return 0 - if (bot.connected_ai == ai) - return 1 - return 0 - -/mob/living/silicon/Topic(href, href_list) - if (href_list["lawc"]) // Toggling whether or not a law gets stated by the State Laws verb --NeoFite - var/L = text2num(href_list["lawc"]) - switch(lawcheck[L+1]) - if ("Yes") - lawcheck[L+1] = "No" - if ("No") - lawcheck[L+1] = "Yes" - checklaws() - - if (href_list["lawi"]) // Toggling whether or not a law gets stated by the State Laws verb --NeoFite - var/L = text2num(href_list["lawi"]) - switch(ioncheck[L]) - if ("Yes") - ioncheck[L] = "No" - if ("No") - ioncheck[L] = "Yes" - checklaws() - - if (href_list["lawdevil"]) // Toggling whether or not a law gets stated by the State Laws verb --NeoFite - var/L = text2num(href_list["lawdevil"]) - switch(devillawcheck[L]) - if ("Yes") - devillawcheck[L] = "No" - if ("No") - devillawcheck[L] = "Yes" - checklaws() - - - if (href_list["laws"]) // With how my law selection code works, I changed statelaws from a verb to a proc, and call it through my law selection panel. --NeoFite - statelaws() - - return - - -/mob/living/silicon/proc/statelaws(force = 0) - - //"radiomod" is inserted before a hardcoded message to change if and how it is handled by an internal radio. - src.say("[radiomod] Current Active Laws:") - //src.laws_sanity_check() - //src.laws.show_laws(world) - var/number = 1 - sleep(10) - - if (src.laws.devillaws && src.laws.devillaws.len) - for(var/index = 1, index <= src.laws.devillaws.len, index++) - if (force || src.devillawcheck[index] == "Yes") - src.say("[radiomod] 666. [src.laws.devillaws[index]]") - sleep(10) - - - if (src.laws.zeroth) - if (force || src.lawcheck[1] == "Yes") - src.say("[radiomod] 0. [src.laws.zeroth]") - sleep(10) - - for (var/index = 1, index <= src.laws.ion.len, index++) - var/law = src.laws.ion[index] - var/num = ionnum() - if (length(law) > 0) - if (force || src.ioncheck[index] == "Yes") - src.say("[radiomod] [num]. [law]") - sleep(10) - - for (var/index = 1, index <= src.laws.inherent.len, index++) - var/law = src.laws.inherent[index] - - if (length(law) > 0) - if (force || src.lawcheck[index+1] == "Yes") - src.say("[radiomod] [number]. [law]") - number++ - sleep(10) - - for (var/index = 1, index <= src.laws.supplied.len, index++) - var/law = src.laws.supplied[index] - - if (length(law) > 0) - if(src.lawcheck.len >= number+1) - if (force || src.lawcheck[number+1] == "Yes") - src.say("[radiomod] [number]. [law]") - number++ - sleep(10) - - -/mob/living/silicon/proc/checklaws() //Gives you a link-driven interface for deciding what laws the statelaws() proc will share with the crew. --NeoFite - - var/list = "Which laws do you want to include when stating them for the crew?

" - - if (src.laws.devillaws && src.laws.devillaws.len) - for(var/index = 1, index <= src.laws.devillaws.len, index++) - if (!src.devillawcheck[index]) - src.devillawcheck[index] = "No" - list += {"[src.devillawcheck[index]] 666: [src.laws.devillaws[index]]
"} - - if (src.laws.zeroth) - if (!src.lawcheck[1]) - src.lawcheck[1] = "No" //Given Law 0's usual nature, it defaults to NOT getting reported. --NeoFite - list += {"[src.lawcheck[1]] 0: [src.laws.zeroth]
"} - - for (var/index = 1, index <= src.laws.ion.len, index++) - var/law = src.laws.ion[index] - - if (length(law) > 0) - if (!src.ioncheck[index]) - src.ioncheck[index] = "Yes" - list += {"[src.ioncheck[index]] [ionnum()]: [law]
"} - src.ioncheck.len += 1 - - var/number = 1 - for (var/index = 1, index <= src.laws.inherent.len, index++) - var/law = src.laws.inherent[index] - - if (length(law) > 0) - src.lawcheck.len += 1 - - if (!src.lawcheck[number+1]) - src.lawcheck[number+1] = "Yes" - list += {"[src.lawcheck[number+1]] [number]: [law]
"} - number++ - - for (var/index = 1, index <= src.laws.supplied.len, index++) - var/law = src.laws.supplied[index] - if (length(law) > 0) - src.lawcheck.len += 1 - if (!src.lawcheck[number+1]) - src.lawcheck[number+1] = "Yes" - list += {"[src.lawcheck[number+1]] [number]: [law]
"} - number++ - list += {"

State Laws"} - - usr << browse(list, "window=laws") - -/mob/living/silicon/proc/set_autosay() //For allowing the AI and borgs to set the radio behavior of auto announcements (state laws, arrivals). - if(!radio) - to_chat(src, "Radio not detected.") - return - - //Ask the user to pick a channel from what it has available. - var/Autochan = input("Select a channel:") as null|anything in list("Default","None") + radio.channels - - if(!Autochan) - return - if(Autochan == "Default") //Autospeak on whatever frequency to which the radio is set, usually Common. - radiomod = ";" - Autochan += " ([radio.frequency])" - else if(Autochan == "None") //Prevents use of the radio for automatic annoucements. - radiomod = "" - else //For department channels, if any, given by the internal radio. - for(var/key in GLOB.department_radio_keys) - if(GLOB.department_radio_keys[key] == Autochan) - radiomod = ":" + key - break - - to_chat(src, "Automatic announcements [Autochan == "None" ? "will not use the radio." : "set to [Autochan]."]") - -/mob/living/silicon/put_in_hand_check() // This check is for borgs being able to receive items, not put them in others' hands. - return 0 - -// The src mob is trying to place an item on someone -// But the src mob is a silicon!! Disable. -/mob/living/silicon/stripPanelEquip(obj/item/what, mob/who, slot) - return 0 - - -/mob/living/silicon/assess_threat(judgement_criteria, lasercolor = "", datum/callback/weaponcheck=null) //Secbots won't hunt silicon units - return -10 - -/mob/living/silicon/proc/remove_med_sec_hud() - var/datum/atom_hud/secsensor = GLOB.huds[sec_hud] - var/datum/atom_hud/medsensor = GLOB.huds[med_hud] - var/datum/atom_hud/diagsensor = GLOB.huds[d_hud] - secsensor.remove_hud_from(src) - medsensor.remove_hud_from(src) - diagsensor.remove_hud_from(src) - -/mob/living/silicon/proc/add_sec_hud() - var/datum/atom_hud/secsensor = GLOB.huds[sec_hud] - secsensor.add_hud_to(src) - -/mob/living/silicon/proc/add_med_hud() - var/datum/atom_hud/medsensor = GLOB.huds[med_hud] - medsensor.add_hud_to(src) - -/mob/living/silicon/proc/add_diag_hud() - var/datum/atom_hud/diagsensor = GLOB.huds[d_hud] - diagsensor.add_hud_to(src) - -/mob/living/silicon/proc/sensor_mode() - if(incapacitated()) - return - var/sensor_type = input("Please select sensor type.", "Sensor Integration", null) in list("Security", "Medical","Diagnostic","Disable") - remove_med_sec_hud() - switch(sensor_type) - if ("Security") - add_sec_hud() - to_chat(src, "Security records overlay enabled.") - if ("Medical") - add_med_hud() - to_chat(src, "Life signs monitor overlay enabled.") - if ("Diagnostic") - add_diag_hud() - to_chat(src, "Robotics diagnostic overlay enabled.") - if ("Disable") - to_chat(src, "Sensor augmentations disabled.") - - -/mob/living/silicon/proc/GetPhoto() - if (aicamera) - return aicamera.selectpicture(aicamera) - -/mob/living/silicon/update_transform() - var/matrix/ntransform = matrix(transform) //aka transform.Copy() - var/changed = 0 - if(resize != RESIZE_DEFAULT_SIZE) - changed++ - ntransform.Scale(resize) - resize = RESIZE_DEFAULT_SIZE - - if(changed) - animate(src, transform = ntransform, time = 2,easing = EASE_IN|EASE_OUT) - return ..() - -/mob/living/silicon/is_literate() - return 1 -======= /mob/living/silicon gender = NEUTER voice_name = "synthesized voice" @@ -769,4 +381,3 @@ /mob/living/silicon/is_literate() return 1 ->>>>>>> b6d349e... Remove drop_item, drop_item_v, put_in_hands_or_del (#31386) From 2606143343824cca4f4f1efeec27c7d6139ade1d Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sat, 7 Oct 2017 22:52:12 -0500 Subject: [PATCH 22/95] Update limb_augmentation.dm --- code/modules/surgery/limb_augmentation.dm | 71 ++--------------------- 1 file changed, 4 insertions(+), 67 deletions(-) diff --git a/code/modules/surgery/limb_augmentation.dm b/code/modules/surgery/limb_augmentation.dm index 4df1d847be..b5081370f0 100644 --- a/code/modules/surgery/limb_augmentation.dm +++ b/code/modules/surgery/limb_augmentation.dm @@ -1,65 +1,3 @@ -<<<<<<< HEAD - -/////AUGMENTATION SURGERIES////// - - -//SURGERY STEPS - -/datum/surgery_step/replace - name = "sever muscles" - implements = list(/obj/item/scalpel = 100, /obj/item/wirecutters = 55) - time = 32 - - -/datum/surgery_step/replace/preop(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery) - user.visible_message("[user] begins to sever the muscles on [target]'s [parse_zone(user.zone_selected)].", "You begin to sever the muscles on [target]'s [parse_zone(user.zone_selected)]...") - - -/datum/surgery_step/add_limb - name = "replace limb" - implements = list(/obj/item/bodypart = 100) - time = 32 - var/obj/item/bodypart/L = null // L because "limb" - - -/datum/surgery_step/add_limb/preop(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery) - var/obj/item/bodypart/aug = tool - if(aug.status != BODYPART_ROBOTIC) - to_chat(user, "that's not an augment silly!") - return -1 - if(aug.body_zone != target_zone) - to_chat(user, "[tool] isn't the right type for [parse_zone(target_zone)].") - return -1 - L = surgery.operated_bodypart - if(L) - user.visible_message("[user] begins to augment [target]'s [parse_zone(user.zone_selected)].", "You begin to augment [target]'s [parse_zone(user.zone_selected)]...") - else - user.visible_message("[user] looks for [target]'s [parse_zone(user.zone_selected)].", "You look for [target]'s [parse_zone(user.zone_selected)]...") - - -//ACTUAL SURGERIES - -/datum/surgery/augmentation - name = "augmentation" - steps = list(/datum/surgery_step/incise, /datum/surgery_step/clamp_bleeders, /datum/surgery_step/retract_skin, /datum/surgery_step/replace, /datum/surgery_step/saw, /datum/surgery_step/add_limb) - species = list(/mob/living/carbon/human) - possible_locs = list("r_arm","l_arm","r_leg","l_leg","chest","head") - requires_real_bodypart = TRUE - -//SURGERY STEP SUCCESSES - -/datum/surgery_step/add_limb/success(mob/user, mob/living/carbon/target, target_zone, obj/item/bodypart/tool, datum/surgery/surgery) - if(L) - user.visible_message("[user] successfully augments [target]'s [parse_zone(target_zone)]!", "You successfully augment [target]'s [parse_zone(target_zone)].") - L.change_bodypart_status(BODYPART_ROBOTIC, TRUE) - L.icon = tool.icon - L.max_damage = tool.max_damage - user.drop_item() - qdel(tool) - target.update_body_parts() - target.updatehealth() -======= - /////AUGMENTATION SURGERIES////// @@ -117,9 +55,8 @@ qdel(tool) target.update_body_parts() target.updatehealth() ->>>>>>> b6d349e... Remove drop_item, drop_item_v, put_in_hands_or_del (#31386) target.update_hair() - add_logs(user, target, "augmented", addition="by giving him new [parse_zone(target_zone)] INTENT: [uppertext(user.a_intent)]") - else - to_chat(user, "[target] has no organic [parse_zone(target_zone)] there!") - return 1 + add_logs(user, target, "augmented", addition="by giving him new [parse_zone(target_zone)] INTENT: [uppertext(user.a_intent)]") + else + to_chat(user, "[target] has no organic [parse_zone(target_zone)] there!") + return 1 From 4a2d9f82a10c6a67d6d9fca914cc60c85b7d994c Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sat, 7 Oct 2017 23:06:35 -0500 Subject: [PATCH 23/95] Update config.dm --- code/controllers/configuration/entries/config.dm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/code/controllers/configuration/entries/config.dm b/code/controllers/configuration/entries/config.dm index 9da8e0105c..729370c18b 100644 --- a/code/controllers/configuration/entries/config.dm +++ b/code/controllers/configuration/entries/config.dm @@ -350,9 +350,6 @@ CONFIG_DEF(number/error_msg_delay) // How long to wait between messaging admins CONFIG_DEF(flag/irc_announce_new_game) -<<<<<<< HEAD -CONFIG_DEF(flag/debug_admin_hrefs) -======= CONFIG_DEF(flag/debug_admin_hrefs) CONFIG_DEF(number/mc_tick_rate/base_mc_tick_rate) @@ -376,4 +373,3 @@ CONFIG_TWEAK(number/mc_tick_rate/ValidateAndSet(str_val)) . = ..() if (.) Master.UpdateTickRate() ->>>>>>> 119f3fa... Allows editing config.allow_admin_ooccolor (#31371) From cc0e5a1280fdc5dee006e1746f8e6a20c297ef00 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sat, 7 Oct 2017 23:07:25 -0500 Subject: [PATCH 24/95] Update jetpack.dm --- code/game/objects/items/tanks/jetpack.dm | 214 ----------------------- 1 file changed, 214 deletions(-) diff --git a/code/game/objects/items/tanks/jetpack.dm b/code/game/objects/items/tanks/jetpack.dm index 65e37ed906..63e9e0bb55 100644 --- a/code/game/objects/items/tanks/jetpack.dm +++ b/code/game/objects/items/tanks/jetpack.dm @@ -1,216 +1,3 @@ -<<<<<<< HEAD -/obj/item/tank/jetpack - name = "jetpack (empty)" - desc = "A tank of compressed gas for use as propulsion in zero-gravity areas. Use with caution." - icon_state = "jetpack" - item_state = "jetpack" - lefthand_file = 'icons/mob/inhands/equipment/jetpacks_lefthand.dmi' - righthand_file = 'icons/mob/inhands/equipment/jetpacks_righthand.dmi' - w_class = WEIGHT_CLASS_BULKY - distribute_pressure = ONE_ATMOSPHERE * O2STANDARD - actions_types = list(/datum/action/item_action/set_internals, /datum/action/item_action/toggle_jetpack, /datum/action/item_action/jetpack_stabilization) - var/gas_type = "o2" - var/on = FALSE - var/stabilizers = FALSE - var/full_speed = TRUE // If the jetpack will have a speedboost in space/nograv or not - var/datum/effect_system/trail_follow/ion/ion_trail - -/obj/item/tank/jetpack/New() - ..() - if(gas_type) - air_contents.assert_gas(gas_type) - air_contents.gases[gas_type][MOLES] = (6 * ONE_ATMOSPHERE) * volume / (R_IDEAL_GAS_EQUATION * T20C) - - ion_trail = new - ion_trail.set_up(src) - -/obj/item/tank/jetpack/ui_action_click(mob/user, action) - if(istype(action, /datum/action/item_action/toggle_jetpack)) - cycle(user) - else if(istype(action, /datum/action/item_action/jetpack_stabilization)) - if(on) - stabilizers = !stabilizers - to_chat(user, "You turn the jetpack stabilization [stabilizers ? "on" : "off"].") - else - toggle_internals(user) - - -/obj/item/tank/jetpack/proc/cycle(mob/user) - if(user.incapacitated()) - return - - if(!on) - turn_on() - to_chat(user, "You turn the jetpack on.") - else - turn_off() - to_chat(user, "You turn the jetpack off.") - for(var/X in actions) - var/datum/action/A = X - A.UpdateButtonIcon() - - -/obj/item/tank/jetpack/proc/turn_on() - on = TRUE - icon_state = "[initial(icon_state)]-on" - ion_trail.start() - -/obj/item/tank/jetpack/proc/turn_off() - on = FALSE - stabilizers = FALSE - icon_state = initial(icon_state) - ion_trail.stop() - -/obj/item/tank/jetpack/proc/allow_thrust(num, mob/living/user) - if(!on) - return - if((num < 0.005 || air_contents.total_moles() < num)) - turn_off() - return - - var/datum/gas_mixture/removed = air_contents.remove(num) - if(removed.total_moles() < 0.005) - turn_off() - return - - var/turf/T = get_turf(user) - T.assume_air(removed) - - return 1 - -/obj/item/tank/jetpack/suicide_act(mob/user) - if (istype(user, /mob/living/carbon/human/)) - var/mob/living/carbon/human/H = user - H.forcesay("WHAT THE FUCK IS CARBON DIOXIDE?") - H.visible_message("[user] is suffocating [user.p_them()]self with [src]! It looks like [user.p_they()] didn't read what that jetpack says!") - return (OXYLOSS) - else - ..() - -/obj/item/tank/jetpack/void - name = "void jetpack (oxygen)" - desc = "It works well in a void." - icon_state = "jetpack-void" - item_state = "jetpack-void" - -/obj/item/tank/jetpack/oxygen - name = "jetpack (oxygen)" - desc = "A tank of compressed oxygen for use as propulsion in zero-gravity areas. Use with caution." - icon_state = "jetpack" - item_state = "jetpack" - -/obj/item/tank/jetpack/oxygen/harness - name = "jet harness (oxygen)" - desc = "A lightweight tactical harness, used by those who don't want to be weighed down by traditional jetpacks." - icon_state = "jetpack-mini" - item_state = "jetpack-mini" - volume = 40 - throw_range = 7 - w_class = WEIGHT_CLASS_NORMAL - -/obj/item/tank/jetpack/oxygen/captain - name = "\improper Captain's jetpack" - desc = "A compact, lightweight jetpack containing a high amount of compressed oxygen." - icon_state = "jetpack-captain" - item_state = "jetpack-captain" - w_class = WEIGHT_CLASS_NORMAL - volume = 90 - resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | ACID_PROOF //steal objective items are hard to destroy. - -/obj/item/tank/jetpack/oxygen/security - name = "security jetpack (oxygen)" - desc = "A tank of compressed oxygen for use as propulsion in zero-gravity areas by security forces." - icon_state = "jetpack-sec" - item_state = "jetpack-sec" - -/obj/item/tank/jetpack/carbondioxide - name = "jetpack (carbon dioxide)" - desc = "A tank of compressed carbon dioxide for use as propulsion in zero-gravity areas. Painted black to indicate that it should not be used as a source for internals." - icon_state = "jetpack-black" - item_state = "jetpack-black" - distribute_pressure = 0 - gas_type = "co2" - - -/obj/item/tank/jetpack/suit - name = "hardsuit jetpack upgrade" - desc = "A modular, compact set of thrusters designed to integrate with a hardsuit. It is fueled by a tank inserted into the suit's storage compartment." - origin_tech = "materials=4;magnets=4;engineering=5" - icon_state = "jetpack-mining" - item_state = "jetpack-black" - w_class = WEIGHT_CLASS_NORMAL - actions_types = list(/datum/action/item_action/toggle_jetpack, /datum/action/item_action/jetpack_stabilization) - volume = 1 - slot_flags = null - gas_type = null - full_speed = FALSE - var/datum/gas_mixture/temp_air_contents - var/obj/item/tank/internals/tank = null - -/obj/item/tank/jetpack/suit/New() - ..() - STOP_PROCESSING(SSobj, src) - temp_air_contents = air_contents - -/obj/item/tank/jetpack/suit/attack_self() - return - -/obj/item/tank/jetpack/suit/cycle(mob/user) - if(!istype(loc, /obj/item/clothing/suit/space/hardsuit)) - to_chat(user, "\The [src] must be connected to a hardsuit!") - return - - var/mob/living/carbon/human/H = user - if(!istype(H.s_store, /obj/item/tank/internals)) - to_chat(user, "You need a tank in your suit storage!") - return - ..() - -/obj/item/tank/jetpack/suit/turn_on() - if(!istype(loc, /obj/item/clothing/suit/space/hardsuit) || !ishuman(loc.loc)) - return - var/mob/living/carbon/human/H = loc.loc - tank = H.s_store - air_contents = tank.air_contents - START_PROCESSING(SSobj, src) - ..() - -/obj/item/tank/jetpack/suit/turn_off() - tank = null - air_contents = temp_air_contents - STOP_PROCESSING(SSobj, src) - ..() - -/obj/item/tank/jetpack/suit/process() - if(!istype(loc, /obj/item/clothing/suit/space/hardsuit) || !ishuman(loc.loc)) - turn_off() - return - var/mob/living/carbon/human/H = loc.loc - if(!tank || tank != H.s_store) - turn_off() - return - ..() - - -//Return a jetpack that the mob can use -//Back worn jetpacks, hardsuit internal packs, and so on. -//Used in Process_Spacemove() and wherever you want to check for/get a jetpack - -/mob/proc/get_jetpack() - return - -/mob/living/carbon/get_jetpack() - var/obj/item/tank/jetpack/J = back - if(istype(J)) - return J - -/mob/living/carbon/human/get_jetpack() - var/obj/item/tank/jetpack/J = ..() - if(!istype(J) && istype(wear_suit, /obj/item/clothing/suit/space/hardsuit)) - var/obj/item/clothing/suit/space/hardsuit/C = wear_suit - J = C.jetpack - return J -======= /obj/item/tank/jetpack name = "jetpack (empty)" desc = "A tank of compressed gas for use as propulsion in zero-gravity areas. Use with caution." @@ -422,4 +209,3 @@ var/obj/item/clothing/suit/space/hardsuit/C = wear_suit J = C.jetpack return J ->>>>>>> 6b9832d... Merge pull request #31388 from vuonojenmustaturska/atmoscherrypicking From ad39e816f4efdbac9eb97d96ee4523f8120478cb Mon Sep 17 00:00:00 2001 From: oranges Date: Sun, 8 Oct 2017 19:03:31 +1300 Subject: [PATCH 25/95] Settles the sabre/rapier debate once and for all --- icons/mob/belt.dmi | Bin 16627 -> 17697 bytes icons/mob/inhands/weapons/swords_lefthand.dmi | Bin 21208 -> 21978 bytes .../mob/inhands/weapons/swords_righthand.dmi | Bin 24474 -> 25442 bytes icons/obj/clothing/belts.dmi | Bin 11442 -> 12369 bytes 4 files changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/mob/belt.dmi b/icons/mob/belt.dmi index 1ae0b0a2b59233ef6f333e6c093bc4894b3e15f1..5b5ee40cfa977678628954a73d2b21de5d7198d9 100644 GIT binary patch literal 17697 zcmc({cUV(Fw=W!|3IZx3ic%C11pxs8r3EZNq$yRp(mN=aByjr-Pd-2;}?y>$hgt$$RI* z2X=HBHoUHl@+&M$WM6q}Z_)h2rrlCRH-ujdpB@xZ87+C2kJ-X`HmffKwQq8`+%YuJ z8Z{2)DYQtEpp}-ZARROsr{#?dm14PW_g-ViaCD<}Kc5+buyO>|zB-*i-1)Tnm-L38=((=SiG z_%N(Oj)+WYoOnMt;PEd(LcS`--xIDXbJPFLiyO{#J!sp~yRLLSyTD=FU*Bn}Ui7)I zuh|dx-8!YY6|Z-9Wp4_9QL%pC5Lxu+QXKoEo8`8eEJ?D~a$Q&Vl}9_dK0MeFp18Q^ z+++2*QzZ9pW}Gvt+ijE%lecl{NJz=60Q%M+40zN-GwYO{d?rC3ewuqpa>WW&> z`QuwkI-~fyKKQfM#~>rQg^N>smyq^Kf~q!M9CcwI6S_3ScjDh@twJA&+%9G7+^F=; zZV$f^(pYwZ8?GP4eXBxpU2F?;SAyC^jk!$zjJTY6eiHU)^pbMAeu!F9`QzK0 z>&LHOL`yF?!H=jz9!&2|Crgo1)lTZ+d7X*2ttmpfE zV>-ZBZ={j3GjLnz*=&5fv`=BGPD?MPpPMx3_p~wn&}W#teCC~d+$4c?;hzf$D!m zF~;&tX&$+jry#I%9>MCFTg?X1$mteB3t>8>4pp3R>U_#dBAFpa$1^NQ&(7PZpiF68G7h>U^D-W;@)} znBX7bGLc+3?lH= z)ox^k4eK9BgevlHz@R0`e3b zYL|Tgn(%*W9Y7iXR7UmZl87TMO>H!L?EY(K5PuY4VnE-WUgW(3ft0*?gMoorVc-RU zemy+H00Oyx{>N>;|C-|3FSN01G6A>riGWNZ*MxaH{nJ;j4)B3iIF}V<#J5CL;me!6 zYzB(*1CmW!s_1F@sriWKu9h<%93I&6`vJ7p+pR&sXHD*Ck4M7ixQXY6?=ttYf)DVh z`e;VT9GD*j8W&urj^t;){@~uU2yZmQ&)N@u1Dd@7Jr{PMU;(+5pb9&*pAcYktz#~i zodM)1SMN4Z0(ylriv2%WH~;@AcqK#nO0sETn$v&`niC?Hf6_gBN$--7{=8 ztP8bB0)8-VzcRjhB2JAEw7uxKL366QqX!!vg$Ka*Q1!)sJh#k2eF1xzI{l=Whrt7X zY}YbItyCOvveVJm8OJxYTT%0{Dz)*<#p_{cFRcf<21;)?{!s^%?fE`tdDNDczbBw` zWC9fY_gnm_hQ^)?V*O86SEFBt@(I1(iFhbhyN>>h8k0_$$BO#eCe>Q&3AGx>z~0R+ z@-?6sz5YcPJ$(ipc})K*VTBksrhgv0_i2R)iD3P3Dk?ho^qW(lff4(} z=-p?$hE5#V;~t)BC##sW}Ue@_Td=JV|Va4p-+}J0j|tzR<#9n z*RkG*WTdvz%L}YMz${7Xh(<#;RtN}BWWt5F4jMtnJr*fhF^a}QcfV{A0keMG1lYsE z?Cjq~=8eXO(>@th8R~SlVEP&IoJnc#pRNTI|7$BVzh^1w9$CrpJYWffJ-&zhCpzqG z(0o8T#EY-*>jwoYQ1DU8B_(-mj5V4Hdnmtf9K=5j1w?3f*u9gaarQ4# z6m`^;vB_N?zeQAummgR-^AZG#AN~uv7$o=!?vs_BWqUJf)G)7S+e>>HlS!1R z_7fTH3hid!CZ4m3I)l%1M?cvS`qJ0Do&@o~WL9=PyNoI=jXfSv9z3SVlTe>Qo3wjd zJ0z^NDK+}ZklR7;Y{W5%ulD2dfJ-mT)rzbe>ZFtsObM)w{`ZoIe>l{IOXvQpo$G)1 z=Soboe(7DgP&QyNjarwLFXPqmW2YDPRDk6loAD8P%m74SvFtBNY9&D=0wjL3ZoT+R zFEtg7NXUxc@^Y%%azp~(+Vw4Mi-y)f!aUb9Y5v`^TYl+Mtg6$Z)mYAA(aHh2(fEYCC|39f;D`Y9=73q>6NXHpjMR*?TGk^eEmZS z2zo06?)Uc#d<$7k)407Q1$JjOt~RiM?HBN`nW!Ss;Uo3#fo{54a*6>ee&!mrjKMJe+y5l)9ms?f&YZCK(nxBFx*g zl03^d-N;Mof3Wb$6B(zcHXNb7?>T+_{qA2H+ig$a zSqB&QVx%zN))q83qz>jEr!`9w%?xV)-4sX$s*74aNNm!#^uo~-XF^9C>ehF% z5|lKU=kII$HE6e#WHrBS!h)y}k&Yez<}*iYT=y34ZP-}gR4n487gO+j)yzS(_ULYv z>-0o7Ij%v^bUWp1-YdZJsKr~b{dTN2Y9Mfozx$^Q?*6ZF*%KwZG8&TzGHY)+nZ%>m zhz2j0jS&kB*qX8>RYztNz0lswC>t1W1;YPe5*IZ1bE3?#I#+9g8_DBf)V*&0cE>11 z((dz2;9lP+%0ny)2D5?>bR`JNtbb80?8TGRey$|f{#g8{rTP?Ouwi4-qQMR-~O2^6-XZM+8ItXQ{0_CYM`QgEIXao?id&7fhkkRo-r=<{)~?Mh zg8gUSuya@L{TRfATQ5oRDisL^&8~%0R`Tkjzc>4~e*M5EXuE`m7U1NrwM0~+kVX}@ zQUsAYn)8(mGACdQ?UP^XKGz~zUy(h;l$JHj_k@5SCIR|pJ~ zs=V032*f#8GjqaN3l5&C$)DZ>t-PfA&ojvXQ zvux5#P1VJ4fopVhPvc0sv};ded#*5|-PPv?SCv_`&lN0XXQ}%THaCfqnwuOmH{EA5 zssFhlnw{k>yNq(i4y2YRWyrY&q@PucpSA;*TfQTNKL6vHYrUVVUGRxrPpdw14Q>9h zb`lhM;Q}#ccR(a=H8z_buM6IkUhmkXh$Tez7OJh=Yh!uLED=G^#g61>k|wW*vd523 zdzP=&Y)OyJyg-)`6|v4)+luN7!z_oTo4E;nkeEPMmy^WyahS8V^g2C0n`Ff;H?!lf z@l}6a#%WDcFjc?9<@3P}h~w5W5$wA00|}iR5~s|ioA$vn#gVdflgQ5Xndu}7qLx|O zLP%zhr^K6gY!kNop=u`v2`dTkv6?Zc6img3`s>V#BOlUbsLKxR^-dC9TVu@Xw+^%h zBvIQW6^ync?c#zM#-T?h0Kb#CUTL|Yg-0E|LX6euuFE*T*kWT*w>8wfSj)UeRdc@a$=4 z#Gp(Kbpx;)YcePG(nSSt4@f-4W_IL57o-`gDP0RSheiCOstH%9=Cy2g;RCFBU|6N) z`-ixpSE-fFE+LdJ|33 zb{P&w)Tg|Z^_!b0w%PxPZ2I< zR@`K=k2qzb+=jBj52HXiPTSrRV^U;sG-WopBO16Vs%t0j9CdYX`y`%AtHSR|*Q_9`fbx-0y@1{-u`tsw zztMIcIFv%+!5%c=%XdIzIM-%#+X+yzc~YOxRV+Bdy|;Qui8?@0NNW5yyZ+XH<)6Ow z4=qy5+_+Pc@kG1YKVNFO`Gm+4L=I@;F`D;lXCf5=hvgJ#hM))GY5dKmt-NwD5Eaqw zNSpr0rceH-$^Y-E8RN(}KGhWG88GL;FZY3ldpqBZ=3K-y8f-?XTNUg)_F8_M*eblx z)7|=zSw{jzKLt@42U{ubYj}B8(Xm{&UsAg7KC7f_W`?j*^z`}BbE_k8HQDs6eQ3KD z=bvhiEyIl4yBd@IjTT(@z0sgV{ORTPT)AuRVSF?LuM(4c+m?S}U7fKim)DnY7OoUD zPx#{q7OB(ALO9$DxSRVHW3-jTsvzmP`rPAyL~C4O8x7ab#NKzu)|Dhe-H+Qhq>!TP ziua}@WxgE6&GMzulLbFYG)eAnl7*Un(*?0bO@6ZnOqkg>u+Q_;{DrMqQ-`?BA@Eg}+K zB-=WpeA~B;YpaZQePUAR8bV})m8aPuQQ1n6*`4c=M6-4YcdYIJ=JFYa*qo4cmXPh& zR(QViMIkgdtQR}uZY3BzQu%z{p}z_B%cya?J7Qz@!dQ*MjulkS6}@6I(KG5096h-n z9-~zENUcuW@9s-Gw+4@=a8DV~4+lpB#nC5^-))4>7D}F|c|rQ{yiTJ&(wUST5LoNg?Xa&EtKqw6Icfts5hAfg80oaVKmBOW>on( zkw;C~RWZ>$$Dlu+2kTn?$t%ger_N?WgxEg6eP6+DF?}2E1{pj*D-;;U%q2U#xU}TZ zmm(FP-OwQ4Craoh2x$~;C!K73W?aY91GZaPDW>ktC!>1r=+E-Iw@HTj zIlJjW6SxyY)~l95Bcc|{ee)gM2z@d0m;xP-=*M37eH(U%+8pE^ua&SKd~}ubd+AMvX%IML4F#6k#>vUq z+5+PZm*r;2VCIn~Q!i@e!nEuZabI)v*1~Xw6dlG?q0`jc2-bKokviz2i<;CmZqU=| zo8%L#FG5vOzj{uY_5pt;9)&Ys`#u~~<-Ng4yC6}uwZ@r-YZ1>4LgtN%9@Sf}+8;{wYoiO{*{aUO%rQz6!cqvV@%N!IllSxr{Sn{B1N*cX`?QAhADXJqIq=Z z=#ZFB{AmK4m)-Z8=>NS{9_ai3Yu45{r~aMuec$a@dwF0Igu~49h3Dk{+7O?E^H~_D=_ppi&_n;n6aGf;aDCqV`ME8T$4W(`-*mP!l~pd zKf(f~m}jU&$I9&-qIA$NxAl^lR}^=j|0UJ&`na8XeD#%tAz@w~Q~!dqXU5AF0*dI) zb9ixHEDDxKA6|u^`y1sv{Am{ffyI@1Cu^KSM?mwLT8}e@dF@bo6|c9#znfF-i28NW zymJQR6Og)mr=IS&X@lC*HQg%Y?{1lHNE$&SLs8-F;8P9<5&{2^NAZl$v{#}*(aYD3 z{U6zdzYiB^Z(%HAP72&CT*Pm!w5raA`OFNaGzK6rMio9K39|U(7_j*TzaIm78&ma? zrxn6|ivNi2MdM}bdu6n6!yT{%)i`rIQcR`K3cwIN=U~P#!c00L!am&dPnb!jRl^9ZYB$0m4;o5i|1fI)pYCYswdMS|ZLWwz3qISKEs{$Hs4_~wnfFTm3NN4t4j zPuCCo<)rFJp}6<|yH{#k1*pjeUq2=V#b;N+lI;Yn@2ixak=XtC2!bw*o_y<1Ykj0o z(mdaJ`EE%yr;_QggIejCa>o%Nh>neojaEtUm&C+W-dGW{x?xAqn-_UEni)IsF=jV_ z9A{54p#HTE-RIe8$_vX~45%ZcWSP$zC@I!krt>@Wq$3_Sp4nZ}#!4#l5`Xyr90A4S zWFZ+LMnsH2A7b2D*RJVmZHwGc*j8RehQ>W_+;@B43Wufe#!;vH*}8dJaX>~md7I>U zkZ_je;bJUsvmi6G#XmY+USfW&GnPW|VQb3h50YrMdTjoYP9oJ?Z=>8i>xSS-vGyXV zhiu<+I5e((D^de|i?h?25J=>>Gi|Yp3I03H+tq*PoAr6wgD7TeX~aa0$iL=58}Jq( zVc~yiyoEDw#agOJedfQ-fYa;KW(}qkj9KWMLUACScgQ&aC-}dH#R2KU;GzXTU^#9& z;_*U|y}SUEYe{D7$u&30siy*|g#)PSAxSNhXg{7r`NlU-45|wN1*`1I4_v9BJT>RP z7}rPr{D|EqmuL0AKPmtqY1SVkS7O8|MJFolSIm6p-cL06Rq%IR$r6yk-^2EUpKN6i z?Ym*Co0F)fG+5+}HojlidA$)k1QtfUh*AA!zd2RA<|>$zL})ijyg(E| z8}9i(MRLvX?G0Vlu{sJ7SpKR`T>FSwd5YBBm<&C3n|t=`*(ZLkprg6?Y+9zv`EJ;z z_-qlAYPEPE3tvP6k3kO~^>L5sDrB!V3*M_g;U)bodyk&1F2oGSOrOU8`|K+rv`qJH zx-Y@8^n5Cx?lmW=qyPMT>@+e7Ji6ANfEeztJceye9}ce+DaI#Jj1_DLPXyVOs_%}Y z8uk#HE9)kC+<L|m|4C^;on`-z;xzp47v;fs-SbwGJrAE}Xl$`2 zpF#~+H-Q9`PXpP%ZZaQp_+{q&e5Ujb;i}V=K|MW4iTX5CdZ3YB1P=tqZ<<^7?aL?h zH*N0AOE$lNCRQ2C0uz>(2}p?YzWutTYHK?N-}a1PwH5=o0oHLEi~#;}*l;eHsAvBc z1W+YtcnX~JoBTy_*^i|06MDTc%kg0+U2)2X+Epp88`i&qsceA{5C^oVI`{dSW?W33 zCB}sp(>iEi?JZAVaCC~hl&?ilr^NgNFtLr~c;w8r-$LZN_bT{J)vh?O04*{zD;o?@ zCz?C$GOE3P{SyFc#-GbK|FCPFwbL!>Yd+~n)NGWd-{Z+xH@A8m869eVUJ+;|``H6Z zP=;b1sd{osz5`xde!0l`3h>riTp?Vi3Hv|77ROCP0tKMA%O~Qwvm+VTtUif0Y(Gl# z8a0w#FRHNq^r9IKma*&Sv04Iu5Lb!n@WhM;pzN#;?^NMuwoVmD;+9jB1!wfJ+m*cx z|6UlW*zxzBcgu_+s?YOOOU&b~6~g3+e=BU4dy^S4{npAcl6L*W6$6T?yFtjU2X{y6 zHQ)wafjgV^9F7OS(s4H&0O-X3Usff1e2IR|E=J_bO!eS0nNUU)1JVRqyZfWb@ z2}(SOp5c-8v`6^YZ<*ho_AUQ9As`^263+rYafe6^$gJA*d=rV!&dj{&GywJ{w7ekJmQ=<$}zFzhwYA4%xIyZ`*DsVaquPrz;jo$(uDfbQp+boVW!!U zLQ6az8l&moK7Q2$Id~lwpywM0iO_yr*5M4ar_Y4|UZOMMp~g_V#zy^48Ybg@*~Tk9Ez7 zhb5y^+&)upn1eQkw+@C^zxX^yhLerVw=ma%QsYMdsvt_CX8_S3RXNDmDBLH&k&!d% zv7BuiarI^a=%RK;1wm~qH}h-zojZ2`Ti37+=ea{*>~tiZwgDK?5hk&Q^Ue~@@E`xO zfGW;V@+LIP0u`mm&Nhe;GWiWCDTV)B8Ww(r8*>9FGQmmVEv~@P z$JqzEwe3x?pUc!s92w0kj^l@t@R+*889SVO$rwAsq)JR})r@~u#}sER0Q-HaEIBlx zND6p~0WeWtvZSh8)3I%PNzncl7JI*XARET!csd;vct}q&)Nw~z9PGUo1qw)YU|JZq zEm2%-+ySmmj5#z#^lxR4akSnY!0Ot1A1ib2&4U+_zYaSjDR=-U1*ZF5<<7Hbx?HZw ztTnT2j8warY)sc14k#R&cBda&Fe$M8B_`Y9=wdZIr@b)AeW@~el`8-klj6+C3*af~ z0RA)iszj5l|91}FU>2A~ioFM1~ zZN=pB748{WHSPI3UR%$e+3Me5yI*ZVzI+Z;$s5yn6yyY{cWWT@PT!fZfQKJ=ZB$`W zT3O`o=FIWApGx6;mgk+`!FNqK&%5^Gko!c=^B|?=njM^^Pqr_NnJ!r`-TT8=m$}E? z{pmyRP_)z_CA#kR5mt!*UY`t~$8zuB?+v8rt^7XMbnpS!j=z z6l>hSh^hZ8={i;O{YsRw46DT4l>pDO+AgLW1pK1#@<-2w+po3fgN!`4?k_GA|tj2GQbvMl;-{`=dMcp4kZ5Gbi^p4 z`mK~%tz1u7ofasoR@%v9Brsu2*Oq*8EL&yBTIH1CRu%NT#8EfrvZ!$;5X>R98hsV2 zFJUZTjRpDn&m&m4D&H)$uO7?>0jKv}CMt{kHxViI)YwD5?w>v==c%2q=_e;gt1Gpx z3!hWAslYR1Q+6V`eHtDY$ zcZOcGM;IX*5tb%tF30P8`a4GNS%e>G$hJ5h8$+GpW4UM8e?xn}iA;Vfl-5^qvqE+- z(G^s?4_-{0fUCC5IDbUKCZ*OF>N3Va?lXQX4*lOBYMuF&|03%XztBz_k4xJNa zP;6?n9t0o&D$$%aK&Xn?zvn!5kBxXz+_3wMjXNeYGc(&!5Xxw~yVzCLq5?p{8b+kZ zjlOUeL<|Nm2+IKm^cj~ik6XQI`}!Y(Z=Ti8>Yx4a=~)mGVVPQHLyB_IjAMLrYPgeSn&Ea?fhpm&ws&qSNaCOIQhDG4TMrK7*CJf8rtNO(EQQua( zdCWPuwuE86X=fcpO)HMXID;Y)EXF370Ltl|mg(ImcM&m3Gz}5qxVk6cYw0_k1w*HmM zw-^x-@|VX}mlm1zf`}`6u`+)kjg9mtzaVK((gS8|)!eTIs-Y7rP?i3Kr-eW_AhUJvs0)``+(eIpOC8ahC6FBLS!f1)r!~XaKm!^kHdSaWbUw_^5>5iu!_2;71^(F2#e1do5^uJq5fmW#vQ4r=TarhaVnPop}fSVRbv46 zRfY2t-YpmComyM~2>%UmR)1RbFE+0)_-iy~5oSEp;$MiEgo;|zy z!C&)z$*9ZdStlnJ@8)+~J$N}M7v#oimul3wWEYsh5fvkm1vvvxvQu~^wohEE+ULUf zSVm_}c*^P-5C3T1%EvDe(s0vzYJEq0<@OfUz^b?qz+&DQ@|upaMtmM4N`Ja0)Bn5J z^V6w}|Ni6gP=Kc3uNejkDSC6NFo3|iNKsncXwGKy=;%8!U0eqnO{S|EqhlIlnT?;( zdr?KAoN;w|%Xqi;?9peJuP|$RE>w_Rnl5j%H%F5(vUZdTGa^hWJ(V?_wXy#?whV#) zbK!Ea)LeC3yUo!R8Q1S?6IE~^ZCOhIcb#Q3$7@zQPJNMc7NT5`2T`#iFUm@T? z4+zJfJ>tlF6)P1YK(-MU-tRy`4c4U}D7>EBEobDyZ?IK5+iaL%^4{^UwP)UBE20xI zSt|~@Hv|@JfktPSeqK6^WsI^S%c8-o}RQ3=JtA^SA`sx z55ZJ4MmJs_ppO1-J+XM-F%ypJ4+pdpH&LtPL_W@`^D2N&0y89mC%DYA9D%Bsif@9 zc@{0yF!Bt#%E>U#t!o1qCAiM0KW{Mag1(-MK2lUl_}tz~qv4jzwwJU&gX_vbK*=bh z+H<)RuVP@vjg)_7uW~hcgm@C-(?UZ(Jw~i{qNgX#{<_w*CCl&~oAqmLk2TCG9otHN zKLA(-pp6MYickthKJj-8EvXoM>@EkK8w>L)Z){^~FMba?i?!876cH47W6b^1*W9U;I!3>KPfw;9wo5P3)jaz-87RdmhuT9$6q&Gq8W``a%e z5dH%$!RC5p05Kc>Hg91q1MTK#13DF-L&BudNLj&FA`nbep`kN?o(vr;Fz&Aiu*)`C znLw*tJ@(1J_UhL{+nf-lOc#eKuXc=2OA-1pvq9T62!hTuwn{v3)$5i#cXdhV*%_)! z!=D=IevfX^oV9Q|->}YqApP8OE#OCfe&?4jU!GWE-&}0C#_v0&;&O-lwD{B*%F{`& zs}oD)&N{Y}`(v!de)kpnG<(Xc86!Qk_k-4?D8|Bgx2alHEAwlRK5~!8Yw{K7eyR`8qT-Ad|XiBNW!a9sw9o1Lb;Yt(FMA zz3Xmwg(Q^wnxj|6*+Y;M&k8+enGE=ZFs_x}3Mxm4Cgrh6%k5UoUef8M)Nx{hHGWWYAnmO>r-r8uUvRe77!0;Pzk@E9>qGQTLBXVvQN~G zH)DtR(`ExCWq{bF$|dXhr#<=_{%tRn&sgbe+lfktQM&nK_&`+nXRmrk@aPWjT8G#K z6R)#(wD#f`ISc@@O3N~R7^a>v2`?YncUMr==wuBjR zZ_NCi5>9H3Ggj2B?ulCj^R>$gpwFCA-8jEa!IB2_$x++GI7GedYKK_=2T%F@Tb?vL zCO%%JMosNAjS~b-IhPTYs)yM^gt*V!J10MwG?3EtLPw=siu^z`8o1740)zh0YV|8% z0XNAU9;Ly+BP#aDizMTYo__q8{{AHW$}5Vldd7znKgj!A3hovNY6O4*Hfpf)#5bCE zL|?v z?D7Kxmm;r}6`)ro*S#V1*8|mz4Zy&xh{;}Ldz~B}_@viS2KvEo#gGg>WF5 z+?&H{q(VGGzVX#8TLSJ4hbgfzrjQ}>bL0@8?yPvGD3@7EpY8Taz>KAVVKV+D(CmAtn1k#*AkeQgVQsGh&G|$EqD_x~$bA z%Fg!~+H**DUo~e|JW7t^+!-Ej{K!c1ArFe9dkv^~`OYiFR&F;R0B@nTktKG~%z-Y4 z#pr!fKmUkPL8}8~Zv;T!RMr`@uZR_|g`Hg7C`LJ+mMJOS=ijH>6}wEHY>OZM#_+wj zFm+r`Kk~O;%5te(lRGYOyZ}lm+P=N@Y0Sj~bHpQUV?lHN{&-IY#DkPV?c!dl;iJ9w zw%=i0122fq^{KO8viq6>Uygx12(ve2Onus&<}o3w74!2c6Kzb;8}5WJf#*N`gV++Z zSUtD=+f9FMw+z-<<5meT=CtmASQhQ-?_M}GW1e>OIN`&>Yu&!)16v5Oiv z2G*x8ALxU@H}+lcK83ot>@1@MguW~E_BOg31FL~**zr>0;83XGclVHy6&S7{FXcTG z$7n&EeLYjz!dwf7Mc`}xwcl*omF6|;Hvn7aWDmxy)=gRQ zoAq0cm}0YBm&xkUp0dulVKd{A}w9=BxUi7$ougn=JkUpG2oj9w135yHPn*gdr2MtIaRkB!+<1i@kXMXp z1~}smJ|n58Bhk9ckkDqku=EWso!u>UpK-C$EH^2Ew>%Trb;#b~7ILgw0|;A9uj$95s`c+ zV}%i?fo?Va#hC6A~u?+;&_ju zbO2EHfSotNU+(;suu3%MnR+JYy_sJBc2+rFZ)`(K(r4TzF8hFuAhUCDHv0^WiLUk& zSS8WMcFGgl{7W^xNX>^QIp2-UWZM#B>u^}yD7*cG+L*c4C+p$C*rpc&C^JS znBsoyIc;RD-)PzPS^AK?N~yHNm{-ZJ1{%KycM3>J&GgUZoE0zbPMssr~@mDW+{CbBo#wS4_p`hS=m9&sM^4)TL<6Hw~ z3$Ua>IZd|B0dKR!DoX_^@9KW&QQIn&mvNu)zI4N*M1WEEIwd5nlRBt7kteh(2In=ryNkx<3cW7x2~8jea)wVRcyqUP#&6UlP!M~ zXZ#V%QT|Dx*5xyUb4zN^Jk(xEoJuO3zWFrd7(5F~ZVdRkhh+EE9)T+%&;gHvod>v4eW)7N(x#IclXRy&`^@ui%Nx#!2;f_K?_R#u;uX zBOpGPC3Yj(Hll!l+JnX3)SA(!uTvFb^v!zo!Be)@63}+)^ekNAN=@lPP^Ps<2;Np10 zXh<|v0@B~JTlOXyv*lKDPS}I2GU3au38x-(w_WE))CyW}$o#8L-=)mUw zKM;g*2@0tEG1{$_3)a^|RCFp)ZeQafOR}+f9K92uN&J<{tpg9i!yG5zE)zi zabv56Y5x%0lsg2U83rn}ZR{Kldl4rUrV@^ zls1xDg|M8SNz2Rd`SmA*`3+jveLF7uTj2KD0m?#a$w;%GOEmmX9K#;#k6KQAfD)P{ znv@g;UTHJ;5MTQoq8d`txJ3S#+G3G_ zbt~kmwDa%HCa6EpmFt1!ONj6SMF!0ye50Sw3~?QoL0O4j?w!e7$1DUT$I&lfHHD>` zJy`r*`^iZZP7y!yS>8??BQ_=6&_x)l+TZ3511^)0&_7r(A>tV~ta6-WM`%`kw(&0U zxCD{Y4Q&{18ah%Ufh5C=^-f~&t|__ zF!m$0*q()ndOGY3V7{pMTdgM_Qo?D#v6Nj5tz)iSvFO1OO^U~?4cWsFQfgf2-+)zZWX zb!|8(UKw!z7mc=O=#B8L)#5Dj`D>KE6#wmRny!QXe*{ddi=1cF!n*)62L6t)aLftL z(C7X!R%T`PtE=W(+Hr{p2H1xz5E${R4p2uRkS{_JM!1Y>Z~mF0c2jRTp^l7*dQQcw hS;N3y`~tUyh(S&Dkq!uS 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 V%xvZ80Rqk-HD%35#SdP*{V#=b)=B^X diff --git a/icons/mob/inhands/weapons/swords_lefthand.dmi b/icons/mob/inhands/weapons/swords_lefthand.dmi index 802b9b85f196ffba6e95ec373eceb071ae67a20e..ae7cc0336cee41a519b17343cc4b3921cfa4d768 100644 GIT binary patch literal 21978 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 literal 21208 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 diff --git a/icons/obj/clothing/belts.dmi b/icons/obj/clothing/belts.dmi index 473f2b8573e23ff69c76669132f53f1479b91fef..73598f1d77c8a2acc3e6760bbfa3a53ed56897fe 100644 GIT binary patch literal 12369 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 From af077de46ce1c4388dee17dac278b23cc86503cf Mon Sep 17 00:00:00 2001 From: kevinz000 Date: Sat, 7 Oct 2017 23:04:47 -0700 Subject: [PATCH 26/95] TTV code cleanup (#31262) * Update transfer_valve.dm * Update transfer_valve.dm * Update transfer_valve.dm * Update transfer_valve.dm * Update transfer_valve.dm --- .../objects/items/devices/transfer_valve.dm | 78 +++++++++---------- 1 file changed, 37 insertions(+), 41 deletions(-) diff --git a/code/game/objects/items/devices/transfer_valve.dm b/code/game/objects/items/devices/transfer_valve.dm index 045da484ed..a24f300b18 100644 --- a/code/game/objects/items/devices/transfer_valve.dm +++ b/code/game/objects/items/devices/transfer_valve.dm @@ -15,7 +15,7 @@ origin_tech = "materials=1;engineering=1" /obj/item/device/transfer_valve/IsAssemblyHolder() - return 1 + return TRUE /obj/item/device/transfer_valve/attackby(obj/item/item, mob/user, params) if(istype(item, /obj/item/tank)) @@ -76,47 +76,46 @@ /obj/item/device/transfer_valve/Topic(href, href_list) ..() - if ( usr.stat || usr.restrained() ) + if(!usr.canUseTopic(src)) return - if (src.loc == usr) - if(tank_one && href_list["tankone"]) - split_gases() - valve_open = FALSE - tank_one.loc = get_turf(src) - tank_one = null + if(tank_one && href_list["tankone"]) + split_gases() + valve_open = FALSE + tank_one.forceMove(drop_location()) + tank_one = null + update_icon() + if((!tank_two || tank_two.w_class < WEIGHT_CLASS_BULKY) && (w_class > WEIGHT_CLASS_NORMAL)) + w_class = WEIGHT_CLASS_NORMAL + else if(tank_two && href_list["tanktwo"]) + split_gases() + valve_open = FALSE + tank_two.forceMove(drop_location()) + tank_two = null + update_icon() + if((!tank_one || tank_one.w_class < WEIGHT_CLASS_BULKY) && (w_class > WEIGHT_CLASS_NORMAL)) + w_class = WEIGHT_CLASS_NORMAL + else if(href_list["open"]) + toggle_valve() + else if(attached_device) + if(href_list["rem_device"]) + attached_device.forceMove(drop_location()) + attached_device.holder = null + attached_device = null update_icon() - if((!tank_two || tank_two.w_class < WEIGHT_CLASS_BULKY) && (w_class > WEIGHT_CLASS_NORMAL)) - w_class = WEIGHT_CLASS_NORMAL - else if(tank_two && href_list["tanktwo"]) - split_gases() - valve_open = FALSE - tank_two.loc = get_turf(src) - tank_two = null - update_icon() - if((!tank_one || tank_one.w_class < WEIGHT_CLASS_BULKY) && (w_class > WEIGHT_CLASS_NORMAL)) - w_class = WEIGHT_CLASS_NORMAL - else if(href_list["open"]) - toggle_valve() - else if(attached_device) - if(href_list["rem_device"]) - attached_device.forceMove(get_turf(src)) - attached_device.holder = null - attached_device = null - update_icon() - if(href_list["device"]) - attached_device.attack_self(usr) + if(href_list["device"]) + attached_device.attack_self(usr) - src.attack_self(usr) - src.add_fingerprint(usr) - return - return + attack_self(usr) + add_fingerprint(usr) /obj/item/device/transfer_valve/proc/process_activation(obj/item/device/D) if(toggle) - toggle = 0 + toggle = FALSE toggle_valve() - spawn(50) // To stop a signal being spammed from a proxy sensor constantly going off or whatever - toggle = 1 + addtimer(CALLBACK(src, .proc/toggle_off), 5) //To stop a signal being spammed from a proxy sensor constantly going off or whatever + +/obj/item/device/transfer_valve/proc/toggle_off() + toggle = TRUE /obj/item/device/transfer_valve/update_icon() cut_overlays() @@ -196,16 +195,13 @@ message_admins(bomb_message, 0, 1) log_game("[log_str1] [A.name][COORD(bombturf)] [log_str2] [log_str3]") merge_gases() - spawn(20) // In case one tank bursts - for (var/i=0,i<5,i++) - src.update_icon() - sleep(10) - src.update_icon() + for(var/i in 1 to 6) + addtimer(CALLBACK(src, .proc/update_icon), 20 + (i - 1) * 10) else if(valve_open && tank_one && tank_two) split_gases() valve_open = FALSE - src.update_icon() + update_icon() // this doesn't do anything but the timer etc. expects it to be here // eventually maybe have it update icon to show state (timer, prox etc.) like old bombs From e5e8a807a26ac05b5f8f9c49d56b544c790bfc7d Mon Sep 17 00:00:00 2001 From: Emmett Gaines Date: Sun, 8 Oct 2017 02:36:51 -0400 Subject: [PATCH 28/95] fixes directionless ghosts having direction (#31405) --- code/modules/shuttle/shuttle_rotate.dm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/modules/shuttle/shuttle_rotate.dm b/code/modules/shuttle/shuttle_rotate.dm index 389a2406ed..5368ef0a73 100644 --- a/code/modules/shuttle/shuttle_rotate.dm +++ b/code/modules/shuttle/shuttle_rotate.dm @@ -1,5 +1,7 @@ /* All shuttleRotate procs go here + +If ever any of these procs are useful for non-shuttles, rename it to proc/rotate and move it to be a generic atom proc */ /************************************Base proc************************************/ @@ -34,6 +36,10 @@ All shuttleRotate procs go here /mob/shuttleRotate(rotation) setDir(angle2dir(rotation+dir2angle(dir))) +/mob/dead/observer/shuttleRotate(rotation) + . = ..() + update_icon() + /************************************Structure rotate procs************************************/ /obj/structure/door_assembly/door_assembly_pod/shuttleRotate(rotation) From 8c4e9d6a023b64ae5d8dfcbf0918bdd339f347c0 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sun, 8 Oct 2017 02:48:26 -0400 Subject: [PATCH 30/95] Merge pull request #31409 from ninjanomnom/buckled-mobs Buckled mobs rotation fix --- code/modules/shuttle/shuttle_rotate.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/shuttle/shuttle_rotate.dm b/code/modules/shuttle/shuttle_rotate.dm index 389a2406ed..1979ca1c3b 100644 --- a/code/modules/shuttle/shuttle_rotate.dm +++ b/code/modules/shuttle/shuttle_rotate.dm @@ -32,7 +32,8 @@ All shuttleRotate procs go here //override to avoid rotating pixel_xy on mobs /mob/shuttleRotate(rotation) - setDir(angle2dir(rotation+dir2angle(dir))) + if(!buckled) + setDir(angle2dir(rotation+dir2angle(dir))) /************************************Structure rotate procs************************************/ From 58fd7f20675de493599794e0da3e83931448a0c6 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sun, 8 Oct 2017 10:59:34 -0400 Subject: [PATCH 32/95] Merge pull request #31413 from vuonojenmustaturska/codejanitoring Removes useless commented-out what-if code from the 1970s --- code/__DEFINES/admin.dm | 3 +-- code/__DEFINES/atmospherics.dm | 4 ++-- code/_globalvars/lists/mapping.dm | 7 ------ code/game/atoms.dm | 2 -- code/modules/mining/machine_processing.dm | 23 +------------------ .../mob/living/carbon/human/species.dm | 5 +--- .../reagents/reagent_containers/borghydro.dm | 8 ------- .../research/designs/weapon_designs.dm | 13 ----------- 8 files changed, 5 insertions(+), 60 deletions(-) diff --git a/code/__DEFINES/admin.dm b/code/__DEFINES/admin.dm index c5c79b9610..482e42dafb 100644 --- a/code/__DEFINES/admin.dm +++ b/code/__DEFINES/admin.dm @@ -93,7 +93,6 @@ #define BANTYPE_ADMIN_TEMP 8 #define BANTYPE_ANY_JOB 9 //used to remove jobbans -//Please don't edit these values without speaking to Errorage first ~Carn //Admin Permissions #define R_BUILDMODE 1 #define R_ADMIN 2 @@ -113,7 +112,7 @@ #error Remove the flag below , its been long enough #endif //legacy , remove post 512, it was replaced by R_POLL -#define R_REJUVINATE 2 +#define R_REJUVINATE 2 #define R_MAXPERMISSION 4096 //This holds the maximum value for a permission. It is used in iteration, so keep it updated. diff --git a/code/__DEFINES/atmospherics.dm b/code/__DEFINES/atmospherics.dm index c6ca2cf0ec..06800d6ae4 100644 --- a/code/__DEFINES/atmospherics.dm +++ b/code/__DEFINES/atmospherics.dm @@ -118,8 +118,8 @@ #define PRESSURE_DAMAGE_COEFFICIENT 4 //The amount of pressure damage someone takes is equal to (pressure / HAZARD_HIGH_PRESSURE)*PRESSURE_DAMAGE_COEFFICIENT, with the maximum of MAX_PRESSURE_DAMAGE -#define MAX_HIGH_PRESSURE_DAMAGE 4 //This used to be 20... I got this much random rage for some retarded decision by polymorph?! Polymorph now lies in a pool of blood with a katana jammed in his spleen. ~Errorage --PS: The katana did less than 20 damage to him :( -#define LOW_PRESSURE_DAMAGE 2 //The amounb of damage someone takes when in a low pressure area (The pressure threshold is so low that it doesn't make sense to do any calculations, so it just applies this flat value). +#define MAX_HIGH_PRESSURE_DAMAGE 4 +#define LOW_PRESSURE_DAMAGE 2 //The amount of damage someone takes when in a low pressure area (The pressure threshold is so low that it doesn't make sense to do any calculations, so it just applies this flat value). #define COLD_SLOWDOWN_FACTOR 20 //Humans are slowed by the difference between bodytemp and BODYTEMP_COLD_DAMAGE_LIMIT divided by this diff --git a/code/_globalvars/lists/mapping.dm b/code/_globalvars/lists/mapping.dm index 03824c4c83..e6b05e033f 100644 --- a/code/_globalvars/lists/mapping.dm +++ b/code/_globalvars/lists/mapping.dm @@ -7,13 +7,6 @@ GLOBAL_LIST_INIT(cardinals, list(NORTH, SOUTH, EAST, WEST)) GLOBAL_LIST_INIT(alldirs, list(NORTH, SOUTH, EAST, WEST, NORTHEAST, NORTHWEST, SOUTHEAST, SOUTHWEST)) GLOBAL_LIST_INIT(diagonals, list(NORTHEAST, NORTHWEST, SOUTHEAST, SOUTHWEST)) -//This list contains the z-level numbers which can be accessed via space travel and the percentile chances to get there. -//(Exceptions: extended, sandbox and nuke) -Errorage -//Was list("3" = 30, "4" = 70). -//Spacing should be a reliable method of getting rid of a body -- Urist. -//Go away Urist, I'm restoring this to the longer list. ~Errorage -GLOBAL_LIST_INIT(accessable_z_levels, list(1,3,4,5,6,7)) //Keep this to six maps, repeating z-levels is ok if needed - GLOBAL_LIST_INIT(station_z_levels, list(ZLEVEL_STATION_PRIMARY)) GLOBAL_LIST(global_map) diff --git a/code/game/atoms.dm b/code/game/atoms.dm index 0774253d47..d1ca8b3890 100644 --- a/code/game/atoms.dm +++ b/code/game/atoms.dm @@ -36,8 +36,6 @@ if(GLOB.use_preloader && (src.type == GLOB._preloader.target_path))//in case the instanciated atom is creating other atoms in New() GLOB._preloader.load(src) - //. = ..() //uncomment if you are dumb enough to add a /datum/New() proc - var/do_initialize = SSatoms.initialized if(do_initialize > INITIALIZATION_INSSATOMS) args[1] = do_initialize == INITIALIZATION_INNEW_MAPLOAD diff --git a/code/modules/mining/machine_processing.dm b/code/modules/mining/machine_processing.dm index 0927a0ba88..75c0f94ac4 100644 --- a/code/modules/mining/machine_processing.dm +++ b/code/modules/mining/machine_processing.dm @@ -143,27 +143,6 @@ if(CONSOLE) CONSOLE.updateUsrDialog() - - //THESE TWO ARE CODED FOR URIST TO USE WHEN HE GETS AROUND TO IT. - //They were coded on 18 Feb 2012. If you're reading this in 2015, then firstly congratulations on the world not ending on 21 Dec 2012 and secondly, Urist is apparently VERY lazy. ~Errorage - //Even in the dark year of 2016, where /tg/ is dead, Urist still hasn't finished this -Bawhoppennn - /*if (selected_glass == 0 && selected_gold == 0 && selected_silver == 0 && selected_diamond == 1 && selected_plasma == 0 && selected_uranium == 1 && selected_iron == 0 && selected_clown == 0) - if (ore_uranium >= 2 && ore_diamond >= 1) - ore_uranium -= 2 - ore_diamond -= 1 - generate_mineral(/obj/item/stack/sheet/mineral/adamantine) - else - on = FALSE - continue - if (selected_glass == 0 && selected_gold == 0 && selected_silver == 1 && selected_diamond == 0 && selected_plasma == 1 && selected_uranium == 0 && selected_iron == 0 && selected_clown == 0) - if (ore_silver >= 1 && ore_plasma >= 3) - ore_silver -= 1 - ore_plasma -= 3 - generate_mineral(/obj/item/stack/sheet/mineral/mythril) - else - on = FALSE - continue*/ - /obj/machinery/mineral/processing_unit/proc/smelt_ore() GET_COMPONENT(materials, /datum/component/material_container) var/datum/material/mat = materials.materials[selected_material] @@ -221,4 +200,4 @@ materials.retrieve_all() ..() -#undef SMELT_AMOUNT \ No newline at end of file +#undef SMELT_AMOUNT diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm index 34d4ae8e51..e8e2b606fb 100644 --- a/code/modules/mob/living/carbon/human/species.dm +++ b/code/modules/mob/living/carbon/human/species.dm @@ -246,7 +246,7 @@ if(DIGITIGRADE in species_traits) C.Digitigrade_Leg_Swap(FALSE) - regenerate_organs(C,old_species) + regenerate_organs(C,old_species) if(exotic_bloodtype && C.dna.blood_type != exotic_bloodtype) C.dna.blood_type = exotic_bloodtype @@ -1632,9 +1632,6 @@ else H.clear_alert("temp") - // Account for massive pressure differences. Done by Polymorph - // Made it possible to actually have something that can protect against high pressure... Done by Errorage. Polymorph now has an axe sticking from his head for his previous hardcoded nonsense! - var/pressure = environment.return_pressure() var/adjusted_pressure = H.calculate_affecting_pressure(pressure) //Returns how much pressure actually affects the mob. switch(adjusted_pressure) diff --git a/code/modules/reagents/reagent_containers/borghydro.dm b/code/modules/reagents/reagent_containers/borghydro.dm index 2493f9628d..a7f8fc9195 100644 --- a/code/modules/reagents/reagent_containers/borghydro.dm +++ b/code/modules/reagents/reagent_containers/borghydro.dm @@ -55,14 +55,6 @@ Borg Hypospray //update_icon() return 1 -// Purely for testing purposes I swear~ //don't lie to me -/* -/obj/item/reagent_containers/borghypo/verb/add_cyanide() - set src in world - add_reagent("cyanide") -*/ - - // Use this to add more chemicals for the borghypo to produce. /obj/item/reagent_containers/borghypo/proc/add_reagent(reagent) reagent_ids |= reagent diff --git a/code/modules/research/designs/weapon_designs.dm b/code/modules/research/designs/weapon_designs.dm index 89adfe8edc..5cd10ca50d 100644 --- a/code/modules/research/designs/weapon_designs.dm +++ b/code/modules/research/designs/weapon_designs.dm @@ -124,19 +124,6 @@ build_path = /obj/item/grenade/chem_grenade/pyro category = list("Weapons") -/* // Currently commented out, because it has no worthwhile useage yet. - -/datum/design/cryo_grenade - name = "Cryo Grenade" - desc = "An advanced grenade that rapidly cools its contents upon detonation." - id = "cryo_Grenade" - req_tech = list("combat" = 3, "materials" = 3) - build_type = PROTOLATHE - materials = list(MAT_METAL = 2000, MAT_SILVER = 500) - build_path = /obj/item/grenade/chem_grenade/cryo - category = list("Weapons") -*/ - /datum/design/adv_grenade name = "Advanced Release Grenade" desc = "An advanced grenade that can be detonated several times, best used with a repeating igniter." From bf7f4e6e6901d077df73edf15d5d2079fb3f2b6d Mon Sep 17 00:00:00 2001 From: oranges Date: Mon, 9 Oct 2017 04:06:43 +1300 Subject: [PATCH 34/95] Minor refactor to storage items (#31324) They now do not call the on exit storage hook when items are being deleted, as well as do not bother to reset a bunch of values we now cache the see contents list for a very small speed boost the fancy storage specific update icon is moved to the fancy storage equivalent proc --- code/game/objects/items/storage/fancy.dm | 4 ++- code/game/objects/items/storage/storage.dm | 40 +++++++++++++--------- 2 files changed, 27 insertions(+), 17 deletions(-) diff --git a/code/game/objects/items/storage/fancy.dm b/code/game/objects/items/storage/fancy.dm index 435bc64c41..a37ea9f8cf 100644 --- a/code/game/objects/items/storage/fancy.dm +++ b/code/game/objects/items/storage/fancy.dm @@ -58,7 +58,9 @@ /obj/item/storage/fancy/remove_from_storage(obj/item/W, atom/new_location, burn = 0) fancy_open = TRUE - return ..() + . = ..() + //Recall update icon with the fancy item snowflake arg (ugh) + update_icon(1) /* * Donut Box diff --git a/code/game/objects/items/storage/storage.dm b/code/game/objects/items/storage/storage.dm index 9a3769206c..309479dd86 100644 --- a/code/game/objects/items/storage/storage.dm +++ b/code/game/objects/items/storage/storage.dm @@ -359,35 +359,43 @@ return 1 -//Call this proc to handle the removal of an item from the storage item. The item will be moved to the atom sent as new_target +//Call this proc to handle the removal of an item from the storage item. The item will be moved to the new_location target, if that is null it's being deleted /obj/item/storage/proc/remove_from_storage(obj/item/W, atom/new_location) if(!istype(W)) return 0 - if(istype(src, /obj/item/storage/fancy)) - var/obj/item/storage/fancy/F = src - F.update_icon(1) - - for(var/mob/M in can_see_contents()) - if(M.client) - M.client.screen -= W + //Cache this as it should be reusable down the bottom, will not apply if anyone adds a sleep to dropped + //or moving objects, things that should never happen + var/list/seeing_mobs = can_see_contents() + for(var/mob/M in seeing_mobs) + M.client.screen -= W if(ismob(loc)) var/mob/M = loc W.dropped(M) - W.layer = initial(W.layer) - W.plane = initial(W.plane) - W.forceMove(new_location) + - for(var/mob/M in can_see_contents()) + if(new_location) + W.forceMove(new_location) + //Reset the items values + W.layer = initial(W.layer) + W.plane = initial(W.plane) + W.mouse_opacity = initial(W.mouse_opacity) + if(W.maptext) + W.maptext = "" + //We don't want to call this if the item is being destroyed + W.on_exit_storage(src) + + else + //Being destroyed, just move to nullspace now (so it's not in contents for the icon update) + W.moveToNullspace() + + + for(var/mob/M in seeing_mobs) orient2hud(M) show_to(M) - if(W.maptext) - W.maptext = "" - W.on_exit_storage(src) update_icon() - W.mouse_opacity = initial(W.mouse_opacity) return 1 /obj/item/storage/deconstruct(disassembled = TRUE) From 04006b2ad2758bd6c8b524e4f0a7c03c4cad626a Mon Sep 17 00:00:00 2001 From: Robustin Date: Sun, 8 Oct 2017 11:08:04 -0400 Subject: [PATCH 36/95] Tweak to abandoned airlock (#31312) --- code/game/machinery/doors/airlock.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm index e7fa7447b5..24611ea4fc 100644 --- a/code/game/machinery/doors/airlock.dm +++ b/code/game/machinery/doors/airlock.dm @@ -127,7 +127,6 @@ here.ChangeTurf(T.type) return INITIALIZE_HINT_QDEL here.ChangeTurf(/turf/closed/wall) - return INITIALIZE_HINT_QDEL if(9 to 11) lights = FALSE locked = TRUE From ef57f560ed23543214d5ad189f9349e4af7e6029 Mon Sep 17 00:00:00 2001 From: Ashe Higgs Date: Sun, 8 Oct 2017 11:09:07 -0400 Subject: [PATCH 38/95] Clockwork scripture now uses one progress bar instead of multiple (#31329) * Clockcult scripture now uses one progress bar * why do you code for a server you're banned from * Checks for QDELETED of scripture and slab --- .../gamemodes/clock_cult/clock_scripture.dm | 22 ++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/code/game/gamemodes/clock_cult/clock_scripture.dm b/code/game/gamemodes/clock_cult/clock_scripture.dm index 6edaede8df..8e8cd912e7 100644 --- a/code/game/gamemodes/clock_cult/clock_scripture.dm +++ b/code/game/gamemodes/clock_cult/clock_scripture.dm @@ -12,6 +12,7 @@ Applications: 8 servants, 3 caches, and 100 CV var/name = "scripture" var/desc = "Ancient Ratvarian lore. This piece seems particularly mundane." var/list/invocations = list() //Spoken over time in the ancient language of Ratvar. See clock_unsorted.dm for more details on the language and how to make it. + var/chanting = FALSE //If the invocation's words are being spoken var/channel_time = 10 //In deciseconds, how long a ritual takes to chant var/power_cost = 5 //In watts, how much a scripture takes to invoke var/special_power_text //If the scripture can use additional power to have a unique function, use this; put POWERCOST here to display the special power cost. @@ -145,18 +146,29 @@ Applications: 8 servants, 3 caches, and 100 CV to_chat(invoker, "You [channel_time <= 0 ? "recite" : "begin reciting"] a piece of scripture entitled \"[name]\".") if(!channel_time) return TRUE + chant() + if(!do_after(invoker, channel_time, target = invoker, extra_checks = CALLBACK(src, .proc/check_special_requirements))) + slab.busy = null + chanting = FALSE + scripture_fail() + chanting = FALSE + return + chanting = FALSE + return TRUE + +/datum/clockwork_scripture/proc/chant() + set waitfor = FALSE + chanting = TRUE for(var/invocation in invocations) - if(!do_after(invoker, channel_time / invocations.len, target = invoker, extra_checks = CALLBACK(src, .proc/check_special_requirements))) - slab.busy = null - scripture_fail() - return FALSE + sleep(channel_time / invocations.len) + if(QDELETED(src) || QDELETED(slab) || !chanting) + return if(multiple_invokers_used) for(var/mob/living/L in range(1, get_turf(invoker))) if(can_recite_scripture(L)) clockwork_say(L, text2ratvar(invocation), whispered) else clockwork_say(invoker, text2ratvar(invocation), whispered) - return TRUE /datum/clockwork_scripture/proc/scripture_effects() //The actual effects of the recital after its conclusion From 5d0853e16a494bfcf99c883124c966e87e3df3e2 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Sun, 8 Oct 2017 17:05:40 +0000 Subject: [PATCH 40/95] Crew objective/miscreant system tweaks (#3213) * Loadsa tweaks * adds miscreant pref, other fixes * fixes runtime * fixes compiling errors for REAL now hopefully * HOPEFULLY fixes compiling errors * COMPILE! --- code/__DEFINES/citadel_defines.dm | 2 +- code/__DEFINES/role_preferences.dm | 4 ++- code/citadel/cit_crewobjectives.dm | 5 ++-- code/citadel/cit_miscreants.dm | 7 ++++- .../cit_crewobjectives_civilian.dm | 27 +++---------------- .../cit_crewobjectives_medical.dm | 2 +- code/controllers/subsystem/ticker.dm | 12 ++++----- .../modules/mob/dead/new_player/new_player.dm | 4 +-- 8 files changed, 25 insertions(+), 38 deletions(-) diff --git a/code/__DEFINES/citadel_defines.dm b/code/__DEFINES/citadel_defines.dm index 51ba9d4c59..4c8243cdc5 100644 --- a/code/__DEFINES/citadel_defines.dm +++ b/code/__DEFINES/citadel_defines.dm @@ -70,4 +70,4 @@ #define ADMIN_MARKREAD(client) "(MARK READ)"//marks an adminhelp as read and under investigation #define ADMIN_IC(client) "(IC)"//marks and adminhelp as an IC issue -#define ADMIN_REJECT(client) "(REJT)"//Rejects an adminhelp for being unclear or otherwise unhelpful. resets their adminhelp timer \ No newline at end of file +#define ADMIN_REJECT(client) "(REJT)"//Rejects an adminhelp for being unclear or otherwise unhelpful. resets their adminhelp timer diff --git a/code/__DEFINES/role_preferences.dm b/code/__DEFINES/role_preferences.dm index cea6bc5e36..ab62710652 100644 --- a/code/__DEFINES/role_preferences.dm +++ b/code/__DEFINES/role_preferences.dm @@ -24,6 +24,7 @@ #define ROLE_SERVANT_OF_RATVAR "servant of Ratvar" #define ROLE_BORER "borer" #define ROLE_BROTHER "blood brother" +#define ROLE_MISCREANT "miscreant" //Missing assignment means it's not a gamemode specific role, IT'S NOT A BUG OR ERROR. //The gamemode specific ones are just so the gamemodes can query whether a player is old enough @@ -46,7 +47,8 @@ GLOBAL_LIST_INIT(special_roles, list( ROLE_ABDUCTOR = /datum/game_mode/abduction, ROLE_DEVIL = /datum/game_mode/devil, ROLE_BORER, - ROLE_SERVANT_OF_RATVAR = /datum/game_mode/clockwork_cult + ROLE_SERVANT_OF_RATVAR = /datum/game_mode/clockwork_cult, + ROLE_MISCREANT )) //Job defines for what happens when you fail to qualify for any job during job selection diff --git a/code/citadel/cit_crewobjectives.dm b/code/citadel/cit_crewobjectives.dm index 2d9149f5b1..90a655b622 100644 --- a/code/citadel/cit_crewobjectives.dm +++ b/code/citadel/cit_crewobjectives.dm @@ -1,6 +1,6 @@ /datum/controller/subsystem/ticker/proc/generate_crew_objectives() for(var/datum/mind/crewMind in SSticker.minds) - if(prob(2) && !issilicon(crewMind.current) && !jobban_isbanned(crewMind, "Syndicate") && GLOB.miscreants_allowed) + if(prob(2) && !issilicon(crewMind.current) && !jobban_isbanned(crewMind, "Syndicate") && GLOB.miscreants_allowed && ROLE_MISCREANT in crewMind.current.client.prefs.be_special) generate_miscreant_objectives(crewMind) else if(CONFIG_GET(flag/allow_crew_objectives)) @@ -25,7 +25,8 @@ return newObjective.owner = crewMind crewMind.objectives += newObjective - to_chat(crewMind, "Your objective: [newObjective.explanation_text]") + to_chat(crewMind, "As a part of Nanotrasen's anti-tide efforts, you have been assigned an optional objective. It will be checked at the end of the shift. Performing traitorous acts in pursuit of your objective may result in termination of your employment.") + to_chat(crewMind, "Your optional objective: [newObjective.explanation_text]") /datum/controller/subsystem/ticker/proc/get_valid_crew_objs(var/job = "")//taken from old hippie with adjustments var/list/objpaths = typesof(/datum/objective/crew) diff --git a/code/citadel/cit_miscreants.dm b/code/citadel/cit_miscreants.dm index f828127b55..e658fad097 100644 --- a/code/citadel/cit_miscreants.dm +++ b/code/citadel/cit_miscreants.dm @@ -7,6 +7,8 @@ return if(!crewMind.assigned_role) return + if(ROLE_MISCREANT in crewMind.current.client.prefs.be_special) + return if(jobban_isbanned(crewMind, "Syndicate")) return var/list/objectiveTypes = typesof(/datum/objective/miscreant) - /datum/objective/miscreant @@ -58,4 +60,7 @@ explanation_text = "Act as out of character as you possibly can." /datum/objective/miscreant/racism - explanation_text = "Attempt to establish superiority of your race." + explanation_text = "Attempt to establish superiority of your species." + +/datum/objective/miscreant/cargonia + explanation_text = "Attempt to establish independence of your department." diff --git a/code/citadel/crew_objectives/cit_crewobjectives_civilian.dm b/code/citadel/crew_objectives/cit_crewobjectives_civilian.dm index 81427c7951..9be0e1c028 100644 --- a/code/citadel/crew_objectives/cit_crewobjectives_civilian.dm +++ b/code/citadel/crew_objectives/cit_crewobjectives_civilian.dm @@ -185,29 +185,6 @@ else return FALSE -/datum/objective/crew/departmentclothes - var/obj/item/clothing/under/rank/targetuniform - explanation_text = "Be wearing a (Yo, this objective broke. report this to citadels discord via the development channel) at the end of the shift." - jobs = "assistant" - -/datum/objective/crew/departmentclothes/New() - . = ..() - var/list/blacklist = list(/obj/item/clothing/under/rank, /obj/item/clothing/under/rank/miner, /obj/item/clothing/under/rank/medical/blue, /obj/item/clothing/under/rank/medical/green, /obj/item/clothing/under/rank/medical/purple, /obj/item/clothing/under/rank/security/grey, /obj/item/clothing/under/rank/warden/grey, /obj/item/clothing/under/rank/head_of_security/grey, /obj/item/clothing/under/rank/mailman, /obj/item/clothing/under/rank/psyche, /obj/item/clothing/under/rank/clown/sexy, /obj/item/clothing/under/rank/centcom_officer, /obj/item/clothing/under/rank/centcom_commander, /obj/item/clothing/under/rank/security/navyblue/russian, /obj/item/clothing/under/rank/security/blueshirt) - var/list/validclothes = typesof(/obj/item/clothing/under/rank) - blacklist - targetuniform = pick(validclothes) - update_explanation_text() - -/datum/objective/crew/departmentclothes/update_explanation_text() - . = ..() - explanation_text = "Be wearing a [initial(targetuniform.name)] at the end of the shift." - -/datum/objective/crew/departmentclothes/check_completion() - if(owner && owner.current) - var/mob/living/carbon/human/H = owner.current - if(istype(H.w_uniform, targetuniform)) - return TRUE - return FALSE - /datum/objective/crew/pwrgame //ported from Goon with adjustments var/obj/item/clothing/targettidegarb explanation_text = "Get your grubby hands on a (Dear god something broke. Report this to Citadel's development dicussion channel)." @@ -215,7 +192,9 @@ /datum/objective/crew/pwrgame/New() . = ..() - var/list/muhvalids = list(/obj/item/clothing/mask/gas, /obj/item/clothing/head/welding, /obj/item/clothing/head/ushanka, /obj/item/clothing/gloves/color/yellow, /obj/item/clothing/mask/gas/owl_mask, /obj/item/clothing/suit/space) + var/list/muhvalids = list(/obj/item/clothing/mask/gas, /obj/item/clothing/head/welding, /obj/item/clothing/head/ushanka, /obj/item/clothing/gloves/color/yellow, /obj/item/clothing/mask/gas/owl_mask) + if(prob(10)) + muhvalids += list(/obj/item/clothing/suit/space) targettidegarb = pick(muhvalids) update_explanation_text() diff --git a/code/citadel/crew_objectives/cit_crewobjectives_medical.dm b/code/citadel/crew_objectives/cit_crewobjectives_medical.dm index 43d470f2f3..53a9dc73aa 100644 --- a/code/citadel/crew_objectives/cit_crewobjectives_medical.dm +++ b/code/citadel/crew_objectives/cit_crewobjectives_medical.dm @@ -74,7 +74,7 @@ return FALSE /datum/objective/crew/noinfections - explanation_text = "Ensure no living crew members are infected with harmful viruses at the end of the shift" + explanation_text = "Make sure there are no crew members with harmful diseases at the end of the shift." jobs = "virologist" /datum/objective/crew/noinfections/check_completion() diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm index fc53bfa25a..b7c3176067 100755 --- a/code/controllers/subsystem/ticker.dm +++ b/code/controllers/subsystem/ticker.dm @@ -258,7 +258,7 @@ SUBSYSTEM_DEF(ticker) //Deleting Startpoints but we need the ai point to AI-ize people later if(S.name != "AI") qdel(S) - + //assign crew objectives and generate miscreants if(CONFIG_GET(flag/allow_extended_miscreants) && GLOB.master_mode == "extended") GLOB.miscreants_allowed = TRUE @@ -282,7 +282,7 @@ SUBSYSTEM_DEF(ticker) qdel(bomb) if(epi) explosion(epi, 0, 256, 512, 0, TRUE, TRUE, 0, TRUE) - + /datum/controller/subsystem/ticker/proc/create_characters() for(var/mob/dead/new_player/player in GLOB.player_list) if(player.ready == PLAYER_READY_TO_PLAY && player.mind) @@ -472,13 +472,13 @@ SUBSYSTEM_DEF(ticker) if(!crewMind.current || !crewMind.objectives.len) continue for(var/datum/objective/miscreant/MO in crewMind.objectives) - miscreants += "[crewMind.current.real_name] (Played by: [crewMind.key]). Objective: [MO.explanation_text]" + miscreants += "[crewMind.current.real_name] (Played by: [crewMind.key])
Objective: [MO.explanation_text] (Optional)
" for(var/datum/objective/crew/CO in crewMind.objectives) if(CO.check_completion()) - to_chat(crewMind.current, "
Your objective: [CO.explanation_text] Success!") - successfulCrew += "[crewMind.current.real_name] (Played by: [crewMind.key]). Objective: [CO.explanation_text]" + to_chat(crewMind.current, "
Your optional objective: [CO.explanation_text] Success!") + successfulCrew += "[crewMind.current.real_name] (Played by: [crewMind.key])
Objective: [CO.explanation_text] Success! (Optional)
" else - to_chat(crewMind.current, "
Your objective: [CO.explanation_text] Failed.") + to_chat(crewMind.current, "
Your optional objective: [CO.explanation_text] Failed.") if (successfulCrew.len) var/completedObjectives = "The following crew members completed their Crew Objectives:
" diff --git a/code/modules/mob/dead/new_player/new_player.dm b/code/modules/mob/dead/new_player/new_player.dm index 9aab9e54f1..b692ab2d32 100644 --- a/code/modules/mob/dead/new_player/new_player.dm +++ b/code/modules/mob/dead/new_player/new_player.dm @@ -80,7 +80,7 @@ if(SSticker.current_state == GAME_STATE_PREGAME) var/time_remaining = SSticker.GetTimeLeft() if(time_remaining > 0) - stat("Time To Start:", "[round(time_remaining/10)]s") + stat("Time To Start:", "[round(time_remaining/10)]s") else if(time_remaining == -10) stat("Time To Start:", "DELAYED") else @@ -375,7 +375,7 @@ if(GLOB.highlander) to_chat(humanc, "THERE CAN BE ONLY ONE!!!") humanc.make_scottish() - if(prob(2) && !issilicon(humanc) && !jobban_isbanned(humanc.mind, "Syndicate") && GLOB.miscreants_allowed) + if(prob(2) && !issilicon(humanc) && !jobban_isbanned(humanc.mind, "Syndicate") && GLOB.miscreants_allowed && ROLE_MISCREANT in humanc.client.prefs.be_special) SSticker.generate_miscreant_objectives(humanc.mind) else if(CONFIG_GET(flag/allow_crew_objectives)) From c91d54c6a66e353c6ed3ec428fc8809817795993 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 8 Oct 2017 12:05:42 -0500 Subject: [PATCH 41/95] Automatic changelog generation for PR #3213 [ci skip] --- html/changelogs/AutoChangeLog-pr-3213.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3213.yml diff --git a/html/changelogs/AutoChangeLog-pr-3213.yml b/html/changelogs/AutoChangeLog-pr-3213.yml new file mode 100644 index 0000000000..cc1948c676 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3213.yml @@ -0,0 +1,9 @@ +author: "deathride58" +delete-after: True +changes: + - tweak: "Crew objectives are now more clearly stated to be assigned by Nanotrasen." + - tweak: "You can now opt out of being a miscreant in your preferences" + - tweak: "Round end objective display is a lot more readable" + - tweak: "Crew objectives and miscreant objectives now have more emphasis on being optional" + - tweak: "Space suits are a much rarer target for the pwrgame objective" + - rscdel: "Got rid of the departmental clothing objective" From b5981147dd60a789a315e2d527681a61ca2d3061 Mon Sep 17 00:00:00 2001 From: AnturK Date: Sun, 8 Oct 2017 20:15:35 +0200 Subject: [PATCH 42/95] Fixes mob swap on tables. (#31414) --- code/modules/mob/living/living.dm | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index f4e85e40fb..2fc6f79ec3 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -152,16 +152,20 @@ M.pass_flags |= PASSMOB pass_flags |= PASSMOB - M.Move(oldloc) - Move(oldMloc) - + var/move_failed = FALSE + if(!M.Move(oldloc) || !Move(oldMloc)) + M.forceMove(oldMloc) + forceMove(oldloc) + move_failed = TRUE if(!src_passmob) pass_flags &= ~PASSMOB if(!M_passmob) M.pass_flags &= ~PASSMOB now_pushing = 0 - return 1 + + if(!move_failed) + return 1 //okay, so we didn't switch. but should we push? //not if he's not CANPUSH of course From 2f41af546e34027fa68c9354eba23e404d6a3284 Mon Sep 17 00:00:00 2001 From: JamieH Date: Sun, 8 Oct 2017 19:16:09 +0100 Subject: [PATCH 44/95] Allows easy hosting of server side lobby music (#31352) * Allows easy hosting of server side lobby music * No images here!!! * Undelete /tg/ sounds... REEE * Add back the old system and use it if this doesn't find any music * Documentation++ * Update round_start_sounds.txt * Allow for rare map specific title music Also don't attempt to play non-valid sounds/non-sounds * Fix bad sound filter, fix common sounds * Update README.txt * Update ticker.dm * Update ticker.dm --- code/controllers/subsystem/ticker.dm | 49 +++++++++++++++++++++++++++- config/title_music/LICENSE.txt | 34 +++++++++++++++++++ config/title_music/README.txt | 39 ++++++++++++++++++++++ 3 files changed, 121 insertions(+), 1 deletion(-) create mode 100644 config/title_music/LICENSE.txt create mode 100644 config/title_music/README.txt diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm index b7c3176067..02a9808f48 100755 --- a/code/controllers/subsystem/ticker.dm +++ b/code/controllers/subsystem/ticker.dm @@ -68,10 +68,57 @@ SUBSYSTEM_DEF(ticker) /datum/controller/subsystem/ticker/Initialize(timeofday) load_mode() - var/list/music = world.file2list(ROUND_START_MUSIC_LIST, "\n") + + var/list/byond_sound_formats = list( + "mid" = TRUE, + "midi" = TRUE, + "mod" = TRUE, + "it" = TRUE, + "s3m" = TRUE, + "xm" = TRUE, + "oxm" = TRUE, + "wav" = TRUE, + "ogg" = TRUE, + "raw" = TRUE, + "wma" = TRUE, + "aiff" = TRUE + ) + + var/list/provisional_title_music = flist("config/title_music/sounds/") + var/list/music = list() + var/use_rare_music = prob(1) + + for(var/S in provisional_title_music) + var/lower = lowertext(S) + var/list/L = splittext(lower,"+") + switch(L.len) + if(3) //rare+MAP+sound.ogg or MAP+rare.sound.ogg -- Rare Map-specific sounds + if(use_rare_music) + if(L[1] == "rare" && L[2] == SSmapping.config.map_name) + music += S + else if(L[2] == "rare" && L[1] == SSmapping.config.map_name) + music += S + if(2) //rare+sound.ogg or MAP+sound.ogg -- Rare sounds or Map-specific sounds + if((use_rare_music && L[1] == "rare") || (L[1] == SSmapping.config.map_name)) + music += S + if(1) //sound.ogg -- common sound + music += S + var/old_login_music = trim(file2text("data/last_round_lobby_music.txt")) if(music.len > 1) music -= old_login_music + + for(var/S in music) + var/list/L = splittext(S,".") + if(L.len >= 2) + var/ext = lowertext(L[L.len]) //pick the real extension, no 'honk.ogg.exe' nonsense here + if(byond_sound_formats[ext]) + continue + music -= S + + if(isemptylist(music)) + music = world.file2list(ROUND_START_MUSIC_LIST, "\n") + login_music = pick(music) if(!GLOB.syndicate_code_phrase) diff --git a/config/title_music/LICENSE.txt b/config/title_music/LICENSE.txt new file mode 100644 index 0000000000..3f1576d19d --- /dev/null +++ b/config/title_music/LICENSE.txt @@ -0,0 +1,34 @@ +---LICENSE NOTICE--- + +The server operator(s) is responsible for the copyright status of all sounds placed within the /config/title_music/sounds folder unless otherwise noted. + +If a sound requires attribution and/or a specific license it is up to the operator(s) to make this information publicly available on either +a website associated with their server or on the server itself. + +If operators(s) allow these configuration files to be public this file can serve that purpose by keeping it properly updated. + +If in the future new sounds are published to these folders (i.e. in an online code repository) they must explicitly state their +license if said license is not the same as the default licensing found in README.md in the root directory of the project. + +Do not remove this notice. + +---END NOTICE--- + + + + +---EXAMPLES (NOT PART OF ANY LICENSE)--- + +These are examples of properly attrubuted and licensed sounds. +They are not an actual part of any license under any circumstance. + +title5.ogg was created by Mya Quinn on Feburary 28, 2557. It is licensed under a Combative Clowning 3.0 HO-NK license (http://example.com/license/url/). + +Unless otherwise noted all sounds were created by Cuban Pete on July 26, 2555. They are licensed under the RUMBABEAT Public License.(http://example.com/license/url/). + +---END EXAMPLES (NOT PART OF ANY LICENSE)--- + + + + +---ADD LICENSING INFORMATION BELOW--- diff --git a/config/title_music/README.txt b/config/title_music/README.txt new file mode 100644 index 0000000000..6734508a68 --- /dev/null +++ b/config/title_music/README.txt @@ -0,0 +1,39 @@ +The enclosed sounds folder holds the sound files used as the title music for the game. OGG and WAV are supported. + +Using unnecessarily huge sounds can cause client side lag and should be avoided. + +You may add as many title sounds as you like, if there is more than one a random screen is chosen (see name conventions for specifics). + +--- + +Naming Conventions: + +Every title sound you add must have a unique name. It is allowed to name two things the same if they have different file types, but this should be discouraged. +Avoid using the plus sign "+" and the period "." in names, as these are used internally to classify sounds. + + +Common Title Sounds: + +Common sounds are in the rotation to be displayed all the time. Any name that does not include the character "+" is considered a common sound. + +An example of a common sound name is "clown". + + +Map Title Sounds: + +Map sounds are tied to a specific in game map. To make a map title you format the name like this "(name of a map)+(name of your sound)" + +The spelling of the map name is important. It must match exactly the define MAP_NAME found in the relevant .DM file in the /_maps folder in +the root directory. It can also be seen in game in the status menu. Note that there are no spaces between the two names. + +It is absolutely fine to have more than one sound tied to the same map. It's also fine to have a rare map sound. + +An example of a map sound name is "Omegastation+splash". + + +Rare Title Sounds: + +Rare title sounds are a just for fun feature where they will only have a 1% chance of appear in in the title sound pool of a given round. +Add the phrase "rare+" to the beginning of the name. Again note there are no spaces. + +An example of a rare sound name is "rare+explosion" From 3f975a63b7feba699c5c7b2f4084b911f01bd02c Mon Sep 17 00:00:00 2001 From: AnturK Date: Sun, 8 Oct 2017 20:17:35 +0200 Subject: [PATCH 46/95] Dedicated equipment removal proc (#31411) * Dedicated equipment removal proc * department of redundancy department * Whitespace makes me angry --- code/modules/mob/living/carbon/human/dummy.dm | 2 +- code/modules/mob/living/carbon/human/inventory.dm | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/dummy.dm b/code/modules/mob/living/carbon/human/dummy.dm index 0492a0b5e6..018f04ab8f 100644 --- a/code/modules/mob/living/carbon/human/dummy.dm +++ b/code/modules/mob/living/carbon/human/dummy.dm @@ -14,7 +14,7 @@ INITIALIZE_IMMEDIATE(/mob/living/carbon/human/dummy) return /mob/living/carbon/human/dummy/proc/wipe_state() - QDEL_LIST(contents) + delete_equipment() cut_overlays(TRUE) //Inefficient pooling/caching way. diff --git a/code/modules/mob/living/carbon/human/inventory.dm b/code/modules/mob/living/carbon/human/inventory.dm index 593becfd48..67000ad788 100644 --- a/code/modules/mob/living/carbon/human/inventory.dm +++ b/code/modules/mob/living/carbon/human/inventory.dm @@ -260,3 +260,12 @@ return 0 return O.equip(src, visualsOnly) + + +//delete all equipment without dropping anything +/mob/living/carbon/human/proc/delete_equipment() + for(var/slot in get_all_slots())//order matters, dependant slots go first + var/obj/item/I = get_item_by_slot(slot) + qdel(I) + for(var/obj/item/I in held_items) + qdel(I) \ No newline at end of file From 4a9dbd1447f113458fc50502e284efe66671b014 Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Sat, 7 Oct 2017 13:10:54 -0400 Subject: [PATCH 48/95] Makes the noop turf less eyerapey --- code/modules/mapping/reader.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mapping/reader.dm b/code/modules/mapping/reader.dm index 51e3463782..862de852bc 100644 --- a/code/modules/mapping/reader.dm +++ b/code/modules/mapping/reader.dm @@ -467,3 +467,4 @@ GLOBAL_DATUM_INIT(_preloader, /dmm_suite/preloader, new) /turf/template_noop name = "Turf Passthrough" + icon_state = "noop" From 4a0d3c4d4077f894691fc98d5f97c45bd991ee44 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 8 Oct 2017 14:35:35 -0500 Subject: [PATCH 49/95] Update seed_extractor.dm --- code/modules/hydroponics/seed_extractor.dm | 109 --------------------- 1 file changed, 109 deletions(-) diff --git a/code/modules/hydroponics/seed_extractor.dm b/code/modules/hydroponics/seed_extractor.dm index a917b6afeb..54805f3141 100644 --- a/code/modules/hydroponics/seed_extractor.dm +++ b/code/modules/hydroponics/seed_extractor.dm @@ -90,114 +90,6 @@ to_chat(user, "You extract some seeds.") return else if (istype(O, /obj/item/seeds)) -<<<<<<< HEAD - if(add_seed(O)) - to_chat(user, "You add [O] to [src.name].") - updateUsrDialog() - return - else if(user.a_intent != INTENT_HARM) - to_chat(user, "You can't extract any seeds from \the [O.name]!") - else - return ..() - -/datum/seed_pile - var/name = "" - var/lifespan = 0 //Saved stats - var/endurance = 0 - var/maturation = 0 - var/production = 0 - var/yield = 0 - var/potency = 0 - var/amount = 0 - -/datum/seed_pile/New(var/name, var/life, var/endur, var/matur, var/prod, var/yie, var/poten, var/am = 1) - src.name = name - src.lifespan = life - src.endurance = endur - src.maturation = matur - src.production = prod - src.yield = yie - src.potency = poten - src.amount = am - -/obj/machinery/seed_extractor/attack_hand(mob/user) - user.set_machine(src) - interact(user) - -/obj/machinery/seed_extractor/interact(mob/user) - if (stat) - return 0 - - var/dat = "Stored seeds:
" - - if (contents.len == 0) - dat += "No seeds" - else - dat += "" - for (var/datum/seed_pile/O in piles) - dat += "" - dat += "" - dat += "
NameLifespanEnduranceMaturationProductionYieldPotencyStock
[O.name][O.lifespan][O.endurance][O.maturation][O.production][O.yield][O.potency]" - dat += "Vend ([O.amount] left)
" - var/datum/browser/popup = new(user, "seed_ext", name, 700, 400) - popup.set_content(dat) - popup.open() - return - -/obj/machinery/seed_extractor/Topic(var/href, var/list/href_list) - if(..()) - return - usr.set_machine(src) - - href_list["li"] = text2num(href_list["li"]) - href_list["en"] = text2num(href_list["en"]) - href_list["ma"] = text2num(href_list["ma"]) - href_list["pr"] = text2num(href_list["pr"]) - href_list["yi"] = text2num(href_list["yi"]) - href_list["pot"] = text2num(href_list["pot"]) - - for (var/datum/seed_pile/N in piles)//Find the pile we need to reduce... - if (href_list["name"] == N.name && href_list["li"] == N.lifespan && href_list["en"] == N.endurance && href_list["ma"] == N.maturation && href_list["pr"] == N.production && href_list["yi"] == N.yield && href_list["pot"] == N.potency) - if(N.amount <= 0) - return - N.amount = max(N.amount - 1, 0) - if (N.amount <= 0) - piles -= N - qdel(N) - break - - for (var/obj/T in contents)//Now we find the seed we need to vend - var/obj/item/seeds/O = T - if (O.plantname == href_list["name"] && O.lifespan == href_list["li"] && O.endurance == href_list["en"] && O.maturation == href_list["ma"] && O.production == href_list["pr"] && O.yield == href_list["yi"] && O.potency == href_list["pot"]) - O.loc = src.loc - break - - src.updateUsrDialog() - return - -/obj/machinery/seed_extractor/proc/add_seed(obj/item/seeds/O) - if(contents.len >= 999) - to_chat(usr, "\The [src] is full.") - return 0 - - if(ismob(O.loc)) - var/mob/M = O.loc - if(!M.drop_item()) - return 0 - else if(istype(O.loc, /obj/item/storage)) - var/obj/item/storage/S = O.loc - S.remove_from_storage(O,src) - - O.loc = src - . = 1 - for (var/datum/seed_pile/N in piles) - if (O.plantname == N.name && O.lifespan == N.lifespan && O.endurance == N.endurance && O.maturation == N.maturation && O.production == N.production && O.yield == N.yield && O.potency == N.potency) - ++N.amount - return - - piles += new /datum/seed_pile(O.plantname, O.lifespan, O.endurance, O.maturation, O.production, O.yield, O.potency) - return -======= if(add_seed(O)) to_chat(user, "You add [O] to [src.name].") updateUsrDialog() @@ -303,4 +195,3 @@ piles += new /datum/seed_pile(O.plantname, O.lifespan, O.endurance, O.maturation, O.production, O.yield, O.potency) return ->>>>>>> b6d349e... Remove drop_item, drop_item_v, put_in_hands_or_del (#31386) From 0f5443140d7e3dc989ff3a98295eefbccd2f58ce Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 8 Oct 2017 14:36:40 -0500 Subject: [PATCH 50/95] Automatic changelog generation for PR #3205 [ci skip] --- html/changelogs/AutoChangeLog-pr-3205.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3205.yml diff --git a/html/changelogs/AutoChangeLog-pr-3205.yml b/html/changelogs/AutoChangeLog-pr-3205.yml new file mode 100644 index 0000000000..7385e023e6 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3205.yml @@ -0,0 +1,6 @@ +author: "CitadelStationBot" +delete-after: True +changes: + - tweak: "The MC will now reduce tick rate during high populations to keep it from fighting with byond for processing time. +config: Added config options to control MC tick rate +admin: Admins can no longer manually control the mc's tick rate by editing the MC's processing value, instead you will have to edit the config datum's values for high/low pop tick rates." From 86d9e5955a5af1320a88ef29365a3a7436c5dfec Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 8 Oct 2017 14:51:27 -0500 Subject: [PATCH 51/95] Update autoimplanter.dm --- code/modules/surgery/organs/autoimplanter.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/modules/surgery/organs/autoimplanter.dm b/code/modules/surgery/organs/autoimplanter.dm index f521017dd1..9d2075da12 100644 --- a/code/modules/surgery/organs/autoimplanter.dm +++ b/code/modules/surgery/organs/autoimplanter.dm @@ -39,9 +39,8 @@ else if(!uses) to_chat(user, "[src] has already been used up.") return - if(!user.drop_item()) + if(!user.transferItemToLoc(I, src)) return - I.loc = src storedorgan = I to_chat(user, "You insert the [I] into [src].") else if(istype(I, /obj/item/screwdriver)) @@ -56,7 +55,7 @@ if(uses != INFINITE) uses-- if(!uses) - desc = "[initial(desc)] Looks like it's been used up." +desc = "[initial(desc)] Looks like it's been used up." /obj/item/device/autoimplanter/cmo name = "medical HUD autoimplanter" From 4c408f45415fc50d800a00be0cb7a20e9e0b5551 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 8 Oct 2017 14:55:37 -0500 Subject: [PATCH 52/95] Update give.dm --- code/modules/mob/living/carbon/give.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/give.dm b/code/modules/mob/living/carbon/give.dm index 392b494d00..a712240622 100644 --- a/code/modules/mob/living/carbon/give.dm +++ b/code/modules/mob/living/carbon/give.dm @@ -44,7 +44,7 @@ user << "Your hands are full." user << "Their hands are full." return - if(!user.drop_item(I)) + if(!user.dropItemToGround(I)) src << "[user] can't let go of \the [I]!" user << "You can't seem to let go of \the [I]." return @@ -55,4 +55,4 @@ if("No") src.visible_message("[user] tried to hand \the [I] to [src] but \he didn't want it.") else - user << "[src]'s hands are full." \ No newline at end of file + user << "[src]'s hands are full." From 6cb68e06e34b75916cddea51cb35ac4d95dcfbeb Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 8 Oct 2017 15:07:28 -0500 Subject: [PATCH 53/95] Update autoimplanter.dm --- code/modules/surgery/organs/autoimplanter.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/surgery/organs/autoimplanter.dm b/code/modules/surgery/organs/autoimplanter.dm index 9d2075da12..2caae96184 100644 --- a/code/modules/surgery/organs/autoimplanter.dm +++ b/code/modules/surgery/organs/autoimplanter.dm @@ -55,7 +55,7 @@ if(uses != INFINITE) uses-- if(!uses) -desc = "[initial(desc)] Looks like it's been used up." + desc = "[initial(desc)] Looks like it's been used up." /obj/item/device/autoimplanter/cmo name = "medical HUD autoimplanter" From 63f3bfcb7333c79bf58321965444f282ba641a0a Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 8 Oct 2017 15:18:20 -0500 Subject: [PATCH 54/95] Automatic changelog generation for PR #3208 [ci skip] --- html/changelogs/AutoChangeLog-pr-3208.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3208.yml diff --git a/html/changelogs/AutoChangeLog-pr-3208.yml b/html/changelogs/AutoChangeLog-pr-3208.yml new file mode 100644 index 0000000000..79cc3c460a --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3208.yml @@ -0,0 +1,5 @@ +author: "CitadelStationBot" +delete-after: True +changes: + - bugfix: "Fixed a rare case where creating a one tank bomb would result in a broken object" + - bugfix: "Fixed many cases where forced item drops could be avoided by not having an item in your active hand" From d5df4650003aacc14d13526c9f3fd3672b758c18 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 8 Oct 2017 15:19:13 -0500 Subject: [PATCH 55/95] Automatic changelog generation for PR #3210 [ci skip] --- html/changelogs/AutoChangeLog-pr-3210.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3210.yml diff --git a/html/changelogs/AutoChangeLog-pr-3210.yml b/html/changelogs/AutoChangeLog-pr-3210.yml new file mode 100644 index 0000000000..b4865f12c7 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3210.yml @@ -0,0 +1,4 @@ +author: "Naksu" +delete-after: True +changes: + - bugfix: "Tweaks to atmos performance" From 70c652bb81050088d1ec387881a901d79db339dc Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 8 Oct 2017 15:19:34 -0500 Subject: [PATCH 56/95] Automatic changelog generation for PR #3215 [ci skip] --- html/changelogs/AutoChangeLog-pr-3215.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3215.yml diff --git a/html/changelogs/AutoChangeLog-pr-3215.yml b/html/changelogs/AutoChangeLog-pr-3215.yml new file mode 100644 index 0000000000..032b493743 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3215.yml @@ -0,0 +1,4 @@ +author: "Robustin" +delete-after: True +changes: + - bugfix: "Neutering a disease symptom now produces a unique ID that will ensure the PANDEMIC machine copies it properly." From a5fd3e41df9e6b93237ae7647bb25a8fbbbaa5e9 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 8 Oct 2017 15:20:30 -0500 Subject: [PATCH 57/95] Automatic changelog generation for PR #3220 [ci skip] --- html/changelogs/AutoChangeLog-pr-3220.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3220.yml diff --git a/html/changelogs/AutoChangeLog-pr-3220.yml b/html/changelogs/AutoChangeLog-pr-3220.yml new file mode 100644 index 0000000000..0f1045db2e --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3220.yml @@ -0,0 +1,4 @@ +author: "spessmenart" +delete-after: True +changes: + - imageadd: "The captains sabre no longer looks like a rapier." From e91192cefce368f8f9c1bf32054e6d0123b48104 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 8 Oct 2017 15:21:08 -0500 Subject: [PATCH 58/95] Automatic changelog generation for PR #3222 [ci skip] --- html/changelogs/AutoChangeLog-pr-3222.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3222.yml diff --git a/html/changelogs/AutoChangeLog-pr-3222.yml b/html/changelogs/AutoChangeLog-pr-3222.yml new file mode 100644 index 0000000000..f341d68170 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3222.yml @@ -0,0 +1,4 @@ +author: "ninjanomnom" +delete-after: True +changes: + - bugfix: "Shuttles no longer rotate ghosts of players who prefer directionless sprites" From 36b1e11612f2f87183dd2d66ddebb272254b245e Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 8 Oct 2017 15:21:25 -0500 Subject: [PATCH 59/95] Automatic changelog generation for PR #3223 [ci skip] --- html/changelogs/AutoChangeLog-pr-3223.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3223.yml diff --git a/html/changelogs/AutoChangeLog-pr-3223.yml b/html/changelogs/AutoChangeLog-pr-3223.yml new file mode 100644 index 0000000000..98d61d2fca --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3223.yml @@ -0,0 +1,4 @@ +author: "ninjanomnom" +delete-after: True +changes: + - bugfix: "Buckled mobs when on a rotating shuttle should now rotate correctly" From c6785f71d3f66e85815b872da77b6a254ff545f3 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 8 Oct 2017 15:22:56 -0500 Subject: [PATCH 60/95] Automatic changelog generation for PR #3227 [ci skip] --- html/changelogs/AutoChangeLog-pr-3227.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3227.yml diff --git a/html/changelogs/AutoChangeLog-pr-3227.yml b/html/changelogs/AutoChangeLog-pr-3227.yml new file mode 100644 index 0000000000..2d82a2137d --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3227.yml @@ -0,0 +1,4 @@ +author: "Robustin" +delete-after: True +changes: + - tweak: "Abandoned Airlocks will no longer be deleted when their turf is changed to a wall." From 3beab07be282419b4849b4cfe89ebca357aa030b Mon Sep 17 00:00:00 2001 From: oranges Date: Mon, 9 Oct 2017 09:32:32 +1300 Subject: [PATCH 61/95] Merge pull request #31421 from Xhuis/wardens_vs_revenants Prevents ocular wardens from targeting dead revenants --- .../gamemodes/clock_cult/clock_structures/ocular_warden.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/game/gamemodes/clock_cult/clock_structures/ocular_warden.dm b/code/game/gamemodes/clock_cult/clock_structures/ocular_warden.dm index 364c967ae9..79e5be6d44 100644 --- a/code/game/gamemodes/clock_cult/clock_structures/ocular_warden.dm +++ b/code/game/gamemodes/clock_cult/clock_structures/ocular_warden.dm @@ -120,6 +120,10 @@ continue if(("ratvar" in H.faction) || ("neutral" in H.faction)) continue + else if(isrevenant(L)) + var/mob/living/simple_animal/revenant/R = L + if(R.stasis) //Don't target any revenants that are respawning + continue else if(!L.mind) continue . += L From 3e6fcaec28c7630e5060ac721c7110ce9e848b62 Mon Sep 17 00:00:00 2001 From: FrozenGuy5 <31222036+praisenarsie@users.noreply.github.com> Date: Sun, 8 Oct 2017 22:35:03 +0200 Subject: [PATCH 63/95] Fixes c20r damage (#31425) * Fixes c20r damage * minor pointless documentation --- code/modules/projectiles/ammunition/ammo_casings.dm | 2 +- code/modules/projectiles/projectile/bullets.dm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/projectiles/ammunition/ammo_casings.dm b/code/modules/projectiles/ammunition/ammo_casings.dm index d9bf309267..cf8c30baf2 100644 --- a/code/modules/projectiles/ammunition/ammo_casings.dm +++ b/code/modules/projectiles/ammunition/ammo_casings.dm @@ -101,7 +101,7 @@ desc = "A 4.6x30mm incendiary bullet casing." projectile_type = /obj/item/projectile/bullet/incendiary/c46x30mm -// .45 (M1911) +// .45 (M1911 + C20r) /obj/item/ammo_casing/c45 name = ".45 bullet casing" diff --git a/code/modules/projectiles/projectile/bullets.dm b/code/modules/projectiles/projectile/bullets.dm index cf38d5bfff..179ce9ab6c 100644 --- a/code/modules/projectiles/projectile/bullets.dm +++ b/code/modules/projectiles/projectile/bullets.dm @@ -122,7 +122,7 @@ damage = 10 fire_stacks = 1 -// .45 (M1911) +// .45 (M1911 & C20r) /obj/item/projectile/bullet/c45 name = ".45 bullet" @@ -131,7 +131,7 @@ /obj/item/projectile/bullet/c45_nostamina name = ".45 bullet" - damage = 20 + damage = 30 // 5.56mm (M-90gl Carbine) From 7cec0bbf67a38502aafdec11167bf15b2f7b6cc3 Mon Sep 17 00:00:00 2001 From: vuonojenmustaturska Date: Sun, 8 Oct 2017 23:37:51 +0300 Subject: [PATCH 65/95] Adds time dilation data to the feedback table (#31278) * adds time dilation data to the feedback table * Revert "adds time dilation data to the feedback table" This reverts commit bed0bd78b6e24be7da8269f6af24e51f0c90ded7. * adds time dilation data to the feedback table 2: electric boogaloo * Changes --- code/controllers/subsystem/time_track.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/controllers/subsystem/time_track.dm b/code/controllers/subsystem/time_track.dm index cb190206b7..fecba4769c 100644 --- a/code/controllers/subsystem/time_track.dm +++ b/code/controllers/subsystem/time_track.dm @@ -35,5 +35,4 @@ SUBSYSTEM_DEF(time_track) last_tick_realtime = current_realtime last_tick_byond_time = current_byondtime last_tick_tickcount = current_tickcount - - + SSblackbox.add_details("time_dilation_current", time_dilation_current) \ No newline at end of file From 687b329b7b67e63aae2cb662b6077d96d0edc8eb Mon Sep 17 00:00:00 2001 From: kevinz000 Date: Sun, 8 Oct 2017 13:47:23 -0700 Subject: [PATCH 67/95] Update pai.dm (#31379) --- code/modules/mob/living/silicon/pai/pai.dm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/silicon/pai/pai.dm b/code/modules/mob/living/silicon/pai/pai.dm index 3a143c7910..d0ff023365 100644 --- a/code/modules/mob/living/silicon/pai/pai.dm +++ b/code/modules/mob/living/silicon/pai/pai.dm @@ -1,18 +1,19 @@ /mob/living/silicon/pai name = "pAI" - var/network = "SS13" - var/obj/machinery/camera/current = null icon = 'icons/mob/pai.dmi' icon_state = "repairbot" mouse_opacity = MOUSE_OPACITY_OPAQUE density = FALSE - luminosity = 0 pass_flags = PASSTABLE | PASSMOB mob_size = MOB_SIZE_TINY desc = "A generic pAI mobile hard-light holographics emitter. It seems to be deactivated." weather_immunities = list("ash") health = 500 maxHealth = 500 + layer = BELOW_MOB_LAYER + + var/network = "SS13" + var/obj/machinery/camera/current = null var/ram = 100 // Used as currency to purchase different abilities var/list/software = list() From 62a6867f2e77762348c110cfed2097c4cbbc8fe5 Mon Sep 17 00:00:00 2001 From: Armhulen Date: Sun, 8 Oct 2017 16:30:14 -0700 Subject: [PATCH 69/95] Makes Basilisks gold slime spawnable. (#31358) --- .../mob/living/simple_animal/hostile/mining_mobs/basilisk.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/simple_animal/hostile/mining_mobs/basilisk.dm b/code/modules/mob/living/simple_animal/hostile/mining_mobs/basilisk.dm index b883720ace..38022461b7 100644 --- a/code/modules/mob/living/simple_animal/hostile/mining_mobs/basilisk.dm +++ b/code/modules/mob/living/simple_animal/hostile/mining_mobs/basilisk.dm @@ -33,6 +33,7 @@ aggro_vision_range = 9 idle_vision_range = 2 turns_per_move = 5 + gold_core_spawnable = TRUE loot = list(/obj/item/ore/diamond{layer = ABOVE_MOB_LAYER}, /obj/item/ore/diamond{layer = ABOVE_MOB_LAYER}) From a49441b1e24ebf9f75de1bd0759cf390f7158877 Mon Sep 17 00:00:00 2001 From: XDTM Date: Mon, 9 Oct 2017 02:08:43 +0200 Subject: [PATCH 71/95] Internals set to 0 pressure will prevent breathing environment air (#31422) --- code/modules/mob/living/carbon/life.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/life.dm b/code/modules/mob/living/carbon/life.dm index 47458b01d2..8cd7dd5643 100644 --- a/code/modules/mob/living/carbon/life.dm +++ b/code/modules/mob/living/carbon/life.dm @@ -78,7 +78,7 @@ //Breathe from internal breath = get_breath_from_internal(BREATH_VOLUME) - if(!breath) + if(isnull(breath)) //in case of 0 pressure internals if(isobj(loc)) //Breathe from loc as object var/obj/loc_as_obj = loc @@ -226,7 +226,9 @@ update_internals_hud_icon(0) else update_internals_hud_icon(1) - return internal.remove_air_volume(volume_needed) + . = internal.remove_air_volume(volume_needed) + if(!.) + return FALSE //to differentiate between no internals and active, but empty internals /mob/living/carbon/proc/handle_blood() return From 6e24ca43be34731e2f3c95c0c59500e8035f7a48 Mon Sep 17 00:00:00 2001 From: XDTM Date: Mon, 9 Oct 2017 02:10:17 +0200 Subject: [PATCH 73/95] Fixes Start() of symptoms still working when neutered --- .../diseases/advance/symptoms/choking.dm | 10 ++++++++ .../diseases/advance/symptoms/confusion.dm | 3 ++- .../datums/diseases/advance/symptoms/cough.dm | 3 ++- .../diseases/advance/symptoms/deafness.dm | 3 ++- .../datums/diseases/advance/symptoms/dizzy.dm | 5 ++++ .../datums/diseases/advance/symptoms/fever.dm | 5 ++++ code/datums/diseases/advance/symptoms/fire.dm | 6 +++-- .../diseases/advance/symptoms/flesh_eating.dm | 10 ++++++++ .../diseases/advance/symptoms/genetics.dm | 23 +++++++++++++++++++ .../diseases/advance/symptoms/hallucigen.dm | 5 ++++ .../diseases/advance/symptoms/headache.dm | 5 ++++ code/datums/diseases/advance/symptoms/heal.dm | 3 ++- .../diseases/advance/symptoms/itching.dm | 5 ++++ .../diseases/advance/symptoms/narcolepsy.dm | 3 ++- .../diseases/advance/symptoms/oxygen.dm | 5 ++++ .../diseases/advance/symptoms/sensory.dm | 3 ++- .../diseases/advance/symptoms/shivering.dm | 5 ++++ .../diseases/advance/symptoms/sneeze.dm | 3 ++- .../diseases/advance/symptoms/symptoms.dm | 21 +++++++++++++++++ .../datums/diseases/advance/symptoms/viral.dm | 3 ++- .../diseases/advance/symptoms/vision.dm | 3 ++- .../diseases/advance/symptoms/voice_change.dm | 5 ++++ .../datums/diseases/advance/symptoms/vomit.dm | 3 ++- .../diseases/advance/symptoms/weight.dm | 10 ++++++++ 24 files changed, 138 insertions(+), 12 deletions(-) diff --git a/code/datums/diseases/advance/symptoms/choking.dm b/code/datums/diseases/advance/symptoms/choking.dm index f7f998f2b1..3e5b6ac2e1 100644 --- a/code/datums/diseases/advance/symptoms/choking.dm +++ b/code/datums/diseases/advance/symptoms/choking.dm @@ -32,7 +32,12 @@ Bonus Stealth 4: The symptom remains hidden until active." /datum/symptom/choking/Start(datum/disease/advance/A) +<<<<<<< HEAD ..() +======= + if(!..()) + return +>>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["stage_rate"] >= 8) symptom_delay_min = 7 symptom_delay_max = 24 @@ -100,7 +105,12 @@ Bonus var/paralysis = FALSE /datum/symptom/asphyxiation/Start(datum/disease/advance/A) +<<<<<<< HEAD ..() +======= + if(!..()) + return +>>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["stage_rate"] >= 8) paralysis = TRUE if(A.properties["transmission"] >= 8) diff --git a/code/datums/diseases/advance/symptoms/confusion.dm b/code/datums/diseases/advance/symptoms/confusion.dm index 2e252267c4..04418610e5 100644 --- a/code/datums/diseases/advance/symptoms/confusion.dm +++ b/code/datums/diseases/advance/symptoms/confusion.dm @@ -34,7 +34,8 @@ Bonus Stealth 4: The symptom remains hidden until active." /datum/symptom/confusion/Start(datum/disease/advance/A) - ..() + if(!..()) + return if(A.properties["resistance"] >= 6) brain_damage = TRUE if(A.properties["transmittable"] >= 6) diff --git a/code/datums/diseases/advance/symptoms/cough.dm b/code/datums/diseases/advance/symptoms/cough.dm index f0178576bf..d3c3ea2da8 100644 --- a/code/datums/diseases/advance/symptoms/cough.dm +++ b/code/datums/diseases/advance/symptoms/cough.dm @@ -36,7 +36,8 @@ BONUS Stealth 4: The symptom remains hidden until active." /datum/symptom/cough/Start(datum/disease/advance/A) - ..() + if(!..()) + return if(A.properties["stealth"] >= 4) suppress_warning = TRUE if(A.spread_flags &= AIRBORNE) //infect bystanders diff --git a/code/datums/diseases/advance/symptoms/deafness.dm b/code/datums/diseases/advance/symptoms/deafness.dm index c43970563d..3bae01c7a7 100644 --- a/code/datums/diseases/advance/symptoms/deafness.dm +++ b/code/datums/diseases/advance/symptoms/deafness.dm @@ -32,7 +32,8 @@ Bonus Stealth 4: The symptom remains hidden until active." /datum/symptom/deafness/Start(datum/disease/advance/A) - ..() + if(!..()) + return if(A.properties["stealth"] >= 4) suppress_warning = TRUE if(A.properties["resistance"] >= 9) //permanent deafness diff --git a/code/datums/diseases/advance/symptoms/dizzy.dm b/code/datums/diseases/advance/symptoms/dizzy.dm index cb1bf11e63..7d2a5a3bc6 100644 --- a/code/datums/diseases/advance/symptoms/dizzy.dm +++ b/code/datums/diseases/advance/symptoms/dizzy.dm @@ -31,7 +31,12 @@ Bonus Stealth 4: The symptom remains hidden until active." /datum/symptom/dizzy/Start(datum/disease/advance/A) +<<<<<<< HEAD ..() +======= + if(!..()) + return +>>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["stealth"] >= 4) suppress_warning = TRUE if(A.properties["transmittable"] >= 6) //druggy diff --git a/code/datums/diseases/advance/symptoms/fever.dm b/code/datums/diseases/advance/symptoms/fever.dm index 673835b0ed..d92fe0eef9 100644 --- a/code/datums/diseases/advance/symptoms/fever.dm +++ b/code/datums/diseases/advance/symptoms/fever.dm @@ -32,7 +32,12 @@ Bonus Resistance 10: Further increases fever intensity." /datum/symptom/fever/Start(datum/disease/advance/A) +<<<<<<< HEAD ..() +======= + if(!..()) + return +>>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["resistance"] >= 5) //dangerous fever power = 1.5 unsafe = TRUE diff --git a/code/datums/diseases/advance/symptoms/fire.dm b/code/datums/diseases/advance/symptoms/fire.dm index e12e705350..781cd6de4d 100644 --- a/code/datums/diseases/advance/symptoms/fire.dm +++ b/code/datums/diseases/advance/symptoms/fire.dm @@ -35,7 +35,8 @@ Bonus Stealth 4: The symptom remains hidden until active." /datum/symptom/fire/Start(datum/disease/advance/A) - ..() + if(!..()) + return if(A.properties["stage_rate"] >= 4) power = 1.5 if(A.properties["stage_rate"] >= 8) @@ -116,7 +117,8 @@ Bonus Transmission 8: Additionally synthesizes chlorine trifluoride and napalm inside the host." /datum/symptom/alkali/Start(datum/disease/advance/A) - ..() + if(!..()) + return if(A.properties["resistance"] >= 9) //intense but sporadic effect power = 2 symptom_delay_min = 50 diff --git a/code/datums/diseases/advance/symptoms/flesh_eating.dm b/code/datums/diseases/advance/symptoms/flesh_eating.dm index 16e2b5c065..65adb5559c 100644 --- a/code/datums/diseases/advance/symptoms/flesh_eating.dm +++ b/code/datums/diseases/advance/symptoms/flesh_eating.dm @@ -34,7 +34,12 @@ Bonus Transmission 8: Causes extreme pain to the host, weakening it." /datum/symptom/flesh_eating/Start(datum/disease/advance/A) +<<<<<<< HEAD ..() +======= + if(!..()) + return +>>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["resistance"] >= 7) //extra bleeding bleed = TRUE if(A.properties["transmittable"] >= 8) //extra stamina damage @@ -99,7 +104,12 @@ Bonus Stealth 5: The symptom remains hidden until active." /datum/symptom/flesh_death/Start(datum/disease/advance/A) +<<<<<<< HEAD ..() +======= + if(!..()) + return +>>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["stealth"] >= 5) suppress_warning = TRUE if(A.properties["stage_rate"] >= 7) //bleeding and hunger diff --git a/code/datums/diseases/advance/symptoms/genetics.dm b/code/datums/diseases/advance/symptoms/genetics.dm index 1f654f2e97..c2e1eb78b2 100644 --- a/code/datums/diseases/advance/symptoms/genetics.dm +++ b/code/datums/diseases/advance/symptoms/genetics.dm @@ -45,11 +45,20 @@ Bonus to_chat(C, "[pick("Your skin feels itchy.", "You feel light headed.")]") C.dna.remove_mutation_group(possible_mutations) for(var/i in 1 to power) +<<<<<<< HEAD C.randmut(possible_mutations) // Archive their DNA before they were infected. /datum/symptom/genetic_mutation/Start(datum/disease/advance/A) ..() +======= + C.randmut(possible_mutations) + +// Archive their DNA before they were infected. +/datum/symptom/genetic_mutation/Start(datum/disease/advance/A) + if(!..()) + return +>>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["stealth"] >= 5) //don't restore dna after curing no_reset = TRUE if(A.properties["stage_rate"] >= 10) //mutate more often @@ -57,6 +66,7 @@ Bonus symptom_delay_max = 60 if(A.properties["resistance"] >= 8) //mutate twice power = 2 +<<<<<<< HEAD possible_mutations = (GLOB.bad_mutations | GLOB.not_good_mutations) - GLOB.mutations_list[RACEMUT] var/mob/living/carbon/M = A.affected_mob if(M) @@ -66,6 +76,19 @@ Bonus // Give them back their old DNA when cured. /datum/symptom/genetic_mutation/End(datum/disease/advance/A) +======= + possible_mutations = (GLOB.bad_mutations | GLOB.not_good_mutations) - GLOB.mutations_list[RACEMUT] + var/mob/living/carbon/M = A.affected_mob + if(M) + if(!M.has_dna()) + return + archived_dna = M.dna.struc_enzymes + +// Give them back their old DNA when cured. +/datum/symptom/genetic_mutation/End(datum/disease/advance/A) + if(!..()) + return +>>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(!no_reset) var/mob/living/carbon/M = A.affected_mob if(M && archived_dna) diff --git a/code/datums/diseases/advance/symptoms/hallucigen.dm b/code/datums/diseases/advance/symptoms/hallucigen.dm index d4cda525ad..8869d868ce 100644 --- a/code/datums/diseases/advance/symptoms/hallucigen.dm +++ b/code/datums/diseases/advance/symptoms/hallucigen.dm @@ -32,7 +32,12 @@ Bonus Stealth 4: The virus mimics positive symptoms.." /datum/symptom/hallucigen/Start(datum/disease/advance/A) +<<<<<<< HEAD ..() +======= + if(!..()) + return +>>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["stealth"] >= 4) //fake good symptom messages fake_healthy = TRUE base_message_chance = 50 diff --git a/code/datums/diseases/advance/symptoms/headache.dm b/code/datums/diseases/advance/symptoms/headache.dm index b0665e0870..7317ecfb88 100644 --- a/code/datums/diseases/advance/symptoms/headache.dm +++ b/code/datums/diseases/advance/symptoms/headache.dm @@ -34,7 +34,12 @@ BONUS Stealth 4: Reduces headache frequency until later stages." /datum/symptom/headache/Start(datum/disease/advance/A) +<<<<<<< HEAD ..() +======= + if(!..()) + return +>>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["stealth"] >= 4) base_message_chance = 50 if(A.properties["stage_rate"] >= 6) //severe pain diff --git a/code/datums/diseases/advance/symptoms/heal.dm b/code/datums/diseases/advance/symptoms/heal.dm index 869cea19da..4fba54121f 100644 --- a/code/datums/diseases/advance/symptoms/heal.dm +++ b/code/datums/diseases/advance/symptoms/heal.dm @@ -15,7 +15,8 @@ Stealth 4: Healing will no longer be visible to onlookers." /datum/symptom/heal/Start(datum/disease/advance/A) - ..() + if(!..()) + return if(A.properties["stealth"] >= 4) //invisible healing hide_healing = TRUE if(A.properties["stage_rate"] >= 6) //stronger healing diff --git a/code/datums/diseases/advance/symptoms/itching.dm b/code/datums/diseases/advance/symptoms/itching.dm index ea9156bfbd..dbe52a56fe 100644 --- a/code/datums/diseases/advance/symptoms/itching.dm +++ b/code/datums/diseases/advance/symptoms/itching.dm @@ -33,7 +33,12 @@ BONUS Stage Speed 7: The host will scrath itself when itching, causing superficial damage." /datum/symptom/itching/Start(datum/disease/advance/A) +<<<<<<< HEAD ..() +======= + if(!..()) + return +>>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["transmittable"] >= 6) //itch more often symptom_delay_min = 1 symptom_delay_max = 4 diff --git a/code/datums/diseases/advance/symptoms/narcolepsy.dm b/code/datums/diseases/advance/symptoms/narcolepsy.dm index d850d257cb..cc13d99406 100644 --- a/code/datums/diseases/advance/symptoms/narcolepsy.dm +++ b/code/datums/diseases/advance/symptoms/narcolepsy.dm @@ -30,7 +30,8 @@ Bonus Resistance 10: Causes narcolepsy more often, increasing the chance of the host falling asleep." /datum/symptom/narcolepsy/Start(datum/disease/advance/A) - ..() + if(!..()) + return if(A.properties["transmittable"] >= 7) //stamina damage stamina = TRUE if(A.properties["resistance"] >= 10) //act more often diff --git a/code/datums/diseases/advance/symptoms/oxygen.dm b/code/datums/diseases/advance/symptoms/oxygen.dm index da085ab153..850f7649ce 100644 --- a/code/datums/diseases/advance/symptoms/oxygen.dm +++ b/code/datums/diseases/advance/symptoms/oxygen.dm @@ -31,7 +31,12 @@ Bonus threshold_desc = "Resistance 8:Additionally regenerates lost blood.
" /datum/symptom/oxygen/Start(datum/disease/advance/A) +<<<<<<< HEAD ..() +======= + if(!..()) + return +>>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["resistance"] >= 8) //blood regeneration regenerate_blood = TRUE diff --git a/code/datums/diseases/advance/symptoms/sensory.dm b/code/datums/diseases/advance/symptoms/sensory.dm index dd417e50ed..e7edcff703 100644 --- a/code/datums/diseases/advance/symptoms/sensory.dm +++ b/code/datums/diseases/advance/symptoms/sensory.dm @@ -32,7 +32,8 @@ Bonus Transmission 8: Purges alcohol in the bloodstream." /datum/symptom/mind_restoration/Start(datum/disease/advance/A) - ..() + if(!..()) + return if(A.properties["resistance"] >= 6) //heal brain damage brain_heal = TRUE if(A.properties["transmittable"] >= 8) //purge alcohol diff --git a/code/datums/diseases/advance/symptoms/shivering.dm b/code/datums/diseases/advance/symptoms/shivering.dm index f40fd151d9..35d2d08cfa 100644 --- a/code/datums/diseases/advance/symptoms/shivering.dm +++ b/code/datums/diseases/advance/symptoms/shivering.dm @@ -31,7 +31,12 @@ Bonus Stage Speed 10: Further increases cooling speed." /datum/symptom/fever/Start(datum/disease/advance/A) +<<<<<<< HEAD ..() +======= + if(!..()) + return +>>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["stage_speed"] >= 5) //dangerous cold power = 1.5 unsafe = TRUE diff --git a/code/datums/diseases/advance/symptoms/sneeze.dm b/code/datums/diseases/advance/symptoms/sneeze.dm index 085b5ff592..8b5b59f71a 100644 --- a/code/datums/diseases/advance/symptoms/sneeze.dm +++ b/code/datums/diseases/advance/symptoms/sneeze.dm @@ -31,7 +31,8 @@ Bonus Stealth 4: The symptom remains hidden until active." /datum/symptom/sneeze/Start(datum/disease/advance/A) - ..() + if(!..()) + return if(A.properties["transmittable"] >= 9) //longer spread range power = 2 if(A.properties["stealth"] >= 4) diff --git a/code/datums/diseases/advance/symptoms/symptoms.dm b/code/datums/diseases/advance/symptoms/symptoms.dm index 8557375dbd..38e9ba01ef 100644 --- a/code/datums/diseases/advance/symptoms/symptoms.dm +++ b/code/datums/diseases/advance/symptoms/symptoms.dm @@ -33,6 +33,7 @@ var/list/S = SSdisease.list_symptoms for(var/i = 1; i <= S.len; i++) if(type == S[i]) +<<<<<<< HEAD id = "[i]" return CRASH("We couldn't assign an ID!") @@ -46,6 +47,26 @@ return /datum/symptom/proc/Activate(datum/disease/advance/A) +======= + id = "[i]" + return + CRASH("We couldn't assign an ID!") + +// Called when processing of the advance disease, which holds this symptom, starts. +/datum/symptom/proc/Start(datum/disease/advance/A) + if(neutered) + return FALSE + next_activation = world.time + rand(symptom_delay_min * 10, symptom_delay_max * 10) //so it doesn't instantly activate on infection + return TRUE + +// Called when the advance disease is going to be deleted or when the advance disease stops processing. +/datum/symptom/proc/End(datum/disease/advance/A) + if(neutered) + return FALSE + return TRUE + +/datum/symptom/proc/Activate(datum/disease/advance/A) +>>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(neutered) return FALSE if(world.time < next_activation) diff --git a/code/datums/diseases/advance/symptoms/viral.dm b/code/datums/diseases/advance/symptoms/viral.dm index ef8822470e..960ccd8096 100644 --- a/code/datums/diseases/advance/symptoms/viral.dm +++ b/code/datums/diseases/advance/symptoms/viral.dm @@ -97,7 +97,8 @@ Bonus A.cure() /datum/symptom/viralreverse/Start(datum/disease/advance/A) - ..() + if(!..()) + return A.stage = 5 if(A.properties["stealth"] >= 4) //more time before it's cured power = 2 diff --git a/code/datums/diseases/advance/symptoms/vision.dm b/code/datums/diseases/advance/symptoms/vision.dm index 04f5d72ba6..2f29091071 100644 --- a/code/datums/diseases/advance/symptoms/vision.dm +++ b/code/datums/diseases/advance/symptoms/vision.dm @@ -33,7 +33,8 @@ Bonus Stealth 4: The symptom remains hidden until active." /datum/symptom/visionloss/Start(datum/disease/advance/A) - ..() + if(!..()) + return if(A.properties["stealth"] >= 4) suppress_warning = TRUE if(A.properties["resistance"] >= 12) //goodbye eyes diff --git a/code/datums/diseases/advance/symptoms/voice_change.dm b/code/datums/diseases/advance/symptoms/voice_change.dm index bdeb6321bc..c8ba639e48 100644 --- a/code/datums/diseases/advance/symptoms/voice_change.dm +++ b/code/datums/diseases/advance/symptoms/voice_change.dm @@ -36,7 +36,12 @@ Bonus Stealth 3: The symptom remains hidden until active." /datum/symptom/voice_change/Start(datum/disease/advance/A) +<<<<<<< HEAD ..() +======= + if(!..()) + return +>>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["stealth"] >= 3) suppress_warning = TRUE if(A.properties["stage_rate"] >= 7) //faster change of voice diff --git a/code/datums/diseases/advance/symptoms/vomit.dm b/code/datums/diseases/advance/symptoms/vomit.dm index 983d20a66d..e271bce5ed 100644 --- a/code/datums/diseases/advance/symptoms/vomit.dm +++ b/code/datums/diseases/advance/symptoms/vomit.dm @@ -39,7 +39,8 @@ Bonus Stealth 4: The symptom remains hidden until active." /datum/symptom/vomit/Start(datum/disease/advance/A) - ..() + if(!..()) + return if(A.properties["stealth"] >= 4) suppress_warning = TRUE if(A.properties["resistance"] >= 7) //blood vomit diff --git a/code/datums/diseases/advance/symptoms/weight.dm b/code/datums/diseases/advance/symptoms/weight.dm index ea2577b800..90492299d1 100644 --- a/code/datums/diseases/advance/symptoms/weight.dm +++ b/code/datums/diseases/advance/symptoms/weight.dm @@ -31,7 +31,12 @@ Bonus threshold_desc = "Stealth 4: The symptom is less noticeable." /datum/symptom/weight_gain/Start(datum/disease/advance/A) +<<<<<<< HEAD ..() +======= + if(!..()) + return +>>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["stealth"] >= 4) //warn less often base_message_chance = 25 @@ -81,7 +86,12 @@ Bonus threshold_desc = "Stealth 4: The symptom is less noticeable." /datum/symptom/weight_loss/Start(datum/disease/advance/A) +<<<<<<< HEAD ..() +======= + if(!..()) + return +>>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["stealth"] >= 4) //warn less often base_message_chance = 25 From 8b040dddb2c59904e51f706bf1a8292aca65b780 Mon Sep 17 00:00:00 2001 From: vuonojenmustaturska Date: Mon, 9 Oct 2017 03:09:40 +0300 Subject: [PATCH 74/95] Prioritizes the PDA pen as a traitor uplink location when the pen is selected (#31434) * you too can be a commit * requested changes --- code/datums/mind.dm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/code/datums/mind.dm b/code/datums/mind.dm index 0e1b754fc9..8f33465a57 100644 --- a/code/datums/mind.dm +++ b/code/datums/mind.dm @@ -269,7 +269,12 @@ var/list/all_contents = traitor_mob.GetAllContents() var/obj/item/device/pda/PDA = locate() in all_contents var/obj/item/device/radio/R = locate() in all_contents - var/obj/item/pen/P = locate() in all_contents //including your PDA-pen! + var/obj/item/pen/P + + if (PDA) // Prioritize PDA pen, otherwise the pocket protector pens will be chosen, which causes numerous ahelps about missing uplink + P = locate() in PDA + if (!P) // If we couldn't find a pen in the PDA, or we didn't even have a PDA, do it the old way + P = locate() in all_contents var/obj/item/uplink_loc From 3cceb4fdf4596acd1a3bcc5f728a640d44960205 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 8 Oct 2017 22:31:56 -0500 Subject: [PATCH 76/95] Automatic changelog generation for PR #3235 [ci skip] --- html/changelogs/AutoChangeLog-pr-3235.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3235.yml diff --git a/html/changelogs/AutoChangeLog-pr-3235.yml b/html/changelogs/AutoChangeLog-pr-3235.yml new file mode 100644 index 0000000000..bf4a5edcbb --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3235.yml @@ -0,0 +1,4 @@ +author: "Xhuis" +delete-after: True +changes: + - bugfix: "Ocular wardens no longer have a burning hatred for revenants and won't attack their corpse endlessly anymore." From abe180b777e2dae2c86db57158a023bd30aa323c Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 8 Oct 2017 22:32:03 -0500 Subject: [PATCH 77/95] Automatic changelog generation for PR #3236 [ci skip] --- html/changelogs/AutoChangeLog-pr-3236.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3236.yml diff --git a/html/changelogs/AutoChangeLog-pr-3236.yml b/html/changelogs/AutoChangeLog-pr-3236.yml new file mode 100644 index 0000000000..0bef2c7a04 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3236.yml @@ -0,0 +1,4 @@ +author: "Frozenguy5" +delete-after: True +changes: + - bugfix: "C20r damage upped from 20 to 30 (used to be 30 before an ammo cleanup in the code)" From 9c0160f779f918e0080fa4924df65ca953970357 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 8 Oct 2017 22:35:57 -0500 Subject: [PATCH 78/95] Automatic changelog generation for PR #3244 [ci skip] --- html/changelogs/AutoChangeLog-pr-3244.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3244.yml diff --git a/html/changelogs/AutoChangeLog-pr-3244.yml b/html/changelogs/AutoChangeLog-pr-3244.yml new file mode 100644 index 0000000000..dc5a650dbf --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3244.yml @@ -0,0 +1,4 @@ +author: "XDTM" +delete-after: True +changes: + - bugfix: "Internals now properly work if set to 0 pressure, and will prevent breathing gas from the external atmosphere." From 631b98dad5c1ac612b2ca58b44d247bcfdff9a5c Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 8 Oct 2017 22:37:02 -0500 Subject: [PATCH 79/95] Update hallucigen.dm --- .../diseases/advance/symptoms/hallucigen.dm | 58 +++++++++---------- 1 file changed, 27 insertions(+), 31 deletions(-) diff --git a/code/datums/diseases/advance/symptoms/hallucigen.dm b/code/datums/diseases/advance/symptoms/hallucigen.dm index 8869d868ce..76b92159d8 100644 --- a/code/datums/diseases/advance/symptoms/hallucigen.dm +++ b/code/datums/diseases/advance/symptoms/hallucigen.dm @@ -1,49 +1,45 @@ -/* -////////////////////////////////////// - -Hallucigen - - Very noticable. - Lowers resistance considerably. - Decreases stage speed. - Reduced transmittable. - Critical Level. - -Bonus - Makes the affected mob be hallucinated for short periods of time. - -////////////////////////////////////// -*/ - -/datum/symptom/hallucigen - name = "Hallucigen" +/* +////////////////////////////////////// + +Hallucigen + + Very noticable. + Lowers resistance considerably. + Decreases stage speed. + Reduced transmittable. + Critical Level. + +Bonus + Makes the affected mob be hallucinated for short periods of time. + +////////////////////////////////////// +*/ + +/datum/symptom/hallucigen + name = "Hallucigen" desc = "The virus stimulates the brain, causing occasional hallucinations." - stealth = -2 - resistance = -3 - stage_speed = -3 - transmittable = -1 - level = 5 - severity = 3 + stealth = -2 + resistance = -3 + stage_speed = -3 + transmittable = -1 + level = 5 + severity = 3 base_message_chance = 25 symptom_delay_min = 25 symptom_delay_max = 90 var/fake_healthy = FALSE threshold_desc = "Stage Speed 7: Increases the amount of hallucinations.
\ Stealth 4: The virus mimics positive symptoms.." - + /datum/symptom/hallucigen/Start(datum/disease/advance/A) -<<<<<<< HEAD - ..() -======= if(!..()) return ->>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["stealth"] >= 4) //fake good symptom messages fake_healthy = TRUE base_message_chance = 50 if(A.properties["stage_rate"] >= 7) //stronger hallucinations power = 2 - + /datum/symptom/hallucigen/Activate(datum/disease/advance/A) if(!..()) return From 53a3644f48596a3b1ac7829994833cfaa25e7c86 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 8 Oct 2017 22:37:14 -0500 Subject: [PATCH 80/95] Update headache.dm --- .../diseases/advance/symptoms/headache.dm | 62 +++++++++---------- 1 file changed, 29 insertions(+), 33 deletions(-) diff --git a/code/datums/diseases/advance/symptoms/headache.dm b/code/datums/diseases/advance/symptoms/headache.dm index 7317ecfb88..3a8c82beed 100644 --- a/code/datums/diseases/advance/symptoms/headache.dm +++ b/code/datums/diseases/advance/symptoms/headache.dm @@ -1,45 +1,41 @@ -/* -////////////////////////////////////// - -Headache - - Noticable. - Highly resistant. - Increases stage speed. - Not transmittable. - Low Level. - -BONUS - Displays an annoying message! - Should be used for buffing your disease. - -////////////////////////////////////// -*/ - -/datum/symptom/headache - - name = "Headache" +/* +////////////////////////////////////// + +Headache + + Noticable. + Highly resistant. + Increases stage speed. + Not transmittable. + Low Level. + +BONUS + Displays an annoying message! + Should be used for buffing your disease. + +////////////////////////////////////// +*/ + +/datum/symptom/headache + + name = "Headache" desc = "The virus causes inflammation inside the brain, causing constant headaches." - stealth = -1 - resistance = 4 - stage_speed = 2 - transmittable = 0 - level = 1 - severity = 1 + stealth = -1 + resistance = 4 + stage_speed = 2 + transmittable = 0 + level = 1 + severity = 1 base_message_chance = 100 symptom_delay_min = 15 symptom_delay_max = 30 threshold_desc = "Stage Speed 6: Headaches will cause severe pain, that weakens the host.
\ Stage Speed 9: Headaches become less frequent but far more intense, preventing any action from the host.
\ Stealth 4: Reduces headache frequency until later stages." - + /datum/symptom/headache/Start(datum/disease/advance/A) -<<<<<<< HEAD - ..() -======= if(!..()) return ->>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["stealth"] >= 4) base_message_chance = 50 if(A.properties["stage_rate"] >= 6) //severe pain @@ -61,4 +57,4 @@ BONUS M.adjustStaminaLoss(25) if(power >= 3 && A.stage >= 5) to_chat(M, "[pick("Your head hurts!", "You feel a burning knife inside your brain!", "A wave of pain fills your head!")]") - M.Stun(35) \ No newline at end of file + M.Stun(35) From 9ca3d0fd3db4b1e4994d6ad3f9888d5b278bfb4d Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 8 Oct 2017 22:37:23 -0500 Subject: [PATCH 81/95] Update itching.dm --- .../diseases/advance/symptoms/itching.dm | 62 +++++++++---------- 1 file changed, 29 insertions(+), 33 deletions(-) diff --git a/code/datums/diseases/advance/symptoms/itching.dm b/code/datums/diseases/advance/symptoms/itching.dm index dbe52a56fe..1c356247ee 100644 --- a/code/datums/diseases/advance/symptoms/itching.dm +++ b/code/datums/diseases/advance/symptoms/itching.dm @@ -1,44 +1,40 @@ -/* -////////////////////////////////////// - -Itching - - Not noticable or unnoticable. - Resistant. - Increases stage speed. - Little transmittable. - Low Level. - -BONUS - Displays an annoying message! - Should be used for buffing your disease. - -////////////////////////////////////// -*/ - -/datum/symptom/itching - - name = "Itching" +/* +////////////////////////////////////// + +Itching + + Not noticable or unnoticable. + Resistant. + Increases stage speed. + Little transmittable. + Low Level. + +BONUS + Displays an annoying message! + Should be used for buffing your disease. + +////////////////////////////////////// +*/ + +/datum/symptom/itching + + name = "Itching" desc = "The virus irritates the skin, causing itching." - stealth = 0 - resistance = 3 - stage_speed = 3 - transmittable = 1 - level = 1 - severity = 1 + stealth = 0 + resistance = 3 + stage_speed = 3 + transmittable = 1 + level = 1 + severity = 1 symptom_delay_min = 5 symptom_delay_max = 25 var/scratch = FALSE threshold_desc = "Transmission 6: Increases frequency of itching.
\ Stage Speed 7: The host will scrath itself when itching, causing superficial damage." - + /datum/symptom/itching/Start(datum/disease/advance/A) -<<<<<<< HEAD - ..() -======= if(!..()) return ->>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["transmittable"] >= 6) //itch more often symptom_delay_min = 1 symptom_delay_max = 4 @@ -55,4 +51,4 @@ BONUS var/can_scratch = scratch && !M.incapacitated() && get_location_accessible(M, picked_bodypart) M.visible_message("[can_scratch ? "[M] scratches [M.p_their()] [bodypart.name]." : ""]", "Your [bodypart.name] itches. [can_scratch ? " You scratch it." : ""]") if(can_scratch) - bodypart.receive_damage(0.5) \ No newline at end of file + bodypart.receive_damage(0.5) From f239efcd4526d79c643d2f9e73b8b5f31b9a5e3f Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 8 Oct 2017 22:37:34 -0500 Subject: [PATCH 82/95] Update oxygen.dm --- .../diseases/advance/symptoms/oxygen.dm | 66 +++++++++---------- 1 file changed, 31 insertions(+), 35 deletions(-) diff --git a/code/datums/diseases/advance/symptoms/oxygen.dm b/code/datums/diseases/advance/symptoms/oxygen.dm index 850f7649ce..7bb6934707 100644 --- a/code/datums/diseases/advance/symptoms/oxygen.dm +++ b/code/datums/diseases/advance/symptoms/oxygen.dm @@ -1,42 +1,38 @@ -/* -////////////////////////////////////// - -Self-Respiration - - Slightly hidden. - Lowers resistance significantly. - Decreases stage speed significantly. - Decreases transmittablity tremendously. - Fatal Level. - -Bonus - The body generates salbutamol. - -////////////////////////////////////// -*/ - -/datum/symptom/oxygen - - name = "Self-Respiration" +/* +////////////////////////////////////// + +Self-Respiration + + Slightly hidden. + Lowers resistance significantly. + Decreases stage speed significantly. + Decreases transmittablity tremendously. + Fatal Level. + +Bonus + The body generates salbutamol. + +////////////////////////////////////// +*/ + +/datum/symptom/oxygen + + name = "Self-Respiration" desc = "The virus rapidly synthesizes oxygen, effectively removing the need for breathing." - stealth = 1 - resistance = -3 - stage_speed = -3 - transmittable = -4 - level = 6 + stealth = 1 + resistance = -3 + stage_speed = -3 + transmittable = -4 + level = 6 base_message_chance = 5 symptom_delay_min = 1 symptom_delay_max = 1 var/regenerate_blood = FALSE threshold_desc = "Resistance 8:Additionally regenerates lost blood.
" - + /datum/symptom/oxygen/Start(datum/disease/advance/A) -<<<<<<< HEAD - ..() -======= if(!..()) return ->>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["resistance"] >= 8) //blood regeneration regenerate_blood = TRUE @@ -44,13 +40,13 @@ Bonus if(!..()) return var/mob/living/carbon/M = A.affected_mob - switch(A.stage) - if(4, 5) + switch(A.stage) + if(4, 5) M.adjustOxyLoss(-7, 0) M.losebreath = max(0, M.losebreath - 4) if(regenerate_blood && M.blood_volume < BLOOD_VOLUME_NORMAL) M.blood_volume += 1 - else + else if(prob(base_message_chance)) - to_chat(M, "[pick("Your lungs feel great.", "You realize you haven't been breathing.", "You don't feel the need to breathe.")]") - return + to_chat(M, "[pick("Your lungs feel great.", "You realize you haven't been breathing.", "You don't feel the need to breathe.")]") + return From 73bbc4d4f9573363808362d3140fd5a8292e0c1f Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 8 Oct 2017 22:37:45 -0500 Subject: [PATCH 83/95] Update shivering.dm --- .../diseases/advance/symptoms/shivering.dm | 62 +++++++++---------- 1 file changed, 29 insertions(+), 33 deletions(-) diff --git a/code/datums/diseases/advance/symptoms/shivering.dm b/code/datums/diseases/advance/symptoms/shivering.dm index 35d2d08cfa..bad9062eb5 100644 --- a/code/datums/diseases/advance/symptoms/shivering.dm +++ b/code/datums/diseases/advance/symptoms/shivering.dm @@ -1,42 +1,38 @@ -/* -////////////////////////////////////// - -Shivering - - No change to hidden. - Increases resistance. - Increases stage speed. - Little transmittable. - Low level. - -Bonus - Cools down your body. - -////////////////////////////////////// -*/ - -/datum/symptom/shivering - name = "Shivering" +/* +////////////////////////////////////// + +Shivering + + No change to hidden. + Increases resistance. + Increases stage speed. + Little transmittable. + Low level. + +Bonus + Cools down your body. + +////////////////////////////////////// +*/ + +/datum/symptom/shivering + name = "Shivering" desc = "The virus inhibits the body's thermoregulation, cooling the body down." - stealth = 0 - resistance = 2 - stage_speed = 2 - transmittable = 2 - level = 2 - severity = 2 + stealth = 0 + resistance = 2 + stage_speed = 2 + transmittable = 2 + level = 2 + severity = 2 symptom_delay_min = 10 symptom_delay_max = 30 var/unsafe = FALSE //over the cold threshold threshold_desc = "Stage Speed 5: Increases cooling speed; the host can fall below safe temperature levels.
\ Stage Speed 10: Further increases cooling speed." - + /datum/symptom/fever/Start(datum/disease/advance/A) -<<<<<<< HEAD - ..() -======= if(!..()) return ->>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["stage_speed"] >= 5) //dangerous cold power = 1.5 unsafe = TRUE @@ -53,11 +49,11 @@ Bonus to_chat(M, "[pick("You feel your blood run cold.", "You feel ice in your veins.", "You feel like you can't heat up.", "You shiver violently." )]") if(M.bodytemperature < BODYTEMP_COLD_DAMAGE_LIMIT || unsafe) Chill(M, A) - -/datum/symptom/shivering/proc/Chill(mob/living/M, datum/disease/advance/A) + +/datum/symptom/shivering/proc/Chill(mob/living/M, datum/disease/advance/A) var/get_cold = 6 * power if(!unsafe) M.bodytemperature = min(M.bodytemperature - (get_cold * A.stage), BODYTEMP_COLD_DAMAGE_LIMIT + 1) else M.bodytemperature -= (get_cold * A.stage) - return 1 \ No newline at end of file + return 1 From 2333f5ee112ea3ce3ad98ec61b650ab03694708c Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 8 Oct 2017 22:38:01 -0500 Subject: [PATCH 84/95] Update symptoms.dm --- .../diseases/advance/symptoms/symptoms.dm | 56 +++++++------------ 1 file changed, 20 insertions(+), 36 deletions(-) diff --git a/code/datums/diseases/advance/symptoms/symptoms.dm b/code/datums/diseases/advance/symptoms/symptoms.dm index 38e9ba01ef..84e5884ffb 100644 --- a/code/datums/diseases/advance/symptoms/symptoms.dm +++ b/code/datums/diseases/advance/symptoms/symptoms.dm @@ -1,20 +1,20 @@ -// Symptoms are the effects that engineered advanced diseases do. - -/datum/symptom - // Buffs/Debuffs the symptom has to the overall engineered disease. - var/name = "" +// Symptoms are the effects that engineered advanced diseases do. + +/datum/symptom + // Buffs/Debuffs the symptom has to the overall engineered disease. + var/name = "" var/desc = "If you see this something went very wrong." //Basic symptom description var/threshold_desc = "" //Description of threshold effects - var/stealth = 0 - var/resistance = 0 - var/stage_speed = 0 - var/transmittable = 0 - // The type level of the symptom. Higher is harder to generate. - var/level = 0 - // The severity level of the symptom. Higher is more dangerous. - var/severity = 0 - // The hash tag for our diseases, we will add it up with our other symptoms to get a unique id! ID MUST BE UNIQUE!!! - var/id = "" + var/stealth = 0 + var/resistance = 0 + var/stage_speed = 0 + var/transmittable = 0 + // The type level of the symptom. Higher is harder to generate. + var/level = 0 + // The severity level of the symptom. Higher is more dangerous. + var/severity = 0 + // The hash tag for our diseases, we will add it up with our other symptoms to get a unique id! ID MUST BE UNIQUE!!! + var/id = "" //Base chance of sending warning messages, so it can be modified var/base_message_chance = 10 //If the early warnings are suppressed or not @@ -28,26 +28,11 @@ //A neutered symptom has no effect, and only affects statistics. var/neutered = FALSE var/list/thresholds - -/datum/symptom/New() - var/list/S = SSdisease.list_symptoms - for(var/i = 1; i <= S.len; i++) + +/datum/symptom/New() + var/list/S = SSdisease.list_symptoms + for(var/i = 1; i <= S.len; i++) if(type == S[i]) -<<<<<<< HEAD - id = "[i]" - return - CRASH("We couldn't assign an ID!") - -// Called when processing of the advance disease, which holds this symptom, starts. -/datum/symptom/proc/Start(datum/disease/advance/A) - next_activation = world.time + rand(symptom_delay_min * 10, symptom_delay_max * 10) //so it doesn't instantly activate on infection - -// Called when the advance disease is going to be deleted or when the advance disease stops processing. -/datum/symptom/proc/End(datum/disease/advance/A) - return - -/datum/symptom/proc/Activate(datum/disease/advance/A) -======= id = "[i]" return CRASH("We couldn't assign an ID!") @@ -66,7 +51,6 @@ return TRUE /datum/symptom/proc/Activate(datum/disease/advance/A) ->>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(neutered) return FALSE if(world.time < next_activation) @@ -74,7 +58,7 @@ else next_activation = world.time + rand(symptom_delay_min * 10, symptom_delay_max * 10) return TRUE - + /datum/symptom/proc/Copy() var/datum/symptom/new_symp = new type new_symp.name = name From 0bf4fc091df9db9f279b399a52f665459f4f8b2b Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 8 Oct 2017 22:38:11 -0500 Subject: [PATCH 85/95] Update voice_change.dm --- .../diseases/advance/symptoms/voice_change.dm | 60 +++++++++---------- 1 file changed, 28 insertions(+), 32 deletions(-) diff --git a/code/datums/diseases/advance/symptoms/voice_change.dm b/code/datums/diseases/advance/symptoms/voice_change.dm index c8ba639e48..5f0b83e5c8 100644 --- a/code/datums/diseases/advance/symptoms/voice_change.dm +++ b/code/datums/diseases/advance/symptoms/voice_change.dm @@ -1,30 +1,30 @@ -/* -////////////////////////////////////// - -Voice Change - +/* +////////////////////////////////////// + +Voice Change + Noticeable. Lowers resistance. - Decreases stage speed. + Decreases stage speed. Increased transmittable. - Fatal Level. - -Bonus - Changes the voice of the affected mob. Causing confusion in communication. - -////////////////////////////////////// -*/ - -/datum/symptom/voice_change - - name = "Voice Change" + Fatal Level. + +Bonus + Changes the voice of the affected mob. Causing confusion in communication. + +////////////////////////////////////// +*/ + +/datum/symptom/voice_change + + name = "Voice Change" desc = "The virus alters the pitch and tone of the host's vocal cords, changing how their voice sounds." stealth = -1 resistance = -2 stage_speed = -2 transmittable = 2 - level = 6 - severity = 2 + level = 6 + severity = 2 base_message_chance = 100 symptom_delay_min = 60 symptom_delay_max = 120 @@ -34,14 +34,10 @@ Bonus threshold_desc = "Transmission 14: The host's language center of the brain is damaged, leading to complete inability to speak or understand any language.
\ Stage Speed 7: Changes voice more often.
\ Stealth 3: The symptom remains hidden until active." - + /datum/symptom/voice_change/Start(datum/disease/advance/A) -<<<<<<< HEAD - ..() -======= if(!..()) return ->>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["stealth"] >= 3) suppress_warning = TRUE if(A.properties["stage_rate"] >= 7) //faster change of voice @@ -53,7 +49,7 @@ Bonus var/mob/living/M = A.affected_mob var/datum/language_holder/mob_language = M.get_language_holder() original_language = mob_language.copy() - + /datum/symptom/voice_change/Activate(datum/disease/advance/A) if(!..()) return @@ -61,7 +57,7 @@ Bonus switch(A.stage) if(1, 2, 3, 4) if(prob(base_message_chance) && !suppress_warning) - to_chat(M, "[pick("Your throat hurts.", "You clear your throat.")]") + to_chat(M, "[pick("Your throat hurts.", "You clear your throat.")]") else if(ishuman(M)) var/mob/living/carbon/human/H = M @@ -72,12 +68,12 @@ Bonus H.grant_language(current_language) var/datum/language_holder/mob_language = H.get_language_holder() mob_language.only_speaks_language = current_language - -/datum/symptom/voice_change/End(datum/disease/advance/A) - ..() - if(ishuman(A.affected_mob)) - var/mob/living/carbon/human/H = A.affected_mob - H.UnsetSpecialVoice() + +/datum/symptom/voice_change/End(datum/disease/advance/A) + ..() + if(ishuman(A.affected_mob)) + var/mob/living/carbon/human/H = A.affected_mob + H.UnsetSpecialVoice() if(scramble_language) var/mob/living/M = A.affected_mob M.copy_known_languages_from(original_language, TRUE) From e65943276dba8dd4399297a686fb2f818cb7c2ff Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 8 Oct 2017 22:38:28 -0500 Subject: [PATCH 86/95] Update weight.dm --- .../diseases/advance/symptoms/weight.dm | 186 +++++++++--------- 1 file changed, 89 insertions(+), 97 deletions(-) diff --git a/code/datums/diseases/advance/symptoms/weight.dm b/code/datums/diseases/advance/symptoms/weight.dm index 90492299d1..c9e610aa3b 100644 --- a/code/datums/diseases/advance/symptoms/weight.dm +++ b/code/datums/diseases/advance/symptoms/weight.dm @@ -1,45 +1,41 @@ -/* -////////////////////////////////////// - -Weight Gain - - Very Very Noticable. - Decreases resistance. - Decreases stage speed. - Reduced transmittable. - Intense Level. - -Bonus - Increases the weight gain of the mob, - forcing it to eventually turn fat. -////////////////////////////////////// -*/ - -/datum/symptom/weight_gain - - name = "Weight Gain" +/* +////////////////////////////////////// + +Weight Gain + + Very Very Noticable. + Decreases resistance. + Decreases stage speed. + Reduced transmittable. + Intense Level. + +Bonus + Increases the weight gain of the mob, + forcing it to eventually turn fat. +////////////////////////////////////// +*/ + +/datum/symptom/weight_gain + + name = "Weight Gain" desc = "The virus mutates the host's metabolism, making it gain weight much faster than normal." - stealth = -3 - resistance = -3 - stage_speed = -2 - transmittable = -2 - level = 4 - severity = 1 + stealth = -3 + resistance = -3 + stage_speed = -2 + transmittable = -2 + level = 4 + severity = 1 base_message_chance = 100 symptom_delay_min = 15 symptom_delay_max = 45 threshold_desc = "Stealth 4: The symptom is less noticeable." - + /datum/symptom/weight_gain/Start(datum/disease/advance/A) -<<<<<<< HEAD - ..() -======= if(!..()) return ->>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["stealth"] >= 4) //warn less often base_message_chance = 25 - + /datum/symptom/weight_gain/Activate(datum/disease/advance/A) if(!..()) return @@ -51,50 +47,46 @@ Bonus else M.overeatduration = min(M.overeatduration + 100, 600) M.nutrition = min(M.nutrition + 100, NUTRITION_LEVEL_FULL) - -/* -////////////////////////////////////// - -Weight Loss - - Very Very Noticable. - Decreases resistance. - Decreases stage speed. - Reduced Transmittable. - High level. - -Bonus - Decreases the weight of the mob, - forcing it to be skinny. - -////////////////////////////////////// -*/ - -/datum/symptom/weight_loss - - name = "Weight Loss" + +/* +////////////////////////////////////// + +Weight Loss + + Very Very Noticable. + Decreases resistance. + Decreases stage speed. + Reduced Transmittable. + High level. + +Bonus + Decreases the weight of the mob, + forcing it to be skinny. + +////////////////////////////////////// +*/ + +/datum/symptom/weight_loss + + name = "Weight Loss" desc = "The virus mutates the host's metabolism, making it almost unable to gain nutrition from food." - stealth = -3 - resistance = -2 - stage_speed = -2 - transmittable = -2 - level = 3 - severity = 1 + stealth = -3 + resistance = -2 + stage_speed = -2 + transmittable = -2 + level = 3 + severity = 1 base_message_chance = 100 symptom_delay_min = 15 symptom_delay_max = 45 threshold_desc = "Stealth 4: The symptom is less noticeable." - + /datum/symptom/weight_loss/Start(datum/disease/advance/A) -<<<<<<< HEAD - ..() -======= if(!..()) return ->>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["stealth"] >= 4) //warn less often base_message_chance = 25 - + /datum/symptom/weight_loss/Activate(datum/disease/advance/A) if(!..()) return @@ -107,43 +99,43 @@ Bonus to_chat(M, "[pick("So hungry...", "You'd kill someone for a bite of food...", "Hunger cramps seize you...")]") M.overeatduration = max(M.overeatduration - 100, 0) M.nutrition = max(M.nutrition - 100, 0) - -/* -////////////////////////////////////// - -Weight Even - - Very Noticable. - Decreases resistance. - Decreases stage speed. - Reduced transmittable. - High level. - -Bonus - Causes the weight of the mob to - be even, meaning eating isn't - required anymore. - -////////////////////////////////////// -*/ - -/datum/symptom/weight_even - - name = "Weight Even" + +/* +////////////////////////////////////// + +Weight Even + + Very Noticable. + Decreases resistance. + Decreases stage speed. + Reduced transmittable. + High level. + +Bonus + Causes the weight of the mob to + be even, meaning eating isn't + required anymore. + +////////////////////////////////////// +*/ + +/datum/symptom/weight_even + + name = "Weight Even" desc = "The virus alters the host's metabolism, making it far more efficient then normal, and synthesizing nutrients from normally unedible sources." - stealth = -3 - resistance = -2 - stage_speed = -2 - transmittable = -2 - level = 4 + stealth = -3 + resistance = -2 + stage_speed = -2 + transmittable = -2 + level = 4 symptom_delay_min = 5 symptom_delay_max = 5 - -/datum/symptom/weight_even/Activate(datum/disease/advance/A) + +/datum/symptom/weight_even/Activate(datum/disease/advance/A) if(!..()) return var/mob/living/M = A.affected_mob switch(A.stage) if(4, 5) M.overeatduration = 0 - M.nutrition = NUTRITION_LEVEL_WELL_FED + 50 \ No newline at end of file + M.nutrition = NUTRITION_LEVEL_WELL_FED + 50 From d1d671da47aa5dee93bad1a3fee2fc35167ca31f Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 8 Oct 2017 22:38:44 -0500 Subject: [PATCH 87/95] Update choking.dm --- .../diseases/advance/symptoms/choking.dm | 162 +++++++++--------- 1 file changed, 77 insertions(+), 85 deletions(-) diff --git a/code/datums/diseases/advance/symptoms/choking.dm b/code/datums/diseases/advance/symptoms/choking.dm index 3e5b6ac2e1..4829920d4f 100644 --- a/code/datums/diseases/advance/symptoms/choking.dm +++ b/code/datums/diseases/advance/symptoms/choking.dm @@ -1,43 +1,39 @@ -/* -////////////////////////////////////// - -Choking - - Very very noticable. - Lowers resistance. - Decreases stage speed. - Decreases transmittablity tremendously. - Moderate Level. - -Bonus - Inflicts spikes of oxyloss - -////////////////////////////////////// -*/ - -/datum/symptom/choking - - name = "Choking" +/* +////////////////////////////////////// + +Choking + + Very very noticable. + Lowers resistance. + Decreases stage speed. + Decreases transmittablity tremendously. + Moderate Level. + +Bonus + Inflicts spikes of oxyloss + +////////////////////////////////////// +*/ + +/datum/symptom/choking + + name = "Choking" desc = "The virus causes inflammation of the host's air conduits, leading to intermittent choking." - stealth = -3 - resistance = -2 - stage_speed = -2 - transmittable = -4 - level = 3 - severity = 3 + stealth = -3 + resistance = -2 + stage_speed = -2 + transmittable = -4 + level = 3 + severity = 3 base_message_chance = 15 symptom_delay_min = 10 symptom_delay_max = 30 threshold_desc = "Stage Speed 8: Causes choking more frequently.
\ Stealth 4: The symptom remains hidden until active." - + /datum/symptom/choking/Start(datum/disease/advance/A) -<<<<<<< HEAD - ..() -======= if(!..()) return ->>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["stage_rate"] >= 8) symptom_delay_min = 7 symptom_delay_max = 24 @@ -51,11 +47,11 @@ Bonus switch(A.stage) if(1, 2) if(prob(base_message_chance) && !suppress_warning) - to_chat(M, "[pick("You're having difficulty breathing.", "Your breathing becomes heavy.")]") + to_chat(M, "[pick("You're having difficulty breathing.", "Your breathing becomes heavy.")]") if(3, 4) if(!suppress_warning) to_chat(M, "[pick("Your windpipe feels like a straw.", "Your breathing becomes tremendously difficult.")]") - else + else to_chat(M, "You feel very [pick("dizzy","woozy","faint")].") //fake bloodloss messages Choke_stage_3_4(M, A) M.emote("gasp") @@ -63,54 +59,50 @@ Bonus to_chat(M, "[pick("You're choking!", "You can't breathe!")]") Choke(M, A) M.emote("gasp") - -/datum/symptom/choking/proc/Choke_stage_3_4(mob/living/M, datum/disease/advance/A) + +/datum/symptom/choking/proc/Choke_stage_3_4(mob/living/M, datum/disease/advance/A) M.adjustOxyLoss(rand(6,13)) - return 1 - -/datum/symptom/choking/proc/Choke(mob/living/M, datum/disease/advance/A) + return 1 + +/datum/symptom/choking/proc/Choke(mob/living/M, datum/disease/advance/A) M.adjustOxyLoss(rand(10,18)) - return 1 - -/* -////////////////////////////////////// - -Asphyxiation - - Very very noticable. - Decreases stage speed. - Decreases transmittablity. - -Bonus - Inflicts large spikes of oxyloss - Introduces Asphyxiating drugs to the system - Causes cardiac arrest on dying victims. - -////////////////////////////////////// -*/ - -/datum/symptom/asphyxiation - - name = "Acute respiratory distress syndrome" + return 1 + +/* +////////////////////////////////////// + +Asphyxiation + + Very very noticable. + Decreases stage speed. + Decreases transmittablity. + +Bonus + Inflicts large spikes of oxyloss + Introduces Asphyxiating drugs to the system + Causes cardiac arrest on dying victims. + +////////////////////////////////////// +*/ + +/datum/symptom/asphyxiation + + name = "Acute respiratory distress syndrome" desc = "The virus causes shrinking of the host's lungs, causing severe asphyxiation. May also lead to heart attacks." - stealth = -2 - resistance = -0 - stage_speed = -1 - transmittable = -2 - level = 7 - severity = 3 + stealth = -2 + resistance = -0 + stage_speed = -1 + transmittable = -2 + level = 7 + severity = 3 base_message_chance = 15 symptom_delay_min = 14 symptom_delay_max = 30 var/paralysis = FALSE - + /datum/symptom/asphyxiation/Start(datum/disease/advance/A) -<<<<<<< HEAD - ..() -======= if(!..()) return ->>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["stage_rate"] >= 8) paralysis = TRUE if(A.properties["transmission"] >= 8) @@ -132,22 +124,22 @@ Bonus if(M.getOxyLoss() >= 120) M.visible_message("[M] stops breathing, as if their lungs have totally collapsed!") Asphyxiate_death(M, A) - return - -/datum/symptom/asphyxiation/proc/Asphyxiate_stage_3_4(mob/living/M, datum/disease/advance/A) + return + +/datum/symptom/asphyxiation/proc/Asphyxiate_stage_3_4(mob/living/M, datum/disease/advance/A) var/get_damage = rand(10,15) * power - M.adjustOxyLoss(get_damage) - return 1 - -/datum/symptom/asphyxiation/proc/Asphyxiate(mob/living/M, datum/disease/advance/A) + M.adjustOxyLoss(get_damage) + return 1 + +/datum/symptom/asphyxiation/proc/Asphyxiate(mob/living/M, datum/disease/advance/A) var/get_damage = rand(15,21) * power - M.adjustOxyLoss(get_damage) + M.adjustOxyLoss(get_damage) if(paralysis) M.reagents.add_reagent_list(list("pancuronium" = 3, "sodium_thiopental" = 3)) - return 1 - -/datum/symptom/asphyxiation/proc/Asphyxiate_death(mob/living/M, datum/disease/advance/A) + return 1 + +/datum/symptom/asphyxiation/proc/Asphyxiate_death(mob/living/M, datum/disease/advance/A) var/get_damage = rand(25,35) * power - M.adjustOxyLoss(get_damage) - M.adjustBrainLoss(get_damage/2) - return 1 + M.adjustOxyLoss(get_damage) + M.adjustBrainLoss(get_damage/2) + return 1 From 3778b8bfc0b9431b9af8f9ca44b93b1ec3bd87b2 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 8 Oct 2017 22:38:53 -0500 Subject: [PATCH 88/95] Update dizzy.dm --- .../datums/diseases/advance/symptoms/dizzy.dm | 60 +++++++++---------- 1 file changed, 28 insertions(+), 32 deletions(-) diff --git a/code/datums/diseases/advance/symptoms/dizzy.dm b/code/datums/diseases/advance/symptoms/dizzy.dm index 7d2a5a3bc6..bb83582425 100644 --- a/code/datums/diseases/advance/symptoms/dizzy.dm +++ b/code/datums/diseases/advance/symptoms/dizzy.dm @@ -1,42 +1,38 @@ -/* -////////////////////////////////////// - -Dizziness - - Hidden. - Lowers resistance considerably. - Decreases stage speed. - Reduced transmittability - Intense Level. - -Bonus - Shakes the affected mob's screen for short periods. - -////////////////////////////////////// -*/ - -/datum/symptom/dizzy // Not the egg - - name = "Dizziness" +/* +////////////////////////////////////// + +Dizziness + + Hidden. + Lowers resistance considerably. + Decreases stage speed. + Reduced transmittability + Intense Level. + +Bonus + Shakes the affected mob's screen for short periods. + +////////////////////////////////////// +*/ + +/datum/symptom/dizzy // Not the egg + + name = "Dizziness" desc = "The virus causes inflammation of the vestibular system, leading to bouts of dizziness." - resistance = -2 - stage_speed = -3 - transmittable = -1 - level = 4 - severity = 2 + resistance = -2 + stage_speed = -3 + transmittable = -1 + level = 4 + severity = 2 base_message_chance = 50 symptom_delay_min = 15 symptom_delay_max = 40 threshold_desc = "Transmission 6: Also causes druggy vision.
\ Stealth 4: The symptom remains hidden until active." - + /datum/symptom/dizzy/Start(datum/disease/advance/A) -<<<<<<< HEAD - ..() -======= if(!..()) return ->>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["stealth"] >= 4) suppress_warning = TRUE if(A.properties["transmittable"] >= 6) //druggy @@ -49,9 +45,9 @@ Bonus switch(A.stage) if(1, 2, 3, 4) if(prob(base_message_chance) && !suppress_warning) - to_chat(M, "[pick("You feel dizzy.", "Your head spins.")]") + to_chat(M, "[pick("You feel dizzy.", "Your head spins.")]") else to_chat(M, "A wave of dizziness washes over you!") M.Dizzy(5) if(power >= 2) - M.set_drugginess(5) \ No newline at end of file + M.set_drugginess(5) From 3b00d7c3eac862dd5dc72283a3f6c1dc93ca2f21 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 8 Oct 2017 22:39:02 -0500 Subject: [PATCH 89/95] Update fever.dm --- .../datums/diseases/advance/symptoms/fever.dm | 64 +++++++++---------- 1 file changed, 30 insertions(+), 34 deletions(-) diff --git a/code/datums/diseases/advance/symptoms/fever.dm b/code/datums/diseases/advance/symptoms/fever.dm index d92fe0eef9..5b0b851ca0 100644 --- a/code/datums/diseases/advance/symptoms/fever.dm +++ b/code/datums/diseases/advance/symptoms/fever.dm @@ -1,49 +1,45 @@ -/* -////////////////////////////////////// - -Fever - - No change to hidden. - Increases resistance. - Increases stage speed. - Little transmittable. - Low level. - -Bonus - Heats up your body. - -////////////////////////////////////// -*/ - -/datum/symptom/fever - name = "Fever" +/* +////////////////////////////////////// + +Fever + + No change to hidden. + Increases resistance. + Increases stage speed. + Little transmittable. + Low level. + +Bonus + Heats up your body. + +////////////////////////////////////// +*/ + +/datum/symptom/fever + name = "Fever" desc = "The virus causes a febrile response from the host, raising its body temperature." - stealth = 0 - resistance = 3 - stage_speed = 3 - transmittable = 2 - level = 2 - severity = 2 + stealth = 0 + resistance = 3 + stage_speed = 3 + transmittable = 2 + level = 2 + severity = 2 base_message_chance = 20 symptom_delay_min = 10 symptom_delay_max = 30 var/unsafe = FALSE //over the heat threshold threshold_desc = "Resistance 5: Increases fever intensity, fever can overheat and harm the host.
\ Resistance 10: Further increases fever intensity." - + /datum/symptom/fever/Start(datum/disease/advance/A) -<<<<<<< HEAD - ..() -======= if(!..()) return ->>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["resistance"] >= 5) //dangerous fever power = 1.5 unsafe = TRUE if(A.properties["resistance"] >= 10) power = 2.5 - + /datum/symptom/fever/Activate(datum/disease/advance/A) if(!..()) return @@ -54,11 +50,11 @@ Bonus to_chat(M, "[pick("You feel too hot.", "You feel like your blood is boiling.")]") if(M.bodytemperature < BODYTEMP_HEAT_DAMAGE_LIMIT || unsafe) Heat(M, A) - -/datum/symptom/fever/proc/Heat(mob/living/M, datum/disease/advance/A) + +/datum/symptom/fever/proc/Heat(mob/living/M, datum/disease/advance/A) var/get_heat = 6 * power if(!unsafe) M.bodytemperature = min(M.bodytemperature + (get_heat * A.stage), BODYTEMP_HEAT_DAMAGE_LIMIT - 1) else M.bodytemperature += (get_heat * A.stage) - return 1 + return 1 From 271b332928599c89d513e7a09a1271e727c3ad90 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 8 Oct 2017 22:39:19 -0500 Subject: [PATCH 90/95] Update flesh_eating.dm --- .../diseases/advance/symptoms/flesh_eating.dm | 138 +++++++++--------- 1 file changed, 65 insertions(+), 73 deletions(-) diff --git a/code/datums/diseases/advance/symptoms/flesh_eating.dm b/code/datums/diseases/advance/symptoms/flesh_eating.dm index 65adb5559c..2d5d22a63a 100644 --- a/code/datums/diseases/advance/symptoms/flesh_eating.dm +++ b/code/datums/diseases/advance/symptoms/flesh_eating.dm @@ -1,30 +1,30 @@ -/* -////////////////////////////////////// - -Necrotizing Fasciitis (AKA Flesh-Eating Disease) - - Very very noticable. - Lowers resistance tremendously. - No changes to stage speed. - Decreases transmittablity temrendously. - Fatal Level. - -Bonus - Deals brute damage over time. - -////////////////////////////////////// -*/ - -/datum/symptom/flesh_eating - - name = "Necrotizing Fasciitis" +/* +////////////////////////////////////// + +Necrotizing Fasciitis (AKA Flesh-Eating Disease) + + Very very noticable. + Lowers resistance tremendously. + No changes to stage speed. + Decreases transmittablity temrendously. + Fatal Level. + +Bonus + Deals brute damage over time. + +////////////////////////////////////// +*/ + +/datum/symptom/flesh_eating + + name = "Necrotizing Fasciitis" desc = "The virus aggressively attacks body cells, necrotizing tissues and organs." - stealth = -3 - resistance = -4 - stage_speed = 0 - transmittable = -4 - level = 6 - severity = 5 + stealth = -3 + resistance = -4 + stage_speed = 0 + transmittable = -4 + level = 6 + severity = 5 base_message_chance = 50 symptom_delay_min = 15 symptom_delay_max = 60 @@ -32,14 +32,10 @@ Bonus var/pain = FALSE threshold_desc = "Resistance 7: Host will bleed profusely during necrosis.
\ Transmission 8: Causes extreme pain to the host, weakening it." - + /datum/symptom/flesh_eating/Start(datum/disease/advance/A) -<<<<<<< HEAD - ..() -======= if(!..()) return ->>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["resistance"] >= 7) //extra bleeding bleed = TRUE if(A.properties["transmittable"] >= 8) //extra stamina damage @@ -52,49 +48,49 @@ Bonus switch(A.stage) if(2,3) if(prob(base_message_chance)) - to_chat(M, "[pick("You feel a sudden pain across your body.", "Drops of blood appear suddenly on your skin.")]") + to_chat(M, "[pick("You feel a sudden pain across your body.", "Drops of blood appear suddenly on your skin.")]") if(4,5) to_chat(M, "[pick("You cringe as a violent pain takes over your body.", "It feels like your body is eating itself inside out.", "IT HURTS.")]") Flesheat(M, A) - -/datum/symptom/flesh_eating/proc/Flesheat(mob/living/M, datum/disease/advance/A) + +/datum/symptom/flesh_eating/proc/Flesheat(mob/living/M, datum/disease/advance/A) var/get_damage = rand(15,25) * power - M.adjustBruteLoss(get_damage) + M.adjustBruteLoss(get_damage) if(pain) M.adjustStaminaLoss(get_damage) if(bleed) if(ishuman(M)) var/mob/living/carbon/human/H = M H.bleed_rate += 5 * power - return 1 - -/* -////////////////////////////////////// - -Autophagocytosis (AKA Programmed mass cell death) - - Very noticable. - Lowers resistance. - Fast stage speed. - Decreases transmittablity. - Fatal Level. - -Bonus - Deals brute damage over time. - -////////////////////////////////////// -*/ - -/datum/symptom/flesh_death - - name = "Autophagocytosis Necrosis" + return 1 + +/* +////////////////////////////////////// + +Autophagocytosis (AKA Programmed mass cell death) + + Very noticable. + Lowers resistance. + Fast stage speed. + Decreases transmittablity. + Fatal Level. + +Bonus + Deals brute damage over time. + +////////////////////////////////////// +*/ + +/datum/symptom/flesh_death + + name = "Autophagocytosis Necrosis" desc = "The virus rapidly consumes infected cells, leading to heavy and widespread damage." - stealth = -2 - resistance = -2 - stage_speed = 1 - transmittable = -2 - level = 7 - severity = 6 + stealth = -2 + resistance = -2 + stage_speed = 1 + transmittable = -2 + level = 7 + severity = 6 base_message_chance = 50 symptom_delay_min = 3 symptom_delay_max = 6 @@ -102,14 +98,10 @@ Bonus var/zombie = FALSE threshold_desc = "Stage Speed 7: Synthesizes Heparin and Lipolicide inside the host, causing increased bleeding and hunger.
\ Stealth 5: The symptom remains hidden until active." - + /datum/symptom/flesh_death/Start(datum/disease/advance/A) -<<<<<<< HEAD - ..() -======= if(!..()) return ->>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["stealth"] >= 5) suppress_warning = TRUE if(A.properties["stage_rate"] >= 7) //bleeding and hunger @@ -122,17 +114,17 @@ Bonus switch(A.stage) if(2,3) if(prob(base_message_chance) && !suppress_warning) - to_chat(M, "[pick("You feel your body break apart.", "Your skin rubs off like dust.")]") + to_chat(M, "[pick("You feel your body break apart.", "Your skin rubs off like dust.")]") if(4,5) if(prob(base_message_chance / 2)) //reduce spam to_chat(M, "[pick("You feel your muscles weakening.", "Some of your skin detaches itself.", "You feel sandy.")]") Flesh_death(M, A) - -/datum/symptom/flesh_death/proc/Flesh_death(mob/living/M, datum/disease/advance/A) + +/datum/symptom/flesh_death/proc/Flesh_death(mob/living/M, datum/disease/advance/A) var/get_damage = rand(6,10) - M.adjustBruteLoss(get_damage) + M.adjustBruteLoss(get_damage) if(chems) M.reagents.add_reagent_list(list("heparin" = 2, "lipolicide" = 2)) if(zombie) M.reagents.add_reagent("romerol", 1) - return 1 \ No newline at end of file + return 1 From 067b7fc6df2dc108e2ddc0716eaefacad08ecb14 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 8 Oct 2017 22:39:42 -0500 Subject: [PATCH 91/95] Update genetics.dm --- .../diseases/advance/symptoms/genetics.dm | 78 +++++++------------ 1 file changed, 29 insertions(+), 49 deletions(-) diff --git a/code/datums/diseases/advance/symptoms/genetics.dm b/code/datums/diseases/advance/symptoms/genetics.dm index c2e1eb78b2..836b4a4719 100644 --- a/code/datums/diseases/advance/symptoms/genetics.dm +++ b/code/datums/diseases/advance/symptoms/genetics.dm @@ -1,31 +1,31 @@ -/* -////////////////////////////////////// - -DNA Saboteur - - Very noticable. - Lowers resistance tremendously. - No changes to stage speed. - Decreases transmittablity tremendously. - Fatal Level. - -Bonus - Cleans the DNA of a person and then randomly gives them a disability. - -////////////////////////////////////// -*/ - -/datum/symptom/genetic_mutation - name = "Deoxyribonucleic Acid Saboteur" +/* +////////////////////////////////////// + +DNA Saboteur + + Very noticable. + Lowers resistance tremendously. + No changes to stage speed. + Decreases transmittablity tremendously. + Fatal Level. + +Bonus + Cleans the DNA of a person and then randomly gives them a disability. + +////////////////////////////////////// +*/ + +/datum/symptom/genetic_mutation + name = "Deoxyribonucleic Acid Saboteur" desc = "The virus bonds with the DNA of the host, causing damaging mutations until removed." - stealth = -2 - resistance = -3 - stage_speed = 0 - transmittable = -3 - level = 6 - severity = 3 - var/list/possible_mutations - var/archived_dna = null + stealth = -2 + resistance = -3 + stage_speed = 0 + transmittable = -3 + level = 6 + severity = 3 + var/list/possible_mutations + var/archived_dna = null base_message_chance = 50 symptom_delay_min = 60 symptom_delay_max = 120 @@ -33,8 +33,8 @@ Bonus threshold_desc = "Resistance 8: Causes two harmful mutations at once.
\ Stage Speed 10: Increases mutation frequency.
\ Stealth 5: The mutations persist even if the virus is cured." - -/datum/symptom/genetic_mutation/Activate(datum/disease/advance/A) + +/datum/symptom/genetic_mutation/Activate(datum/disease/advance/A) if(!..()) return var/mob/living/carbon/C = A.affected_mob @@ -45,20 +45,12 @@ Bonus to_chat(C, "[pick("Your skin feels itchy.", "You feel light headed.")]") C.dna.remove_mutation_group(possible_mutations) for(var/i in 1 to power) -<<<<<<< HEAD - C.randmut(possible_mutations) - -// Archive their DNA before they were infected. -/datum/symptom/genetic_mutation/Start(datum/disease/advance/A) - ..() -======= C.randmut(possible_mutations) // Archive their DNA before they were infected. /datum/symptom/genetic_mutation/Start(datum/disease/advance/A) if(!..()) return ->>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(A.properties["stealth"] >= 5) //don't restore dna after curing no_reset = TRUE if(A.properties["stage_rate"] >= 10) //mutate more often @@ -66,17 +58,6 @@ Bonus symptom_delay_max = 60 if(A.properties["resistance"] >= 8) //mutate twice power = 2 -<<<<<<< HEAD - possible_mutations = (GLOB.bad_mutations | GLOB.not_good_mutations) - GLOB.mutations_list[RACEMUT] - var/mob/living/carbon/M = A.affected_mob - if(M) - if(!M.has_dna()) - return - archived_dna = M.dna.struc_enzymes - -// Give them back their old DNA when cured. -/datum/symptom/genetic_mutation/End(datum/disease/advance/A) -======= possible_mutations = (GLOB.bad_mutations | GLOB.not_good_mutations) - GLOB.mutations_list[RACEMUT] var/mob/living/carbon/M = A.affected_mob if(M) @@ -88,7 +69,6 @@ Bonus /datum/symptom/genetic_mutation/End(datum/disease/advance/A) if(!..()) return ->>>>>>> 1940af0... Fixes Start() of symptoms still working when neutered (#31435) if(!no_reset) var/mob/living/carbon/M = A.affected_mob if(M && archived_dna) From 8269450398ba84ee915c6b9c1bab534114d19b82 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 8 Oct 2017 22:46:45 -0500 Subject: [PATCH 92/95] MapSync with /tg/ --- .../lavaland_surface_ash_walker1.dmm | 36 +- _maps/RandomRuins/SpaceRuins/bigderelict1.dmm | 2 +- _maps/RandomRuins/SpaceRuins/deepstorage.dmm | 2 +- _maps/RandomRuins/SpaceRuins/onehalf.dmm | 30 +- _maps/basemap.dm | 4 +- _maps/map_files/BoxStation/BoxStation.dmm | 7641 ++--------------- .../map_files/Deltastation/DeltaStation2.dmm | 4427 +--------- _maps/map_files/MetaStation/MetaStation.dmm | 4910 +---------- _maps/map_files/OmegaStation/OmegaStation.dmm | 3560 +------- _maps/map_files/PubbyStation/PubbyStation.dmm | 5037 +---------- _maps/map_files/generic/CentCom.dmm | 1822 ++-- _maps/metastation.json | 4 +- _maps/shuttles/cargo_birdboat.dmm | 808 +- _maps/shuttles/emergency_birdboat.dmm | 2 +- _maps/shuttles/emergency_cere.dmm | 2 +- _maps/shuttles/emergency_delta.dmm | 2 +- _maps/shuttles/emergency_pubby.dmm | 2 +- _maps/shuttles/ferry_base.dmm | 2 +- _maps/shuttles/whiteship_box.dmm | 6 +- _maps/shuttles/whiteship_meta.dmm | 53 +- 20 files changed, 3992 insertions(+), 24360 deletions(-) diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm index 27c4f5074b..6712e631a7 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm @@ -198,7 +198,6 @@ /obj/structure/stone_tile{ dir = 4 }, -/obj/item/dildo/custom, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) "aC" = ( @@ -288,7 +287,6 @@ /obj/structure/stone_tile/cracked{ dir = 4 }, -/obj/item/dildo/custom, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) "aN" = ( @@ -307,7 +305,6 @@ /area/ruin/unpowered/ash_walkers) "aP" = ( /obj/structure/stone_tile, -/obj/item/dildo/custom, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) "aQ" = ( @@ -382,7 +379,6 @@ /obj/structure/stone_tile/cracked{ dir = 1 }, -/obj/item/dildo/custom, /turf/open/indestructible/boss, /area/ruin/unpowered/ash_walkers) "aZ" = ( @@ -405,7 +401,6 @@ /obj/structure/stone_tile{ dir = 4 }, -/obj/item/dildo/custom, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) "bb" = ( @@ -494,7 +489,6 @@ dir = 4 }, /obj/item/storage/bag/plants/portaseeder, -/obj/item/dildo/custom, /turf/open/indestructible/boss, /area/ruin/unpowered/ash_walkers) "bk" = ( @@ -515,7 +509,6 @@ /obj/structure/stone_tile/cracked{ dir = 1 }, -/obj/item/dildo/custom, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) "bm" = ( @@ -575,7 +568,6 @@ /obj/structure/stone_tile{ dir = 8 }, -/obj/item/dildo/custom, /turf/open/indestructible/boss/air, /area/ruin/unpowered/ash_walkers) "br" = ( @@ -905,7 +897,6 @@ /obj/structure/stone_tile/surrounding_tile/cracked{ dir = 8 }, -/obj/item/dildo/custom, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors) "ci" = ( @@ -1051,7 +1042,6 @@ icon_state = "cracked_slab1"; dir = 4 }, -/obj/item/dildo/custom, /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/ruin/unpowered/ash_walkers) "cB" = ( @@ -1485,26 +1475,6 @@ /obj/structure/stone_tile, /turf/closed/mineral/volcanic, /area/lavaland/surface/outdoors) -"dG" = ( -/obj/structure/stone_tile/slab, -/obj/item/dildo/custom, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"dH" = ( -/obj/structure/stone_tile/block/cracked, -/obj/structure/stone_tile/block{ - dir = 1 - }, -/obj/item/dildo/custom, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"dI" = ( -/obj/structure/stone_tile{ - dir = 4 - }, -/obj/item/dildo/custom, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) (1,1,1) = {" aa @@ -1627,7 +1597,7 @@ aO bl bx bD -dG +bS de bV dg @@ -1655,7 +1625,7 @@ ci bA ct bN -dI +bL cI ah ah @@ -1762,7 +1732,7 @@ ak bP bL bX -dH +dh do du dz diff --git a/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm b/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm index f667074c38..da3185effc 100644 --- a/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm +++ b/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm @@ -3907,4 +3907,4 @@ aa aa aa aa -"} \ No newline at end of file +"} diff --git a/_maps/RandomRuins/SpaceRuins/deepstorage.dmm b/_maps/RandomRuins/SpaceRuins/deepstorage.dmm index 6eae7dd6e1..5b593e5b7f 100644 --- a/_maps/RandomRuins/SpaceRuins/deepstorage.dmm +++ b/_maps/RandomRuins/SpaceRuins/deepstorage.dmm @@ -6621,4 +6621,4 @@ aa aa aa aa -"} \ No newline at end of file +"} diff --git a/_maps/RandomRuins/SpaceRuins/onehalf.dmm b/_maps/RandomRuins/SpaceRuins/onehalf.dmm index dd653c3947..a4beb6859c 100644 --- a/_maps/RandomRuins/SpaceRuins/onehalf.dmm +++ b/_maps/RandomRuins/SpaceRuins/onehalf.dmm @@ -112,40 +112,40 @@ id = "onehalf_drone1ext"; name = "mining drone bay blast door" }, -/turf/open/floor/plating/airless{ - dir = 1; - icon_state = "warnplate" +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/onehalf/drone_bay) "at" = ( /obj/machinery/door/poddoor{ id = "onehalf_drone2ext"; name = "mining drone bay blast door" }, -/turf/open/floor/plating/airless{ - dir = 1; - icon_state = "warnplate" +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/onehalf/drone_bay) "au" = ( /obj/machinery/door/poddoor/preopen{ id = "onehalf_drone3ext"; name = "mining drone bay blast door" }, -/turf/open/floor/plating/airless{ - dir = 1; - icon_state = "warnplate" +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/onehalf/drone_bay) "av" = ( /obj/machinery/door/poddoor{ id = "onehalf_drone4ext"; name = "mining drone bay blast door" }, -/turf/open/floor/plating/airless{ - dir = 1; - icon_state = "warnplate" +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/onehalf/drone_bay) "aw" = ( /obj/structure/lattice, @@ -208,10 +208,10 @@ /turf/open/floor/plating/airless, /area/ruin/space/has_grav/onehalf/drone_bay) "aG" = ( -/turf/open/floor/plating/airless{ - dir = 1; - icon_state = "warnplate" +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/onehalf/drone_bay) "aH" = ( /obj/item/stack/rods, diff --git a/_maps/basemap.dm b/_maps/basemap.dm index 9e5c223f52..1336200863 100644 --- a/_maps/basemap.dm +++ b/_maps/basemap.dm @@ -10,10 +10,10 @@ #include "map_files\Deltastation\DeltaStation2.dmm" #include "map_files\MetaStation\MetaStation.dmm" #include "map_files\OmegaStation\OmegaStation.dmm" -// #include "map_files\PubbyStation\PubbyStation.dmm" +#include "map_files\PubbyStation\PubbyStation.dmm" #include "map_files\BoxStation\BoxStation.dmm" #ifdef TRAVISBUILDING #include "templates.dm" #endif -#endif +#endif \ No newline at end of file diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index 15b9f0ff9e..2b29f69b39 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -1,4 +1,4 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aaa" = ( /turf/open/space/basic, /area/space) @@ -15,12 +15,6 @@ }, /turf/open/space, /area/space) -"aac" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"aad" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) "aae" = ( /obj/effect/landmark/carpspawn, /turf/open/space, @@ -2014,9 +2008,6 @@ "aeE" = ( /turf/closed/wall/mineral/titanium, /area/shuttle/pod_3) -"aeF" = ( -/turf/closed/wall/mineral/titanium/overspace, -/area/shuttle/pod_3) "aeG" = ( /obj/structure/cable, /obj/machinery/power/solar{ @@ -2711,12 +2702,6 @@ /obj/machinery/atmospherics/pipe/manifold4w/general/visible, /turf/open/floor/plasteel, /area/engine/atmos) -"age" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) "agf" = ( /obj/structure/table, /obj/item/stack/sheet/metal{ @@ -2869,12 +2854,6 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"agv" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) "agw" = ( /obj/structure/table, /obj/machinery/syndicatebomb/training, @@ -3325,14 +3304,6 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"ahw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) "ahx" = ( /obj/structure/cable{ d1 = 4; @@ -4586,15 +4557,6 @@ /obj/effect/spawner/structure/window/shuttle, /turf/open/floor/plating, /area/shuttle/labor) -"ajY" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Unfiltered to Port"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) "ajZ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/securearea{ @@ -5449,25 +5411,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/maintenance/fore/secondary) -"alM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"alN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/fore) "alO" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -5887,24 +5830,6 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"amO" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 9 - }, -/turf/closed/wall/mineral/plastitanium{ - dir = 8; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"amP" = ( -/obj/machinery/door/poddoor/shutters{ - id = "syndieshutters"; - name = "blast shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/shuttle/syndicate) "amQ" = ( /obj/structure/cable{ icon_state = "0-4"; @@ -7194,14 +7119,6 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"apT" = ( -/obj/structure/chair/comfy/beige{ - desc = "It looks comfy and extra tactical.\nAlt-click to rotate it clockwise."; - dir = 1; - name = "tactical armchair" - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "apU" = ( /turf/open/floor/plating, /area/security/vacantoffice/b) @@ -7620,18 +7537,6 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aqU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Cargo Technician" - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) "aqV" = ( /obj/structure/table/wood, /obj/item/paper_bin{ @@ -7700,10 +7605,6 @@ "arf" = ( /turf/closed/wall, /area/crew_quarters/dorms) -"arg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/department/crew_quarters/dorms) "arh" = ( /obj/machinery/door/airlock/maintenance{ name = "Dormitories Maintenance"; @@ -7972,14 +7873,6 @@ "arP" = ( /turf/closed/wall, /area/maintenance/fore) -"arQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) "arR" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/table/wood, @@ -8621,10 +8514,6 @@ icon_state = "panelscorched" }, /area/maintenance/starboard/fore) -"atz" = ( -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) "atA" = ( /obj/structure/table, /turf/open/floor/plating, @@ -8771,14 +8660,6 @@ /obj/structure/chair/stool, /turf/open/floor/plating, /area/maintenance/port/fore) -"atX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fore) "atY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, @@ -8805,17 +8686,6 @@ dir = 10 }, /area/construction/mining/aux_base) -"aud" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) "aue" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, @@ -10176,10 +10046,6 @@ dir = 4 }, /area/construction/mining/aux_base) -"axd" = ( -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/arrivals/north) "axe" = ( /obj/machinery/sleeper{ dir = 4 @@ -10455,15 +10321,6 @@ dir = 4 }, /area/hallway/secondary/entry) -"axJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/fore) "axK" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -11319,17 +11176,6 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"azP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) "azQ" = ( /obj/structure/cable{ d1 = 4; @@ -11780,14 +11626,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aAM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) "aAN" = ( /obj/structure/cable{ d1 = 2; @@ -12879,11 +12717,6 @@ }, /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) -"aDu" = ( -/obj/structure/table, -/obj/machinery/microwave, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "aDv" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 @@ -13014,14 +12847,6 @@ }, /turf/closed/wall/r_wall, /area/ai_monitored/storage/eva) -"aDJ" = ( -/obj/structure/table, -/obj/item/device/flashlight/lamp{ - pixel_x = 4; - pixel_y = 1 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "aDK" = ( /obj/machinery/door/airlock{ id_tag = "Dorm1"; @@ -13808,20 +13633,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aFt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) "aFu" = ( /turf/closed/wall, /area/library) @@ -14445,20 +14256,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aGK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) "aGL" = ( /obj/structure/cable{ d1 = 4; @@ -14532,20 +14329,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aGR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) "aGS" = ( /obj/structure/cable{ d1 = 2; @@ -14776,12 +14559,6 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/arrival) -"aHt" = ( -/obj/effect/landmark{ - name = "Observer-Start" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) "aHu" = ( /obj/machinery/status_display{ pixel_x = 32 @@ -15122,12 +14899,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aIi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/kitchen) "aIj" = ( /obj/structure/cable{ d1 = 4; @@ -16458,28 +16229,6 @@ }, /turf/open/floor/plasteel/black, /area/chapel/main) -"aLs" = ( -/obj/machinery/door/airlock/titanium{ - name = "Arrivals Shuttle Airlock" - }, -/obj/docking_port/mobile{ - dwidth = 5; - height = 7; - id = "arrival"; - name = "arrival shuttle"; - port_direction = 8; - preferred_direction = 8; - width = 15 - }, -/obj/docking_port/stationary{ - dwidth = 5; - height = 7; - id = "arrival_home"; - name = "port bay 1"; - width = 15 - }, -/turf/open/floor/plating, -/area/shuttle/arrival) "aLt" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 @@ -17141,14 +16890,6 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/port) -"aNn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) "aNo" = ( /obj/structure/cable{ d1 = 1; @@ -17597,20 +17338,6 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/port) -"aOu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) "aOv" = ( /obj/structure/cable{ d1 = 4; @@ -19408,12 +19135,6 @@ }, /turf/open/floor/plating, /area/hallway/secondary/exit) -"aTp" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"aTq" = ( -/turf/closed/wall, -/area/security/vacantoffice/a) "aTr" = ( /obj/machinery/door/firedoor, /obj/machinery/status_display{ @@ -21244,15 +20965,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit) -"aXH" = ( -/obj/structure/table, -/obj/machinery/button/door{ - id = "syndieshutters"; - name = "remote shutter control"; - req_access_txt = "150" - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "aXI" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 4; @@ -23284,12 +22996,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"bcW" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) "bcX" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -23698,9 +23404,9 @@ /turf/open/floor/plasteel/floorgrime, /area/quartermaster/storage) "bdV" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/maintenance/bar) +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/airless, +/area/space/nearstation) "bdW" = ( /obj/item/clothing/gloves/color/rainbow, /obj/item/clothing/head/soft/rainbow, @@ -24728,20 +24434,6 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/open/floor/plating, /area/maintenance/port) -"bgx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) "bgy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 @@ -25285,17 +24977,6 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"bhK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) "bhL" = ( /obj/machinery/mineral/stacking_machine{ input_dir = 1; @@ -25328,12 +25009,6 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bhP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) "bhQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -25706,15 +25381,6 @@ "biL" = ( /turf/open/floor/plasteel/white, /area/science/robotics/lab) -"biM" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Roboticist" - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) "biN" = ( /turf/open/floor/plasteel/whitered/side{ dir = 1 @@ -25832,10 +25498,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/starboard) -"biZ" = ( -/obj/machinery/computer/shuttle/syndicate, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "bja" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -26095,19 +25757,6 @@ /obj/structure/closet/wardrobe/black, /turf/open/floor/plating, /area/maintenance/central) -"bjD" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Bridge Maintenance APC"; - areastring = "/area/maintenance/department/bridge"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/maintenance/department/bridge) "bjE" = ( /obj/machinery/airalarm{ dir = 4; @@ -26258,15 +25907,6 @@ dir = 2 }, /area/medical/medbay/central) -"bjW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) "bjX" = ( /obj/structure/table, /obj/machinery/recharger{ @@ -26337,14 +25977,6 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/storage/emergency/starboard) -"bkg" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) "bkh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/circuit, @@ -26387,22 +26019,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/white, /area/science/robotics/lab) -"bkl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_research{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) "bkm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 @@ -27164,10 +26780,6 @@ /obj/effect/landmark/start/roboticist, /turf/open/floor/plasteel, /area/science/robotics/lab) -"blN" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) "blO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, @@ -27716,26 +27328,6 @@ }, /turf/closed/wall/r_wall, /area/science/robotics/mechbay) -"bnd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bne" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) "bnf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 @@ -28332,14 +27924,6 @@ }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"bop" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/science/robotics/mechbay) "boq" = ( /obj/structure/bed/roller, /turf/open/floor/plasteel/whiteblue/side{ @@ -28365,13 +27949,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/white, /area/science/robotics/lab) -"bot" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/robotics/lab) "bou" = ( /turf/open/floor/plasteel, /area/science/robotics/lab) @@ -29126,21 +28703,6 @@ }, /turf/open/floor/plasteel/black, /area/science/robotics/lab) -"bqb" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) "bqc" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel/white, @@ -29648,15 +29210,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/white, /area/medical/genetics) -"brl" = ( -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) "brm" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -30007,14 +29560,6 @@ "brS" = ( /turf/open/floor/plasteel, /area/crew_quarters/heads/hop) -"brT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) "brU" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; @@ -30326,10 +29871,6 @@ dir = 9 }, /area/science/research) -"bsB" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "bsC" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/open/floor/plasteel/white, @@ -31045,9 +30586,6 @@ }, /turf/open/floor/plasteel/white, /area/medical/genetics) -"buh" = ( -/turf/closed/wall/r_wall, -/area/science/robotics/mechbay) "bui" = ( /obj/machinery/airalarm{ dir = 1; @@ -31234,10 +30772,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/starboard) -"buA" = ( -/obj/structure/frame/computer, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "buB" = ( /obj/machinery/conveyor_switch/oneway{ convdir = -1; @@ -32270,14 +31804,6 @@ dir = 9 }, /area/science/research) -"bwP" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "bwQ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -32482,40 +32008,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/maintenance/aft) -"bxh" = ( -/obj/machinery/door/poddoor{ - id = "smindicate"; - name = "outer blast door" - }, -/obj/machinery/button/door{ - id = "smindicate"; - name = "external door control"; - pixel_x = -26; - req_access_txt = "150" - }, -/obj/docking_port/mobile{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate"; - name = "syndicate infiltrator"; - port_direction = 1; - roundstart_move = "syndicate_away"; - width = 18 - }, -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate_nw"; - name = "northwest of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/floor/plating, -/area/shuttle/syndicate) "bxi" = ( /obj/machinery/computer/aifixer, /obj/machinery/requests_console{ @@ -34553,14 +34045,6 @@ }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"bBM" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 10 - }, -/obj/item/device/multitool, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "bBN" = ( /turf/closed/wall, /area/crew_quarters/heads/cmo) @@ -35512,15 +34996,6 @@ }, /turf/open/floor/plasteel/white, /area/medical/sleeper) -"bDX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/mob/living/simple_animal/mouse, -/turf/open/floor/plasteel/floorgrime, -/area/science/storage) "bDY" = ( /obj/structure/cable{ d1 = 4; @@ -37134,14 +36609,6 @@ dir = 8 }, /area/quartermaster/miningdock) -"bHB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/department/medical) "bHC" = ( /obj/effect/landmark/blobstart, /turf/open/floor/plating, @@ -37346,10 +36813,6 @@ }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"bHZ" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/maintenance/aft) "bIa" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -37846,6 +37309,9 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/structure/sign/xenobio{ + pixel_y = -32 + }, /turf/open/floor/plating, /area/science/xenobiology) "bIU" = ( @@ -38315,13 +37781,8 @@ /turf/open/floor/plasteel, /area/science/misc_lab) "bJP" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/soap/nanotrasen, -/turf/open/floor/plating, +/obj/machinery/vending/boozeomat, +/turf/open/floor/plasteel/bar, /area/maintenance/port/aft) "bJQ" = ( /obj/effect/spawner/structure/window/reinforced, @@ -38336,16 +37797,6 @@ }, /turf/closed/wall, /area/science/storage) -"bJS" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 5 - }, -/turf/closed/wall/mineral/plastitanium{ - dir = 1; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) "bJT" = ( /obj/machinery/vending/cigarette, /turf/open/floor/plasteel/white, @@ -39422,14 +38873,14 @@ pixel_x = -25 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable{ icon_state = "0-2"; d2 = 2 }, -/obj/structure/cable, /turf/open/floor/plasteel/white, /area/science/xenobiology) "bMh" = ( @@ -39463,7 +38914,8 @@ desc = "A machine used to process slimes and retrieve their extract."; name = "Slime Processor" }, -/turf/open/floor/plasteel/white, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, /area/science/xenobiology) "bMm" = ( /obj/machinery/monkey_recycler, @@ -39471,30 +38923,42 @@ dir = 2; pixel_y = 24 }, -/turf/open/floor/plasteel/white, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, /area/science/xenobiology) "bMn" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, /obj/machinery/airalarm{ pixel_y = 23 }, -/turf/open/floor/plasteel/white, +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_y = 5 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, /area/science/xenobiology) "bMo" = ( /obj/machinery/smartfridge/extract/preloaded, -/turf/open/floor/plasteel/white, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, /area/science/xenobiology) "bMp" = ( /obj/structure/closet/l3closet/scientist, /obj/machinery/light_switch{ pixel_y = 28 }, -/turf/open/floor/plasteel/white, +/obj/item/extinguisher, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, /area/science/xenobiology) "bMq" = ( /obj/structure/closet/l3closet/scientist, -/turf/open/floor/plasteel/white, +/obj/item/extinguisher, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, /area/science/xenobiology) "bMr" = ( /obj/effect/spawner/structure/window, @@ -39771,13 +39235,6 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bNa" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/space, -/area/space) "bNb" = ( /obj/item/airlock_painter, /obj/structure/lattice, @@ -40811,16 +40268,6 @@ }, /turf/open/floor/plasteel/white, /area/medical/virology) -"bPv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) "bPw" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 @@ -40835,7 +40282,10 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/plasteel/white, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, /area/science/xenobiology) "bPy" = ( /obj/effect/landmark/start/scientist, @@ -40846,30 +40296,57 @@ /turf/open/floor/plasteel/white, /area/science/xenobiology) "bPz" = ( +/obj/structure/table/glass, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/item/storage/box/syringes{ + pixel_y = 5 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/storage/box/monkeycubes, /obj/machinery/light, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/table/glass, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/turf/open/floor/plasteel/white, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, /area/science/xenobiology) "bPA" = ( /obj/machinery/computer/camera_advanced/xenobio, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/white, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, /area/science/xenobiology) "bPB" = ( /obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -4 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/item/folder/white, -/obj/item/pen, -/turf/open/floor/plasteel/white, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, /area/science/xenobiology) "bPC" = ( /obj/structure/disposalpipe/segment{ @@ -40890,13 +40367,13 @@ /turf/open/floor/plasteel/white, /area/science/xenobiology) "bPE" = ( -/obj/structure/table, -/obj/item/extinguisher{ - pixel_x = 4; - pixel_y = 3 +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/latex, +/obj/item/device/slime_scanner, +/obj/effect/turf_decal/stripes/line{ + dir = 9 }, -/obj/item/extinguisher, -/turf/open/floor/plasteel/white, +/turf/open/floor/plasteel, /area/science/xenobiology) "bPF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -40908,19 +40385,19 @@ /turf/open/floor/plasteel, /area/science/misc_lab) "bPG" = ( -/obj/structure/table, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/machinery/light, +/obj/machinery/chem_master, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; pixel_y = -29 }, -/turf/open/floor/plasteel/white, +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, /area/science/xenobiology) "bPH" = ( -/obj/structure/table, +/obj/machinery/chem_dispenser/constructable, /obj/machinery/requests_console{ department = "Science"; departmentType = 2; @@ -40928,25 +40405,45 @@ pixel_y = -30; receive_ore_updates = 1 }, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/item/pen, -/turf/open/floor/plasteel/white, +/turf/open/floor/plasteel, /area/science/xenobiology) "bPI" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel/white, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, /area/science/xenobiology) "bPJ" = ( -/obj/structure/table, -/obj/item/storage/box/beakers{ - pixel_x = 2; +/obj/structure/table/glass, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 4 + }, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 4 + }, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 4 + }, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; pixel_y = 2 }, -/obj/item/storage/box/syringes, -/turf/open/floor/plasteel/white, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, /area/science/xenobiology) "bPK" = ( /obj/effect/spawner/structure/window, @@ -40989,9 +40486,8 @@ /turf/open/floor/plasteel, /area/tcommsat/computer) "bPR" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, +/obj/effect/decal/cleanable/robot_debris/old, +/turf/open/floor/wood, /area/maintenance/port/aft) "bPS" = ( /turf/open/floor/wood, @@ -41006,7 +40502,13 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "bPV" = ( -/obj/effect/decal/cleanable/blood/old, +/obj/machinery/door/airlock/maintenance{ + name = "Maint Bar Access"; + req_access_txt = "12" + }, +/obj/structure/barricade/wooden{ + name = "wooden barricade (CLOSED)" + }, /turf/open/floor/plating, /area/maintenance/port/aft) "bPW" = ( @@ -41315,6 +40817,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel/white, /area/science/xenobiology) "bQM" = ( @@ -41322,6 +40825,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel/white, /area/science/xenobiology) "bQN" = ( @@ -41337,6 +40841,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel/white, /area/science/xenobiology) "bQO" = ( @@ -41438,11 +40943,11 @@ /turf/open/floor/plating, /area/maintenance/starboard/aft) "bRc" = ( -/obj/machinery/door/airlock{ - id_tag = "MaintDorm1"; - name = "Maintenance Dorm 1" +/obj/structure/table/wood, +/obj/item/soap/nanotrasen, +/turf/open/floor/wood{ + icon_state = "wood-broken7" }, -/turf/open/floor/wood, /area/maintenance/port/aft) "bRd" = ( /obj/structure/table, @@ -41975,28 +41480,12 @@ /turf/open/floor/wood, /area/maintenance/port/aft) "bSo" = ( -/obj/machinery/button/door{ - id = "MaintDorm1"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - req_access_txt = "0"; - specialfunctions = 4 - }, +/obj/structure/chair/stool, /turf/open/floor/wood, /area/maintenance/port/aft) "bSp" = ( -/obj/machinery/button/door{ - id = "MaintDorm2"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - req_access_txt = "0"; - specialfunctions = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/structure/grille/broken, +/turf/open/floor/plating, /area/maintenance/port/aft) "bSq" = ( /obj/structure/rack{ @@ -42192,14 +41681,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/engine/atmos) -"bSL" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/atmos) "bSM" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 @@ -42215,13 +41696,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/engine/atmos) -"bSO" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/atmos) "bSP" = ( /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 4 @@ -42339,6 +41813,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/science/xenobiology) "bTb" = ( @@ -42380,6 +41855,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/science/xenobiology) "bTe" = ( @@ -42528,31 +42004,33 @@ }, /area/maintenance/port/aft) "bTt" = ( -/obj/structure/closet/secure_closet/personal, /obj/machinery/atmospherics/pipe/simple/general/hidden{ dir = 4 }, -/turf/open/floor/wood, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, /area/maintenance/port/aft) "bTu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"bTv" = ( /obj/machinery/atmospherics/pipe/simple/general/hidden{ dir = 4 }, -/turf/closed/wall, -/area/maintenance/port/aft) -"bTv" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/wood, +/turf/open/floor/plating, /area/maintenance/port/aft) "bTw" = ( -/obj/machinery/light/small, -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/manifold/general/hidden, -/turf/open/floor/wood, +/obj/machinery/door/airlock/maintenance/abandoned{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 4 + }, +/turf/open/floor/plating, /area/maintenance/port/aft) "bTx" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ @@ -42949,13 +42427,9 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "bUt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, /obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + icon_state = "0-4"; + d2 = 4 }, /turf/open/floor/plating, /area/maintenance/port/aft) @@ -42974,8 +42448,8 @@ d2 = 8; icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 }, /turf/open/floor/plating, /area/maintenance/port/aft) @@ -42986,23 +42460,6 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bUw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, /turf/open/floor/plating, /area/maintenance/port/aft) "bUx" = ( @@ -43232,20 +42689,6 @@ }, /turf/open/floor/engine/n2o, /area/engine/atmos) -"bUX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) "bUY" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -43531,16 +42974,9 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "bVG" = ( -/turf/open/floor/wood, -/area/maintenance/bar) -"bVH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port/aft) "bVI" = ( @@ -44979,15 +44415,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/engine/break_room) -"bZf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) "bZg" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -45462,14 +44889,6 @@ }, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"caj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) "cak" = ( /obj/machinery/telecomms/hub/preset, /turf/open/floor/plasteel/vault/telecomms/mainframe{ @@ -45491,14 +44910,6 @@ dir = 5 }, /area/tcommsat/computer) -"cam" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) "can" = ( /obj/machinery/door/airlock/glass_engineering{ cyclelinkeddir = 8; @@ -45539,7 +44950,7 @@ dir = 5 }, /turf/closed/wall, -/area/maintenance/bar) +/area/maintenance/port/aft) "cas" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -45625,20 +45036,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/checkpoint/engineering) -"caB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) "caC" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -46675,20 +46072,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/maintenance/aft) -"ccH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) "ccI" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -47209,13 +46592,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cdP" = ( -/obj/machinery/door/window{ - name = "Ready Room"; - req_access_txt = "150" - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "cdQ" = ( /obj/structure/closet/emcloset, /obj/effect/decal/cleanable/cobweb, @@ -47284,14 +46660,6 @@ }, /turf/open/floor/plasteel/white, /area/science/research) -"cdY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) "cdZ" = ( /obj/machinery/telecomms/processor/preset_two, /turf/open/floor/plasteel/black/telecomms/mainframe, @@ -47436,15 +46804,6 @@ dir = 5 }, /area/engine/engineering) -"ceu" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/engine/engineering) "cev" = ( /obj/effect/spawner/structure/window, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -47715,12 +47074,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port/aft) -"cff" = ( -/obj/machinery/vending/tool, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/engine/engineering) "cfg" = ( /obj/structure/cable{ d1 = 1; @@ -47857,7 +47210,10 @@ /obj/structure/rack, /obj/item/clothing/shoes/winterboots, /obj/item/clothing/suit/hooded/wintercoat, -/turf/open/floor/plasteel/white, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, /area/science/xenobiology) "cfz" = ( /obj/structure/cable{ @@ -47869,35 +47225,12 @@ dir = 1 }, /area/engine/engineering) -"cfA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) "cfB" = ( /obj/structure/closet/secure_closet/engineering_personal, /turf/open/floor/plasteel/yellow/side{ dir = 4 }, /area/engine/engineering) -"cfC" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) "cfD" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance{ @@ -47912,12 +47245,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfE" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/neutral{ - dir = 2 - }, -/area/crew_quarters/heads/chief) "cfF" = ( /obj/machinery/suit_storage_unit/ce, /obj/effect/turf_decal/stripes/line{ @@ -48022,12 +47349,6 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"cfS" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) "cfT" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 9 @@ -48040,15 +47361,6 @@ }, /turf/closed/wall, /area/maintenance/disposal/incinerator) -"cfV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plating, -/area/maintenance/aft) "cfW" = ( /obj/structure/cable{ d1 = 1; @@ -48206,7 +47518,10 @@ dir = 2; on = 1 }, -/turf/open/floor/plasteel/white, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, /area/science/xenobiology) "cgo" = ( /obj/structure/cable{ @@ -48386,14 +47701,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cgH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) "cgI" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 @@ -48421,23 +47728,6 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"cgM" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Engineer's Desk"; - departmentType = 3; - name = "Chief Engineer RC"; - pixel_x = -32 - }, -/obj/machinery/computer/apc_control, -/turf/open/floor/plasteel/neutral{ - dir = 2 - }, -/area/crew_quarters/heads/chief) -"cgN" = ( -/obj/structure/closet/radiation, -/turf/open/floor/plasteel, -/area/engine/engineering) "cgO" = ( /obj/structure/rack{ dir = 8; @@ -48453,18 +47743,6 @@ dir = 5 }, /area/crew_quarters/heads/chief) -"cgP" = ( -/obj/structure/table, -/obj/item/device/flashlight{ - pixel_y = 5 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/airlock_painter, -/turf/open/floor/plasteel, -/area/engine/engineering) "cgQ" = ( /obj/machinery/camera{ c_tag = "Engineering East"; @@ -48713,16 +47991,19 @@ /turf/open/floor/circuit/killroom, /area/science/xenobiology) "cht" = ( -/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 4 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/white, /area/science/xenobiology) "chu" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 4 }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, /turf/open/floor/plasteel/white, /area/science/xenobiology) "chv" = ( @@ -48999,15 +48280,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"chU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/department/engine) "chV" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -49028,20 +48300,6 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"chW" = ( -/obj/machinery/camera{ - c_tag = "Engineering Center"; - dir = 2; - pixel_x = 23 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/engineering) "chX" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -49060,12 +48318,6 @@ /obj/machinery/shieldgen, /turf/open/floor/plating, /area/engine/engineering) -"chZ" = ( -/obj/machinery/the_singularitygen{ - anchored = 0 - }, -/turf/open/floor/plating, -/area/engine/engineering) "cia" = ( /obj/effect/turf_decal/bot{ dir = 1 @@ -49082,19 +48334,6 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"cib" = ( -/obj/machinery/power/apc/highcap/fifteen_k{ - dir = 1; - name = "Engineering APC"; - areastring = "/area/engine/engineering"; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel/yellow/side, -/area/engine/engineering) "cic" = ( /obj/effect/turf_decal/bot{ dir = 1 @@ -49170,13 +48409,6 @@ "cig" = ( /turf/closed/wall, /area/engine/engineering) -"cih" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel/yellow/side, -/area/engine/engineering) "cii" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -49213,15 +48445,6 @@ }, /turf/open/floor/plasteel/vault, /area/crew_quarters/heads/chief) -"cil" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/storage/belt/utility, -/turf/open/floor/plasteel, -/area/engine/engineering) "cim" = ( /turf/open/floor/plasteel, /area/crew_quarters/heads/chief) @@ -49287,11 +48510,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/engine/atmos) -"ciw" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/atmos) "cix" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/closed/wall/r_wall, @@ -49477,17 +48695,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/maintenance/port/aft) -"ciV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) "ciW" = ( /obj/effect/landmark/blobstart, /turf/open/floor/plating, @@ -49663,8 +48870,9 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cjn" = ( -/turf/closed/wall, -/area/maintenance/bar) +/obj/item/weldingtool, +/turf/open/floor/plating/airless, +/area/space/nearstation) "cjo" = ( /obj/structure/closet/toolcloset, /turf/open/floor/plasteel, @@ -49755,7 +48963,10 @@ /obj/structure/table, /obj/item/folder/white, /obj/item/pen, -/turf/open/floor/plasteel/white, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, /area/science/xenobiology) "cjC" = ( /obj/structure/grille, @@ -49949,10 +49160,6 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/heads/chief) -"cjZ" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/engine/engineering) "cka" = ( /obj/machinery/door/poddoor/preopen{ id = "testlab"; @@ -50181,16 +49388,6 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"ckE" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) "ckF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, @@ -50235,28 +49432,6 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"ckJ" = ( -/obj/structure/closet/crate{ - name = "solar pack crate" - }, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/circuitboard/computer/solar_control, -/obj/item/electronics/tracker, -/obj/item/paper/guides/jobs/engi/solars, -/turf/open/floor/plasteel, -/area/engine/engineering) "ckK" = ( /obj/structure/tank_dispenser, /obj/effect/turf_decal/bot{ @@ -50318,47 +49493,10 @@ dir = 2 }, /area/crew_quarters/heads/chief) -"ckP" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Chief Engineer"; - req_access_txt = "56" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel/neutral{ - dir = 2 - }, -/area/crew_quarters/heads/chief) "ckQ" = ( /obj/structure/closet/cardboard, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/storage) -"ckR" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/chief) "ckS" = ( /obj/structure/closet/cardboard, /turf/open/floor/plating, @@ -50709,14 +49847,6 @@ dir = 4 }, /area/engine/engine_smes) -"clH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/closed/wall, -/area/engine/engineering) "clI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -50727,22 +49857,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/engine/engineering) -"clK" = ( -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - freerange = 1; - frequency = 1213; - name = "Syndicate Intercom"; - pixel_y = -32; - subspace_transmission = 1; - syndie = 1 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"clL" = ( -/obj/structure/closet/syndicate/personal, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "clM" = ( /obj/structure/table, /obj/item/crowbar/large, @@ -50759,17 +49873,6 @@ dir = 1 }, /area/engine/engineering) -"clO" = ( -/turf/open/space, -/turf/closed/wall/mineral/plastitanium{ - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"clP" = ( -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/engine/engineering) "clQ" = ( /turf/open/floor/plasteel/yellow/corner{ dir = 1 @@ -50820,13 +49923,6 @@ "clZ" = ( /turf/open/floor/engine/air, /area/engine/atmos) -"cma" = ( -/obj/machinery/door/window{ - name = "Cockpit"; - req_access_txt = "150" - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "cmb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/effect/spawner/structure/window/reinforced, @@ -50907,13 +50003,6 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"cmm" = ( -/obj/structure/chair{ - dir = 8; - name = "tactical chair" - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "cmn" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -50925,12 +50014,6 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cmp" = ( -/obj/machinery/porta_turret/syndicate{ - dir = 4 - }, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) "cmq" = ( /obj/effect/landmark/xeno_spawn, /obj/structure/disposalpipe/segment, @@ -51063,13 +50146,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/engineering) -"cmE" = ( -/turf/open/space, -/turf/closed/wall/mineral/plastitanium{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) "cmF" = ( /turf/open/floor/plasteel/yellow/side{ dir = 1 @@ -51089,43 +50165,6 @@ dir = 9 }, /area/engine/engineering) -"cmH" = ( -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/crowbar/red, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"cmI" = ( -/obj/machinery/vending/engivend, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/engineering) -"cmJ" = ( -/obj/structure/table, -/obj/item/storage/box/zipties{ - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"cmK" = ( -/obj/machinery/requests_console{ - announcementConsole = 0; - department = "Engineering"; - departmentType = 4; - name = "Engineering RC"; - pixel_y = 30 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/engineering) "cmL" = ( /obj/structure/cable{ d1 = 4; @@ -51136,12 +50175,6 @@ dir = 1 }, /area/engine/engineering) -"cmM" = ( -/obj/machinery/sleeper/syndie{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) "cmN" = ( /obj/structure/sign/nosmoking_2{ pixel_y = 32 @@ -51155,48 +50188,6 @@ dir = 1 }, /area/engine/engineering) -"cmO" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"cmP" = ( -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"cmQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cmR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cmS" = ( -/obj/structure/table, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/bruise_pack, -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"cmT" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "cmU" = ( /obj/machinery/light/small, /turf/open/floor/engine/n2, @@ -51313,21 +50304,6 @@ /obj/item/clipboard, /turf/open/floor/plating, /area/maintenance/aft) -"cnh" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"cni" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK" - }, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) "cnj" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -51434,10 +50410,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/engineering) -"cns" = ( -/obj/structure/closet/syndicate/nuclear, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "cnt" = ( /obj/machinery/camera{ c_tag = "Engineering West"; @@ -51454,24 +50426,11 @@ dir = 1 }, /area/engine/engineering) -"cnu" = ( -/obj/structure/table, -/obj/item/device/aicard, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "cnv" = ( /obj/machinery/holopad, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/engineering) -"cnw" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) "cnx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -51490,10 +50449,6 @@ /obj/effect/landmark/start/station_engineer, /turf/open/floor/plasteel, /area/engine/engineering) -"cnz" = ( -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) "cnA" = ( /obj/effect/turf_decal/bot{ dir = 1 @@ -51584,30 +50539,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cnI" = ( -/obj/structure/table, -/obj/item/grenade/plastic/c4{ - pixel_x = 2; - pixel_y = -5 - }, -/obj/item/grenade/plastic/c4{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/grenade/plastic/c4{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/grenade/plastic/c4{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/grenade/plastic/c4{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "cnJ" = ( /obj/structure/disposalpipe/segment, /obj/effect/spawner/lootdrop/maintenance, @@ -51735,10 +50666,6 @@ }, /turf/open/floor/plasteel, /area/engine/engine_smes) -"cnT" = ( -/obj/structure/sign/bluecross_2, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) "cnU" = ( /obj/structure/cable{ d1 = 4; @@ -51756,17 +50683,6 @@ }, /turf/open/floor/plasteel/loadingarea, /area/engine/engineering) -"cnV" = ( -/obj/structure/bed/roller, -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"cnW" = ( -/turf/open/space, -/turf/closed/wall/mineral/plastitanium{ - dir = 1; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) "cnX" = ( /obj/structure/cable{ d1 = 4; @@ -51847,105 +50763,6 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"cod" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"coe" = ( -/obj/machinery/door/window{ - dir = 4; - name = "EVA Storage"; - req_access_txt = "150" - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"cof" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "150" - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"cog" = ( -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "EVA Storage"; - req_access_txt = "150" - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"coh" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"coi" = ( -/obj/structure/rack, -/obj/item/clothing/suit/space/syndicate/black/red, -/obj/item/clothing/head/helmet/space/syndicate/black/red, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"coj" = ( -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - freerange = 1; - frequency = 1213; - name = "Syndicate Intercom"; - pixel_x = -32; - subspace_transmission = 1; - syndie = 1 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"cok" = ( -/obj/machinery/recharge_station, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"col" = ( -/obj/machinery/door/window{ - dir = 4; - name = "Infirmary"; - req_access_txt = "150" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"com" = ( -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Infirmary"; - req_access_txt = "150" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"con" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table, -/obj/item/bodypart/r_arm/robot, -/obj/item/bodypart/l_arm/robot, -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"coo" = ( -/obj/structure/table, -/obj/item/stock_parts/cell/high{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stock_parts/cell/high, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "cop" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 1; @@ -52111,44 +50928,6 @@ }, /turf/open/floor/plasteel, /area/engine/engine_smes) -"coD" = ( -/obj/structure/table, -/obj/item/wrench, -/obj/item/device/assembly/infra, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"coE" = ( -/obj/structure/table, -/obj/item/screwdriver{ - pixel_y = 9 - }, -/obj/item/device/assembly/voice{ - pixel_y = 3 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"coF" = ( -/obj/structure/table, -/obj/item/weldingtool/largetank{ - pixel_y = 3 - }, -/obj/item/device/multitool, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"coG" = ( -/obj/structure/table, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "coH" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -52160,12 +50939,6 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"coI" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) "coJ" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ @@ -52220,51 +50993,6 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"coN" = ( -/obj/machinery/door/window/westright{ - name = "Tool Storage"; - req_access_txt = "150" - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"coO" = ( -/obj/structure/table, -/obj/item/storage/toolbox/syndicate, -/obj/item/crowbar/red, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"coP" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Surgery"; - req_access_txt = "150" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"coQ" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/brute, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"coR" = ( -/obj/machinery/door/window{ - dir = 8; - name = "Tool Storage"; - req_access_txt = "150" - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "coS" = ( /obj/structure/rack, /obj/item/gun/energy/laser{ @@ -52296,50 +51024,6 @@ }, /turf/open/floor/engine, /area/science/misc_lab) -"coU" = ( -/obj/structure/table, -/obj/item/surgicaldrill, -/obj/item/circular_saw, -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"coV" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 30 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"coW" = ( -/obj/structure/table, -/obj/item/device/sbeacondrop/bomb{ - pixel_y = 5 - }, -/obj/item/device/sbeacondrop/bomb, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"coX" = ( -/obj/structure/table, -/obj/item/grenade/syndieminibomb{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/grenade/syndieminibomb{ - pixel_x = -1 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"coY" = ( -/obj/machinery/nuclearbomb/syndicate, -/obj/machinery/door/window{ - dir = 1; - name = "Secure Storage"; - req_access_txt = "150" - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "coZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 @@ -52381,12 +51065,6 @@ }, /turf/open/space, /area/space) -"cpf" = ( -/obj/machinery/telecomms/allinone{ - intercept = 1 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "cpg" = ( /obj/item/grenade/barrier{ pixel_x = 4 @@ -52487,12 +51165,6 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"cpr" = ( -/obj/structure/table, -/obj/item/cautery, -/obj/item/scalpel, -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) "cps" = ( /obj/structure/table, /obj/item/stack/sheet/glass{ @@ -52543,12 +51215,6 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"cpw" = ( -/obj/structure/table, -/obj/item/retractor, -/obj/item/hemostat, -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) "cpx" = ( /obj/structure/cable{ d1 = 4; @@ -52568,10 +51234,6 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"cpz" = ( -/obj/structure/particle_accelerator/end_cap, -/turf/open/floor/plating, -/area/engine/engineering) "cpA" = ( /obj/structure/cable{ d1 = 1; @@ -52583,17 +51245,6 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) -"cpB" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering) "cpC" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/effect/landmark/event_spawn, @@ -52616,23 +51267,11 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"cpF" = ( -/obj/structure/table/optable, -/obj/item/surgical_drapes, -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) "cpG" = ( /obj/structure/table/optable, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel/white, /area/medical/sleeper) -"cpH" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating, -/area/shuttle/syndicate) "cpI" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 4; @@ -52898,13 +51537,6 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"cqk" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) "cql" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -53099,14 +51731,6 @@ dir = 8 }, /area/ai_monitored/security/armory) -"cqH" = ( -/obj/item/screwdriver, -/turf/open/floor/plating, -/area/engine/engineering) -"cqI" = ( -/obj/structure/shuttle/engine/propulsion/left, -/turf/open/floor/plating, -/area/shuttle/syndicate) "cqJ" = ( /obj/structure/cable, /obj/structure/lattice/catwalk, @@ -53197,33 +51821,6 @@ /obj/machinery/portable_atmospherics/canister, /turf/open/floor/plasteel/black, /area/engine/engineering) -"cqV" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cqW" = ( -/obj/machinery/power/rad_collector/anchored, -/obj/item/tank/internals/plasma, -/obj/structure/cable/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cqX" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/engineering) "cqY" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -53269,29 +51866,6 @@ }, /turf/open/floor/plasteel/black, /area/engine/engineering) -"cre" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"crf" = ( -/obj/structure/shuttle/engine/propulsion/right, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"crg" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/floor/plating, -/area/shuttle/syndicate) "crh" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -53305,17 +51879,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"crj" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard) "crk" = ( /obj/structure/lattice/catwalk, /turf/open/space, @@ -53579,14 +52142,6 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"crS" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard) "crT" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ @@ -53662,17 +52217,6 @@ }, /turf/open/floor/plasteel/black, /area/engine/engineering) -"csf" = ( -/obj/machinery/power/emitter/anchored{ - dir = 8; - state = 2 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) "csg" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 1; @@ -53682,12 +52226,6 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"csh" = ( -/obj/structure/transit_tube{ - icon_state = "D-SW" - }, -/turf/open/space, -/area/space) "csi" = ( /obj/structure/transit_tube/curved/flipped{ dir = 1 @@ -53726,12 +52264,6 @@ /obj/structure/transit_tube/crossing/horizontal, /turf/open/space, /area/space) -"csp" = ( -/obj/structure/transit_tube{ - icon_state = "E-W-Pass" - }, -/turf/open/space, -/area/space) "csq" = ( /obj/machinery/computer/security/telescreen{ desc = "Used for watching the turbine vent."; @@ -53771,15 +52303,6 @@ /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /turf/open/space, /area/space) -"cst" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/engine/engineering) "csu" = ( /obj/structure/closet/firecloset, /turf/open/floor/plasteel/black, @@ -53829,11 +52352,6 @@ }, /turf/open/floor/plating, /area/engine/supermatter) -"csB" = ( -/obj/item/wirecutters, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) "csC" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel/black, @@ -53850,26 +52368,6 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/aft) -"csF" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA" - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"csG" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/engine/engineering) "csH" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -53888,28 +52386,6 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"csJ" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"csK" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"csL" = ( -/obj/structure/transit_tube{ - icon_state = "D-NE" - }, -/turf/open/space, -/area/space) "csM" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/yellow/visible, @@ -53944,23 +52420,12 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"csQ" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/black, -/area/engine/engineering) "csR" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/engine, /area/engine/engineering) -"csS" = ( -/obj/item/weldingtool, -/turf/open/space, -/area/space/nearstation) "csT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/landmark/xmastree, @@ -54040,16 +52505,6 @@ /obj/machinery/atmospherics/pipe/simple/yellow/visible, /turf/open/space, /area/space) -"cte" = ( -/obj/item/device/radio/off, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"ctf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) "ctg" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, @@ -54086,30 +52541,6 @@ }, /turf/closed/wall, /area/ai_monitored/turret_protected/aisat_interior) -"ctl" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"ctm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"ctn" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) "cto" = ( /obj/machinery/door/airlock/hatch{ name = "MiniSat Foyer"; @@ -54227,22 +52658,6 @@ /obj/machinery/power/tracker, /turf/open/floor/plasteel/airless/solarpanel, /area/solar/starboard/aft) -"ctC" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Singularity West"; - dir = 1; - network = list("Singularity") - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"ctD" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Singularity East"; - dir = 1; - network = list("Singularity") - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) "ctE" = ( /obj/machinery/teleport/hub, /turf/open/floor/plating, @@ -54544,9 +52959,7 @@ name = "Mix to MiniSat" }, /obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating{ - icon_plating = "warnplate" - }, +/turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/atmos) "cuo" = ( /obj/machinery/portable_atmospherics/canister/air, @@ -54570,9 +52983,7 @@ pixel_y = 30 }, /obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating{ - icon_plating = "warnplate" - }, +/turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/atmos) "cuq" = ( /obj/machinery/atmospherics/components/binary/pump{ @@ -54581,9 +52992,7 @@ on = 0 }, /obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating{ - icon_plating = "warnplate" - }, +/turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/atmos) "cur" = ( /obj/structure/showcase/cyborg/old{ @@ -54609,19 +53018,6 @@ dir = 4 }, /area/ai_monitored/turret_protected/aisat_interior) -"cut" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "cuu" = ( /obj/structure/cable{ d1 = 1; @@ -54644,15 +53040,11 @@ pixel_y = 30 }, /obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating{ - icon_plating = "warnplate" - }, +/turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/service) "cuw" = ( /obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating{ - icon_plating = "warnplate" - }, +/turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/service) "cux" = ( /obj/structure/table, @@ -56062,11 +54454,6 @@ "cxu" = ( /turf/closed/wall/mineral/titanium, /area/shuttle/transport) -"cxv" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/open/floor/plating, -/area/shuttle/transport) "cxw" = ( /obj/effect/spawner/structure/window/shuttle, /turf/open/floor/plating, @@ -56092,10 +54479,6 @@ /obj/structure/window/reinforced, /turf/open/floor/plating/airless, /area/shuttle/transport) -"cxz" = ( -/obj/machinery/computer/shuttle/ferry/request, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/transport) "cxA" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -56162,10 +54545,6 @@ }, /turf/open/floor/plating, /area/security/main) -"cxH" = ( -/obj/structure/closet/crate, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/transport) "cxI" = ( /obj/structure/chair{ dir = 1 @@ -56730,24 +55109,6 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"czh" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; - name = "Engineering External Access"; - req_access = null; - req_access_txt = "10;13" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/engine/engineering) -"czi" = ( -/obj/machinery/door/airlock/titanium, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"czj" = ( -/obj/machinery/door/airlock/glass, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) "czk" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 8; @@ -56780,9 +55141,6 @@ /obj/structure/light_construct, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"czo" = ( -/turf/open/space, -/area/shuttle/syndicate) "czp" = ( /obj/structure/window/reinforced{ dir = 1 @@ -56790,12 +55148,6 @@ /obj/structure/shuttle/engine/heater, /turf/open/floor/plating/airless, /area/shuttle/supply) -"czq" = ( -/obj/machinery/porta_turret/syndicate{ - dir = 5 - }, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) "czr" = ( /obj/machinery/portable_atmospherics/scrubber, /turf/open/floor/mineral/titanium, @@ -56812,16 +55164,6 @@ /obj/structure/shuttle/engine/propulsion/burst/right, /turf/open/floor/plating/airless, /area/shuttle/supply) -"czv" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 6 - }, -/turf/closed/wall/mineral/plastitanium{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) "czw" = ( /obj/item/device/multitool, /turf/open/floor/mineral/titanium, @@ -56836,15 +55178,6 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"czz" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 10 - }, -/turf/closed/wall/mineral/plastitanium{ - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) "czA" = ( /obj/item/scalpel, /turf/open/floor/mineral/titanium, @@ -56865,12 +55198,6 @@ /obj/structure/light_construct, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"czD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) "czE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 @@ -57020,17 +55347,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"czV" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) "czW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -57150,22 +55466,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cAj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cAk" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) "cAl" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -57187,14 +55487,6 @@ /obj/machinery/power/supermatter_shard/crystal/engine, /turf/open/floor/engine, /area/engine/supermatter) -"cAn" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) "cAo" = ( /obj/structure/cable{ d1 = 1; @@ -57274,35 +55566,6 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"cAv" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cAw" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cAx" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) "cAy" = ( /obj/structure/closet/secure_closet/freezer/kitchen/maintenance, /turf/open/floor/plating, @@ -57431,19 +55694,6 @@ }, /turf/open/floor/plating, /area/maintenance/fore/secondary) -"cAO" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) "cAP" = ( /obj/structure/sign/fire, /turf/closed/wall/r_wall, @@ -57691,13 +55941,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/hallway/primary/central) -"cBs" = ( -/obj/structure/table/optable{ - name = "Robotics Operating Table" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) "cBt" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -57896,15 +56139,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/engine/air, /area/engine/atmos) -"cBQ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/engine/engineering) "cBR" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -58001,9 +56235,9 @@ /turf/open/floor/plasteel/grimy, /area/chapel/office) "cCa" = ( -/obj/structure/table/wood/poker, -/turf/open/floor/wood, -/area/maintenance/bar) +/obj/item/clothing/head/hardhat, +/turf/open/floor/plating/airless, +/area/space/nearstation) "cCb" = ( /obj/structure/table, /obj/item/stack/cable_coil{ @@ -58127,10 +56361,6 @@ /obj/machinery/deepfryer, /turf/open/floor/plasteel/cafeteria, /area/crew_quarters/kitchen) -"cCr" = ( -/obj/machinery/deepfryer, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) "cCs" = ( /obj/structure/mining_shuttle_beacon{ dir = 4 @@ -58150,9 +56380,6 @@ /obj/machinery/door/airlock/external, /turf/open/floor/pod/dark, /area/shuttle/transport) -"cCv" = ( -/turf/open/floor/pod/light, -/area/space) "cCw" = ( /obj/machinery/door/airlock/titanium, /turf/open/floor/pod/light, @@ -58175,9 +56402,6 @@ /obj/machinery/door/airlock/external, /turf/open/floor/pod/light, /area/shuttle/transport) -"cCA" = ( -/turf/open/floor/pod/light, -/area/space) "cCB" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 10 @@ -58242,37 +56466,6 @@ /obj/machinery/atmospherics/pipe/simple/orange/visible, /turf/open/space, /area/space/nearstation) -"cCK" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"cCL" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"cCM" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"cCN" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"cCO" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) "cCP" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/orange/visible{ @@ -58287,13 +56480,6 @@ }, /turf/open/space, /area/space/nearstation) -"cCR" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 10 - }, -/turf/open/space, -/area/space/nearstation) "cCS" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible, /obj/structure/lattice, @@ -58307,25 +56493,10 @@ /obj/structure/closet/firecloset, /turf/open/floor/plasteel, /area/engine/engineering) -"cCU" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"cCV" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) "cCW" = ( /obj/machinery/portable_atmospherics/canister/freon, /turf/open/floor/plating, /area/engine/engineering) -"cCX" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) "cCY" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -58338,41 +56509,11 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"cCZ" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"cDa" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"cDb" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"cDc" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"cDd" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) "cDe" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/closet/radiation, /turf/open/floor/plasteel, /area/engine/engineering) -"cDf" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) "cDg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -58465,11 +56606,6 @@ /obj/machinery/vending/engivend, /turf/open/floor/plasteel, /area/engine/engineering) -"cDn" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) "cDo" = ( /obj/structure/cable{ d1 = 1; @@ -58491,14 +56627,6 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"cDq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/engine, -/area/engine/engineering) "cDr" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 @@ -58536,11 +56664,6 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"cDu" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) "cDv" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ @@ -58584,11 +56707,6 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"cDA" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) "cDB" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -58685,42 +56803,12 @@ }, /turf/closed/wall/r_wall, /area/engine/engineering) -"cDM" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) "cDN" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 4 }, /turf/closed/wall, /area/engine/engineering) -"cDO" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/closed/wall, -/area/engine/engineering) -"cDP" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/closed/wall, -/area/engine/engineering) -"cDQ" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/closed/wall, -/area/engine/engineering) -"cDR" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) "cDS" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/orange/visible{ @@ -58728,41 +56816,6 @@ }, /turf/open/space, /area/space) -"cDT" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space, -/area/space) -"cDU" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space, -/area/space) -"cDV" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space, -/area/space) -"cDW" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"cDX" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) "cDY" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/orange/visible{ @@ -58787,26 +56840,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel/black, /area/engine/engineering) -"cEb" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/black, -/area/engine/engineering) -"cEc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/engine/engineering) "cEd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ @@ -58869,9 +56902,6 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"cEj" = ( -/turf/open/floor/plasteel/black, -/area/engine/engineering) "cEk" = ( /obj/machinery/firealarm{ dir = 4; @@ -58886,40 +56916,6 @@ /obj/structure/lattice, /turf/open/space, /area/space) -"cEm" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space) -"cEn" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cEo" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space) -"cEp" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space) -"cEq" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space) "cEr" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ @@ -59073,41 +57069,6 @@ }, /turf/open/space, /area/space) -"cEF" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space) -"cEG" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space) -"cEH" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space) -"cEI" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space) -"cEJ" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space) "cEK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 @@ -59144,48 +57105,6 @@ /obj/item/tank/internals/plasma, /turf/open/floor/plating, /area/engine/supermatter) -"cEN" = ( -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/engine, -/area/engine/engineering) -"cEO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cEP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"cEQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"cER" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cES" = ( -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/open/floor/engine, -/area/engine/engineering) "cET" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "engsm"; @@ -59220,9 +57139,6 @@ /obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/open/floor/engine, /area/engine/engineering) -"cEV" = ( -/turf/open/floor/plasteel/black, -/area/engine/engineering) "cEW" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 @@ -59232,30 +57148,6 @@ }, /turf/open/floor/plasteel/black, /area/engine/engineering) -"cEX" = ( -/turf/closed/wall/r_wall, -/area/space) -"cEY" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cEZ" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cFa" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) "cFb" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 @@ -59278,14 +57170,6 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"cFd" = ( -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/engine, -/area/engine/engineering) "cFe" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /obj/machinery/atmospherics/pipe/simple/general/visible{ @@ -59293,18 +57177,6 @@ }, /turf/open/floor/plating, /area/engine/supermatter) -"cFf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"cFg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) "cFh" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /obj/machinery/atmospherics/pipe/simple/general/visible{ @@ -59312,14 +57184,6 @@ }, /turf/open/floor/plating, /area/engine/supermatter) -"cFi" = ( -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/open/floor/engine, -/area/engine/engineering) "cFj" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "engsm"; @@ -59350,9 +57214,6 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"cFl" = ( -/turf/closed/wall/r_wall, -/area/space) "cFm" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /obj/structure/lattice, @@ -59372,41 +57233,6 @@ /obj/structure/lattice, /turf/open/space, /area/space) -"cFp" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/space, -/area/space) -"cFq" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cFr" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/space, -/area/space) -"cFs" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cFt" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/space, -/area/space) "cFu" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -59417,18 +57243,10 @@ /obj/machinery/meter, /turf/open/floor/engine, /area/engine/engineering) -"cFv" = ( -/obj/machinery/status_display, -/turf/closed/wall/r_wall, -/area/engine/engineering) "cFw" = ( /obj/structure/sign/electricshock, /turf/closed/wall/r_wall, /area/engine/supermatter) -"cFx" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall/r_wall, -/area/engine/engineering) "cFy" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 4 @@ -59449,39 +57267,6 @@ /obj/machinery/atmospherics/pipe/manifold/general/visible, /turf/open/floor/plasteel/black, /area/engine/engineering) -"cFB" = ( -/turf/closed/wall/r_wall, -/area/space) -"cFC" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space, -/area/space) -"cFD" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space, -/area/space) -"cFE" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space, -/area/space) -"cFF" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space, -/area/space) -"cFG" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space, -/area/space) -"cFH" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space, -/area/space) "cFI" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -59556,18 +57341,6 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"cFQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) "cFR" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -59601,44 +57374,6 @@ }, /turf/open/floor/plasteel/black, /area/engine/engineering) -"cFV" = ( -/turf/closed/wall/r_wall, -/area/space) -"cFW" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cFX" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space, -/area/space) -"cFY" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cFZ" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space, -/area/space) -"cGa" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cGb" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space, -/area/space) -"cGc" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice, -/turf/open/space, -/area/space) "cGd" = ( /obj/structure/closet/crate/bin, /obj/effect/turf_decal/stripes/line{ @@ -59704,29 +57439,6 @@ /obj/structure/closet/secure_closet/engineering_personal, /turf/open/floor/plasteel/black, /area/engine/engineering) -"cGm" = ( -/turf/closed/wall/r_wall, -/area/space) -"cGn" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cGo" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cGp" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cGq" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice, -/turf/open/space, -/area/space) "cGr" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 @@ -59759,13 +57471,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/engine, /area/engine/engineering) -"cGw" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) "cGx" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ @@ -59773,37 +57478,6 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"cGy" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) -"cGz" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) -"cGA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) -"cGB" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) "cGC" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -59829,15 +57503,6 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"cGF" = ( -/turf/closed/wall/r_wall, -/area/space) -"cGG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) "cGH" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -59858,19 +57523,6 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"cGJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Laser Room"; - req_access_txt = "10" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/engine/engineering) "cGK" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -59889,30 +57541,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /turf/open/floor/plating/airless, /area/engine/engineering) -"cGN" = ( -/turf/closed/wall/r_wall, -/area/space) -"cGO" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cGP" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cGQ" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) "cGR" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 @@ -59943,20 +57571,6 @@ }, /turf/open/floor/plasteel/black, /area/engine/engineering) -"cGW" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/black, -/area/engine/engineering) -"cGX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/engineering) "cGY" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -60017,13 +57631,6 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"cHf" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/black, -/area/engine/engineering) "cHg" = ( /obj/structure/cable{ d1 = 1; @@ -60037,23 +57644,6 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"cHh" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/emitter/anchored{ - dir = 4; - state = 2 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cHi" = ( -/obj/structure/reflector/box/anchored{ - dir = 1 - }, -/turf/open/floor/plasteel/black, -/area/engine/engineering) "cHj" = ( /obj/structure/cable{ icon_state = "0-4"; @@ -60065,26 +57655,10 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"cHk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/engineering) "cHl" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/r_wall, /area/engine/engineering) -"cHm" = ( -/turf/closed/wall/r_wall, -/area/space) "cHn" = ( /obj/structure/cable{ d1 = 1; @@ -60106,13 +57680,6 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"cHq" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering) "cHr" = ( /obj/structure/cable{ d1 = 1; @@ -60126,41 +57693,6 @@ /obj/item/crowbar/large, /turf/open/floor/plating, /area/engine/engineering) -"cHt" = ( -/turf/closed/wall/r_wall, -/area/space) -"cHu" = ( -/turf/closed/wall/r_wall, -/area/space) -"cHv" = ( -/turf/closed/wall/r_wall, -/area/space) -"cHw" = ( -/turf/closed/wall/r_wall, -/area/space) -"cHx" = ( -/turf/closed/wall/r_wall, -/area/space) -"cHy" = ( -/turf/closed/wall/r_wall, -/area/space) -"cHz" = ( -/turf/closed/wall/r_wall, -/area/space) -"cHA" = ( -/turf/closed/wall/r_wall, -/area/space) -"cHB" = ( -/turf/closed/wall/r_wall, -/area/space) -"cHC" = ( -/obj/structure/chair/stool{ - desc = "Apply butt, tactically."; - name = "tactical stool"; - pixel_y = 8 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "cHD" = ( /obj/structure/cable{ d1 = 1; @@ -60429,12 +57961,6 @@ }, /turf/open/floor/plasteel, /area/science/robotics/lab) -"cHY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/science/robotics/lab) "cHZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -60503,1217 +58029,6 @@ }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"cIi" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; - name = "Port Docking Bay 1" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"cIj" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; - name = "Port Docking Bay 1" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"cIk" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; - name = "Port Docking Bay 1" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"cIl" = ( -/obj/machinery/computer/med_data/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cIm" = ( -/obj/machinery/computer/crew/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cIn" = ( -/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cIo" = ( -/obj/machinery/computer/shuttle/syndicate, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cIp" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cIq" = ( -/obj/machinery/computer/camera_advanced/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cIr" = ( -/obj/machinery/computer/secure_data/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cIs" = ( -/obj/structure/table/reinforced, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/item/clipboard, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/folder/red, -/obj/item/toy/figure/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cIt" = ( -/obj/structure/chair/office/dark{ - dir = 8; - name = "tactical swivel chair" - }, -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"cIu" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"cIv" = ( -/obj/structure/chair/office/dark{ - dir = 1; - name = "tactical swivel chair" - }, -/obj/machinery/button/door{ - id = "syndieshutters"; - name = "Cockpit View Control"; - pixel_x = 32; - pixel_y = 32; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"cIw" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"cIx" = ( -/obj/structure/chair/office/dark{ - dir = 4; - name = "tactical swivel chair" - }, -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"cIy" = ( -/obj/structure/table/reinforced, -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/obj/item/storage/fancy/donut_box, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cIz" = ( -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cIA" = ( -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cIB" = ( -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cIC" = ( -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cID" = ( -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cIE" = ( -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cIF" = ( -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cIG" = ( -/obj/machinery/status_display, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"cIH" = ( -/obj/machinery/door/airlock/hatch{ - name = "Cockpit"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cII" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil/white, -/obj/item/stack/cable_coil/white, -/obj/item/crowbar/red, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cIJ" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cIK" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/handcuffs{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/zipties, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cIL" = ( -/obj/structure/chair{ - dir = 4; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cIM" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"cIN" = ( -/obj/structure/chair{ - dir = 8; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cIO" = ( -/obj/structure/chair{ - dir = 4; - name = "tactical chair" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cIP" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"cIQ" = ( -/obj/structure/chair{ - dir = 8; - name = "tactical chair" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cIR" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 5 - }, -/area/shuttle/syndicate) -"cIS" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cIT" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cIU" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cIV" = ( -/obj/structure/chair{ - dir = 4; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cIW" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"cIX" = ( -/obj/structure/chair{ - dir = 8; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cIY" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 4 - }, -/area/shuttle/syndicate) -"cIZ" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cJa" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cJb" = ( -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cJc" = ( -/obj/structure/chair{ - dir = 4; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cJd" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cJe" = ( -/obj/structure/chair{ - dir = 8; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cJf" = ( -/obj/machinery/door/poddoor{ - id = "smindicate"; - name = "outer blast door" - }, -/obj/machinery/button/door{ - id = "smindicate"; - name = "external door control"; - pixel_x = -26; - req_access_txt = "150" - }, -/obj/docking_port/mobile{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate"; - name = "syndicate infiltrator"; - port_direction = 1; - roundstart_move = "syndicate_away"; - width = 18 - }, -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate_nw"; - name = "northwest of station"; - turf_type = /turf/open/space; - width = 18 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"cJg" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 4 - }, -/area/shuttle/syndicate) -"cJh" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cJi" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cJj" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cJk" = ( -/obj/machinery/door/airlock/external{ - name = "Ready Room"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cJl" = ( -/obj/item/storage/toolbox/syndicate, -/obj/item/crowbar/red, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/podhatch{ - dir = 10 - }, -/area/shuttle/syndicate) -"cJm" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate) -"cJn" = ( -/obj/structure/chair{ - name = "tactical chair" - }, -/turf/open/floor/plasteel/podhatch{ - dir = 6 - }, -/area/shuttle/syndicate) -"cJo" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 4 - }, -/area/shuttle/syndicate) -"cJp" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cJq" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cJr" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cJs" = ( -/obj/machinery/door/airlock/external{ - name = "E.V.A. Gear Storage"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cJt" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cJu" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cJv" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cJw" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cJx" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cJy" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cJz" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 6 - }, -/area/shuttle/syndicate) -"cJA" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cJB" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cJC" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cJD" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cJE" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"cJF" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cJG" = ( -/obj/structure/chair{ - dir = 1; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cJH" = ( -/obj/structure/chair{ - dir = 1; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cJI" = ( -/obj/structure/rack, -/obj/item/clothing/suit/space/syndicate/black/red, -/obj/item/clothing/head/helmet/space/syndicate/black/red, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cJJ" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"cJK" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cJL" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"cJM" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cJN" = ( -/obj/machinery/status_display, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"cJO" = ( -/obj/machinery/sleeper/syndie{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cJP" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cJQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cJR" = ( -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = -3 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 4; - pixel_y = 1 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 2; - pixel_y = 8 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cJS" = ( -/obj/structure/table/reinforced, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cJT" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cJU" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"cJV" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cJW" = ( -/obj/item/stock_parts/cell/high{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stock_parts/cell/high, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cJX" = ( -/obj/item/screwdriver{ - pixel_y = 9 - }, -/obj/item/device/assembly/voice{ - pixel_y = 3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cJY" = ( -/obj/item/wrench, -/obj/item/device/assembly/infra, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cJZ" = ( -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cKa" = ( -/obj/item/weldingtool/largetank{ - pixel_y = 3 - }, -/obj/item/device/multitool, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cKb" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cKc" = ( -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cKd" = ( -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cKe" = ( -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cKf" = ( -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cKg" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cKh" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"cKi" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cKj" = ( -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cKk" = ( -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cKl" = ( -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cKm" = ( -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cKn" = ( -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cKo" = ( -/obj/machinery/sleeper/syndie{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cKp" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cKq" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 9 - }, -/area/shuttle/syndicate) -"cKr" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"cKs" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"cKt" = ( -/obj/machinery/door/airlock/hatch{ - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cKu" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"cKv" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"cKw" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"cKx" = ( -/obj/machinery/door/airlock/hatch{ - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cKy" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"cKz" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"cKA" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 5 - }, -/area/shuttle/syndicate) -"cKB" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cKC" = ( -/obj/structure/closet/syndicate/personal, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cKD" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cKE" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cKF" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 10 - }, -/area/shuttle/syndicate) -"cKG" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate) -"cKH" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate) -"cKI" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate) -"cKJ" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate) -"cKK" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate) -"cKL" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate) -"cKM" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate) -"cKN" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 6 - }, -/area/shuttle/syndicate) -"cKO" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cKP" = ( -/obj/structure/closet/syndicate/nuclear, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cKQ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/bodypart/r_arm/robot, -/obj/item/bodypart/l_arm/robot, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cKR" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Surgery"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cKS" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cKT" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/brute, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cKU" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cKV" = ( -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cKW" = ( -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cKX" = ( -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cKY" = ( -/obj/item/device/sbeacondrop/bomb{ - pixel_y = 5 - }, -/obj/item/device/sbeacondrop/bomb, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cKZ" = ( -/obj/item/grenade/syndieminibomb{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/grenade/syndieminibomb{ - pixel_x = -1 - }, -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cLa" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cLb" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Technological Storage"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cLc" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/device/aicard, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cLd" = ( -/obj/item/surgicaldrill, -/obj/item/circular_saw, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cLe" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cLf" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 30 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cLg" = ( -/obj/machinery/nuclearbomb/syndicate, -/obj/machinery/door/window{ - dir = 1; - name = "Theatre Stage"; - req_access_txt = "0" - }, -/turf/open/floor/circuit/red, -/area/shuttle/syndicate) -"cLh" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cLi" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cLj" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cLk" = ( -/obj/item/cautery, -/obj/item/scalpel, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cLl" = ( -/obj/structure/table/optable, -/obj/item/surgical_drapes, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cLm" = ( -/obj/item/retractor, -/obj/item/hemostat, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cLn" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"cLo" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"cLp" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"cLq" = ( -/obj/machinery/recharge_station, -/turf/open/floor/circuit/red, -/area/shuttle/syndicate) -"cLr" = ( -/obj/machinery/telecomms/allinone{ - intercept = 1 - }, -/turf/open/floor/circuit/red, -/area/shuttle/syndicate) -"cLs" = ( -/obj/machinery/recharge_station, -/turf/open/floor/circuit/red, -/area/shuttle/syndicate) -"cLt" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"cLu" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"cLv" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"cLw" = ( -/obj/structure/shuttle/engine/propulsion/left, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"cLx" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"cLy" = ( -/obj/structure/shuttle/engine/propulsion/right, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"cLz" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"cLA" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"cLB" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"cLC" = ( -/obj/structure/shuttle/engine/propulsion/left, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"cLD" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"cLE" = ( -/obj/structure/shuttle/engine/propulsion/right, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"cLF" = ( -/obj/structure/shuttle/engine/propulsion/left, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"cLG" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"cLH" = ( -/obj/structure/shuttle/engine/propulsion/right, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) "cLI" = ( /obj/machinery/light{ dir = 1 @@ -61854,26 +58169,12 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cMg" = ( -/obj/structure/light_construct, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) "cMh" = ( /obj/structure/light_construct/small{ dir = 8 }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cMi" = ( -/obj/structure/light_construct, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cMj" = ( -/obj/structure/light_construct{ - dir = 1 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) "cMk" = ( /obj/structure/light_construct/small{ dir = 1 @@ -61890,62 +58191,6 @@ /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, /area/engine/engineering) -"cMn" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) -"cMo" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) -"cMp" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) -"cMq" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) -"cMr" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) -"cMs" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) -"cMt" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) -"cMu" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) -"cMv" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) -"cMw" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) -"cMx" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) -"cMy" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) -"cMz" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) -"cMA" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) "cMB" = ( /obj/structure/window/shuttle, /obj/structure/grille, @@ -61970,15 +58215,6 @@ "cMD" = ( /turf/closed/wall/r_wall, /area/engine/supermatter) -"cME" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cMF" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cMG" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) "cMH" = ( /turf/open/floor/engine, /area/engine/supermatter) @@ -61990,33 +58226,10 @@ }, /turf/open/floor/engine, /area/engine/supermatter) -"cMJ" = ( -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"cMK" = ( -/turf/open/floor/engine, -/area/engine/supermatter) -"cML" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cMM" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) "cMN" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, /area/engine/supermatter) -"cMO" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cMP" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) "cMQ" = ( /obj/structure/cable{ icon_state = "0-2"; @@ -62028,105 +58241,6 @@ }, /turf/open/floor/plasteel/airless/solarpanel, /area/solar/starboard/aft) -"cMR" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cMS" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cMT" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cMU" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cMV" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cMW" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cMX" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cMY" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cMZ" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) "cNa" = ( /obj/structure/cable, /obj/machinery/power/solar{ @@ -62135,281 +58249,13 @@ }, /turf/open/floor/plasteel/airless/solarpanel, /area/solar/starboard/aft) -"cNb" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNc" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNd" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNe" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNf" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNg" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNh" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNi" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNj" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNk" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNl" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNm" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNn" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNo" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNp" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNq" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNr" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNs" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNt" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNu" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNv" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNw" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNx" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNy" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNz" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNA" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNB" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cNC" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cND" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) "cNE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, /area/crew_quarters/bar) -"cNF" = ( -/turf/closed/wall, -/area/quartermaster/sorting) "cNG" = ( /turf/open/floor/plasteel, /area/quartermaster/sorting) -"cNH" = ( -/turf/open/floor/plasteel, -/area/quartermaster/sorting) "cNI" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -62420,12 +58266,6 @@ }, /turf/open/floor/plasteel, /area/quartermaster/sorting) -"cNK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) "cNL" = ( /obj/machinery/power/apc{ dir = 1; @@ -62463,25 +58303,6 @@ }, /turf/open/floor/plasteel, /area/quartermaster/sorting) -"cNO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"cNP" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"cNQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/sorting) "cNR" = ( /obj/structure/cable{ d1 = 4; @@ -62573,103 +58394,13 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cOa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "cOb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cOc" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cOd" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) "cOe" = ( /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cOf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOh" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cOi" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOj" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOk" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cOl" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOn" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOo" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOp" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cOq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOs" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cOt" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cOu" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cOv" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) "cOw" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -62679,206 +58410,21 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cOy" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cOz" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cOA" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cOB" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cOC" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cOD" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cOE" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOF" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOG" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cOH" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cOI" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOJ" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cOK" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cOL" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cOM" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cON" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cOO" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cOP" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cOQ" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOR" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOS" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "cOT" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cOU" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cOV" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOW" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOX" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cOY" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "cPa" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cPb" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPc" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPd" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPe" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPf" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPh" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPi" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPj" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPk" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPm" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPn" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPo" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPp" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPq" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPr" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPs" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPt" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPu" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPv" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPw" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPy" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPz" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "cPA" = ( /obj/machinery/atmospherics/components/binary/valve{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cPB" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPC" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPD" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPE" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPF" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPG" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "cPH" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 4; @@ -62893,153 +58439,12 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cPJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPK" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPL" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPM" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPN" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPO" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPP" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPQ" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPR" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPS" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPT" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPU" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPV" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPW" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPX" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPY" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cPZ" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQa" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQb" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQc" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQd" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQe" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQf" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQg" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQi" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQj" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQk" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQl" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQm" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQn" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQo" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQp" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQq" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQr" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQs" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQt" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQu" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQv" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) "cQw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall, /area/maintenance/starboard/aft) -"cQx" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQy" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQz" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/starboard/aft) "cQB" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -63054,403 +58459,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cQC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQI" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQJ" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQK" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQL" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQM" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQN" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQO" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQQ" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQR" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQS" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQT" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQU" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQV" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQW" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQX" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cQY" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQZ" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRa" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRc" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRd" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRe" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRf" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRg" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRh" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRi" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRj" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRk" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRl" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRm" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRn" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRo" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRp" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRq" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRr" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRs" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRt" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRu" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRv" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRw" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRx" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRy" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRz" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRA" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRB" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRC" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRG" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRH" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRI" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRJ" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRK" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRL" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRM" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRN" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRO" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRP" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRQ" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRR" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRS" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRT" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRU" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRV" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRW" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRX" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRY" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cRZ" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cSa" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cSb" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cSc" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cSd" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cSe" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cSf" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cSg" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cSh" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cSi" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cSj" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cSk" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cSl" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cSm" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cSn" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cSo" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cSp" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cSq" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cSr" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cSs" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cSt" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cSu" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cSv" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cSw" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cSx" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cSy" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) "cSz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -63463,24 +58471,6 @@ }, /turf/closed/wall, /area/security/courtroom) -"cSB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/courtroom) -"cSC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/courtroom) -"cSD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/courtroom) "cSE" = ( /obj/structure/cable{ d1 = 4; @@ -63757,78 +58747,17 @@ "cTg" = ( /turf/closed/wall/mineral/titanium, /area/shuttle/mining) -"cTh" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/mining) "cTi" = ( /obj/effect/spawner/structure/window/shuttle, /turf/open/floor/plating, /area/shuttle/mining) -"cTj" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/mining) -"cTk" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/mining) -"cTl" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/mining) -"cTm" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/mining) -"cTn" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/mining) "cTo" = ( /turf/open/floor/mineral/titanium/blue, /area/shuttle/mining) -"cTp" = ( -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/mining) -"cTq" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/mining) -"cTr" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/mining) -"cTs" = ( -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/mining) -"cTt" = ( -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/mining) -"cTu" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/mining) -"cTv" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/mining) -"cTw" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/mining) "cTx" = ( /obj/structure/closet/crate, /turf/open/floor/mineral/titanium/blue, /area/shuttle/mining) -"cTy" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/mining) -"cTz" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/mining) -"cTA" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/mining) -"cTB" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/mining) -"cTC" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/mining) "cTD" = ( /obj/structure/cable{ d1 = 1; @@ -63860,18 +58789,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cTG" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cTH" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) "cTI" = ( /obj/machinery/door/airlock/maintenance/abandoned{ req_access_txt = "12" @@ -63927,16 +58844,6 @@ }, /turf/open/floor/plasteel/black, /area/medical/morgue) -"cTN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) "cTO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -63951,48 +58858,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/medical/morgue) -"cTP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"cTQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"cTR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) "cTS" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -64006,803 +58871,47 @@ }, /turf/open/floor/plating, /area/maintenance/department/medical/morgue) -"cTT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"cTU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"cTV" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) "cTW" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) +/obj/machinery/computer/camera_advanced/shuttle_docker/whiteship, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) "cTX" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"cTY" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"cTZ" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"cUa" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"cUb" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"cUc" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"cUd" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"cUe" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"cUf" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"cUg" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"cUh" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"cUi" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"cUj" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"cUk" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"cUl" = ( -/obj/machinery/door/airlock{ - id_tag = "MaintDorm2"; - name = "Maintenance Dorm 2" - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cUm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cUn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cUo" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"cUp" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cUq" = ( -/obj/machinery/light/small, -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 5 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cUr" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cUs" = ( -/turf/closed/wall, -/area/maintenance/bar) -"cUt" = ( -/turf/closed/wall, -/area/maintenance/bar) -"cUu" = ( -/turf/closed/wall, -/area/maintenance/bar) -"cUv" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/bar) -"cUw" = ( -/turf/closed/wall, -/area/maintenance/bar) -"cUx" = ( -/turf/closed/wall, -/area/maintenance/bar) -"cUy" = ( -/turf/closed/wall, -/area/maintenance/bar) -"cUz" = ( -/turf/closed/wall, -/area/maintenance/bar) -"cUA" = ( -/turf/open/floor/wood, -/area/maintenance/bar) -"cUB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"cUC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"cUD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar) -"cUE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, /obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" + icon_state = "0-2"; + d2 = 2 }, -/turf/open/floor/wood, -/area/maintenance/bar) -"cUF" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/bar) -"cUG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cUH" = ( -/turf/closed/wall, -/area/maintenance/bar) -"cUI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"cUJ" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"cUK" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"cUL" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"cUM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/bar) -"cUN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/bar) -"cUO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/bar) -"cUP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/bar) -"cUQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/bar) -"cUR" = ( -/turf/closed/wall, -/area/maintenance/bar) -"cUS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"cUT" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/bar) -"cUU" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/maintenance/bar) -"cUV" = ( -/obj/structure/table/wood, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar) -"cUW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"cUX" = ( -/obj/machinery/chem_dispenser/drinks/beer, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/bar) -"cUY" = ( -/turf/closed/wall, -/area/maintenance/bar) -"cUZ" = ( -/obj/item/restraints/handcuffs/fake, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears, -/turf/open/floor/plating, -/area/maintenance/bar) -"cVa" = ( -/obj/item/shard, -/obj/item/wirecutters, -/obj/item/wallframe/camera, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/bar) -"cVb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"cVc" = ( -/turf/closed/wall, -/area/maintenance/bar) -"cVd" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -30 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/bar) -"cVe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/maintenance/bar) -"cVf" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"cVg" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/bar) -"cVh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"cVi" = ( -/obj/machinery/vending/boozeomat, -/turf/open/floor/wood, -/area/maintenance/bar) -"cVj" = ( -/turf/closed/wall, -/area/maintenance/bar) -"cVk" = ( -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/item/crowbar, -/obj/item/device/electropack/shockcollar, -/turf/open/floor/plating, -/area/maintenance/bar) -"cVl" = ( -/obj/structure/bed, -/obj/item/bedsheet/grey, -/obj/effect/decal/cleanable/semen{ - desc = "Blech."; - name = "dried semen" - }, -/obj/effect/spawner/lootdrop/costume, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/bar) -"cVm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"cVn" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Incinerator Access"; - req_access_txt = "12" - }, -/obj/structure/barricade/wooden{ - name = "wooden barricade (CLOSED)" - }, -/turf/open/floor/plating, -/area/maintenance/bar) -"cVo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar) -"cVp" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"cVq" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"cVr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"cVs" = ( -/obj/machinery/chem_dispenser/drinks, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/bar) -"cVt" = ( -/turf/closed/wall, -/area/maintenance/bar) -"cVu" = ( -/obj/item/lighter/greyscale, -/obj/effect/decal/cleanable/semen{ - desc = "Blech."; - name = "dried semen" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/bar) -"cVv" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/decal/cleanable/blood/old, -/obj/item/device/assembly/signaler, -/turf/open/floor/plating, -/area/maintenance/bar) -"cVw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"cVx" = ( -/turf/closed/wall, -/area/maintenance/bar) -"cVy" = ( -/obj/effect/spawner/lootdrop/keg, -/turf/open/floor/wood, -/area/maintenance/bar) -"cVz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/maintenance/bar) -"cVA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/maintenance/bar) -"cVB" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/bar"; - dir = 2; - name = "Maintenance Bar APC"; - pixel_x = 1; - pixel_y = -24 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"cVC" = ( -/turf/closed/wall, -/area/maintenance/bar) -"cVD" = ( -/turf/closed/wall, -/area/maintenance/bar) -"cVE" = ( -/obj/structure/falsewall, -/turf/open/floor/plating, -/area/maintenance/bar) -"cVF" = ( -/turf/closed/wall, -/area/maintenance/bar) -"cVG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"cVH" = ( -/turf/closed/wall, -/area/maintenance/bar) -"cVI" = ( -/turf/closed/wall, -/area/maintenance/bar) -"cVJ" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/maintenance/bar) -"cVK" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/bar) -"cVL" = ( -/turf/closed/wall, -/area/maintenance/bar) -"cVM" = ( -/turf/closed/wall, -/area/maintenance/bar) -"cVN" = ( -/obj/machinery/vending/clothing, -/turf/open/floor/wood, -/area/maintenance/bar) -"cVO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"cVP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/maintenance/bar) -"cVQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/maintenance/bar) -"cVR" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/bar) -"cVS" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/bar) -"cVT" = ( -/obj/machinery/vending/autodrobe, -/turf/open/floor/wood, -/area/maintenance/bar) -"cVU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"cVV" = ( -/obj/structure/sign/poster/random{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"cVW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/maintenance/bar) -"cVX" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/bar) -"cVY" = ( -/obj/structure/table/wood/poker, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"cVZ" = ( -/obj/structure/table/wood/poker, -/obj/item/storage/pill_bottle/dice, -/turf/open/floor/wood, -/area/maintenance/bar) -"cWa" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar) -"cWb" = ( -/obj/structure/table/wood/bar, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"cWc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"cWd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"cWe" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"cWf" = ( -/obj/structure/table/wood/poker, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"cWg" = ( -/obj/structure/table/wood/poker, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"cWh" = ( -/obj/structure/table/wood/poker, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"cWi" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"cWj" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"cWk" = ( -/obj/structure/table/wood/bar, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/bar) -"cWl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"cWm" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar) -"cWn" = ( -/obj/structure/table/wood/poker, -/obj/item/coin/iron, -/turf/open/floor/wood, -/area/maintenance/bar) -"cWo" = ( -/obj/structure/table/wood/bar, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/sign/poster/random{ +/obj/machinery/shieldwallgen/xenobiologyaccess, +/obj/structure/sign/poster/official/safety_eye_protection{ pixel_x = 32 }, -/turf/open/floor/wood, -/area/maintenance/bar) -"cWp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"cWq" = ( -/obj/effect/spawner/lootdrop/keg, -/turf/open/floor/wood{ - icon_state = "wood-broken7" +/turf/open/floor/plating, +/area/science/xenobiology) +"cTY" = ( +/obj/structure/sign/poster/official/safety_internals{ + pixel_x = -32 }, -/area/maintenance/bar) -"cWr" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood{ - icon_state = "wood-broken" +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cTZ" = ( +/obj/effect/turf_decal/stripes/line{ + tag = "icon-warninglinecorner (NORTH)"; + icon_state = "warninglinecorner"; + dir = 1 }, -/area/maintenance/bar) -"cWs" = ( -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"cWt" = ( -/obj/machinery/vending/kink, -/turf/open/floor/wood, -/area/maintenance/bar) -"cWu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"cWv" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -31 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"cWw" = ( -/obj/structure/sign/poster/official/no_erp, -/turf/closed/wall, -/area/maintenance/bar) -"cWx" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -31 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"cWy" = ( -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"cWz" = ( -/obj/structure/chair/stool, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/turf/open/floor/wood, -/area/maintenance/bar) +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"Qlj" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate_nw"; + name = "northwest of station"; + turf_type = /turf/open/space +}, +/turf/open/space/basic, +/area/space) (1,1,1) = {" aaa @@ -76664,16 +70773,16 @@ aaa aaa aaa aaa -amO -aac -aac -aac -aac -aac -aac -aac -aac -clO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -76763,7 +70872,7 @@ aaa cyc cyy cyc -czy +cTW cyO cyi cyi @@ -76915,22 +71024,22 @@ aaa aaa aaa aaa -amO -aac -aac -aac -aac -aac -aac -cJO -cKb -cJO -cKD -cKQ -cLd -cLk -cLn -cLw +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -77172,22 +71281,22 @@ aaa aaa aaa aaa -aac -cIR -cIY -cIY -cIY -cJz -aac -cJr -cIz -cIJ -cIJ -cKR -cIJ -cLl -cLn -cLx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -77429,22 +71538,22 @@ aaa aaa aaa aaa -aac -cIJ -cIJ -cIJ -cIJ -cIJ -cJJ -cJQ -cIz -cKq -cKF -cKS -cLf -cLm -cLn -cLy +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -77679,29 +71788,29 @@ aaa aaa aaa aaa -amO -aac -aac -aac -clO aaa aaa -aac -cIJ -cIJ -cIJ -cIJ -cIJ -aac -cJR -cIz -cKr -cJm -cKT -aac -aac -aac -czv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -77755,7 +71864,7 @@ alU alU aCW amC -aud +asK alU alU atO @@ -77936,26 +72045,26 @@ aaa aaa aaa aaa -aac -cIl -cIs -cIz -aac -czz aaa -aac -cIU -cJb -cJj -cJr -cJC -aac -cJS -cIz -cKr -cJm -cKU -aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -78193,28 +72302,28 @@ aaa aaa aaa aaa -amP -cIm -cIt -cIz -aac -aac -aac -aac -aac -aac -aac -cJs -coh -aac -aac -aac -cKt -coh -aac -aac -aac -clO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -78450,28 +72559,28 @@ aaa aaa aaa aaa -amP -cIn -cIu -cIz -cIG -cII -cIL -cIO -cIL -cIL -coh -cIJ -cIJ -cIJ -cIJ -cKg -cKr -cJm -cIz -coh -cLn -cLw +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -78531,7 +72640,7 @@ amC axe ays alU -aAM +auT aBI aCY aEI @@ -78707,28 +72816,28 @@ aaa aaa aaa aaa -amP -cIo -cIv -cIz -cIH -cIJ -cIu -cIu -cIu -cIJ -cJk -cIJ -cIu -cIu -cIu -cIu -cKr -cJm -cIz -cLg -cLn -cLx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -78788,7 +72897,7 @@ avS amC amC alU -aAM +auT aBI aDc aEH @@ -78964,28 +73073,28 @@ aaa aaa aaa aaa -amP -cIp -cIu -cIz -aac -cIK -cIN -cIQ -cIN -cIN -coh -cIJ -cIJ -cIJ -cIJ -cKi -cKr -cJm -cIz -coh -cLn -cLy +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +Qlj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -79045,7 +73154,7 @@ bsU axf amC alU -aAM +auT aBI aDf aEK @@ -79221,28 +73330,28 @@ aaa aaa aaa aaa -amP -cIq -cIx -cIz -aac -aac -aac -cmp -aac -aac -aac -cof -coh -aac -aac -aac -cKt -coh -aac -aac -aac -cmE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -79478,26 +73587,26 @@ aaa aaa aaa aaa -aac -cIr -cIy -cIz -aac -czv aaa aaa aaa -aac -cJl -cIJ -cJG -aac -cJW -cIz -cKr -cJm -cKY -aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -79735,29 +73844,29 @@ aaa aaa aaa aaa -bJS -aac -aac -aac -cmE aaa aaa aaa aaa -cJf -cJm -cIJ -cJG -aac -cJX -cIz -cKr -cJm -cKZ -aac -aac -aac -czz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -80001,20 +74110,20 @@ aaa aaa aaa aaa -cni -cJn -cIJ -cJI -cIG -cJY -cIz -cKA -cKN -cKS -cIJ -cLq -cLn -cLw +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -80258,20 +74367,20 @@ aaa aaa aaa aaa -bJS -aac -aac -aac -aac -cJZ -cIz -cIJ -cIJ -cLb -cIJ -cLr -cLn -cLx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -80518,17 +74627,17 @@ aaa aaa aaa aaa -cnW -aac -cKa -cIz -cKC -cKP -cLc -cKi -cLq -cLn -cLy +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -80585,7 +74694,7 @@ avb aaH bOi atO -aud +asK azF aAT aBw @@ -80638,9 +74747,9 @@ aaa aaa aaa aaa -cTW aaa -aHr +aaa +aag aaa aaa aaa @@ -80776,16 +74885,16 @@ aaa aaa aaa aaa -bJS -aac -aac -aac -aac -aac -aac -aac -aac -cmE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -80842,7 +74951,7 @@ aaH bNb apQ atO -aud +asK azF aAS aFP @@ -80895,9 +75004,9 @@ aaa aaa aaa aaa -cTW aaa -aHr +aaa +aag aaa aaa aaa @@ -81099,7 +75208,7 @@ avU avb bOi atO -aud +asK azF aAU aBG @@ -81152,9 +75261,9 @@ aaa aaa aaa aaa -cTW aaa -aHr +aaa +aag aaa aaa aaa @@ -81356,7 +75465,7 @@ alU ali alU atO -aud +asK azF aAP aAP @@ -81409,9 +75518,9 @@ aaa aaa aaa aaa -cTW aaa -aHr +aaa +aag aaa aaa aaa @@ -81613,7 +75722,7 @@ amC amC amC axi -aud +asK azF azF azF @@ -81624,7 +75733,7 @@ azF azF azF aLE -aNn +aNm aOl aPA aQO @@ -81666,9 +75775,9 @@ aaa aaa aaa aaa -cTW aaa -aHr +aaa +aag aaa aaa aaa @@ -81881,7 +75990,7 @@ aHe aIN aKp aLE -aNn +aNm aOl aPA aQN @@ -81923,9 +76032,9 @@ aaa aaa aaa aaa -cTW aaa -aHr +aaa +aag aaa aaa aaa @@ -82180,9 +76289,9 @@ aaa aaa aaa aaa -cTW aaa -aHr +aaa +aag aaa aoV bZm @@ -82437,9 +76546,9 @@ aaa aaa aaa aaa -cTW aaa -aHr +aaa +aag aaa aoV bVz @@ -82694,9 +76803,9 @@ aaa aaa aaa aaa -cTW aaa -aHr +aaa +aag aaa bVw bVz @@ -82951,9 +77060,9 @@ aaa aaa aaa aaa -cTW aaa -aHr +aaa +aag aaa apQ bVz @@ -83208,9 +77317,9 @@ aaa aaa aaa aaa -cTW -cUj -aHr +aaa +aaa +aag aaa apQ bVz @@ -83465,10 +77574,10 @@ aaa aaf aaf aaf -cTW -cUj -aaf -cUj +aaa +aaa +aag +aaa bVx caf aoV @@ -83722,11 +77831,11 @@ aaa aaa aaa bCq +bCq +bCq bLv bCq -bCq -bCq -bCq +aoV cbj aoV bVw @@ -83981,8 +78090,8 @@ aaa bCq bJP bCq -bTs -cUp +bSn +bCq bCq cbj bLv @@ -84236,10 +78345,10 @@ cTg cTg aaa bCq -bHE -bCq -cUm -cUq +bPS +bRd +bPS +bPS bCq cbk bLv @@ -84496,7 +78605,7 @@ bLv bPR bRc bSo -cUr +bTs bCq bVy bLv @@ -84750,9 +78859,9 @@ bLt bMF aaa bCq -bHE -bCq -bCq +bPS +bRf +bSo bTu bCq bVB @@ -85007,9 +79116,9 @@ bLs cTg aaa bLv -bPU -bCq -bPS +bPT +bRe +bSo bTt bCq bVA @@ -85266,7 +79375,7 @@ aaa bCq bPV bCq -cUm +bCq bTw bCq bVD @@ -85521,10 +79630,10 @@ bGi aoV aoV bCq -bPW -cUl +bPU +bHE bSp -cUr +bTv bCq bVC bWx @@ -85778,10 +79887,10 @@ bGi aoV aoV bCq -cUi +bPW bCq bCq -bTu +bTy bCq bVF bWA @@ -86036,7 +80145,7 @@ aoV aoV bCq bHE -bPU +bHE bSq bTx bCq @@ -86295,20 +80404,20 @@ bCq bPY cOw bCq -cUs -cUs -cUs -cUs -cUs -cVn -cUs -cUs -cUs -cUs -cUs -cUs -cUs -cUs +bCq +bCq +bCq +bCq +bCq +bYy +bCq +bCq +bLv +bCq +bCq +bCq +bCq +bLv bUs bLv aaa @@ -86552,20 +80661,20 @@ bCq bPX bRg bRg -cUs -cUA -cWv -cUS -cVd -cUA -cVy -cUs -cUA -cVV -cWv -cUA -cWq -cUs +bCq +bHE +bVG +bHE +bHE +bHE +bLv +apQ +aoV +aoV +aoV +aoV +aoV +bLv bUs bLv aaa @@ -86809,20 +80918,20 @@ bLv bQa bHE bHE -cUs -cUB -cUI -cUT -cVe -cVo -cVe -cVJ -cVe -cVe -cWd -cWa -cWy -cUs +bCq +bHE +bLv +bLv +bLv +bLv +bLv +aoV +aoV +aoV +aoV +aoV +apQ +bLv bUs bLv aaf @@ -87035,7 +81144,7 @@ apd bbU cCk apd -cNF +aZK bgB bhX bgv @@ -87066,20 +81175,20 @@ bLv bPZ bHE bHE -cUv -cUC -cUJ -cUU -cVf -cVp -cVA -cVK -cVA -cVX -cWe -bdV -cUA -cUs +cTF +bHE +bLv +aoV +aoV +aoV +aoV +aoV +aoV +aoV +aoV +aoV +aoV +bLv bUs bLv aaa @@ -87295,7 +81404,7 @@ apd bfj bgC bia -cNF +aZK bjs bkx bmQ @@ -87323,20 +81432,20 @@ bLv bHE bHE bSs -cUs -cUD -cUK -cUV -cVg -cUK -cUA -cWw -cVR +bCq +bHE +bLv +aoV +aoV +aoV +bcU +apQ +aaH cCa -cWf -cCa -cWr -cUs +aoV +aoV +aoV +bLv bUs bLv aaa @@ -87550,9 +81659,9 @@ bbQ bLG apd aZH -cNF +aZK bhZ -cNF +aZK cNM bfQ bnG @@ -87580,20 +81689,20 @@ bCq bHE bRh bSr -cUs -cUE -cUL -cUW -cVh -cVr -cVB -cUs +bCq +bHE +bLv +apQ +apQ +aoV +aoV +aaH bdV -cVY -cWf -cCa -cWz -cUs +aaH +apQ +apQ +apQ +bLv bUs bLv aaf @@ -87837,20 +81946,20 @@ bCq bOK bCq bCq -cUs -cUF -cUM -cUX -cVi -cVs -cUs -cUs -bdV -cVZ -cWf -cWn -bdV -cUs +bCq +bHE +bLv +aoV +aoV +aoV +aoV +cjn +bSu +aaH +aoV +aoV +aoV +bLv bUs bLv aaa @@ -88095,19 +82204,19 @@ bHE bLv aaa bLv -cUG -cUM -cUs -cUs -cUs -cUs -cUA -cUA -bdV -cWi -bdV -cWs -cUs +bHE +bLv +aoV +aoV +aoV +aoV +aoV +aaH +apQ +aoV +aoV +aoV +bLv bUs bLv aaa @@ -88352,19 +82461,19 @@ bHE bLv aaf bLv -cUG -cUM -cUZ -cVk -cVu -cVE -cUA -cVS -cWa -cWj -cUA -cUA -cUs +bUt +bLv +apQ +apQ +aoV +aoV +aoV +aaH +aoV +aoV +apQ +apQ +bLv bUs bLv aaf @@ -88392,7 +82501,7 @@ abY abY aaa aaf -cEX +ctv abY abY aaa @@ -88582,7 +82691,7 @@ bqp cNG cNJ bLF -cNF +aZK bbR bbR bqt @@ -88609,19 +82718,19 @@ bLv bCq aaa bLv -bUz -cUM -cVa -cVl -cVv -cUs -cVN -cVT -cWb -cWk -cWo -cWt -cUs +bUs +bLv +aoV +aoV +aoV +aoV +aoV +apQ +aoV +aoV +aoV +aoV +bCq bUs bCq aaa @@ -88639,18 +82748,18 @@ aaa crn aaf abY -cEX -cEX -cEX -cEX -cEX -cEX -cEX +ctv +ctv +ctv +ctv +ctv +ctv +ctv abY aaa aaf -cEX -cEX +ctv +ctv abY aaa aaa @@ -88839,7 +82948,7 @@ beW bfR bKF bNH -cNF +aZK bnJ bbR bbR @@ -88867,17 +82976,17 @@ aaa aaa bTB bUv -cUQ -cVb -cVb -cVb -cVb -cVb -cVb -cVb -cVb -cVb -cVb +bES +bES +bES +bES +bGp +bGp +bGp +bGp +bES +bES +bES car bUs bCq @@ -89091,12 +83200,12 @@ baV bON apd apd -cNF +aZK beV cNI bKP cNI -cNF +aZK bnK bnK bqu @@ -89669,15 +83778,15 @@ cEl cEE cEl cFm -cFC +csx cFm cFm -cFC -cGO +csx +csv aaa aaa aaT -cEX +ctv abY aaa aaa @@ -89922,19 +84031,19 @@ ciN cji cDZ crr -cEm -cEF -cEm +crJ +crT +crJ cFn -cFD -cFC -cFC -cFD +css +csx +csx +css csb aaf aaf aaT -cEX +ctv abY aaa aaa @@ -90095,7 +84204,7 @@ cCi awg axy ayK -azP +azE aBj aBO aDC @@ -90179,19 +84288,19 @@ cgR cDB cqP crq -cEn -cEF -cEn +crZ +crT +crZ cFo -cFD +css cFm cFm -cFD -cGO +css +csv aaa aaa aaT -cEX +ctv abY aaa aaa @@ -90352,7 +84461,7 @@ atY auo axy ayN -azP +azE aAW aCa aDB @@ -90436,19 +84545,19 @@ cgR cqx cqR crp -cEm -cEF -cEm +crJ +crT +crJ cFn -cFD -cFC -cFC -cFD +css +csx +csx +css csb aaf aaf aaT -cEX +ctv abY aaa aaa @@ -90693,19 +84802,19 @@ cpX cqz cqQ ccw -cEp -cEF -cEn +crH +crT +crZ cFo -cFD +css cFm cFm -cFD -cGO +css +csv aaa aaa aaT -cEX +ctv abY aaa aaa @@ -90950,19 +85059,19 @@ clJ cig cig ccw -cEm -cEF -cEm +crJ +crT +crJ cFn -cFD -cFC -cFC -cFD +css +csx +csx +css csb aaf aaf aaT -cEX +ctv abY aaa aaa @@ -91123,7 +85232,7 @@ cCi awg axy ayv -azP +azE aBn aCb aDD @@ -91207,19 +85316,19 @@ cpZ cig cqS ccw -cEp -cEF -cEn +crH +crT +crZ cFo -cFD +css cFm cFm -cFD -cGO +css +csv aaa aaa aaT -cEX +ctv abY aaa aaf @@ -91380,7 +85489,7 @@ cCi awg axy ayQ -azP +azE aBq aBr aDE @@ -91464,14 +85573,14 @@ cgR cqA cqT csg -cEm +crJ crU csb cFn -cFD -cFC -cFC -cFD +css +csx +csx +css csb aaf aaf @@ -91637,7 +85746,7 @@ avh awh axz ayO -azP +azE aBp aCc aDF @@ -92502,12 +86611,12 @@ cGu cGH cGR cHa -cEj +csd ciZ ccw aaa abY -cEX +ctv abY aaa aaa @@ -92744,7 +86853,7 @@ cfg cgU cgJ chG -cDq +cpx cqd cDC cqU @@ -92764,7 +86873,7 @@ cHn ccw aaf aaT -cEX +ctv aaT aaf aaa @@ -93016,12 +87125,12 @@ cGu cMm ciZ cHc -cHh -cHh +cAu +cAu ccw aaa abY -cEX +ctv abY aaa aaa @@ -93258,7 +87367,7 @@ cmL cBO ccw chV -cDq +cpx cqf cqD cMD @@ -93272,13 +87381,13 @@ czE cGu ccw cGT -cEj -cEj +csd +csd ciZ ccw aaf aaT -cEX +ctv abY aaa aaa @@ -93515,7 +87624,7 @@ cmL cgR cgL chX -cDq +cpx cqh cqF cra @@ -93529,13 +87638,13 @@ csH csR cMm cGU -cEj -cEj +csd +csd cHo ccw aaa abY -cEX +ctv abY aaa aaa @@ -93772,7 +87881,7 @@ cmL cnv cMm chX -cDq +cpx cqg cqE cqZ @@ -93786,13 +87895,13 @@ cSI csC cMm cGV -cEj +csd cGV ccw ccw aaa abY -cEX +ctv abY aaa aaa @@ -94029,7 +88138,7 @@ cmN cgR cgL chX -cDq +cpx cqj cSG crb @@ -94042,14 +88151,14 @@ cFP csI cAt cMm -cEj -cEj -cEj +csd +csd +csd cHp ccw aaf abY -cEX +ctv abY aaa aaa @@ -94286,7 +88395,7 @@ cfz cgR ccw cii -cDq +cpx cqi cMD cAP @@ -94300,13 +88409,13 @@ czE cGu ccw cGT -cEj -cEj +csd +csd ciZ ccw aaf aaS -cEX +ctv abY aaa aaa @@ -94563,7 +88672,7 @@ cHd ccw aaa abY -cEX +ctv abY aaa aaa @@ -94820,7 +88929,7 @@ cHr ccw aaf aaT -cEX +ctv aaT aaf aaa @@ -95072,12 +89181,12 @@ cGx cGK cGY cEk -cEj +csd cHs ccw aaf abY -cEX +ctv abY aaa aaa @@ -95834,8 +89943,8 @@ cig ccw ccw czF -cEj -cEj +csd +csd cFz cFU cGj @@ -96089,12 +90198,12 @@ cjN cDz cDH cMm -cEj +csd crM crV crV cFA -cEj +csd cGk ccw aag @@ -96359,7 +90468,7 @@ aaa aaf aaa aaf -cEX +ctv abY aaa aaf @@ -96616,7 +90725,7 @@ aaf aaf aaf aaf -cEX +ctv abY aaa aaf @@ -96871,9 +90980,9 @@ aaa aaa aaa aaa -cEX -cEX -cEX +ctv +ctv +ctv abY aaa aaa @@ -101151,7 +95260,7 @@ aro aCv aaa alP -aGK +aGJ aIe aJC aJC @@ -101408,7 +95517,7 @@ aro aCv aaf alP -aGK +aGJ aIe aJE aKQ @@ -102222,14 +96331,14 @@ bDR bIn bJC bKL -bPv -bPv -bPv -bPv -bPv -bPv -bPv -bPv +bLT +bLT +bLT +bLT +bLT +bLT +bLT +bLT bUY bWe bWe @@ -103259,11 +97368,11 @@ bRO bSQ bTZ bUZ -bPv -bPv -bPv -bPv -bPv +bLT +bLT +bLT +bLT +bLT caM cbL cbL @@ -104235,7 +98344,7 @@ aBE alP aDX alP -aGK +aGJ avI aJL aKX @@ -106582,29 +100691,29 @@ btm buy bvz bdO -bPv +bLT bna -bPv -bPv -bPv +bLT +bLT +bLT bDV -bPv -bPv +bLT +bLT bHq bMe bIg bIM -bPv -bPv -bPv -bPv -bPv -bPv -bPv -bPv -bPv -bPv -bPv +bLT +bLT +bLT +bLT +bLT +bLT +bLT +bLT +bLT +bLT +bLT caT cbP ccO @@ -108406,8 +102515,8 @@ bZa bMi bMi bRZ -bMi -bMi +cTY +cTZ chu ccQ aaf @@ -108645,7 +102754,7 @@ bEm bEm bEm bDb -bJH +cTX bLb bMk bNn diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm index 9ee5a65764..020aa0ec88 100644 --- a/_maps/map_files/Deltastation/DeltaStation2.dmm +++ b/_maps/map_files/Deltastation/DeltaStation2.dmm @@ -1,4 +1,4 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aaa" = ( /turf/open/space/basic, /area/space) @@ -917,15 +917,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"abT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) "abU" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/shuttle/arrival) @@ -1084,31 +1075,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/construction/mining/aux_base) -"ach" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aci" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/fans/tiny, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"acj" = ( -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) "ack" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/delivery, @@ -1375,19 +1341,6 @@ }, /turf/open/floor/plasteel/neutral, /area/construction/mining/aux_base) -"acO" = ( -/obj/structure/table/reinforced, -/obj/item/stack/packageWrap, -/obj/item/stack/cable_coil/white{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil/white, -/obj/item/stock_parts/cell/high, -/turf/open/floor/plasteel/yellow/side{ - dir = 4 - }, -/area/construction/mining/aux_base) "acP" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -1435,9 +1388,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"acX" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/arrival) "acY" = ( /obj/machinery/vending/cola/random, /obj/effect/turf_decal/delivery, @@ -1566,30 +1516,6 @@ dir = 4 }, /area/construction/mining/aux_base) -"adm" = ( -/turf/open/space/basic, -/area/shuttle/syndicate) -"adn" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"ado" = ( -/obj/machinery/door/poddoor/shutters{ - id = "syndieshutters"; - name = "blast shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"adp" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 5 - }, -/turf/closed/wall/mineral/plastitanium{ - dir = 1; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) "adq" = ( /obj/structure/closet/firecloset, /obj/effect/decal/cleanable/dirt, @@ -1696,48 +1622,6 @@ }, /turf/open/floor/plating, /area/shuttle/auxillary_base) -"adA" = ( -/obj/machinery/computer/med_data/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"adB" = ( -/obj/machinery/computer/crew/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"adC" = ( -/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"adD" = ( -/obj/machinery/computer/shuttle/syndicate, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"adE" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"adF" = ( -/obj/machinery/computer/camera_advanced/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"adG" = ( -/obj/machinery/computer/secure_data/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) "adH" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -1822,71 +1706,6 @@ }, /turf/open/floor/plasteel/neutral, /area/construction/mining/aux_base) -"adS" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/yellow/side{ - dir = 4 - }, -/area/construction/mining/aux_base) -"adT" = ( -/obj/structure/table/reinforced, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/item/clipboard, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/folder/red, -/obj/item/toy/figure/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"adU" = ( -/obj/structure/chair/office/dark{ - dir = 8; - name = "tactical swivel chair" - }, -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"adV" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"adW" = ( -/obj/structure/chair/office/dark{ - dir = 1; - name = "tactical swivel chair" - }, -/obj/machinery/button/door{ - id = "syndieshutters"; - name = "Cockpit View Control"; - pixel_x = 32; - pixel_y = 32; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"adX" = ( -/obj/structure/chair/office/dark{ - dir = 4; - name = "tactical swivel chair" - }, -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"adY" = ( -/obj/structure/table/reinforced, -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/obj/item/storage/fancy/donut_box, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) "adZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ @@ -1901,12 +1720,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aeb" = ( -/obj/effect/landmark{ - name = "Observer-Start" - }, -/turf/open/floor/plasteel/neutral, -/area/shuttle/arrival) "aec" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 @@ -1967,9 +1780,6 @@ dir = 4 }, /area/construction/mining/aux_base) -"aeh" = ( -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) "aei" = ( /obj/structure/table/reinforced, /obj/item/paper_bin, @@ -2044,32 +1854,6 @@ }, /turf/open/floor/plating, /area/shuttle/auxillary_base) -"aes" = ( -/turf/open/space, -/turf/closed/wall/mineral/plastitanium{ - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"aet" = ( -/obj/machinery/status_display, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"aeu" = ( -/obj/machinery/door/airlock/hatch{ - name = "Cockpit"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aev" = ( -/turf/open/space, -/turf/closed/wall/mineral/plastitanium{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) "aew" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -2147,50 +1931,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/shuttle/auxillary_base) -"aeE" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 10 - }, -/turf/closed/wall/mineral/plastitanium{ - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"aeF" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil/white, -/obj/item/stack/cable_coil/white, -/obj/item/crowbar/red, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"aeG" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"aeH" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/handcuffs{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/zipties, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"aeI" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 6 - }, -/turf/closed/wall/mineral/plastitanium{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) "aeJ" = ( /obj/machinery/status_display{ pixel_x = -32 @@ -2327,24 +2067,6 @@ }, /turf/open/floor/plasteel, /area/maintenance/starboard/fore) -"aeT" = ( -/obj/structure/chair{ - dir = 4; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"aeU" = ( -/obj/structure/chair{ - dir = 8; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) "aeV" = ( /obj/structure/frame/computer, /turf/open/floor/plasteel/blue, @@ -2438,12 +2160,6 @@ /obj/item/twohanded/required/kirbyplants/random, /turf/open/floor/plasteel/vault, /area/maintenance/starboard/fore) -"afk" = ( -/obj/machinery/porta_turret/syndicate{ - dir = 4 - }, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) "afl" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -2511,18 +2227,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"afv" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 5 - }, -/area/shuttle/syndicate) -"afw" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) "afx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ @@ -2636,64 +2340,6 @@ }, /turf/open/floor/plasteel/redyellow, /area/maintenance/starboard/fore) -"afK" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 4 - }, -/area/shuttle/syndicate) -"afL" = ( -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"afM" = ( -/obj/machinery/door/poddoor{ - id = "smindicate"; - name = "outer blast door" - }, -/obj/machinery/button/door{ - id = "smindicate"; - name = "external door control"; - pixel_x = -26; - req_access_txt = "150" - }, -/obj/docking_port/mobile{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate"; - name = "syndicate infiltrator"; - port_direction = 1; - roundstart_move = "syndicate_away"; - width = 18 - }, -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate_nw"; - name = "northwest of station"; - turf_type = /turf/open/space; - width = 18 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"afN" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK" - }, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) "afO" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -2792,41 +2438,6 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plasteel/redyellow, /area/maintenance/starboard/fore) -"agb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"agc" = ( -/obj/machinery/door/airlock/external{ - name = "Ready Room"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"agd" = ( -/obj/item/storage/toolbox/syndicate, -/obj/item/crowbar/red, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/podhatch{ - dir = 10 - }, -/area/shuttle/syndicate) -"age" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate) -"agf" = ( -/obj/structure/chair{ - name = "tactical chair" - }, -/turf/open/floor/plasteel/podhatch{ - dir = 6 - }, -/area/shuttle/syndicate) "agg" = ( /obj/structure/grille, /turf/closed/wall/r_wall, @@ -3065,26 +2676,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/maintenance/starboard/fore) -"agG" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"agH" = ( -/obj/machinery/door/airlock/external{ - name = "E.V.A. Gear Storage"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"agI" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "150" - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "agJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/delivery, @@ -3322,42 +2913,6 @@ dir = 8 }, /area/maintenance/starboard/fore) -"aho" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 6 - }, -/area/shuttle/syndicate) -"ahp" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"ahq" = ( -/obj/structure/chair{ - dir = 1; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"ahr" = ( -/obj/structure/rack, -/obj/item/clothing/suit/space/syndicate/black/red, -/obj/item/clothing/head/helmet/space/syndicate/black/red, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"ahs" = ( -/turf/open/space, -/turf/closed/wall/mineral/plastitanium{ - dir = 1; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) "aht" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock{ @@ -3507,19 +3062,6 @@ heat_capacity = 1e+006 }, /area/maintenance/starboard/fore) -"ahP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) "ahQ" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/maintenance_hatch{ @@ -3611,10 +3153,6 @@ dir = 8 }, /area/maintenance/starboard/fore) -"aia" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) "aib" = ( /turf/closed/wall, /area/maintenance/port/fore) @@ -3923,119 +3461,6 @@ dir = 1 }, /area/maintenance/starboard/fore) -"aiN" = ( -/obj/machinery/sleeper/syndie{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aiO" = ( -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = -3 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 4; - pixel_y = 1 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 2; - pixel_y = 8 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aiP" = ( -/obj/structure/table/reinforced, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aiQ" = ( -/obj/item/stock_parts/cell/high{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stock_parts/cell/high, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aiR" = ( -/obj/item/screwdriver{ - pixel_y = 9 - }, -/obj/item/device/assembly/voice{ - pixel_y = 3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aiS" = ( -/obj/item/wrench, -/obj/item/device/assembly/infra, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aiT" = ( -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aiU" = ( -/obj/item/weldingtool/largetank{ - pixel_y = 3 - }, -/obj/item/device/multitool, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) "aiV" = ( /obj/machinery/power/tracker, /obj/structure/cable{ @@ -4357,13 +3782,6 @@ dir = 6 }, /area/maintenance/starboard/fore) -"ajI" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) "ajJ" = ( /obj/structure/cable{ d1 = 1; @@ -4466,12 +3884,6 @@ /obj/item/electronics/airlock, /turf/open/floor/wood, /area/crew_quarters/electronic_marketing_den) -"ajY" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/wood, -/area/crew_quarters/electronic_marketing_den) "ajZ" = ( /obj/machinery/status_display{ pixel_y = 32 @@ -4738,35 +4150,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/redyellow, /area/maintenance/starboard/fore) -"akK" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 9 - }, -/area/shuttle/syndicate) -"akL" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"akM" = ( -/obj/machinery/door/airlock/hatch{ - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"akN" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 5 - }, -/area/shuttle/syndicate) -"akO" = ( -/obj/structure/closet/syndicate/personal, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) "akP" = ( /turf/open/floor/plasteel/vault{ dir = 8 @@ -5182,31 +4565,6 @@ "alJ" = ( /turf/closed/wall, /area/maintenance/disposal) -"alK" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"alL" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 10 - }, -/area/shuttle/syndicate) -"alM" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 6 - }, -/area/shuttle/syndicate) -"alN" = ( -/obj/structure/closet/syndicate/nuclear, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) "alO" = ( /obj/structure/cable{ icon_state = "0-2"; @@ -5618,105 +4976,6 @@ }, /turf/open/floor/plasteel, /area/maintenance/disposal) -"amN" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/bodypart/r_arm/robot, -/obj/item/bodypart/l_arm/robot, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"amO" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Surgery"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"amP" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"amQ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/brute, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"amR" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"amS" = ( -/obj/item/device/sbeacondrop/bomb{ - pixel_y = 5 - }, -/obj/item/device/sbeacondrop/bomb, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"amT" = ( -/obj/item/grenade/syndieminibomb{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/grenade/syndieminibomb{ - pixel_x = -1 - }, -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"amU" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Technological Storage"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"amV" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/device/aicard, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) "amW" = ( /obj/structure/cable{ d1 = 2; @@ -5929,12 +5188,6 @@ /obj/structure/cable/white, /turf/open/floor/wood, /area/security/vacantoffice) -"anu" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/wood, -/area/security/vacantoffice) "anv" = ( /obj/structure/table/wood, /obj/item/device/camera, @@ -6222,38 +5475,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/maintenance/disposal) -"anW" = ( -/obj/item/surgicaldrill, -/obj/item/circular_saw, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"anX" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 30 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"anY" = ( -/obj/machinery/nuclearbomb/syndicate, -/obj/machinery/door/window{ - dir = 1; - name = "Theatre Stage"; - req_access_txt = "0" - }, -/turf/open/floor/circuit/red, -/area/shuttle/syndicate) "anZ" = ( /obj/structure/cable, /obj/machinery/power/solar{ @@ -6313,11 +5534,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/crew_quarters/electronic_marketing_den) -"aoh" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/crew_quarters/electronic_marketing_den) "aoi" = ( /obj/item/twohanded/required/kirbyplants/random, /obj/structure/cable/white, @@ -6343,22 +5559,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/port/fore) -"aol" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable/white{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) "aom" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ @@ -6419,12 +5619,6 @@ dir = 4 }, /area/maintenance/starboard/fore) -"aoq" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) "aor" = ( /obj/structure/chair/stool/bar, /obj/effect/decal/cleanable/dirt, @@ -6511,50 +5705,6 @@ dir = 4 }, /area/maintenance/disposal) -"aoz" = ( -/obj/item/cautery, -/obj/item/scalpel, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aoA" = ( -/obj/structure/table/optable, -/obj/item/surgical_drapes, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aoB" = ( -/obj/item/retractor, -/obj/item/hemostat, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aoC" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"aoD" = ( -/turf/open/space, -/area/shuttle/syndicate) -"aoE" = ( -/obj/machinery/recharge_station, -/turf/open/floor/circuit/red, -/area/shuttle/syndicate) -"aoF" = ( -/obj/machinery/telecomms/allinone{ - intercept = 1 - }, -/turf/open/floor/circuit/red, -/area/shuttle/syndicate) "aoG" = ( /obj/structure/lattice/catwalk, /obj/effect/landmark/xeno_spawn, @@ -6992,21 +6142,6 @@ dir = 4 }, /area/maintenance/disposal) -"apA" = ( -/obj/structure/shuttle/engine/propulsion/left, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"apB" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"apC" = ( -/obj/structure/shuttle/engine/propulsion/right, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) "apD" = ( /obj/structure/cable{ icon_state = "0-2"; @@ -7133,16 +6268,6 @@ dir = 8 }, /area/engine/atmospherics_engine) -"apP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) "apQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -9026,14 +8151,6 @@ /obj/structure/lattice, /turf/open/space, /area/space) -"ati" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) "atj" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; @@ -10156,14 +9273,6 @@ "avL" = ( /turf/closed/wall/mineral/titanium, /area/shuttle/supply) -"avM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) "avN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -11502,12 +10611,6 @@ }, /turf/closed/wall, /area/crew_quarters/toilet/auxiliary) -"ayz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/toilet/auxiliary) "ayA" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 @@ -11713,20 +10816,6 @@ }, /turf/open/floor/plasteel/yellow, /area/engine/atmospherics_engine) -"azb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) "azc" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/machinery/portable_atmospherics/scrubber, @@ -12268,14 +11357,6 @@ }, /turf/open/floor/plasteel, /area/engine/atmospherics_engine) -"aAa" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - icon_state = "pump_map"; - name = "Gas to Thermo" - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmospherics_engine) "aAb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 5 @@ -17109,13 +16190,6 @@ }, /turf/open/space, /area/space) -"aJi" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 10 - }, -/turf/open/space, -/area/space) "aJj" = ( /obj/structure/table/wood, /obj/item/clothing/glasses/sunglasses, @@ -18429,14 +17503,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/atmos) -"aMc" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/atmos) "aMd" = ( /obj/structure/window/reinforced{ dir = 1; @@ -21303,13 +20369,6 @@ }, /turf/open/floor/engine/air, /area/engine/atmos) -"aRq" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) "aRr" = ( /obj/machinery/light/small, /obj/structure/table/wood, @@ -24296,12 +23355,6 @@ /obj/item/toy/figure/cargotech, /turf/open/floor/plasteel/brown, /area/quartermaster/office) -"aWW" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-18" - }, -/turf/open/floor/plasteel/brown, -/area/quartermaster/office) "aWX" = ( /obj/structure/filingcabinet/filingcabinet, /turf/open/floor/plasteel/brown, @@ -24832,12 +23885,6 @@ /obj/effect/landmark/start/atmospheric_technician, /turf/open/floor/plasteel/neutral, /area/engine/atmos) -"aXW" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) "aXX" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible, /obj/effect/turf_decal/stripes/line{ @@ -25493,12 +24540,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/atmos) -"aZp" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) "aZq" = ( /turf/open/floor/plasteel/neutral, /area/engine/atmos) @@ -28451,29 +27492,6 @@ dir = 6 }, /area/engine/atmos) -"bfu" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmos) -"bfv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"bfw" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 8 - }, -/turf/open/space, -/area/engine/atmos) "bfx" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 8; @@ -29316,13 +28334,6 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bha" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/atmos) "bhb" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/corner{ @@ -30355,13 +29366,6 @@ dir = 5 }, /area/engine/atmos) -"bjm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/atmos) "bjn" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/simple/orange/visible{ @@ -33943,13 +32947,6 @@ }, /turf/open/floor/engine/vacuum, /area/engine/atmos) -"bpP" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 8 - }, -/turf/open/space, -/area/engine/atmos) "bpQ" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ @@ -36565,14 +35562,6 @@ "buK" = ( /turf/closed/wall, /area/security/main) -"buL" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) "buM" = ( /turf/open/floor/plasteel/vault{ dir = 5 @@ -38091,13 +37080,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/storage/tech) -"bxm" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/storage/tech) "bxn" = ( /obj/structure/table/reinforced, /obj/item/aiModule/reset, @@ -44346,13 +43328,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/neutral, /area/storage/primary) -"bIc" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/primary) "bId" = ( /obj/structure/cable/white{ d2 = 2; @@ -46855,6 +45830,7 @@ /obj/item/gun/ballistic/shotgun/riot, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/bot, +/obj/item/gun/ballistic/shotgun/riot, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) "bNh" = ( @@ -46999,12 +45975,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/vault, /area/ai_monitored/turret_protected/aisat_interior) -"bNv" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/vault, -/area/ai_monitored/turret_protected/aisat_interior) "bNw" = ( /obj/item/twohanded/required/kirbyplants/random, /turf/open/floor/plasteel/vault{ @@ -48170,15 +47140,6 @@ dir = 5 }, /area/engine/transit_tube) -"bPB" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/transit_tube) "bPC" = ( /obj/machinery/computer/station_alert, /obj/machinery/status_display{ @@ -53478,15 +52439,6 @@ }, /turf/open/floor/plasteel/vault, /area/ai_monitored/turret_protected/ai_upload) -"bZc" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/vault, -/area/ai_monitored/turret_protected/ai_upload) "bZd" = ( /obj/machinery/firealarm{ pixel_y = 24 @@ -58058,12 +57010,6 @@ /obj/machinery/holopad, /turf/open/floor/wood, /area/library) -"chT" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/wood, -/area/library) "chU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/extinguisher_cabinet{ @@ -61171,15 +60117,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"coe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) "cof" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -62703,12 +61640,6 @@ }, /turf/closed/wall/r_wall, /area/gateway) -"cqZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) "cra" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -64217,14 +63148,6 @@ dir = 4 }, /area/gateway) -"cub" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) "cuc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -64311,22 +63234,6 @@ heat_capacity = 1e+006 }, /area/hallway/primary/central) -"cuj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/hallway/primary/central) "cuk" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ @@ -66292,12 +65199,6 @@ }, /turf/open/floor/plasteel/grimy, /area/library) -"cyb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/library) "cyc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -66314,18 +65215,6 @@ dir = 5 }, /area/library) -"cye" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 8 - }, -/turf/closed/wall, -/area/library) -"cyf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) "cyg" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -66774,15 +65663,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/neutral, /area/crew_quarters/toilet/restrooms) -"cyP" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/crew_quarters/toilet/restrooms) "cyQ" = ( /obj/structure/cable/white{ d1 = 1; @@ -67130,12 +66010,6 @@ dir = 5 }, /area/library) -"czF" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/black, -/area/library) "czG" = ( /obj/item/twohanded/required/kirbyplants/random, /obj/item/device/radio/intercom{ @@ -68417,14 +67291,6 @@ dir = 5 }, /area/crew_quarters/locker) -"cCc" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-18" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/locker) "cCd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, @@ -69745,18 +68611,6 @@ dir = 4 }, /area/crew_quarters/fitness/recreation) -"cEE" = ( -/obj/machinery/door/airlock/glass{ - name = "Holodeck Access" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) "cEF" = ( /obj/machinery/light, /obj/structure/extinguisher_cabinet{ @@ -69950,17 +68804,6 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"cEW" = ( -/obj/structure/cable/white{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) "cEX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ @@ -70891,25 +69734,6 @@ dir = 8 }, /area/maintenance/port) -"cGq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cGr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port) -"cGs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port) "cGt" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 @@ -70925,21 +69749,6 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"cGv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port) -"cGw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) "cGx" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ @@ -72066,18 +70875,6 @@ }, /turf/open/floor/plasteel/neutral/corner, /area/crew_quarters/fitness/recreation) -"cIU" = ( -/obj/machinery/door/airlock/glass{ - name = "Holodeck Access" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) "cIV" = ( /obj/machinery/light{ dir = 1 @@ -73743,11 +72540,6 @@ dir = 4 }, /area/maintenance/port) -"cMI" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/science/xenobiology) "cMJ" = ( /obj/machinery/light{ dir = 1 @@ -78499,11 +77291,6 @@ dir = 1 }, /area/medical/medbay/central) -"cVW" = ( -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/medbay/central) "cVX" = ( /obj/structure/chair/office/light{ dir = 1 @@ -78824,17 +77611,6 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"cWI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 8 - }, -/obj/structure/cable/white{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) "cWJ" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -80288,15 +79064,6 @@ dir = 1 }, /area/maintenance/port) -"cZN" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) "cZO" = ( /obj/structure/rack, /obj/item/crowbar/red, @@ -80392,13 +79159,6 @@ }, /turf/open/floor/plasteel, /area/science/research) -"cZW" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/research) "cZX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, @@ -80651,13 +79411,6 @@ }, /turf/open/floor/plasteel, /area/medical/medbay/central) -"dau" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) "dav" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, @@ -80925,17 +79678,6 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"daZ" = ( -/obj/structure/cable/white{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) "dba" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -80949,18 +79691,6 @@ }, /turf/open/floor/plasteel/neutral/side, /area/maintenance/port) -"dbb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port) "dbc" = ( /obj/structure/cable/white{ d1 = 4; @@ -80972,18 +79702,6 @@ }, /turf/open/floor/plasteel/neutral/side, /area/maintenance/port) -"dbd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) "dbe" = ( /obj/structure/cable/white{ d1 = 4; @@ -82521,12 +81239,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/whitepurple/corner, /area/science/research) -"dex" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) "dey" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -83042,13 +81754,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/vault, /area/medical/abandoned) -"dfx" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/medical/abandoned) "dfy" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/space_heater, @@ -83673,13 +82378,6 @@ "dgP" = ( /turf/closed/wall, /area/hallway/secondary/construction) -"dgQ" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-18" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) "dgR" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -88058,12 +86756,6 @@ }, /turf/open/floor/plating, /area/medical/genetics) -"dpQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/medical/medbay/central) "dpR" = ( /obj/structure/cable/white{ d2 = 2; @@ -92059,13 +90751,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/science/research/abandoned) -"dxo" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) "dxp" = ( /obj/machinery/light/small, /obj/effect/decal/cleanable/dirt, @@ -92073,13 +90758,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/science/research/abandoned) -"dxq" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) "dxr" = ( /obj/structure/table, /obj/item/clipboard, @@ -92104,14 +90782,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/science/research/abandoned) -"dxu" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) "dxv" = ( /obj/structure/table, /obj/item/clothing/gloves/color/black, @@ -96256,11 +94926,6 @@ /obj/item/twohanded/required/kirbyplants/random, /turf/open/floor/plasteel/grimy, /area/crew_quarters/theatre/abandoned) -"dFv" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/crew_quarters/theatre/abandoned) "dFw" = ( /obj/structure/table/wood, /obj/item/clothing/suit/cardborg, @@ -97094,7 +95759,8 @@ /turf/open/floor/plating, /area/crew_quarters/theatre/abandoned) "dHa" = ( -/obj/machinery/vending/kink, +/obj/effect/decal/cleanable/dirt, +/obj/item/twohanded/required/kirbyplants/random, /turf/open/floor/wood, /area/crew_quarters/theatre/abandoned) "dHb" = ( @@ -98084,14 +96750,6 @@ dir = 6 }, /area/security/checkpoint/customs) -"dJd" = ( -/obj/structure/cable/white{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/customs) "dJe" = ( /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, @@ -98669,14 +97327,6 @@ dir = 4 }, /area/medical/virology) -"dKq" = ( -/obj/structure/cable/white{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/virology) "dKr" = ( /obj/structure/table_frame/wood, /obj/effect/decal/cleanable/dirt, @@ -100397,26 +99047,6 @@ "dNI" = ( /turf/closed/wall, /area/chapel/main) -"dNJ" = ( -/obj/structure/cable/white{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/chapel/main) "dNK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, @@ -101857,11 +100487,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"dRf" = ( -/obj/structure/fans/tiny, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) "dRg" = ( /obj/machinery/door/airlock/shuttle{ name = "Emergency Shuttle Airlock"; @@ -105540,11 +104165,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/shuttle/escape) -"dYc" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/open/space, -/area/space) "dYd" = ( /obj/structure/table/reinforced, /obj/item/stack/sheet/metal{ @@ -105869,14 +104489,6 @@ dir = 4 }, /area/security/checkpoint/checkpoint2) -"dYE" = ( -/obj/structure/cable/white{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/checkpoint2) "dYF" = ( /obj/structure/chair{ dir = 4 @@ -107605,9 +106217,6 @@ }, /turf/open/floor/plating/airless, /area/shuttle/transport) -"eer" = ( -/turf/open/floor/plasteel/neutral, -/area/shuttle/transport) "ees" = ( /obj/structure/shuttle/engine/heater{ dir = 1 @@ -107626,13 +106235,6 @@ }, /turf/open/floor/plating/airless, /area/shuttle/transport) -"eeu" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/transport) "eev" = ( /obj/machinery/door/airlock/external, /turf/open/floor/pod/light, @@ -107674,10 +106276,6 @@ /obj/structure/sign/poster/contraband/random, /turf/closed/wall, /area/maintenance/starboard/fore) -"eeD" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall, -/area/maintenance/starboard/fore) "eeE" = ( /obj/structure/table/wood, /obj/structure/sign/barsign{ @@ -107730,26 +106328,10 @@ /obj/structure/sign/poster/contraband/random, /turf/closed/wall, /area/crew_quarters/electronic_marketing_den) -"eeJ" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall, -/area/crew_quarters/electronic_marketing_den) -"eeK" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall, -/area/crew_quarters/electronic_marketing_den) "eeL" = ( /obj/structure/sign/poster/contraband/random, /turf/closed/wall, /area/maintenance/port/fore) -"eeM" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall, -/area/maintenance/arrivals/north_2) -"eeN" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall, -/area/maintenance/arrivals/north_2) "eeO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/poster/contraband/random{ @@ -107958,10 +106540,6 @@ }, /turf/open/floor/plasteel/cafeteria, /area/crew_quarters/theatre) -"efl" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall, -/area/crew_quarters/bar/atrium) "efm" = ( /obj/structure/table/wood, /obj/item/clothing/mask/fakemoustache, @@ -107994,10 +106572,6 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"efq" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall, -/area/maintenance/arrivals/north_2) "efr" = ( /obj/structure/table/glass, /obj/machinery/computer/med_data/laptop, @@ -108008,10 +106582,6 @@ dir = 9 }, /area/security/brig) -"efs" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall, -/area/maintenance/arrivals/north_2) "eft" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -108050,10 +106620,6 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"efw" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall, -/area/maintenance/arrivals/north_2) "efx" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; @@ -108792,13 +107358,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"egE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) "egF" = ( /obj/effect/turf_decal/delivery, /obj/item/twohanded/required/kirbyplants{ @@ -108846,10 +107405,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/neutral, /area/hallway/secondary/exit/departure_lounge) -"egK" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) "egL" = ( /obj/effect/turf_decal/delivery, /obj/item/twohanded/required/kirbyplants{ @@ -108869,14 +107424,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"egN" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"egO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) "egP" = ( /obj/structure/bodycontainer/morgue, /obj/structure/sign/poster/official/ian{ @@ -108979,113 +107526,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"egX" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"egY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"egZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"eha" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ehb" = ( -/obj/structure/chair{ - dir = 4; - name = "tactical chair" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"ehc" = ( -/obj/structure/chair{ - dir = 8; - name = "tactical chair" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"ehd" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"ehe" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"ehf" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"ehg" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"ehh" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) "ehi" = ( /obj/machinery/light/small{ brightness = 3; @@ -109145,14 +107585,6 @@ dir = 1 }, /area/shuttle/escape) -"ehq" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/shuttle/escape) "ehr" = ( /obj/machinery/light{ dir = 8 @@ -109182,18 +107614,6 @@ }, /turf/open/floor/plasteel, /area/shuttle/escape) -"ehu" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/shuttle/escape) "ehv" = ( /obj/machinery/light, /turf/open/floor/plasteel, @@ -109213,25 +107633,10 @@ "ehy" = ( /turf/closed/wall/r_wall, /area/engine/supermatter) -"ehz" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"ehA" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) "ehB" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, /area/engine/supermatter) -"ehC" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"ehD" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"ehE" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) "ehF" = ( /obj/machinery/power/rad_collector/anchored, /obj/structure/cable{ @@ -109240,34 +107645,10 @@ }, /turf/open/floor/circuit/green, /area/engine/supermatter) -"ehG" = ( -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/circuit/green, -/area/engine/supermatter) -"ehH" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"ehI" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) "ehJ" = ( /obj/structure/sign/radiation, /turf/closed/wall/r_wall, /area/engine/supermatter) -"ehK" = ( -/obj/structure/sign/radiation, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"ehL" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"ehM" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) "ehN" = ( /obj/structure/chair/office/dark{ dir = 8 @@ -109283,18 +107664,6 @@ /obj/structure/displaycase/trophy, /turf/open/floor/wood, /area/library) -"ehP" = ( -/obj/structure/displaycase/trophy, -/turf/open/floor/wood, -/area/library) -"ehQ" = ( -/obj/structure/displaycase/trophy, -/turf/open/floor/wood, -/area/library) -"ehR" = ( -/obj/structure/displaycase/trophy, -/turf/open/floor/wood, -/area/library) "ehS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/bot, @@ -109314,9 +107683,6 @@ /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmospherics_engine) -"ehU" = ( -/turf/closed/wall, -/area/crew_quarters/toilet/auxiliary) "ehV" = ( /turf/closed/wall, /area/quartermaster/office) @@ -109324,50 +107690,13 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/quartermaster/office) -"ehX" = ( -/turf/closed/wall, -/area/quartermaster/office) -"ehY" = ( -/turf/closed/wall, -/area/quartermaster/office) -"ehZ" = ( -/turf/closed/wall, -/area/quartermaster/office) -"eia" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/office) "eib" = ( /obj/machinery/status_display, /turf/closed/wall, /area/quartermaster/office) -"eic" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/office) -"eid" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/office) -"eie" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/office) -"eif" = ( -/turf/closed/wall, -/area/quartermaster/office) "eig" = ( /turf/closed/wall/r_wall, /area/maintenance/solars/starboard/aft) -"eih" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/aft) -"eii" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/aft) -"eij" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/aft) "eik" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -109380,18 +107709,6 @@ }, /turf/closed/wall/r_wall, /area/maintenance/solars/starboard/aft) -"eim" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"ein" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"eio" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) "eip" = ( /obj/structure/cable/white{ d1 = 1; @@ -109467,54 +107784,10 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/maintenance/solars/starboard/aft) -"eiu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - name = "External Solar Access"; - req_access_txt = "10; 13" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/aft) "eiv" = ( /obj/structure/sign/electricshock, /turf/closed/wall/r_wall, /area/maintenance/solars/starboard/aft) -"eiw" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"eix" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"eiy" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"eiz" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/aft) -"eiA" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/aft) -"eiB" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"eiC" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/aft) -"eiD" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) "eiE" = ( /obj/machinery/power/apc{ dir = 4; @@ -109610,38 +107883,6 @@ }, /turf/open/floor/plasteel/neutral, /area/hallway/primary/aft) -"eiL" = ( -/obj/structure/cable/white{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/aft) -"eiM" = ( -/obj/structure/cable/white{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/aft) -"eiN" = ( -/obj/structure/cable/white{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/aft) -"eiO" = ( -/obj/structure/cable/white{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/aft) "eiP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -109700,22 +107941,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/crew_quarters/dorms) -"eiV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/crew_quarters/dorms) -"eiW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/dorms) -"eiX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/crew_quarters/dorms) -"eiY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/dorms) "eiZ" = ( /obj/structure/cable/white{ d1 = 4; @@ -109741,17 +107966,6 @@ dir = 1 }, /area/crew_quarters/dorms) -"ejb" = ( -/obj/structure/cable/white{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/dorms) "ejc" = ( /obj/structure/cable/white{ d1 = 4; @@ -109766,20 +107980,6 @@ dir = 4 }, /area/crew_quarters/dorms) -"ejd" = ( -/obj/structure/cable/white{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/dorms) "eje" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 @@ -109820,17 +108020,6 @@ heat_capacity = 1e+006 }, /area/crew_quarters/dorms) -"ejk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/dorms) "ejl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -109838,30 +108027,6 @@ /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, /turf/open/floor/plasteel/neutral/corner, /area/crew_quarters/dorms) -"ejm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/crew_quarters/dorms) -"ejn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/dorms) -"ejo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/crew_quarters/dorms) -"ejp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/dorms) -"ejq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/crew_quarters/dorms) -"ejr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/dorms) "ejs" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/airalarm{ @@ -109962,1657 +108127,6 @@ dir = 1 }, /area/crew_quarters/locker) -"ejC" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 9 - }, -/turf/closed/wall/mineral/plastitanium{ - dir = 8; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"ejD" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"ejE" = ( -/obj/machinery/door/poddoor/shutters{ - id = "syndieshutters"; - name = "blast shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/space) -"ejF" = ( -/obj/machinery/door/poddoor/shutters{ - id = "syndieshutters"; - name = "blast shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/space) -"ejG" = ( -/obj/machinery/door/poddoor/shutters{ - id = "syndieshutters"; - name = "blast shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/space) -"ejH" = ( -/obj/machinery/door/poddoor/shutters{ - id = "syndieshutters"; - name = "blast shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/space) -"ejI" = ( -/obj/machinery/door/poddoor/shutters{ - id = "syndieshutters"; - name = "blast shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/space) -"ejJ" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"ejK" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 5 - }, -/turf/closed/wall/mineral/plastitanium{ - dir = 1; - icon_state = "diagonalWall3" - }, -/area/space) -"ejL" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"ejM" = ( -/obj/machinery/computer/med_data/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"ejN" = ( -/obj/machinery/computer/crew/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"ejO" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"ejP" = ( -/obj/machinery/computer/shuttle/syndicate, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"ejQ" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"ejR" = ( -/obj/machinery/computer/camera_advanced/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"ejS" = ( -/obj/machinery/computer/secure_data/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"ejT" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"ejU" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"ejV" = ( -/obj/structure/table/reinforced, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/item/clipboard, -/obj/item/toy/figure/syndie, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"ejW" = ( -/obj/structure/chair/office/dark{ - dir = 8; - name = "tactical swivel chair" - }, -/turf/open/floor/plasteel/black, -/area/space) -"ejX" = ( -/turf/open/floor/plasteel/black, -/area/space) -"ejY" = ( -/obj/structure/chair/office/dark{ - dir = 1; - name = "tactical swivel chair" - }, -/obj/machinery/button/door{ - id = "syndieshutters"; - name = "Cockpit View Control"; - pixel_x = 32; - pixel_y = 32; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/black, -/area/space) -"ejZ" = ( -/turf/open/floor/plasteel/black, -/area/space) -"eka" = ( -/obj/structure/chair/office/dark{ - dir = 4; - name = "tactical swivel chair" - }, -/turf/open/floor/plasteel/black, -/area/space) -"ekb" = ( -/obj/structure/table/reinforced, -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/obj/item/storage/fancy/donut_box, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"ekc" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"ekd" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"eke" = ( -/turf/open/floor/plasteel/vault, -/area/space) -"ekf" = ( -/turf/open/floor/plasteel/vault, -/area/space) -"ekg" = ( -/turf/open/floor/plasteel/vault, -/area/space) -"ekh" = ( -/turf/open/floor/plasteel/vault, -/area/space) -"eki" = ( -/turf/open/floor/plasteel/vault, -/area/space) -"ekj" = ( -/turf/open/floor/plasteel/vault, -/area/space) -"ekk" = ( -/turf/open/floor/plasteel/vault, -/area/space) -"ekl" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"ekm" = ( -/turf/open/space, -/turf/closed/wall/mineral/plastitanium{ - icon_state = "diagonalWall3" - }, -/area/space) -"ekn" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"eko" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"ekp" = ( -/obj/machinery/status_display, -/turf/closed/wall/mineral/plastitanium, -/area/space) -"ekq" = ( -/obj/machinery/door/airlock/hatch{ - name = "Cockpit"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"ekr" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"eks" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"ekt" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"eku" = ( -/turf/open/space, -/turf/closed/wall/mineral/plastitanium{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/space) -"ekv" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 10 - }, -/turf/closed/wall/mineral/plastitanium{ - icon_state = "diagonalWall3" - }, -/area/space) -"ekw" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"ekx" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil/white, -/obj/item/stack/cable_coil/white, -/obj/item/crowbar/red, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"eky" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"ekz" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/handcuffs{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/zipties, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"ekA" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"ekB" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 6 - }, -/turf/closed/wall/mineral/plastitanium{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/space) -"ekC" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"ekD" = ( -/obj/structure/chair{ - dir = 4; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"ekE" = ( -/turf/open/floor/plasteel/black, -/area/space) -"ekF" = ( -/obj/structure/chair{ - dir = 8; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"ekG" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"ekH" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 9 - }, -/turf/closed/wall/mineral/plastitanium{ - dir = 8; - icon_state = "diagonalWall3" - }, -/area/space) -"ekI" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"ekJ" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"ekK" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"ekL" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"ekM" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"ekN" = ( -/obj/structure/chair{ - dir = 4; - name = "tactical chair" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"ekO" = ( -/turf/open/floor/plasteel/black, -/area/space) -"ekP" = ( -/obj/structure/chair{ - dir = 8; - name = "tactical chair" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"ekQ" = ( -/obj/machinery/porta_turret/syndicate{ - dir = 4 - }, -/turf/closed/wall/mineral/plastitanium, -/area/space) -"ekR" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"ekS" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 5 - }, -/area/space) -"ekT" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"ekU" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"ekV" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"ekW" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"ekX" = ( -/obj/structure/chair{ - dir = 4; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"ekY" = ( -/turf/open/floor/plasteel/black, -/area/space) -"ekZ" = ( -/obj/structure/chair{ - dir = 8; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"ela" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"elb" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"elc" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 4 - }, -/area/space) -"eld" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"ele" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"elf" = ( -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"elg" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"elh" = ( -/obj/structure/chair{ - dir = 4; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"eli" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"elj" = ( -/obj/structure/chair{ - dir = 8; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"elk" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"ell" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"elm" = ( -/obj/machinery/door/poddoor{ - id = "smindicate"; - name = "outer blast door" - }, -/obj/machinery/button/door{ - id = "smindicate"; - name = "external door control"; - pixel_x = -26; - req_access_txt = "150" - }, -/obj/docking_port/mobile{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate"; - name = "syndicate infiltrator"; - port_direction = 1; - roundstart_move = "syndicate_away"; - width = 18 - }, -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate_nw"; - name = "northwest of station"; - turf_type = /turf/open/space; - width = 18 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/space) -"eln" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK" - }, -/turf/closed/wall/mineral/plastitanium, -/area/space) -"elo" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 5 - }, -/turf/closed/wall/mineral/plastitanium{ - dir = 1; - icon_state = "diagonalWall3" - }, -/area/space) -"elp" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"elq" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 4 - }, -/area/space) -"elr" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"els" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"elt" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"elu" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"elv" = ( -/obj/machinery/door/airlock/external{ - name = "Ready Room"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"elw" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"elx" = ( -/obj/item/storage/toolbox/syndicate, -/obj/item/crowbar/red, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/podhatch{ - dir = 10 - }, -/area/space) -"ely" = ( -/turf/open/floor/plasteel/podhatch, -/area/space) -"elz" = ( -/obj/structure/chair{ - name = "tactical chair" - }, -/turf/open/floor/plasteel/podhatch{ - dir = 6 - }, -/area/space) -"elA" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"elB" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"elC" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 4 - }, -/area/space) -"elD" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"elE" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"elF" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"elG" = ( -/obj/machinery/door/airlock/external{ - name = "E.V.A. Gear Storage"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"elH" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"elI" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"elJ" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"elK" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "150" - }, -/turf/open/floor/mineral/plastitanium, -/area/space) -"elL" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"elM" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"elN" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"elO" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"elP" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"elQ" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 6 - }, -/area/space) -"elR" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"elS" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"elT" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"elU" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"elV" = ( -/turf/open/floor/plasteel/black, -/area/space) -"elW" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"elX" = ( -/obj/structure/chair{ - dir = 1; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"elY" = ( -/obj/structure/chair{ - dir = 1; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"elZ" = ( -/obj/structure/rack, -/obj/item/clothing/suit/space/syndicate/black/red, -/obj/item/clothing/head/helmet/space/syndicate/black/red, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"ema" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"emb" = ( -/turf/open/space, -/turf/closed/wall/mineral/plastitanium{ - dir = 1; - icon_state = "diagonalWall3" - }, -/area/space) -"emc" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 9 - }, -/turf/closed/wall/mineral/plastitanium{ - dir = 8; - icon_state = "diagonalWall3" - }, -/area/space) -"emd" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"eme" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"emf" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall/mineral/plastitanium, -/area/space) -"emg" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"emh" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"emi" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"emj" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"emk" = ( -/turf/open/floor/plasteel/black, -/area/space) -"eml" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"emm" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"emn" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"emo" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"emp" = ( -/obj/machinery/status_display, -/turf/closed/wall/mineral/plastitanium, -/area/space) -"emq" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"emr" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"ems" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 5 - }, -/turf/closed/wall/mineral/plastitanium{ - dir = 1; - icon_state = "diagonalWall3" - }, -/area/space) -"emt" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"emu" = ( -/obj/machinery/sleeper/syndie{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"emv" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"emw" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"emx" = ( -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = -3 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 4; - pixel_y = 1 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 2; - pixel_y = 8 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"emy" = ( -/obj/structure/table/reinforced, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"emz" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"emA" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"emB" = ( -/turf/open/floor/plasteel/black, -/area/space) -"emC" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"emD" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"emE" = ( -/obj/item/stock_parts/cell/high{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stock_parts/cell/high, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"emF" = ( -/obj/item/screwdriver{ - pixel_y = 9 - }, -/obj/item/device/assembly/voice{ - pixel_y = 3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"emG" = ( -/obj/item/wrench, -/obj/item/device/assembly/infra, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"emH" = ( -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"emI" = ( -/obj/item/weldingtool/largetank{ - pixel_y = 3 - }, -/obj/item/device/multitool, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"emJ" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"emK" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"emL" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"emM" = ( -/turf/open/floor/plasteel/vault, -/area/space) -"emN" = ( -/turf/open/floor/plasteel/vault, -/area/space) -"emO" = ( -/turf/open/floor/plasteel/vault, -/area/space) -"emP" = ( -/turf/open/floor/plasteel/vault, -/area/space) -"emQ" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"emR" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"emS" = ( -/turf/open/floor/plasteel/black, -/area/space) -"emT" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"emU" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"emV" = ( -/turf/open/floor/plasteel/vault, -/area/space) -"emW" = ( -/turf/open/floor/plasteel/vault, -/area/space) -"emX" = ( -/turf/open/floor/plasteel/vault, -/area/space) -"emY" = ( -/turf/open/floor/plasteel/vault, -/area/space) -"emZ" = ( -/turf/open/floor/plasteel/vault, -/area/space) -"ena" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"enb" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"enc" = ( -/obj/machinery/sleeper/syndie{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"end" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"ene" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 9 - }, -/area/space) -"enf" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/space) -"eng" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/space) -"enh" = ( -/obj/machinery/door/airlock/hatch{ - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"eni" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/space) -"enj" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/space) -"enk" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/space) -"enl" = ( -/obj/machinery/door/airlock/hatch{ - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"enm" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/space) -"enn" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/space) -"eno" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 5 - }, -/area/space) -"enp" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"enq" = ( -/obj/structure/closet/syndicate/personal, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"enr" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"ens" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"ent" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"enu" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"env" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 10 - }, -/area/space) -"enw" = ( -/turf/open/floor/plasteel/podhatch, -/area/space) -"enx" = ( -/turf/open/floor/plasteel/podhatch, -/area/space) -"eny" = ( -/turf/open/floor/plasteel/podhatch, -/area/space) -"enz" = ( -/turf/open/floor/plasteel/podhatch, -/area/space) -"enA" = ( -/turf/open/floor/plasteel/podhatch, -/area/space) -"enB" = ( -/turf/open/floor/plasteel/podhatch, -/area/space) -"enC" = ( -/turf/open/floor/plasteel/podhatch, -/area/space) -"enD" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 6 - }, -/area/space) -"enE" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"enF" = ( -/obj/structure/closet/syndicate/nuclear, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"enG" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"enH" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"enI" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/bodypart/r_arm/robot, -/obj/item/bodypart/l_arm/robot, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault, -/area/space) -"enJ" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Surgery"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault, -/area/space) -"enK" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/vault, -/area/space) -"enL" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/brute, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault, -/area/space) -"enM" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault, -/area/space) -"enN" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"enO" = ( -/turf/open/floor/plasteel/vault, -/area/space) -"enP" = ( -/turf/open/floor/plasteel/vault, -/area/space) -"enQ" = ( -/turf/open/floor/plasteel/vault, -/area/space) -"enR" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"enS" = ( -/obj/item/device/sbeacondrop/bomb{ - pixel_y = 5 - }, -/obj/item/device/sbeacondrop/bomb, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"enT" = ( -/obj/item/grenade/syndieminibomb{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/grenade/syndieminibomb{ - pixel_x = -1 - }, -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"enU" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/vault, -/area/space) -"enV" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Technological Storage"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault, -/area/space) -"enW" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/device/aicard, -/turf/open/floor/plasteel/vault, -/area/space) -"enX" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"enY" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"enZ" = ( -/obj/item/surgicaldrill, -/obj/item/circular_saw, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"eoa" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"eob" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 30 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"eoc" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"eod" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"eoe" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"eof" = ( -/obj/machinery/nuclearbomb/syndicate, -/obj/machinery/door/window{ - dir = 1; - name = "Theatre Stage"; - req_access_txt = "0" - }, -/turf/open/floor/circuit/red, -/area/space) -"eog" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"eoh" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"eoi" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"eoj" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"eok" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"eol" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/space) -"eom" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"eon" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"eoo" = ( -/obj/item/cautery, -/obj/item/scalpel, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"eop" = ( -/obj/structure/table/optable, -/obj/item/surgical_drapes, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"eoq" = ( -/obj/item/retractor, -/obj/item/hemostat, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/space) -"eor" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"eos" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"eot" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space) -"eou" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space) -"eov" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space) -"eow" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"eox" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"eoy" = ( -/obj/machinery/recharge_station, -/turf/open/floor/circuit/red, -/area/space) -"eoz" = ( -/obj/machinery/telecomms/allinone{ - intercept = 1 - }, -/turf/open/floor/circuit/red, -/area/space) -"eoA" = ( -/obj/machinery/recharge_station, -/turf/open/floor/circuit/red, -/area/space) -"eoB" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"eoC" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"eoD" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space) -"eoE" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space) -"eoF" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space) -"eoG" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"eoH" = ( -/turf/open/space, -/turf/closed/wall/mineral/plastitanium{ - icon_state = "diagonalWall3" - }, -/area/space) -"eoI" = ( -/obj/structure/shuttle/engine/propulsion/left, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space) -"eoJ" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space) -"eoK" = ( -/obj/structure/shuttle/engine/propulsion/right, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space) -"eoL" = ( -/turf/open/space, -/turf/closed/wall/mineral/plastitanium{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/space) -"eoM" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"eoN" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space) -"eoO" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space) -"eoP" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space) -"eoQ" = ( -/turf/closed/wall/mineral/plastitanium, -/area/space) -"eoR" = ( -/turf/open/space, -/turf/closed/wall/mineral/plastitanium{ - icon_state = "diagonalWall3" - }, -/area/space) -"eoS" = ( -/obj/structure/shuttle/engine/propulsion/left, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space) -"eoT" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space) -"eoU" = ( -/obj/structure/shuttle/engine/propulsion/right, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space) -"eoV" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 6 - }, -/turf/closed/wall/mineral/plastitanium{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/space) -"eoW" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 10 - }, -/turf/closed/wall/mineral/plastitanium{ - icon_state = "diagonalWall3" - }, -/area/space) -"eoX" = ( -/obj/structure/shuttle/engine/propulsion/left, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space) -"eoY" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space) -"eoZ" = ( -/obj/structure/shuttle/engine/propulsion/right, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space) -"epa" = ( -/turf/open/space, -/turf/closed/wall/mineral/plastitanium{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/space) -"epb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) "epc" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 2; @@ -111626,55 +108140,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"epd" = ( -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"epe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"epf" = ( -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"epg" = ( -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) "eph" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -111782,27 +108247,6 @@ }, /turf/open/floor/plating, /area/engine/atmospherics_engine) -"epp" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmospherics_engine) -"epq" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmospherics_engine) -"epr" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmospherics_engine) "eps" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -111852,10 +108296,6 @@ /obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/open/floor/plasteel/yellow, /area/engine/atmospherics_engine) -"epz" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel/neutral, -/area/engine/atmospherics_engine) "epA" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/closed/wall/r_wall, @@ -112114,19 +108554,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"epP" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) "epQ" = ( /obj/structure/cable{ d1 = 4; @@ -112146,19 +108573,6 @@ }, /turf/open/floor/plasteel, /area/maintenance/solars/port/aft) -"epR" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) "epS" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 8; @@ -112297,43 +108711,10 @@ "eqg" = ( /turf/closed/wall, /area/maintenance/department/medical) -"eqh" = ( -/turf/closed/wall, -/area/maintenance/department/medical) -"eqi" = ( -/turf/closed/wall, -/area/maintenance/department/medical) -"eqj" = ( -/turf/closed/wall, -/area/maintenance/department/medical) -"eqk" = ( -/turf/closed/wall, -/area/maintenance/department/medical) -"eql" = ( -/turf/closed/wall, -/area/maintenance/department/medical) -"eqm" = ( -/turf/closed/wall, -/area/maintenance/department/medical) -"eqn" = ( -/turf/closed/wall, -/area/maintenance/department/medical) "eqo" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/department/medical) -"eqp" = ( -/turf/closed/wall, -/area/maintenance/department/medical) -"eqq" = ( -/turf/closed/wall, -/area/maintenance/department/medical) -"eqr" = ( -/turf/closed/wall, -/area/maintenance/department/medical) -"eqs" = ( -/turf/closed/wall, -/area/maintenance/department/medical) "eqt" = ( /obj/structure/cable/white{ d1 = 1; @@ -112350,13 +108731,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/arrival, /area/hallway/secondary/entry) -"eqv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/arrival, -/area/hallway/secondary/entry) "eqw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ @@ -112460,10 +108834,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/neutral, /area/quartermaster/qm) -"eqK" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) "eqL" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plating, @@ -112472,16 +108842,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/greenblue/side, /area/hydroponics) -"eqN" = ( -/obj/structure/cable/white{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/fore) "eqO" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/neutral, @@ -112502,10 +108862,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/red, /area/crew_quarters/kitchen) -"eqS" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/miningoffice) "eqT" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/neutral, @@ -112613,10 +108969,6 @@ dir = 8 }, /area/security/brig) -"erh" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/storage/primary) "eri" = ( /obj/structure/cable/white{ d1 = 1; @@ -112658,15 +109010,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/neutral, /area/hallway/primary/starboard) -"ero" = ( -/obj/structure/cable/white{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/starboard) "erp" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/landmark/event_spawn, @@ -112689,15 +109032,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/grimy, /area/library) -"ert" = ( -/obj/structure/cable/white{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) "eru" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -112762,15 +109096,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/neutral/side, /area/maintenance/starboard) -"erC" = ( -/obj/structure/cable/white{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) "erD" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -112786,10 +109111,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/neutral, /area/crew_quarters/toilet/restrooms) -"erG" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) "erH" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/neutral/side, @@ -112805,32 +109126,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plating, /area/maintenance/port) -"erK" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port) -"erL" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port) -"erM" = ( -/obj/structure/cable/white{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"erN" = ( -/obj/structure/cable/white{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) "erO" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/event_spawn, @@ -112935,33 +109230,11 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/neutral, /area/medical/medbay/central) -"esd" = ( -/obj/structure/cable/white{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"ese" = ( -/obj/structure/cable/white{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) "esf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/landmark/event_spawn, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"esg" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/aft) "esh" = ( /obj/structure/cable/white{ d1 = 4; @@ -112976,15 +109249,6 @@ dir = 1 }, /area/maintenance/port) -"esi" = ( -/obj/structure/cable/white{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/blue, -/area/medical/medbay/central) "esj" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/neutral, @@ -113064,10 +109328,6 @@ icon_state = "chapel" }, /area/chapel/main) -"esu" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) "esv" = ( /obj/structure/closet/secure_closet/miner/unlocked, /turf/open/floor/plasteel/yellow/side{ @@ -113097,9 +109357,6 @@ "esz" = ( /turf/closed/wall/r_wall, /area/maintenance/department/medical/morgue) -"esA" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/medical/morgue) "esB" = ( /turf/closed/wall, /area/maintenance/department/medical/morgue) @@ -113129,23 +109386,19 @@ dir = 5 }, /area/maintenance/department/medical/morgue) -"esF" = ( -/turf/closed/wall, -/area/maintenance/department/medical/morgue) -"esG" = ( -/turf/closed/wall, -/area/maintenance/department/medical/morgue) -"esH" = ( -/turf/closed/wall, -/area/maintenance/department/medical/morgue) -"esI" = ( -/obj/machinery/vending/kink, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"esJ" = ( -/obj/machinery/vending/kink, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) +"YGI" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate_nw"; + name = "northwest of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space/basic, +/area/space) (1,1,1) = {" aaa @@ -122196,16 +118449,16 @@ aaa aaa aaa aaa -ejC -adn -adn -adn -adn -adn -adn -adn -adn -aes +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -122447,22 +118700,22 @@ aaa aaa aaa aaa -ejC -adn -adn -adn -adn -adn -adn -aiN -ajI -aiN -alK -amN -anW -aoz -aoC -apA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -122704,22 +118957,22 @@ aaa aaa aaa aaa -adn -afv -afK -afK -afK -aho -adn -agG -aeh -aeG -aeG -amO -aeG -aoA -aoC -apB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -122961,22 +119214,22 @@ aaa aaa aaa aaa -adn -aeG -aeG -aeG -aeG -aeG -aia -ehe -aeh -akK -alL -amP -anX -aoB -aoC -apC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -123211,29 +119464,29 @@ aaa aaa aaa aaa -ejC -adn -adn -adn -aes aaa aaa -adn -aeG -aeG -aeG -aeG -aeG -adn -aiO -aeh -akL -age -amQ -adn -adn -adn -aeI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -123468,26 +119721,26 @@ aaa aaa aaa aaa -adn -adA -adT -aeh -adn -aeE aaa -adn -afw -afL -ehd -agG -ahp -adn -aiP -aeh -akL -age -amR -adn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -123725,28 +119978,28 @@ aaa aaa aaa aaa -ado -adB -adU -aeh -adn -adn -adn -adn -adn -adn -adn -agH -agb -adn -adn -adn -akM -agb -adn -adn -adn -aes +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -123982,28 +120235,28 @@ aaa aaa aaa aaa -ado -adC -adV -aeh -aet -aeF -aeT -ehb -aeT -aeT -agb -aeG -aeG -aeG -aeG -ehf -akL -age -aeh -agb -aoC -apA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -124239,28 +120492,28 @@ aaa aaa aaa aaa -ado -adD -adW -aeh -aeu -aeG -adV -adV -adV -aeG -agc -aeG -adV -adV -adV -adV -akL -age -aeh -anY -aoC -apB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -124496,28 +120749,28 @@ aaa aaa aaa aaa -ado -adE -adV -aeh -adn -aeH -aeU -ehc -aeU -aeU -agb -aeG -aeG -aeG -aeG -ehg -akL -age -aeh -agb -aoC -apC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -124753,28 +121006,28 @@ aaa aaa aaa aaa -ado -adF -adX -aeh -adn -adn -adn -afk -adn -adn -adn -agI -agb -adn -adn -adn -akM -agb -adn -adn -adn -aev +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -125010,26 +121263,26 @@ aaa aaa aaa aaa -adn -adG -adY -aeh -adn -aeI aaa aaa aaa -adn -agd -aeG -ahq -adn -aiQ -aeh -akL -age -amS -adn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -125267,29 +121520,29 @@ aaa aaa aaa aaa -adp -adn -adn -adn -aev aaa aaa aaa aaa -afM -age -aeG -ahq -adn -aiR -aeh -akL -age -amT -adn -adn -adn -aeE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -125500,6 +121753,20 @@ aaa aaa aaa aaa +YGI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -125533,20 +121800,6 @@ aaa aaa aaa aaa -afN -agf -aeG -ahr -aet -aiS -aeh -akN -alM -amP -aeG -aoE -aoC -apA aaa aaa aaa @@ -125790,20 +122043,20 @@ aaa aaa aaa aaa -adp -adn -adn -adn -adn -aiT -aeh -aeG -aeG -amU -aeG -aoF -aoC -apB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -126050,17 +122303,17 @@ aaa aaa aaa aaa -ahs -adn -aiU -aeh -akO -alN -amV -ehg -aoE -aoC -apC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -126308,16 +122561,16 @@ aaa aaa aaa aaa -adp -adn -adn -adn -adn -adn -adn -adn -adn -aev +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -137481,7 +133734,7 @@ dmb dnA doK dqw -esJ +diJ aJm aHW aaf @@ -143552,7 +139805,7 @@ aib asx atw auQ -esI +aic awX aye azn @@ -145318,7 +141571,7 @@ aaD aax aax aaD -abT +abP aax egU aax @@ -147132,7 +143385,7 @@ edo eex edo aaf -abT +abP adr agl equ @@ -149184,7 +145437,7 @@ adr aax egW aax -abT +abP aaD aax aax @@ -149459,12 +145712,12 @@ akm aom aoZ aqq -ehU -ehU -ehU -ehU -ehU -ehU +arv +arv +arv +arv +arv +arv ayy azx aAx @@ -149716,7 +145969,7 @@ ahA ahA aoV aqr -ehU +arv asM atO atO @@ -149973,12 +146226,12 @@ anx ahA apa aqs -ehU +arv asN atP avh -ehU -ehU +arv +arv ayy aqc aAx @@ -150201,7 +146454,7 @@ aaD aax aax aaD -abT +abP aax egT aax @@ -150230,7 +146483,7 @@ any aon apb aqt -ehU +arv asO atQ avi @@ -150487,12 +146740,12 @@ anz ahA apc aqu -ehU +arv asP atR avj -ehU -ehU +arv +arv ayy aqc aAx @@ -150744,8 +146997,8 @@ ahA ahB aib aqv -ehU -ehU +arv +arv atS avk awk @@ -151002,11 +147255,11 @@ afO apd aqw arw -ehU +arv atT avl -ehU -ehU +arv +arv ayy aqc aAx @@ -151517,10 +147770,10 @@ ape aqy ary asR -ehU -ehU -ehU -ehU +arv +arv +arv +arv ayy azz aAx @@ -153810,7 +150063,7 @@ adr aax egU aax -abT +abP aaD aax aax diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm index 665b0a39ae..6ee616671a 100644 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -1,4 +1,4 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aaa" = ( /turf/open/space/basic, /area/space) @@ -19,19 +19,6 @@ /obj/effect/landmark/carpspawn, /turf/open/space, /area/space) -"aad" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 9 - }, -/turf/closed/wall/mineral/plastitanium{ - dir = 8; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"aae" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) "aaf" = ( /obj/structure/lattice, /turf/open/space, @@ -386,16 +373,6 @@ "aaV" = ( /turf/closed/wall/mineral/titanium, /area/shuttle/pod_2) -"aaW" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 5 - }, -/turf/closed/wall/mineral/plastitanium{ - dir = 1; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) "aaX" = ( /turf/open/space, /turf/closed/wall/mineral/plastitanium{ @@ -441,10 +418,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/security/prison) -"abd" = ( -/obj/machinery/recharge_station, -/turf/open/floor/circuit/red, -/area/shuttle/syndicate) "abe" = ( /turf/closed/wall, /area/security/prison) @@ -918,10 +891,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/security/prison) -"acd" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel/floorgrime, -/area/security/prison) "ace" = ( /obj/machinery/vending/sustenance{ desc = "A vending machine normally reserved for work camps."; @@ -7374,10 +7343,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/security/warden) -"aov" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/warden) "aow" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ @@ -10144,23 +10109,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atC" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fore) "atD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -12712,9 +12660,6 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/labor) -"ayv" = ( -/turf/closed/wall, -/area/security/execution/education) "ayw" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -21252,14 +21197,6 @@ }, /turf/open/floor/plating, /area/shuttle/auxillary_base) -"aPc" = ( -/obj/machinery/door/poddoor/shutters{ - id = "syndieshutters"; - name = "blast shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/shuttle/syndicate) "aPd" = ( /obj/machinery/light/small{ dir = 1 @@ -22113,15 +22050,6 @@ }, /turf/open/floor/plasteel/black, /area/security/courtroom) -"aQI" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - req_access_txt = 1 - }, -/turf/open/floor/plasteel/black, -/area/security/courtroom) "aQJ" = ( /obj/machinery/vending/coffee, /turf/open/floor/plasteel/black, @@ -25181,10 +25109,6 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"aWS" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/entry) "aWT" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -26615,17 +26539,6 @@ "aZt" = ( /turf/closed/wall, /area/storage/tools) -"aZu" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/storage/tools) "aZv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/maintenance/abandoned{ @@ -28522,7 +28435,7 @@ }, /area/security/checkpoint/engineering) "bcO" = ( -/obj/machinery/vending/kink, +/obj/structure/easel, /turf/open/floor/plating{ icon_state = "platingdmg3" }, @@ -28543,9 +28456,6 @@ }, /turf/open/space, /area/space) -"bcR" = ( -/turf/closed/wall/mineral/titanium/overspace, -/area/shuttle/arrival) "bcS" = ( /turf/closed/wall/mineral/titanium, /area/shuttle/arrival) @@ -29337,13 +29247,6 @@ }, /turf/closed/wall/r_wall, /area/space) -"ber" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space) "bes" = ( /obj/structure/window/reinforced{ dir = 8 @@ -32206,16 +32109,6 @@ }, /turf/open/floor/plasteel, /area/engine/break_room) -"bjN" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/space, -/area/space) "bjO" = ( /obj/structure/window/reinforced{ dir = 4 @@ -33148,16 +33041,6 @@ /obj/structure/window/reinforced, /turf/open/space, /area/space) -"blz" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/black, -/area/aisat) "blA" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on, /obj/structure/window/reinforced, @@ -37136,17 +37019,6 @@ dir = 8 }, /area/hallway/primary/port) -"bsF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - req_access_txt = 1 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) "bsG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -39920,19 +39792,6 @@ }, /turf/open/floor/plating, /area/crew_quarters/heads/hop) -"bya" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "hop"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hop) "byb" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/brigdoor{ @@ -42258,26 +42117,6 @@ }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bCT" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/library) -"bCU" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen/blue{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/library) "bCV" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/carpet, @@ -48032,12 +47871,6 @@ /obj/item/clothing/mask/cigarette/pipe, /turf/open/floor/plating, /area/maintenance/port) -"bOj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - req_access_txt = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) "bOk" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/centcom{ @@ -48222,20 +48055,6 @@ }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bOA" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bridge/showroom/corporate) "bOB" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -48713,20 +48532,6 @@ }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"bPB" = ( -/obj/structure/chair/office/dark{ - dir = 1; - name = "tactical swivel chair" - }, -/obj/machinery/button/door{ - id = "syndieshutters"; - name = "Cockpit View Control"; - pixel_x = 32; - pixel_y = 32; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) "bPC" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -49410,12 +49215,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, /area/aisat) -"bRb" = ( -/obj/machinery/computer/crew/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) "bRc" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -50143,12 +49942,6 @@ }, /turf/open/floor/engine/plasma, /area/engine/atmos) -"bSm" = ( -/obj/machinery/computer/med_data/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) "bSn" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -50722,17 +50515,6 @@ /obj/item/storage/box, /turf/open/floor/plating, /area/maintenance/port) -"bTu" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - req_access_txt = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) "bTv" = ( /obj/structure/rack, /obj/item/paper, @@ -53791,15 +53573,6 @@ "bZo" = ( /turf/closed/wall, /area/security/checkpoint/science/research) -"bZp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - req_access_txt = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "bZq" = ( /obj/item/reagent_containers/food/snacks/grown/wheat, /obj/item/reagent_containers/food/snacks/grown/watermelon, @@ -56217,12 +55990,6 @@ dir = 4 }, /area/security/checkpoint/science/research) -"cdT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - req_access_txt = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "cdU" = ( /obj/machinery/door/airlock/maintenance{ name = "Hydroponics Maintenance"; @@ -57519,17 +57286,6 @@ "cgq" = ( /turf/closed/wall/r_wall, /area/science/explab) -"cgr" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - req_access_txt = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "cgs" = ( /turf/open/floor/plating{ icon_state = "platingdmg2" @@ -58224,13 +57980,6 @@ /obj/machinery/portable_atmospherics/canister, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"chK" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel/floorgrime, -/area/maintenance/disposal/incinerator) "chL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ @@ -62388,12 +62137,6 @@ "cpU" = ( /turf/open/floor/plasteel/white, /area/medical/surgery) -"cpV" = ( -/obj/machinery/porta_turret/syndicate{ - dir = 4 - }, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) "cpW" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -63160,12 +62903,6 @@ /obj/machinery/iv_drip, /turf/open/floor/plasteel/white, /area/medical/surgery) -"crp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - req_access_txt = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) "crq" = ( /obj/structure/bed, /obj/item/bedsheet/medical, @@ -64306,10 +64043,10 @@ /turf/open/space, /area/space) "ctn" = ( +/obj/machinery/vending/cigarette, /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/vending/kink, /turf/open/floor/plating, /area/maintenance/port/aft) "cto" = ( @@ -67124,20 +66861,6 @@ "cyK" = ( /turf/closed/wall/r_wall, /area/science/mixing) -"cyL" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - req_access_txt = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "cyM" = ( /obj/machinery/door/airlock/research{ name = "Toxins Space Access"; @@ -74259,17 +73982,6 @@ icon_state = "platingdmg2" }, /area/maintenance/starboard/aft) -"cLG" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "cLH" = ( /obj/machinery/space_heater, /obj/effect/turf_decal/stripes/line{ @@ -77200,12 +76912,6 @@ /obj/structure/fans/tiny, /turf/open/floor/plating, /area/chapel/main) -"cRQ" = ( -/obj/machinery/computer/shuttle/syndicate, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) "cRR" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -77475,16 +77181,6 @@ "cSt" = ( /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cSu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) "cSv" = ( /obj/machinery/door/window/northleft{ dir = 4; @@ -77629,12 +77325,6 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cSH" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "cSI" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; @@ -78037,43 +77727,6 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"cTl" = ( -/obj/machinery/door/poddoor{ - id = "smindicate"; - name = "outer blast door" - }, -/obj/machinery/button/door{ - id = "smindicate"; - name = "external door control"; - pixel_x = -26; - req_access_txt = "150" - }, -/obj/docking_port/mobile{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate"; - name = "syndicate infiltrator"; - port_direction = 1; - roundstart_move = "syndicate_away"; - width = 18 - }, -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate_nw"; - name = "northwest of station"; - turf_type = /turf/open/space; - width = 18 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) "cTm" = ( /obj/structure/cable/yellow, /obj/structure/cable/yellow{ @@ -78171,15 +77824,6 @@ /obj/machinery/light/small, /turf/open/floor/mineral/titanium/blue, /area/shuttle/pod_4) -"cTv" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK" - }, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) "cTw" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/item/storage/box/lights/mixed, @@ -78224,147 +77868,14 @@ /obj/machinery/shieldwallgen/xenobiologyaccess, /turf/open/floor/plating, /area/science/xenobiology) -"cTE" = ( -/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cTF" = ( -/obj/machinery/computer/camera_advanced/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cTG" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cTH" = ( -/obj/structure/table/reinforced, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/item/clipboard, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/folder/red, -/obj/item/toy/figure/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cTI" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cTJ" = ( -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cTK" = ( -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - freerange = 1; - frequency = 1213; - name = "Syndicate Intercom"; - pixel_y = -32; - subspace_transmission = 1; - syndie = 1 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"cTL" = ( -/obj/structure/closet/syndicate/personal, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"cTM" = ( -/turf/open/space, -/turf/closed/wall/mineral/plastitanium{ - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"cTN" = ( -/obj/machinery/door/airlock/hatch{ - name = "Cockpit"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cTO" = ( -/turf/open/space, -/turf/closed/wall/mineral/plastitanium{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"cTP" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil/white, -/obj/item/stack/cable_coil/white, -/obj/item/crowbar/red, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cTQ" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/handcuffs{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/zipties, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) "cTR" = ( /obj/effect/landmark/xmastree, /turf/open/floor/wood, /area/crew_quarters/bar) -"cTS" = ( -/obj/structure/chair{ - dir = 8; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) "cTT" = ( /obj/structure/disposalpipe/segment, /turf/closed/wall/r_wall, /area/science/xenobiology) -"cTU" = ( -/obj/machinery/door/airlock/external{ - name = "Ready Room"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cTV" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 5 - }, -/area/shuttle/syndicate) -"cTW" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) "cTX" = ( /obj/docking_port/stationary{ dheight = 9; @@ -78378,381 +77889,10 @@ }, /turf/open/space, /area/space) -"cTY" = ( -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cTZ" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cUa" = ( -/turf/open/space, -/turf/closed/wall/mineral/plastitanium{ - dir = 1; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"cUb" = ( -/obj/machinery/sleeper/syndie{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cUc" = ( -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = -3 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 4; - pixel_y = 1 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 2; - pixel_y = 8 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cUd" = ( -/obj/machinery/door/airlock/external{ - name = "E.V.A. Gear Storage"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cUe" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "150" - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"cUf" = ( -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "EVA Storage"; - req_access_txt = "150" - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"cUg" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"cUh" = ( -/obj/structure/rack, -/obj/item/clothing/suit/space/syndicate/black/red, -/obj/item/clothing/head/helmet/space/syndicate/black/red, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"cUi" = ( -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - freerange = 1; - frequency = 1213; - name = "Syndicate Intercom"; - pixel_x = -32; - subspace_transmission = 1; - syndie = 1 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"cUj" = ( -/obj/structure/closet/syndicate/nuclear, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cUk" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cUl" = ( -/obj/structure/table/reinforced, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cUm" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cUn" = ( -/obj/item/screwdriver{ - pixel_y = 9 - }, -/obj/item/device/assembly/voice{ - pixel_y = 3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cUo" = ( -/obj/item/stock_parts/cell/high{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stock_parts/cell/high, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cUp" = ( -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cUq" = ( -/obj/item/wrench, -/obj/item/device/assembly/infra, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cUr" = ( -/obj/item/weldingtool/largetank{ - pixel_y = 3 - }, -/obj/item/device/multitool, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cUs" = ( -/obj/structure/sign/bluecross_2, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"cUt" = ( -/obj/machinery/door/window/westright{ - name = "Tool Storage"; - req_access_txt = "150" - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"cUu" = ( -/obj/structure/table, -/obj/item/storage/toolbox/syndicate, -/obj/item/crowbar/red, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"cUv" = ( -/obj/machinery/door/airlock/hatch{ - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cUw" = ( -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Infirmary"; - req_access_txt = "150" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"cUx" = ( -/obj/machinery/door/window{ - dir = 8; - name = "Tool Storage"; - req_access_txt = "150" - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"cUy" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Surgery"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cUz" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/bodypart/r_arm/robot, -/obj/item/bodypart/l_arm/robot, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cUA" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/brute, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cUB" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cUC" = ( -/obj/item/grenade/syndieminibomb{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/grenade/syndieminibomb{ - pixel_x = -1 - }, -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cUD" = ( -/obj/item/device/sbeacondrop/bomb{ - pixel_y = 5 - }, -/obj/item/device/sbeacondrop/bomb, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cUE" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"cUF" = ( -/obj/item/surgicaldrill, -/obj/item/circular_saw, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"cUG" = ( -/obj/machinery/telecomms/allinone{ - intercept = 1 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) "cUH" = ( /obj/structure/table/optable, /turf/open/floor/plasteel/white, /area/medical/surgery) -"cUI" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 30 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"cUJ" = ( -/obj/machinery/nuclearbomb/syndicate, -/obj/machinery/door/window{ - dir = 1; - name = "Theatre Stage"; - req_access_txt = "0" - }, -/turf/open/floor/circuit/red, -/area/shuttle/syndicate) -"cUK" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) "cUL" = ( /obj/docking_port/stationary/random{ dir = 4; @@ -78792,21 +77932,6 @@ /obj/effect/landmark/start/scientist, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cUO" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"cUP" = ( -/obj/structure/shuttle/engine/propulsion/left, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"cUQ" = ( -/obj/structure/shuttle/engine/propulsion/right, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) "cUR" = ( /obj/machinery/atmospherics/pipe/simple/dark/visible{ dir = 4 @@ -79236,9 +78361,6 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cVW" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) "cVX" = ( /obj/structure/tank_dispenser/oxygen{ layer = 2.7; @@ -79816,7 +78938,6 @@ /area/shuttle/abandoned) "cWT" = ( /obj/structure/table, -/obj/item/device/camera, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" @@ -79824,6 +78945,8 @@ /obj/structure/light_construct{ dir = 1 }, +/obj/item/folder/blue, +/obj/item/pen, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) "cWU" = ( @@ -79832,6 +78955,8 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, +/obj/structure/table, +/obj/item/device/camera, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) "cWV" = ( @@ -79906,16 +79031,6 @@ /obj/structure/easel, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"cXe" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) "cXf" = ( /obj/structure/table, /obj/item/folder/blue, @@ -80163,14 +79278,6 @@ "cXA" = ( /turf/closed/wall/r_wall, /area/security/checkpoint/engineering) -"cXB" = ( -/obj/structure/chair/office/light, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) "cXC" = ( /obj/item/phone{ pixel_x = -3; @@ -80229,13 +79336,15 @@ /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) "cXH" = ( -/obj/structure/table, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/item/device/megaphone, /obj/structure/light_construct, +/obj/machinery/computer/camera_advanced/shuttle_docker/whiteship{ + x_offset = -3; + y_offset = -7 + }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) "cXI" = ( @@ -80941,13 +80050,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, /area/construction/mining/aux_base) -"cYR" = ( -/obj/structure/table, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) "cYS" = ( /obj/item/device/radio/intercom{ dir = 4; @@ -81183,14 +80285,6 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/escape) -"cZu" = ( -/obj/machinery/status_display{ - dir = 8; - pixel_x = 32 - }, -/obj/machinery/holopad, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) "cZv" = ( /turf/open/floor/circuit/killroom, /area/science/xenobiology) @@ -81625,15 +80719,6 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/mineral/titanium, /area/shuttle/escape) -"day" = ( -/turf/open/space, -/area/shuttle/syndicate) -"daz" = ( -/obj/machinery/porta_turret/syndicate{ - dir = 5 - }, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) "daA" = ( /obj/machinery/door/window/southleft{ dir = 2; @@ -81794,16 +80879,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/circuit/killroom, /area/science/xenobiology) -"daT" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 6 - }, -/turf/closed/wall/mineral/plastitanium{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) "daW" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -81961,9 +81036,6 @@ }, /turf/open/floor/engine, /area/science/xenobiology) -"dbu" = ( -/turf/open/floor/engine/vacuum, -/area/engine/atmos) "dbv" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light/small, @@ -81978,35 +81050,6 @@ }, /turf/open/floor/circuit/killroom, /area/science/xenobiology) -"dbx" = ( -/obj/structure/table/optable, -/obj/item/surgical_drapes, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"dby" = ( -/obj/item/cautery, -/obj/item/scalpel, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"dbz" = ( -/obj/item/retractor, -/obj/item/hemostat, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"dbA" = ( -/obj/machinery/telecomms/allinone{ - intercept = 1 - }, -/turf/open/floor/circuit/red, -/area/shuttle/syndicate) "dbB" = ( /obj/docking_port/stationary{ dheight = 9; @@ -82061,15 +81104,6 @@ dir = 4 }, /area/chapel/main) -"dbG" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 10 - }, -/turf/closed/wall/mineral/plastitanium{ - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) "dbH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, @@ -83233,15 +82267,6 @@ /obj/structure/disposaloutlet, /turf/open/floor/plating/airless, /area/science/xenobiology) -"ddD" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/machinery/deepfryer, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/kitchen) "ddE" = ( /obj/effect/landmark/start/cook, /obj/machinery/holopad, @@ -83310,12 +82335,6 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"ddR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) "ddS" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 6 @@ -83552,24 +82571,6 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"det" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Mix Bypass" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) "deu" = ( /obj/structure/cable/white{ d1 = 4; @@ -83722,16 +82723,6 @@ /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, /area/engine/supermatter) -"deT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/critical{ - dir = 1; - filter_type = "plasma" - }, -/turf/open/floor/engine, -/area/engine/engineering) "deU" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -84412,11 +83403,6 @@ }, /turf/open/space, /area/space) -"dhm" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) "dhn" = ( /obj/structure/table, /obj/item/poster/random_contraband, @@ -85436,10 +84422,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"diX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/space, -/area/science/xenobiology) "djg" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -85504,37 +84486,6 @@ }, /turf/open/floor/plating, /area/engine/supermatter) -"dju" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"djv" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"djw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/engineering) "djx" = ( /obj/structure/cable{ d1 = 1; @@ -85548,18 +84499,6 @@ }, /turf/open/floor/plating, /area/engine/supermatter) -"djy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/engineering) "djz" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 2; @@ -85567,13 +84506,6 @@ }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"djA" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; - name = "Arrival Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) "djB" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -85597,61 +84529,12 @@ }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"djD" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; - name = "Arrival Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) "djE" = ( /obj/structure/chair{ dir = 8 }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/arrival) -"djF" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"djG" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"djH" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"djI" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"djJ" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"djK" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"djL" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) "djM" = ( /obj/structure/shuttle/engine/propulsion{ dir = 4 @@ -85667,64 +84550,12 @@ }, /turf/open/floor/plating/airless, /area/shuttle/arrival) -"djN" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"djO" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"djP" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"djQ" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) "djR" = ( /obj/machinery/door/airlock/titanium{ name = "Arrivals Shuttle Airlock" }, /turf/open/floor/plating, /area/shuttle/arrival) -"djS" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; - name = "Arrival Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"djT" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; - name = "Arrival Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"djU" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; - name = "Arrival Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"djV" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; - name = "Arrival Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) "djW" = ( /obj/structure/table/wood, /obj/item/clipboard, @@ -85742,363 +84573,6 @@ }, /turf/open/floor/plating, /area/chapel/main) -"djY" = ( -/obj/machinery/computer/secure_data/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"djZ" = ( -/obj/structure/chair/office/dark{ - dir = 8; - name = "tactical swivel chair" - }, -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"dka" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"dkb" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"dkc" = ( -/obj/structure/chair/office/dark{ - dir = 4; - name = "tactical swivel chair" - }, -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"dkd" = ( -/obj/structure/table/reinforced, -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/obj/item/storage/fancy/donut_box, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"dke" = ( -/obj/machinery/status_display, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"dkf" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"dkg" = ( -/obj/structure/chair{ - dir = 4; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"dkh" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"dki" = ( -/obj/structure/chair{ - dir = 4; - name = "tactical chair" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"dkj" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"dkk" = ( -/obj/structure/chair{ - dir = 8; - name = "tactical chair" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"dkl" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"dkm" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"dkn" = ( -/obj/structure/chair{ - dir = 4; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"dko" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"dkp" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 4 - }, -/area/shuttle/syndicate) -"dkq" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"dkr" = ( -/obj/structure/chair{ - dir = 4; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"dks" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 4 - }, -/area/shuttle/syndicate) -"dkt" = ( -/obj/item/storage/toolbox/syndicate, -/obj/item/crowbar/red, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/podhatch{ - dir = 10 - }, -/area/shuttle/syndicate) -"dku" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate) -"dkv" = ( -/obj/structure/chair{ - name = "tactical chair" - }, -/turf/open/floor/plasteel/podhatch{ - dir = 6 - }, -/area/shuttle/syndicate) -"dkw" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 4 - }, -/area/shuttle/syndicate) -"dkx" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"dky" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 6 - }, -/area/shuttle/syndicate) -"dkz" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"dkA" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"dkB" = ( -/obj/structure/chair{ - dir = 1; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"dkC" = ( -/obj/structure/chair{ - dir = 1; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"dkD" = ( -/obj/structure/rack, -/obj/item/clothing/suit/space/syndicate/black/red, -/obj/item/clothing/head/helmet/space/syndicate/black/red, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"dkE" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"dkF" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"dkG" = ( -/obj/machinery/status_display, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"dkH" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"dkI" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"dkJ" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"dkK" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"dkL" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 9 - }, -/area/shuttle/syndicate) -"dkM" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"dkN" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"dkO" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"dkP" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"dkQ" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"dkR" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"dkS" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"dkT" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 5 - }, -/area/shuttle/syndicate) -"dkU" = ( -/obj/structure/closet/syndicate/personal, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"dkV" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"dkW" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 10 - }, -/area/shuttle/syndicate) -"dkX" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate) -"dkY" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate) -"dkZ" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate) -"dla" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate) -"dlb" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate) -"dlc" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate) -"dld" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate) -"dle" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 6 - }, -/area/shuttle/syndicate) -"dlf" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Technological Storage"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"dlg" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/device/aicard, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"dlh" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) "dli" = ( /obj/structure/chair, /obj/machinery/light/small{ @@ -86194,12 +84668,6 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/escape) -"dlu" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) "dlv" = ( /obj/structure/table, /obj/item/stack/medical/gauze, @@ -86292,34 +84760,10 @@ "dlI" = ( /turf/closed/wall/r_wall, /area/engine/supermatter) -"dlJ" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"dlK" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"dlL" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"dlM" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) "dlN" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, /area/engine/supermatter) -"dlO" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"dlP" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"dlQ" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"dlR" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) "dlS" = ( /obj/machinery/power/rad_collector/anchored, /obj/structure/cable{ @@ -86328,80 +84772,9 @@ }, /turf/open/floor/engine, /area/engine/supermatter) -"dlT" = ( -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"dlU" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) "dlV" = ( /turf/closed/wall/r_wall, /area/maintenance/department/science/xenobiology) -"dlW" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dlX" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dlY" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dlZ" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dma" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dmb" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dmc" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dmd" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dme" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dmf" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dmg" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dmh" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dmi" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dmj" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dmk" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dml" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dmm" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dmn" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dmo" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dmp" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) "dmq" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -86426,125 +84799,23 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dms" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dmt" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dmu" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dmv" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dmw" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dmx" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dmy" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dmz" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dmA" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dmB" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dmC" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) "dmD" = ( /obj/structure/displaycase/trophy, /turf/open/floor/wood, /area/library) -"dmE" = ( -/obj/structure/displaycase/trophy, -/turf/open/floor/wood, -/area/library) "dmF" = ( /turf/closed/wall, /area/quartermaster/sorting) -"dmG" = ( -/turf/closed/wall, -/area/quartermaster/sorting) "dmH" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/quartermaster/sorting) -"dmI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"dmJ" = ( -/turf/closed/wall, -/area/quartermaster/sorting) -"dmK" = ( -/turf/closed/wall, -/area/quartermaster/sorting) -"dmL" = ( -/turf/closed/wall, -/area/quartermaster/sorting) -"dmM" = ( -/turf/closed/wall, -/area/quartermaster/sorting) -"dmN" = ( -/turf/closed/wall, -/area/quartermaster/sorting) -"dmO" = ( -/turf/closed/wall, -/area/quartermaster/sorting) -"dmP" = ( -/turf/closed/wall, -/area/quartermaster/sorting) -"dmQ" = ( -/turf/closed/wall, -/area/quartermaster/sorting) -"dmR" = ( -/turf/closed/wall, -/area/quartermaster/sorting) -"dmS" = ( -/turf/closed/wall, -/area/quartermaster/sorting) "dmT" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel, /area/quartermaster/sorting) -"dmU" = ( -/turf/closed/wall, -/area/quartermaster/sorting) -"dmV" = ( -/turf/closed/wall, -/area/quartermaster/sorting) -"dmW" = ( -/turf/closed/wall, -/area/quartermaster/sorting) -"dmX" = ( -/turf/closed/wall, -/area/quartermaster/sorting) -"dmY" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"dmZ" = ( -/turf/closed/wall, -/area/quartermaster/sorting) -"dna" = ( -/turf/closed/wall, -/area/quartermaster/sorting) -"dnb" = ( -/turf/closed/wall, -/area/quartermaster/sorting) -"dnc" = ( -/turf/closed/wall, -/area/quartermaster/sorting) "dnd" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating, @@ -86552,12 +84823,6 @@ "dne" = ( /turf/closed/wall, /area/maintenance/port/fore) -"dnf" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dng" = ( -/turf/closed/wall, -/area/maintenance/port/fore) "dnh" = ( /turf/closed/wall, /area/maintenance/starboard/fore) @@ -86565,31 +84830,10 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"dnj" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) "dnk" = ( /obj/structure/grille, /turf/open/floor/plating, /area/maintenance/port/fore) -"dnl" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dnm" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dnn" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dno" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dnp" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dnq" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) "dnr" = ( /obj/structure/cable/yellow{ d2 = 8; @@ -86605,49 +84849,14 @@ icon_state = "platingdmg2" }, /area/maintenance/port/fore) -"dns" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dnt" = ( -/turf/closed/wall, -/area/maintenance/port/fore) "dnu" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/maintenance/port/fore) -"dnv" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dnw" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dnx" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dny" = ( -/turf/closed/wall, -/area/maintenance/port/fore) "dnz" = ( /obj/machinery/space_heater, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"dnA" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dnB" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dnC" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dnD" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dnE" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) "dnF" = ( /turf/open/floor/plating{ icon_state = "panelscorched" @@ -86666,27 +84875,12 @@ "dnH" = ( /turf/open/floor/plating, /area/maintenance/port/fore) -"dnI" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dnJ" = ( -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dnK" = ( -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dnL" = ( -/turf/open/floor/plating, -/area/maintenance/port/fore) "dnM" = ( /obj/structure/chair{ dir = 8 }, /turf/open/floor/plating, /area/maintenance/port/fore) -"dnN" = ( -/turf/closed/wall, -/area/maintenance/port/fore) "dnO" = ( /obj/machinery/space_heater, /obj/effect/decal/cleanable/cobweb, @@ -86699,9 +84893,6 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/port/fore) -"dnQ" = ( -/turf/closed/wall, -/area/maintenance/port/fore) "dnR" = ( /obj/structure/grille, /turf/open/floor/plating, @@ -86709,40 +84900,11 @@ "dnS" = ( /turf/open/floor/plating, /area/maintenance/starboard/fore) -"dnT" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dnU" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dnV" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dnW" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dnX" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dnY" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/fore) "dnZ" = ( /turf/open/floor/plating{ icon_state = "platingdmg3" }, /area/maintenance/port/fore) -"doa" = ( -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dob" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"doc" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/fore) "dod" = ( /obj/item/cigbutt, /turf/open/floor/plating, @@ -86751,107 +84913,19 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port/fore) -"dof" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dog" = ( -/turf/closed/wall, -/area/maintenance/port/fore) "doh" = ( /turf/open/floor/plating{ icon_state = "platingdmg2" }, /area/maintenance/starboard/fore) -"doi" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"doj" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dok" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dol" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dom" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"don" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"doo" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dop" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"doq" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dor" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dos" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dot" = ( -/turf/closed/wall, -/area/maintenance/port/fore) "dou" = ( /obj/machinery/space_heater, /turf/open/floor/plating, /area/maintenance/port/fore) -"dov" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dow" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dox" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"doy" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"doz" = ( -/turf/closed/wall, -/area/maintenance/port/fore) "doA" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/maintenance/port/fore) -"doB" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"doC" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"doD" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"doE" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"doF" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"doG" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"doH" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"doI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) "doJ" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -86860,191 +84934,16 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"doK" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"doL" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"doM" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"doN" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"doO" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"doP" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"doQ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"doR" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"doS" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"doT" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"doU" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"doV" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"doW" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"doX" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"doY" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"doZ" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dpa" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dpb" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dpc" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dpd" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dpe" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dpf" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dpg" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dph" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dpi" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dpj" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) "dpk" = ( /obj/item/cigbutt, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"dpl" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dpm" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dpn" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dpo" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dpp" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dpq" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dpr" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) "dps" = ( /obj/machinery/space_heater, /turf/open/floor/plating{ icon_state = "panelscorched" }, /area/maintenance/starboard/fore) -"dpt" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dpu" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dpv" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dpw" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dpx" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dpy" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dpz" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dpA" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dpB" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dpC" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dpD" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dpE" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dpF" = ( -/turf/closed/wall, -/area/maintenance/port/fore) "dpG" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -87054,447 +84953,32 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/port/fore) -"dpH" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dpI" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dpJ" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dpK" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) "dpL" = ( /turf/open/floor/plating{ icon_state = "platingdmg3" }, /area/maintenance/starboard/fore) -"dpM" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dpN" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dpO" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dpP" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dpQ" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dpR" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dpS" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"dpT" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dpU" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dpV" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dpW" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dpX" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dpY" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dpZ" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dqa" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dqb" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dqc" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dqd" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port/fore) "dqe" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/maintenance/port/fore) -"dqf" = ( -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dqg" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dqh" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dqi" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dqj" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dqk" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dql" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dqm" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dqn" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dqo" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) "dqp" = ( /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) -"dqq" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dqr" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dqs" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dqt" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) "dqu" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"dqv" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dqw" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dqx" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dqy" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"dqz" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dqA" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dqB" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dqC" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dqD" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dqE" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dqF" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"dqG" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dqH" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dqI" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dqJ" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dqK" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dqL" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dqM" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dqN" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dqO" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dqP" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dqQ" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dqR" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/fore) -"dqS" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) "dqT" = ( /turf/closed/wall/r_wall, /area/maintenance/starboard/fore) -"dqU" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"dqV" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"dqW" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"dqX" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"dqY" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"dqZ" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"dra" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"drb" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"drc" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"drd" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"dre" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"drf" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"drg" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"drh" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"dri" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"drj" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"drk" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"drl" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"drm" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"drn" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dro" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"drp" = ( -/turf/open/floor/plating, -/area/maintenance/port/fore) -"drq" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"drr" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"drs" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"drt" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dru" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"drv" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"drw" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"drx" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dry" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"drz" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"drA" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"drB" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"drC" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"drD" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"drE" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"drF" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"drG" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"drH" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"drI" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"drJ" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"drK" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"drL" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"drM" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"drN" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"drO" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"drP" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port/fore) "drQ" = ( /turf/open/floor/plating{ icon_state = "platingdmg2" }, /area/maintenance/port/fore) -"drR" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"drS" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"drT" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"drU" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"drV" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"drW" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"drX" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"drY" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"drZ" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"dsa" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsb" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsc" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dsd" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dse" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsf" = ( -/turf/closed/wall, -/area/maintenance/port/fore) "dsg" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -87511,41 +84995,6 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"dsh" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dsi" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"dsj" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsk" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dsl" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dsm" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsn" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"dso" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsp" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsq" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsr" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) "dss" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -87560,138 +85009,6 @@ /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/maintenance/port/fore) -"dsu" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsv" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsw" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"dsx" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsy" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsz" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"dsA" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsB" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"dsC" = ( -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dsD" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dsE" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"dsF" = ( -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dsG" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsH" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsI" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsJ" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsK" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsL" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsM" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"dsN" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsO" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"dsP" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsQ" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsR" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsS" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsT" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsU" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsV" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsW" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"dsX" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dsY" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dsZ" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dta" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dtb" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"dtc" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dtd" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dte" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"dtf" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dtg" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dth" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dti" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"dtj" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dtk" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) "dtl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ @@ -87704,97 +85021,12 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"dtm" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dtn" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dto" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dtp" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"dtq" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dtr" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dts" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dtt" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dtu" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dtv" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dtw" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dtx" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"dty" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dtz" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dtA" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dtB" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dtC" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dtD" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) "dtE" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, /turf/open/floor/plating, /area/crew_quarters/locker) -"dtF" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dtG" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dtH" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dtI" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dtJ" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dtK" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dtL" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dtM" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dtN" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dtO" = ( -/turf/closed/wall, -/area/maintenance/port/fore) "dtP" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -87812,9 +85044,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"dtQ" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) "dtR" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -87845,272 +85074,28 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"dtT" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dtU" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dtV" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dtW" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dtX" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dtY" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dtZ" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dua" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dub" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"duc" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dud" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"due" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"duf" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dug" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"duh" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dui" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"duj" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"duk" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dul" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dum" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dun" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) "duo" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"dup" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"duq" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dur" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dus" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dut" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"duu" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"duv" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"duw" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) "dux" = ( /turf/closed/wall, /area/maintenance/port/aft) -"duy" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duz" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duA" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duB" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duC" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duD" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duE" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duF" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duG" = ( -/turf/closed/wall, -/area/maintenance/port/aft) "duH" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"duI" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duJ" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duK" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duL" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duM" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duN" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duO" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duP" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duQ" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duR" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duS" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duT" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duU" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duV" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duW" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duX" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duY" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duZ" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dva" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvb" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvc" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvd" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dve" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvf" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvg" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvh" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvi" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvj" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvk" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvl" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvm" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvn" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvo" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvp" = ( -/turf/closed/wall, -/area/maintenance/port/aft) "dvq" = ( /obj/machinery/space_heater, /turf/open/floor/plating, /area/maintenance/port/aft) -"dvr" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvs" = ( -/turf/closed/wall, -/area/maintenance/port/aft) "dvt" = ( /turf/open/floor/plating{ icon_state = "panelscorched" }, /area/maintenance/port/aft) -"dvu" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvv" = ( -/turf/closed/wall, -/area/maintenance/port/aft) "dvw" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -88120,99 +85105,13 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"dvx" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvy" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvz" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvA" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvB" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"dvC" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvD" = ( -/turf/closed/wall, -/area/maintenance/port/aft) "dvE" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/maintenance/port/aft) -"dvF" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvG" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvH" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvI" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvJ" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvK" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvL" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvM" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvN" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvO" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvP" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvQ" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvR" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvS" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvT" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvU" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvV" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvW" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dvX" = ( -/turf/closed/wall, -/area/maintenance/port/aft) "dvY" = ( /turf/closed/wall, /area/maintenance/starboard/aft) -"dvZ" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dwa" = ( -/turf/closed/wall, -/area/maintenance/port/aft) "dwb" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -88245,20 +85144,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plating, /area/maintenance/port/aft) -"dwd" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) "dwe" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -88274,48 +85159,6 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"dwf" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dwg" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dwh" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) "dwi" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -88341,39 +85184,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"dwk" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dwl" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dwm" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dwn" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dwo" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dwp" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dwq" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dwr" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dws" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dwt" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dwu" = ( -/turf/closed/wall, -/area/maintenance/port/aft) "dwv" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, @@ -88382,86 +85192,16 @@ /obj/structure/closet/firecloset, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"dwx" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dwy" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dwz" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dwA" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dwB" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dwC" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dwD" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dwE" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dwF" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dwG" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dwH" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dwI" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dwJ" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dwK" = ( -/turf/closed/wall, -/area/maintenance/port/aft) "dwL" = ( /turf/closed/wall/r_wall, /area/maintenance/starboard/aft) -"dwM" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) "dwN" = ( /turf/open/floor/plating, /area/maintenance/starboard/aft) -"dwO" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dwP" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "dwQ" = ( /obj/structure/chair/stool, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"dwR" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dwS" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dwT" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dwU" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dwV" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dwW" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "dwX" = ( /turf/open/floor/plating{ icon_state = "panelscorched" @@ -88471,151 +85211,25 @@ /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"dwZ" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dxa" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dxb" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dxc" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dxd" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dxe" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dxf" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dxg" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) "dxh" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"dxi" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dxj" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "dxk" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"dxl" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dxm" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dxn" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dxo" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dxp" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dxq" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"dxr" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dxs" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dxt" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dxu" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) "dxv" = ( /turf/open/floor/plating{ icon_state = "platingdmg3" }, /area/maintenance/port/aft) -"dxw" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dxx" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dxy" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dxz" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dxA" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dxB" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dxC" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dxD" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dxE" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dxF" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dxG" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dxH" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dxI" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dxJ" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dxK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dxL" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dxM" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/aft) -"dxN" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "dxO" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"dxP" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) "dxQ" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -88627,57 +85241,10 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"dxR" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dxS" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dxT" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dxU" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dxV" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dxW" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dxX" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dxY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dxZ" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dya" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dyb" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/aft) "dyc" = ( /obj/structure/grille, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"dyd" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dye" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dyf" = ( -/turf/closed/wall, -/area/maintenance/port/aft) "dyg" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -88692,34 +85259,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"dyh" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dyi" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) "dyj" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -88736,139 +85275,14 @@ icon_state = "panelscorched" }, /area/maintenance/port/aft) -"dyk" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dyl" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dym" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/aft) -"dyn" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dyo" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "dyp" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"dyq" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dyr" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dys" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dyt" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"dyu" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dyv" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) "dyw" = ( /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"dyx" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dyy" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/aft) -"dyz" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dyA" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dyB" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dyC" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dyD" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dyE" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dyF" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dyG" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dyH" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dyI" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dyJ" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dyK" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dyL" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dyM" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dyN" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dyO" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dyP" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/aft) "dyQ" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -88882,148 +85296,10 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/aft) -"dyR" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dyS" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dyT" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dyU" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dyV" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dyW" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dyX" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dyY" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dyZ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dza" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dzb" = ( -/turf/closed/wall, -/area/maintenance/port/aft) "dzc" = ( /obj/machinery/space_heater, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"dzd" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dze" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dzf" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dzg" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dzh" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dzi" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dzj" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dzk" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dzl" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dzm" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dzn" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dzo" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dzp" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dzq" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dzr" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dzs" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dzt" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dzu" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dzv" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dzw" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dzx" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dzy" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dzz" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dzA" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dzB" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dzC" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dzD" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dzE" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dzF" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dzG" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dzH" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/aft) "dzI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ @@ -89036,28 +85312,9 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"dzJ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "dzK" = ( /turf/closed/wall/r_wall, /area/maintenance/port/aft) -"dzL" = ( -/turf/closed/wall/r_wall, -/area/maintenance/port/aft) -"dzM" = ( -/turf/closed/wall/r_wall, -/area/maintenance/port/aft) -"dzN" = ( -/turf/closed/wall/r_wall, -/area/maintenance/port/aft) -"dzO" = ( -/turf/closed/wall/r_wall, -/area/maintenance/port/aft) -"dzP" = ( -/turf/closed/wall, -/area/maintenance/port/aft) "dzQ" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, @@ -89072,52 +85329,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"dzS" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dzT" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dzU" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dzV" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dzW" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dzX" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dzY" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dzZ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dAa" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAb" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAc" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "dAd" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 2; @@ -89128,34 +85339,10 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"dAe" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAf" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAg" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) "dAh" = ( /obj/item/storage/box, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"dAi" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAj" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAk" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAl" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAm" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) "dAn" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -89167,17 +85354,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"dAo" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "dAp" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -89189,25 +85365,6 @@ icon_state = "platingdmg3" }, /area/maintenance/starboard/aft) -"dAq" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAr" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAs" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAt" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAu" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAv" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "dAw" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -89237,200 +85394,20 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"dAy" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dAz" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dAA" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dAB" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dAC" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAD" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAE" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dAF" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dAG" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAH" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAI" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAJ" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAK" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAL" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAM" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAN" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAO" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAP" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAQ" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAR" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAS" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dAT" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAU" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAV" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAW" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dAX" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dAY" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "dAZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"dBa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dBb" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dBc" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dBd" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) "dBe" = ( /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/maintenance/starboard/aft) -"dBf" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dBg" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dBh" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/aft) -"dBi" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dBj" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dBk" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dBl" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dBm" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dBn" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dBo" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dBp" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dBq" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dBr" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dBs" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dBt" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) "dBu" = ( /turf/closed/wall, /area/engine/gravity_generator) -"dBv" = ( -/turf/closed/wall, -/area/engine/gravity_generator) "dBw" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -89488,14 +85465,6 @@ }, /turf/open/floor/plating, /area/security/brig) -"dBE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/security/brig) "dBF" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -89547,14 +85516,6 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/engine/atmos) -"dBL" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) "dBM" = ( /obj/structure/cable/yellow{ icon_state = "4-8"; @@ -89582,22 +85543,6 @@ /mob/living/carbon/monkey, /turf/open/floor/plasteel/freezer, /area/medical/virology) -"dBP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/medical/virology) -"dBQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/medical/virology) "dBR" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ @@ -89641,11 +85586,6 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/medical/virology) -"dBW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/medical/virology) "dBX" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/black, @@ -89685,10 +85625,6 @@ dir = 4 }, /area/crew_quarters/fitness/recreation) -"dCd" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/red, -/area/security/main) "dCe" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -89754,13 +85690,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plating, /area/maintenance/port/fore) -"dCm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/engineering) "dCn" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -89823,10 +85752,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/storage/primary) -"dCu" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/storage/primary) "dCv" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/floorgrime, @@ -89853,10 +85778,6 @@ icon_state = "panelscorched" }, /area/maintenance/port/fore) -"dCy" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/floorgrime, -/area/crew_quarters/locker) "dCz" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/black, @@ -89904,24 +85825,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/hallway/primary/central) -"dCF" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"dCG" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/central) "dCH" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -89950,10 +85853,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/black, /area/bridge) -"dCL" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/black, -/area/bridge) "dCM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -89986,20 +85885,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"dCQ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"dCR" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/black, -/area/bridge) "dCS" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/bar, @@ -90078,20 +85963,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"dDc" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"dDd" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/central) "dDe" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/cafeteria{ @@ -90117,15 +85988,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"dDh" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/central) "dDi" = ( /obj/machinery/newscaster{ pixel_x = -32 @@ -90133,24 +85995,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/wood, /area/library) -"dDj" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"dDk" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/central) "dDl" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/green/side{ @@ -90164,12 +86008,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/engine/atmos) -"dDn" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/green/side{ - dir = 8 - }, -/area/hydroponics) "dDo" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/white, @@ -90246,10 +86084,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plating, /area/maintenance/port/aft) -"dDx" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/aft) "dDy" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -90305,15 +86139,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/black, /area/medical/morgue) -"dDD" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/research) "dDE" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, @@ -90378,14 +86203,51 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"dDM" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Storage Room"; - req_access_txt = "12" +"dDN" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"dDO" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/structure/chair/office/light, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"dDP" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/structure/table, +/obj/item/device/megaphone, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"EDa" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate_nw"; + name = "northwest of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space/basic, +/area/space) (1,1,1) = {" aaa @@ -94779,16 +90641,16 @@ aaa aaa aaa aaa -aad -aae -aae -aae -aae -aae -aae -aae -aae -cTM +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -95030,22 +90892,22 @@ aaa aaa aaa aaa -aad -aae -aae -aae -aae -aae -aae -cUb -cUm -cUb -dkV -cUz -cUF -dby -cUK -cUP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -95287,22 +91149,22 @@ aaa aaa aaa aaa -aae -cTV -dkp -dkp -dkp -dky -aae -dkx -cTJ -dkf -dkf -cUy -dkf -dbx -cUK -cUO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -95544,22 +91406,22 @@ aaa aaa aaa aaa -aae -dkf -dkf -dkf -dkf -dkf -dkE -cUk -cTJ -dkL -dkW -cUB -cUI -dbz -cUK -cUQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -95794,29 +91656,29 @@ aaa aaa aaa aaa -aad -aae -aae -aae -cTM aaa aaa -aae -dkf -dkf -dkf -dkf -dkf -aae -cUc -cTJ -dkM -dku -cUA -aae -aae -aae -daT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -96051,26 +91913,26 @@ aaa aaa aaa aaa -aae -bSm -cTH -cTJ -aae -dbG aaa -aae -cTW -cTY -cTI -dkx -dkz -aae -cUl -cTJ -dkM -dku -cUE -aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -96308,28 +92170,28 @@ aaa aaa aaa aaa -aPc -bRb -djZ -cTJ -aae -aae -aae -aae -aae -aae -aae -cUd -cUg -aae -aae -aae -cUv -cUg -aae -aae -aae -cTM +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -96565,28 +92427,28 @@ aaa aaa aaa aaa -aPc -cTE -dka -cTJ -dke -cTP -dkg -dki -dkg -dkg -cUg -dkf -dkf -dkf -dkf -dkI -dkM -dku -cTJ -cUg -cUK -cUP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -96822,28 +92684,28 @@ aaa aaa aaa aaa -aPc -cRQ -bPB -cTJ -cTN -dkf -dka -dka -dka -dkf -cTU -dkf -dka -dka -dka -dka -dkM -dku -cTJ -cUJ -cUK -cUO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -97079,28 +92941,28 @@ aaa aaa aaa aaa -aPc -cTG -dka -cTJ -aae -cTQ -cTS -dkk -cTS -cTS -cUg -dkf -dkf -dkf -dkf -dkK -dkM -dku -cTJ -cUg -cUK -cUQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -97336,28 +93198,28 @@ aaa aaa aaa aaa -aPc -cTF -dkc -cTJ -aae -aae -aae -cpV -aae -aae -aae -cUe -cUg -aae -aae -aae -cUv -cUg -aae -aae -aae -cTO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -97593,26 +93455,26 @@ aaa aaa aaa aaa -aae -djY -dkd -cTJ -aae -daT aaa aaa aaa -aae -dkt -dkf -dkB -aae -cUo -cTJ -dkM -dku -cUD -aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -97850,29 +93712,29 @@ aaa aaa aaa aaa -aaW -aae -aae -aae -cTO aaa aaa aaa aaa -cTl -dku -dkf -dkB -aae -cUn -cTJ -dkM -dku -cUC -aae -aae -aae -dbG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -98116,20 +93978,20 @@ aaa aaa aaa aaa -cTv -dkv -dkf -dkD -dke -cUq -cTJ -dkT -dle -cUB -dkf -abd -cUK -cUP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -98373,20 +94235,20 @@ aaa aaa aaa aaa -aaW -aae -aae -aae -aae -cUp -cTJ -dkf -dkf -dlf -dkf -dbA -cUK -cUO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -98633,17 +94495,17 @@ aaa aaa aaa aaa -cUa -aae -cUr -cTJ -dkU -cUj -dlg -dkK -abd -cUK -cUQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -98891,16 +94753,16 @@ aaa aaa aaa aaa -aaW -aae -aae -aae -aae -aae -aae -aae -aae -cTO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -99908,7 +95770,7 @@ aaa aaa aaa aaa -aaa +EDa aaa aaa aaa @@ -101583,10 +97445,10 @@ cWt cWE cVF cWU -cXe -cWo -cXB cXa +cWo +cXa +dDP cVF cJI cYp @@ -101840,9 +97702,9 @@ cVG cVF cVF cWT -cVY +dDN cWo -cWR +dDO cXH cVF cVF @@ -123976,7 +119838,7 @@ cIi cJa dAp cKK -cLG +cxM dvY cNl dAZ @@ -126017,7 +121879,7 @@ cub cva cwb cIk -cLG +cxM dvY czD cQC @@ -130115,7 +125977,7 @@ ccI ced cfq cgw -chK +cfs ciZ ckD ciZ @@ -130627,7 +126489,7 @@ bZE cba ccK cef -chK +cfs czH cLC cjb @@ -134681,8 +130543,8 @@ arU atk aux avF -drc -drc +dqT +dqT aaf ack dea @@ -134938,8 +130800,8 @@ arV atl auy dnS -drc -drc +dqT +dqT aaf ack ack @@ -135196,7 +131058,7 @@ apm dnh dnS dnz -drc +dqT aaf aaf aaf @@ -135452,8 +131314,8 @@ aaa dnh auz dqp -drc -drc +dqT +dqT aaa aaa aaa @@ -135709,7 +131571,7 @@ aaf dni auA dnS -drc +dqT aaa aaa aaa @@ -135966,7 +131828,7 @@ aaa dnh auB avG -drc +dqT aaa aaa aaa @@ -136004,9 +131866,9 @@ aaf aaa aaf bAR -dbu -dbu -dbu +bCC +bCC +bCC bAR bJd bKI @@ -136029,8 +131891,8 @@ cgD chW cjl ckK -dbu -dbu +bCC +bCC ckM aaf bKK @@ -136223,7 +132085,7 @@ aaa dnh dnh atn -drc +dqT aaf aaa aaa @@ -136261,7 +132123,7 @@ aaf aaf aaf bAR -dbu +bCC bEe bGb bAR @@ -136285,9 +132147,9 @@ ccY ccY ccY cjm -dbu +bCC cme -dbu +bCC cjo aaa bKK @@ -136480,7 +132342,7 @@ ack atn bOY avG -drc +dqT aaf aaa aaa @@ -136543,8 +132405,8 @@ cgE chX cjn ckL -dbu -dbu +bCC +bCC bxc aaf aai @@ -136737,7 +132599,7 @@ aaf dnh dnh atn -drc +dqT aaf aaa aaa @@ -136994,7 +132856,7 @@ aaa aaa aaf ack -drc +dqT aaf anT anT @@ -142676,14 +138538,14 @@ aSD bes bgg bil -blz -blz +bjO +bjO bns bpF brS -blz -blz -blz +bjO +bjO +bjO bzk bAS anT diff --git a/_maps/map_files/OmegaStation/OmegaStation.dmm b/_maps/map_files/OmegaStation/OmegaStation.dmm index bf75b2ac43..620f34dfb3 100644 --- a/_maps/map_files/OmegaStation/OmegaStation.dmm +++ b/_maps/map_files/OmegaStation/OmegaStation.dmm @@ -1,4 +1,4 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aaa" = ( /turf/open/space/basic, /area/space) @@ -585,19 +585,6 @@ dir = 5 }, /area/bridge) -"abb" = ( -/obj/structure/cable/white{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) "abc" = ( /obj/structure/cable/white{ d1 = 4; @@ -2872,22 +2859,6 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aeY" = ( -/obj/structure/cable/white{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) "aeZ" = ( /obj/machinery/door/airlock/shuttle{ name = "Supply Shuttle Airlock"; @@ -3342,15 +3313,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"afJ" = ( -/obj/structure/cable/white{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/storage) "afK" = ( /obj/machinery/button/door{ dir = 2; @@ -4366,29 +4328,6 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"ahs" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "cargoload" - }, -/obj/structure/cable/white{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor{ - id = "cargoload"; - name = "supply dock loading door" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/quartermaster/storage) "aht" = ( /obj/machinery/door/poddoor{ id = "cargoload"; @@ -5684,12 +5623,6 @@ dir = 4 }, /area/hallway/primary/central) -"ajG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/brown/corner{ - dir = 4 - }, -/area/hallway/primary/central) "ajH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/plasticflaps{ @@ -5760,12 +5693,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating/airless, /area/shuttle/supply) -"ajP" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating/asteroid/airless, -/area/ruin/unpowered{ - name = "Asteroid" - }) "ajQ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/ore/iron, @@ -9860,12 +9787,6 @@ }, /turf/closed/wall/r_wall, /area/engine/atmos) -"aqB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) "aqC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -11455,25 +11376,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/storage/primary) -"ata" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) "atb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ @@ -11563,9 +11465,6 @@ dir = 8 }, /area/crew_quarters/bar/atrium) -"atk" = ( -/turf/closed/wall, -/area/crew_quarters/bar/atrium) "atl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 @@ -11644,23 +11543,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/primary/central) -"atu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external{ - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) "atv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -15248,16 +15130,6 @@ dir = 9 }, /area/engine/atmos) -"aAl" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) "aAm" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 9 @@ -18972,20 +18844,6 @@ dir = 1 }, /area/hallway/primary/central) -"aGY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/white{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) "aHe" = ( /turf/open/floor/plasteel/vault{ dir = 1 @@ -20908,15 +20766,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit) -"aKl" = ( -/obj/structure/cable/white{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/vacuum, -/turf/open/floor/plating, -/area/hallway/secondary/exit) "aKm" = ( /obj/machinery/door/airlock/shuttle{ name = "Emergency Shuttle Cargo" @@ -21542,13 +21391,6 @@ dir = 1 }, /area/hallway/primary/central) -"aLn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/central) "aLt" = ( /turf/open/floor/plasteel/brown{ dir = 5 @@ -23115,19 +22957,6 @@ /obj/structure/sign/botany, /turf/closed/wall, /area/hydroponics) -"aOl" = ( -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = 8 - }, -/obj/structure/sign/directions/security{ - dir = 8 - }, -/obj/structure/sign/directions/medical{ - pixel_y = -8 - }, -/turf/closed/wall, -/area/hallway/primary/central) "aOm" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-21" @@ -23182,11 +23011,6 @@ }, /turf/closed/wall, /area/hallway/primary/central) -"aOs" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/central) "aOt" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, @@ -23263,19 +23087,6 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aOA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) "aOB" = ( /obj/structure/cable{ d1 = 4; @@ -23733,19 +23544,6 @@ dir = 1 }, /area/hallway/primary/central) -"aPg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel/blue/corner{ - dir = 1 - }, -/area/hallway/primary/central) "aPh" = ( /obj/machinery/light{ dir = 1 @@ -23962,19 +23760,6 @@ dir = 4 }, /area/hallway/primary/central) -"aPv" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/white{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) "aPw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -24073,23 +23858,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/tcommsat/server) -"aPH" = ( -/obj/machinery/door/airlock/command{ - cyclelinkeddir = 2; - name = "Telecomms Server Room"; - req_access = null; - req_access_txt = "61" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/tcommsat/server) "aPI" = ( /obj/structure/cable/white{ d1 = 1; @@ -24359,24 +24127,6 @@ dir = 8 }, /area/hallway/primary/central) -"aQh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aQi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 8 - }, -/area/hallway/primary/central) "aQj" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/open/floor/plasteel/yellow/corner{ @@ -24576,14 +24326,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating/airless, /area/shuttle/escape) -"aQF" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tcommsat/server) "aQG" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 6 @@ -24612,14 +24354,6 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/server) -"aQI" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tcommsat/server) "aQJ" = ( /obj/machinery/meter, /obj/effect/turf_decal/stripes/corner{ @@ -24639,15 +24373,6 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aQL" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) "aQM" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -24860,36 +24585,6 @@ dir = 8 }, /area/hallway/primary/central) -"aRl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/white{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/hallway/primary/central) -"aRm" = ( -/turf/open/floor/plasteel/neutral/corner{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/hallway/primary/central) -"aRn" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aRo" = ( -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"aRp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) "aRq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/purple/corner, @@ -24950,10 +24645,6 @@ }, /turf/open/floor/plasteel, /area/science/research) -"aRw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/science/research) "aRx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -24998,16 +24689,6 @@ dir = 5 }, /area/tcommsat/server) -"aRC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tcommsat/server) "aRD" = ( /obj/structure/cable{ d1 = 1; @@ -25392,39 +25073,6 @@ }, /turf/open/floor/plasteel, /area/medical/chemistry) -"aSo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aSp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/white{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aSq" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall, -/area/hallway/primary/central) -"aSr" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/central) -"aSs" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/hallway/primary/central) "aSt" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -25604,10 +25252,6 @@ /obj/item/lighter, /turf/open/floor/plating, /area/maintenance/starboard) -"aSL" = ( -/obj/machinery/telecomms/server/presets/common/birdstation, -/turf/open/floor/circuit/green, -/area/tcommsat/server) "aSM" = ( /obj/machinery/door/airlock/command{ cyclelinkeddir = 2; @@ -27878,9 +27522,6 @@ dir = 1 }, /area/medical/medbay/zone3) -"aXv" = ( -/turf/closed/wall, -/area/hallway/primary/central) "aXw" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -29248,18 +28889,6 @@ }, /turf/open/floor/plasteel/neutral, /area/hallway/primary/central) -"aZS" = ( -/obj/structure/cable/white{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/central) -"aZT" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/hallway/primary/central) "aZU" = ( /obj/machinery/recharge_station, /obj/effect/decal/cleanable/dirt, @@ -30996,12 +30625,6 @@ }, /turf/open/floor/plating, /area/security/checkpoint) -"bdi" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) "bdj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -32019,17 +31642,6 @@ dir = 4 }, /area/maintenance/port) -"beX" = ( -/obj/structure/cable/white{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) "beY" = ( /obj/structure/cable/white{ d1 = 4; @@ -32153,19 +31765,6 @@ }, /turf/open/floor/plasteel/purple/corner, /area/hallway/primary/central) -"bfh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/central) "bfi" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Maintenance Hatch"; @@ -32585,18 +32184,6 @@ }, /turf/open/floor/plasteel/neutral, /area/hallway/primary/central) -"bfN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/white{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) "bfO" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -32817,15 +32404,6 @@ heat_capacity = 1e+006 }, /area/hallway/primary/central) -"bgg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/hallway/primary/central) "bgh" = ( /obj/effect/landmark/lightsout, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -32833,22 +32411,6 @@ }, /turf/open/floor/plasteel/neutral/side, /area/hallway/primary/central) -"bgi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"bgj" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"bgk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) "bgl" = ( /obj/machinery/vending/cola, /obj/machinery/newscaster{ @@ -34155,12 +33717,6 @@ }, /turf/open/floor/plasteel/grimy, /area/chapel/main) -"biK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main) "biL" = ( /obj/machinery/light_switch{ pixel_x = 24; @@ -35148,9 +34704,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bkA" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/arrival) "bkB" = ( /obj/structure/chair{ dir = 4 @@ -35228,12 +34781,6 @@ dir = 4 }, /area/shuttle/arrival) -"bkL" = ( -/obj/effect/landmark{ - name = "Observer-Start" - }, -/turf/open/floor/plasteel/neutral, -/area/shuttle/arrival) "bkM" = ( /obj/structure/table/reinforced, /obj/item/paper_bin, @@ -35606,14 +35153,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"blz" = ( -/obj/structure/frame/computer, -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle Bridge"; - dir = 1 - }, -/turf/open/floor/plasteel/blue, -/area/shuttle/arrival) "blA" = ( /obj/machinery/door/airlock/centcom{ name = "Mass Driver Room"; @@ -35775,1526 +35314,18 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit) -"bmx" = ( -/turf/closed/wall, -/area/space) -"bmy" = ( -/turf/open/floor/plasteel, -/area/space) -"bmz" = ( -/turf/open/floor/plasteel, -/area/space) -"bmB" = ( -/turf/closed/wall, -/area/space) "bmC" = ( /obj/machinery/light{ dir = 8 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit) -"bmD" = ( -/turf/open/floor/plasteel, -/area/space) -"bmF" = ( -/turf/closed/wall, -/area/space) "bmG" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-22" }, /turf/open/floor/plasteel, /area/hallway/secondary/exit) -"bmH" = ( -/turf/open/floor/plasteel, -/area/space) -"bmJ" = ( -/turf/closed/wall, -/area/space) -"bmK" = ( -/turf/closed/wall, -/area/space) -"bmL" = ( -/turf/closed/wall, -/area/space) -"bmM" = ( -/turf/closed/wall, -/area/space) -"bmN" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 9 - }, -/turf/closed/wall/mineral/plastitanium{ - dir = 8; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"bmO" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bmP" = ( -/obj/machinery/door/poddoor/shutters{ - id = "syndieshutters"; - name = "blast shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"bmQ" = ( -/obj/machinery/door/poddoor/shutters{ - id = "syndieshutters"; - name = "blast shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"bmR" = ( -/obj/machinery/door/poddoor/shutters{ - id = "syndieshutters"; - name = "blast shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"bmS" = ( -/obj/machinery/door/poddoor/shutters{ - id = "syndieshutters"; - name = "blast shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"bmT" = ( -/obj/machinery/door/poddoor/shutters{ - id = "syndieshutters"; - name = "blast shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"bmU" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bmV" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 5 - }, -/turf/closed/wall/mineral/plastitanium{ - dir = 1; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"bmW" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bmX" = ( -/obj/machinery/computer/med_data/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"bmY" = ( -/obj/machinery/computer/crew/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"bmZ" = ( -/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"bna" = ( -/obj/machinery/computer/shuttle/syndicate, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"bnb" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"bnc" = ( -/obj/machinery/computer/camera_advanced/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"bnd" = ( -/obj/structure/frame/computer, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bne" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bnf" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bng" = ( -/obj/structure/table/reinforced, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/item/clipboard, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/folder/red, -/obj/item/toy/figure/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"bnh" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bni" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bnj" = ( -/obj/structure/chair/office/dark{ - dir = 1; - name = "tactical swivel chair" - }, -/obj/machinery/button/door{ - id = "syndieshutters"; - name = "Cockpit View Control"; - pixel_x = 32; - pixel_y = 32; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"bnk" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bnl" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bnm" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bnn" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bno" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bnp" = ( -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"bnq" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bnr" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bns" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bnt" = ( -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - freerange = 1; - frequency = 1213; - name = "Syndicate Intercom"; - pixel_y = -32; - subspace_transmission = 1; - syndie = 1 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bnu" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bnv" = ( -/obj/structure/closet/syndicate/personal, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bnw" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bnx" = ( -/turf/open/space, -/turf/closed/wall/mineral/plastitanium{ - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"bny" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bnz" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bnA" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bnB" = ( -/obj/machinery/door/airlock/hatch{ - name = "Cockpit"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"bnC" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bnD" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bnE" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bnF" = ( -/turf/open/space, -/turf/closed/wall/mineral/plastitanium{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"bnG" = ( -/turf/open/space, -/area/shuttle/syndicate) -"bnH" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bnI" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil/white, -/obj/item/stack/cable_coil/white, -/obj/item/crowbar/red, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"bnJ" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bnK" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/handcuffs{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/zipties, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"bnL" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bnM" = ( -/turf/closed/wall/mineral/plastitanium{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"bnN" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bnO" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bnP" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bnQ" = ( -/obj/structure/chair{ - dir = 8; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"bnR" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bnS" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 9 - }, -/turf/closed/wall/mineral/plastitanium{ - dir = 8; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"bnT" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bnU" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bnV" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bnW" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bnX" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bnY" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bnZ" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"boa" = ( -/obj/structure/chair{ - dir = 8; - name = "tactical chair" - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bob" = ( -/obj/machinery/porta_turret/syndicate{ - dir = 4 - }, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"boc" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bod" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 5 - }, -/area/shuttle/syndicate) -"boe" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bof" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bog" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"boh" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"boi" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"boj" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bok" = ( -/obj/structure/chair{ - dir = 8; - name = "tactical chair" - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bol" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bom" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bon" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"boo" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bop" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"boq" = ( -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"bor" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bos" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bot" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bou" = ( -/obj/structure/chair{ - dir = 8; - name = "tactical chair" - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bov" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bow" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"box" = ( -/obj/machinery/door/poddoor{ - id = "smindicate"; - name = "outer blast door" - }, -/obj/machinery/button/door{ - id = "smindicate"; - name = "external door control"; - pixel_x = -26; - req_access_txt = "150" - }, -/obj/docking_port/mobile{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate"; - name = "syndicate infiltrator"; - port_direction = 1; - roundstart_move = "syndicate_away"; - width = 18 - }, -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate_nw"; - name = "northwest of station"; - turf_type = /turf/open/space; - width = 18 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"boy" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK" - }, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"boz" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 5 - }, -/turf/closed/wall/mineral/plastitanium{ - dir = 1; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"boA" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"boB" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"boC" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"boD" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"boE" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"boF" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"boG" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"boH" = ( -/obj/machinery/door/airlock/external{ - name = "Ready Room"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"boI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"boJ" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"boK" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"boL" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"boM" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"boN" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"boO" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"boP" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"boQ" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"boR" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"boS" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"boT" = ( -/obj/machinery/door/airlock/external{ - name = "E.V.A. Gear Storage"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"boU" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"boV" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"boW" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"boX" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "150" - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"boY" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"boZ" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bpa" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bpb" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bpc" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bpd" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bpe" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bpf" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bpg" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bph" = ( -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "EVA Storage"; - req_access_txt = "150" - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bpi" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bpj" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bpk" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bpl" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"bpm" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bpn" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bpo" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bpp" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bpq" = ( -/turf/open/space, -/turf/closed/wall/mineral/plastitanium{ - dir = 1; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"bpr" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 9 - }, -/turf/closed/wall/mineral/plastitanium{ - dir = 8; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"bps" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bpt" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bpu" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bpv" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bpw" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bpx" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bpy" = ( -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - freerange = 1; - frequency = 1213; - name = "Syndicate Intercom"; - pixel_x = -32; - subspace_transmission = 1; - syndie = 1 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bpz" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bpA" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bpB" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bpC" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bpD" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bpE" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bpF" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bpG" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bpH" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 5 - }, -/turf/closed/wall/mineral/plastitanium{ - dir = 1; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"bpI" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bpJ" = ( -/obj/machinery/sleeper/syndie{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"bpK" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"bpL" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"bpM" = ( -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = -3 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 4; - pixel_y = 1 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 2; - pixel_y = 8 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"bpN" = ( -/obj/structure/table/reinforced, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"bpO" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bpP" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bpQ" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bpR" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bpS" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bpT" = ( -/obj/item/stock_parts/cell/high{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stock_parts/cell/high, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"bpU" = ( -/obj/item/screwdriver{ - pixel_y = 9 - }, -/obj/item/device/assembly/voice{ - pixel_y = 3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"bpV" = ( -/obj/item/wrench, -/obj/item/device/assembly/infra, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"bpW" = ( -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"bpX" = ( -/obj/item/weldingtool/largetank{ - pixel_y = 3 - }, -/obj/item/device/multitool, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"bpY" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bpZ" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bqa" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"bqb" = ( -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"bqc" = ( -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"bqd" = ( -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"bqe" = ( -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"bqf" = ( -/obj/structure/sign/bluecross_2, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bqg" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bqh" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bqi" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bqj" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bqk" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bql" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bqm" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bqn" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bqo" = ( -/obj/structure/table, -/obj/item/storage/toolbox/syndicate, -/obj/item/crowbar/red, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bqp" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bqq" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bqr" = ( -/obj/machinery/sleeper/syndie{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"bqs" = ( -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"bqt" = ( -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"bqu" = ( -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"bqv" = ( -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"bqw" = ( -/obj/machinery/door/airlock/hatch{ - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"bqx" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bqy" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bqz" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bqA" = ( -/obj/machinery/door/window/westright{ - name = "Tool Storage"; - req_access_txt = "150" - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bqB" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bqC" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bqD" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bqE" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bqF" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bqG" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bqH" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bqI" = ( -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"bqJ" = ( -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"bqK" = ( -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"bqL" = ( -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"bqM" = ( -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"bqN" = ( -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Infirmary"; - req_access_txt = "150" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"bqO" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bqP" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bqQ" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bqR" = ( -/obj/machinery/door/window{ - dir = 8; - name = "Tool Storage"; - req_access_txt = "150" - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bqS" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bqT" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bqU" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bqV" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bqW" = ( -/obj/structure/closet/syndicate/nuclear, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"bqX" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bqY" = ( -/obj/machinery/porta_turret/syndicate{ - dir = 5 - }, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bqZ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/bodypart/r_arm/robot, -/obj/item/bodypart/l_arm/robot, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"bra" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Surgery"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"brb" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"brc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/brute, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"brd" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"bre" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"brf" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"brg" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"brh" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bri" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"brj" = ( -/obj/item/device/sbeacondrop/bomb{ - pixel_y = 5 - }, -/obj/item/device/sbeacondrop/bomb, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"brk" = ( -/obj/item/grenade/syndieminibomb{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/grenade/syndieminibomb{ - pixel_x = -1 - }, -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"brl" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"brm" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"brn" = ( -/obj/machinery/recharge_station, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"bro" = ( -/obj/machinery/porta_turret/syndicate{ - dir = 4 - }, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"brp" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"brq" = ( -/obj/item/surgicaldrill, -/obj/item/circular_saw, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"brr" = ( -/turf/open/floor/mineral/titanium, -/area/shuttle/syndicate) -"brs" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 30 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"brt" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bru" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"brv" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"brw" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"brx" = ( -/obj/machinery/nuclearbomb/syndicate, -/obj/machinery/door/window{ - dir = 1; - name = "Theatre Stage"; - req_access_txt = "0" - }, -/turf/open/floor/circuit/red, -/area/shuttle/syndicate) -"bry" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"brz" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"brA" = ( -/obj/machinery/telecomms/allinone{ - intercept = 1 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"brB" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"brC" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"brD" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"brE" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"brF" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"brG" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"brH" = ( -/obj/item/cautery, -/obj/item/scalpel, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"brI" = ( -/obj/structure/table/optable, -/obj/item/surgical_drapes, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"brJ" = ( -/obj/item/retractor, -/obj/item/hemostat, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"brK" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"brL" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"brM" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"brN" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"brO" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"brP" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"brQ" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"brR" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"brS" = ( -/obj/machinery/recharge_station, -/turf/open/floor/circuit/red, -/area/shuttle/syndicate) -"brT" = ( -/obj/machinery/telecomms/allinone{ - intercept = 1 - }, -/turf/open/floor/circuit/red, -/area/shuttle/syndicate) -"brU" = ( -/obj/structure/rack, -/obj/item/clothing/suit/space/syndicate/black/red, -/obj/item/clothing/head/helmet/space/syndicate/black/red, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"brV" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"brW" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"brX" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"brY" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"brZ" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"bsa" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bsb" = ( -/turf/closed/wall/mineral/plastitanium{ - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"bsc" = ( -/obj/structure/shuttle/engine/propulsion/left, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"bsd" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"bse" = ( -/obj/structure/shuttle/engine/propulsion/right, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"bsf" = ( -/turf/closed/wall/mineral/plastitanium{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"bsg" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bsh" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"bsi" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"bsj" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"bsk" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"bsl" = ( -/turf/closed/wall/mineral/plastitanium{ - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"bsm" = ( -/obj/structure/shuttle/engine/propulsion/left, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"bsn" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"bso" = ( -/obj/structure/shuttle/engine/propulsion/right, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"bsp" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 6 - }, -/turf/closed/wall/mineral/plastitanium{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"bsq" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 10 - }, -/turf/closed/wall/mineral/plastitanium{ - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"bsr" = ( -/obj/structure/shuttle/engine/propulsion/left, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"bss" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"bst" = ( -/obj/structure/shuttle/engine/propulsion/right, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"bsu" = ( -/turf/closed/wall/mineral/plastitanium{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) "bsv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ @@ -37341,19 +35372,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit) -"bsy" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/obj/structure/cable/white{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) "bsz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -37436,50 +35454,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit) -"bsF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bsG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bsH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bsI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) "bsJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -37495,28 +35469,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit) -"bsK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bsL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) "bsM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -37620,14 +35572,6 @@ }, /turf/open/floor/plasteel/neutral, /area/hallway/secondary/exit) -"bsU" = ( -/obj/structure/cable/white{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/space) "bsV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ @@ -37637,14 +35581,6 @@ }, /turf/open/floor/plasteel/escape, /area/hallway/secondary/exit) -"bsW" = ( -/obj/structure/cable/white{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/space) "bsX" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_mining{ @@ -37734,26 +35670,6 @@ /obj/structure/grille, /turf/open/floor/plating, /area/maintenance/starboard) -"btf" = ( -/obj/structure/window/reinforced/tinted/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/space) -"btg" = ( -/obj/structure/window/reinforced/tinted/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/space) -"bth" = ( -/obj/structure/window/reinforced/tinted/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/space) -"bti" = ( -/obj/structure/window/reinforced/tinted/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/space) "btj" = ( /obj/docking_port/mobile/arrivals{ dir = 2; @@ -37793,384 +35709,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"btm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"btn" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bto" = ( -/obj/machinery/computer/secure_data/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"btp" = ( -/obj/structure/chair/office/dark{ - dir = 8; - name = "tactical swivel chair" - }, -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"btq" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"btr" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"bts" = ( -/obj/structure/chair/office/dark{ - dir = 4; - name = "tactical swivel chair" - }, -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"btt" = ( -/obj/structure/table/reinforced, -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/obj/item/storage/fancy/donut_box, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"btu" = ( -/obj/machinery/status_display, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"btv" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"btw" = ( -/obj/structure/chair{ - dir = 4; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"btx" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"bty" = ( -/obj/structure/chair{ - dir = 4; - name = "tactical chair" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"btz" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"btA" = ( -/obj/structure/chair{ - dir = 8; - name = "tactical chair" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"btB" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"btC" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"btD" = ( -/obj/structure/chair{ - dir = 4; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"btE" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"btF" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 4 - }, -/area/shuttle/syndicate) -"btG" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"btH" = ( -/obj/structure/chair{ - dir = 4; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"btI" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 4 - }, -/area/shuttle/syndicate) -"btJ" = ( -/obj/item/storage/toolbox/syndicate, -/obj/item/crowbar/red, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/podhatch{ - dir = 10 - }, -/area/shuttle/syndicate) -"btK" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate) -"btL" = ( -/obj/structure/chair{ - name = "tactical chair" - }, -/turf/open/floor/plasteel/podhatch{ - dir = 6 - }, -/area/shuttle/syndicate) -"btM" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 4 - }, -/area/shuttle/syndicate) -"btN" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"btO" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 6 - }, -/area/shuttle/syndicate) -"btP" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"btQ" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"btR" = ( -/obj/structure/chair{ - dir = 1; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"btS" = ( -/obj/structure/chair{ - dir = 1; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"btT" = ( -/obj/structure/rack, -/obj/item/clothing/suit/space/syndicate/black/red, -/obj/item/clothing/head/helmet/space/syndicate/black/red, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"btU" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"btV" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"btW" = ( -/obj/machinery/status_display, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"btX" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"btY" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"btZ" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"bua" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"bub" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 9 - }, -/area/shuttle/syndicate) -"buc" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"bud" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"bue" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"buf" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"bug" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"buh" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"bui" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"buj" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 5 - }, -/area/shuttle/syndicate) -"buk" = ( -/obj/structure/closet/syndicate/personal, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"bul" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"bum" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 10 - }, -/area/shuttle/syndicate) -"bun" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate) -"buo" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate) -"bup" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate) -"buq" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate) -"bur" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate) -"bus" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate) -"but" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate) -"buu" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 6 - }, -/area/shuttle/syndicate) -"buv" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Technological Storage"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"buw" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/device/aicard, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"bux" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) "buy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -38206,15 +35744,6 @@ "buC" = ( /turf/open/floor/plasteel/grimy, /area/tcommsat/server) -"buD" = ( -/turf/open/floor/plasteel/grimy, -/area/tcommsat/server) -"buE" = ( -/turf/open/floor/plasteel/grimy, -/area/tcommsat/server) -"buF" = ( -/turf/open/floor/plasteel/grimy, -/area/tcommsat/server) "buG" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 1 @@ -38259,14 +35788,6 @@ /obj/machinery/telecomms/hub/preset, /turf/open/floor/circuit/green/telecomms, /area/tcommsat/server) -"buM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 5 - }, -/area/tcommsat/server) "buN" = ( /obj/machinery/announcement_system, /obj/machinery/ai_status_display{ @@ -38304,14 +35825,6 @@ dir = 5 }, /area/tcommsat/server) -"buT" = ( -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 5 - }, -/area/tcommsat/server) "buU" = ( /obj/machinery/camera{ c_tag = "Communications Relay"; @@ -38335,12 +35848,6 @@ "buW" = ( /turf/closed/wall/r_wall, /area/engine/supermatter) -"buX" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"buY" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) "buZ" = ( /obj/machinery/power/rad_collector/anchored, /obj/structure/cable{ @@ -38349,30 +35856,10 @@ }, /turf/open/floor/circuit/green, /area/engine/supermatter) -"bva" = ( -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/circuit/green, -/area/engine/supermatter) -"bvb" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"bvc" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) "bvd" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, /area/engine/supermatter) -"bve" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"bvf" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) "bvg" = ( /turf/open/floor/plating/airless/astplate, /area/ruin/unpowered{ @@ -38381,186 +35868,18 @@ "bvh" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/airless/astplate, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvi" = ( -/turf/open/floor/plating/airless/astplate, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/airless/astplate, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/airless/astplate, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/airless/astplate, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvm" = ( -/turf/open/floor/plating/airless/astplate, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvn" = ( -/turf/open/floor/plating/airless/astplate, /area/ruin/unpowered{ name = "Asteroid" }) "bvo" = ( /obj/structure/girder, /turf/open/floor/plating/airless, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvp" = ( -/obj/structure/girder, -/turf/open/floor/plating/airless, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvq" = ( -/turf/open/floor/plating/airless/astplate, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvr" = ( -/obj/structure/girder, -/turf/open/floor/plating/airless, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/airless/astplate, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvt" = ( -/obj/structure/girder, -/turf/open/floor/plating/airless, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvu" = ( -/obj/structure/girder, -/turf/open/floor/plating/airless, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvv" = ( -/obj/structure/girder, -/turf/open/floor/plating/airless, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/airless/astplate, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvx" = ( -/turf/open/floor/plating/airless/astplate, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvy" = ( -/turf/open/floor/plating/airless/astplate, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/airless/astplate, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvA" = ( -/obj/structure/girder, -/turf/open/floor/plating/airless, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvB" = ( -/obj/structure/girder, -/turf/open/floor/plating/airless, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvC" = ( -/obj/structure/girder, -/turf/open/floor/plating/airless, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvD" = ( -/obj/structure/girder, -/turf/open/floor/plating/airless, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/airless/astplate, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvF" = ( -/obj/structure/girder, -/turf/open/floor/plating/airless, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/airless/astplate, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvH" = ( -/turf/open/floor/plating/airless/astplate, /area/ruin/unpowered{ name = "Asteroid" }) "bvI" = ( /obj/item/pickaxe/emergency, /turf/open/floor/plating/asteroid/airless, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvJ" = ( -/turf/open/floor/plating/airless/astplate, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvK" = ( -/turf/open/floor/plating/airless/astplate, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvL" = ( -/turf/open/floor/plating/airless/astplate, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvM" = ( -/turf/open/floor/plating/airless/astplate, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bvN" = ( -/turf/open/floor/plating/airless/astplate, /area/ruin/unpowered{ name = "Asteroid" }) @@ -38603,29 +35922,10 @@ /obj/effect/spawner/structure/window/shuttle, /turf/open/floor/plating, /area/shuttle/transport) -"bvU" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/transport) -"bvV" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/transport) "bvW" = ( /obj/machinery/door/airlock/external, /turf/open/floor/pod/dark, /area/shuttle/transport) -"bvX" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/transport) -"bvY" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/transport) -"bvZ" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/transport) -"bwa" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/transport) "bwb" = ( /obj/structure/shuttle/engine/propulsion/left{ dir = 8 @@ -38639,20 +35939,10 @@ /obj/structure/window/reinforced, /turf/open/floor/plating/airless, /area/shuttle/transport) -"bwd" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/transport) -"bwe" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/transport) "bwf" = ( /obj/structure/chair, /turf/open/floor/pod/dark, /area/shuttle/transport) -"bwg" = ( -/obj/structure/chair, -/turf/open/floor/pod/dark, -/area/shuttle/transport) "bwh" = ( /obj/machinery/light{ dir = 1 @@ -38662,27 +35952,6 @@ "bwi" = ( /turf/open/floor/pod/light, /area/shuttle/transport) -"bwj" = ( -/turf/open/floor/pod/light, -/area/shuttle/transport) -"bwk" = ( -/obj/structure/chair, -/turf/open/floor/pod/dark, -/area/shuttle/transport) -"bwl" = ( -/obj/structure/chair, -/turf/open/floor/pod/dark, -/area/shuttle/transport) -"bwm" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/transport) -"bwn" = ( -/obj/structure/shuttle/engine/propulsion/left{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/shuttle/transport) "bwo" = ( /obj/structure/shuttle/engine/heater{ dir = 8 @@ -38692,9 +35961,6 @@ }, /turf/open/floor/plating/airless, /area/shuttle/transport) -"bwp" = ( -/turf/open/floor/pod/light, -/area/shuttle/transport) "bwq" = ( /obj/machinery/light/small, /turf/open/floor/pod/light, @@ -38703,28 +35969,10 @@ /obj/machinery/door/airlock/titanium, /turf/open/floor/pod/light, /area/shuttle/transport) -"bws" = ( -/turf/open/floor/pod/light, -/area/shuttle/transport) -"bwt" = ( -/turf/open/floor/pod/light, -/area/shuttle/transport) -"bwu" = ( -/turf/open/floor/pod/light, -/area/shuttle/transport) "bwv" = ( /obj/machinery/computer/shuttle/ferry/request, /turf/open/floor/pod/dark, /area/shuttle/transport) -"bww" = ( -/turf/open/floor/pod/light, -/area/shuttle/transport) -"bwx" = ( -/turf/open/floor/pod/light, -/area/shuttle/transport) -"bwy" = ( -/turf/open/floor/pod/light, -/area/shuttle/transport) "bwz" = ( /obj/machinery/door/airlock/titanium, /obj/docking_port/mobile{ @@ -38749,12 +35997,6 @@ }, /turf/open/floor/pod/light, /area/shuttle/transport) -"bwA" = ( -/obj/structure/shuttle/engine/propulsion/left{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/shuttle/transport) "bwB" = ( /obj/structure/shuttle/engine/heater{ dir = 8 @@ -38765,80 +36007,20 @@ }, /turf/open/floor/plating/airless, /area/shuttle/transport) -"bwC" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/transport) -"bwD" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/transport) "bwE" = ( /obj/structure/chair{ dir = 1 }, /turf/open/floor/pod/dark, /area/shuttle/transport) -"bwF" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/pod/dark, -/area/shuttle/transport) -"bwG" = ( -/turf/open/floor/pod/light, -/area/shuttle/transport) -"bwH" = ( -/turf/open/floor/pod/light, -/area/shuttle/transport) "bwI" = ( /obj/machinery/light, /turf/open/floor/pod/light, /area/shuttle/transport) -"bwJ" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/pod/dark, -/area/shuttle/transport) -"bwK" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/pod/dark, -/area/shuttle/transport) -"bwL" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/transport) -"bwM" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/transport) -"bwN" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/transport) -"bwO" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/transport) -"bwP" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/transport) "bwQ" = ( /obj/machinery/door/airlock/external, /turf/open/floor/pod/light, /area/shuttle/transport) -"bwR" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/transport) -"bwS" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/transport) -"bwT" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/transport) -"bwU" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/transport) "bwV" = ( /obj/structure/cable/white{ d1 = 1; @@ -38871,12 +36053,6 @@ }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"bwZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) "bxa" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/closed/wall/r_wall, @@ -38913,40 +36089,6 @@ /area/ruin/unpowered{ name = "Asteroid" }) -"bxe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 8 - }, -/turf/closed/mineral/random/labormineral, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bxf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 8 - }, -/turf/closed/mineral/random/labormineral, -/area/ruin/unpowered{ - name = "Asteroid" - }) -"bxg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"bxh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"bxi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) "bxj" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 @@ -38963,20 +36105,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, /area/tcommsat/server) -"bxm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/tcommsat/server) -"bxn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/tcommsat/server) -"bxo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/tcommsat/server) "bxp" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -38984,27 +36112,6 @@ }, /turf/open/floor/plating, /area/tcommsat/server) -"bxq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/tcommsat/server) -"bxr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/tcommsat/server) -"bxs" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/tcommsat/server) "bxt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ @@ -39192,10 +36299,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plating, /area/maintenance/port/central) -"bxO" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) "bxP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/landmark/event_spawn, @@ -39282,18 +36385,6 @@ "bxZ" = ( /turf/closed/wall, /area/maintenance/starboard/fore) -"bya" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"byb" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"byc" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"byd" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) "bye" = ( /turf/closed/wall, /area/maintenance/fore) @@ -39310,10 +36401,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/maintenance/starboard/fore) -"byh" = ( -/obj/structure/sign/vacuum, -/turf/closed/wall, -/area/maintenance/starboard/fore) "byi" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -39378,9 +36465,6 @@ "byo" = ( /turf/closed/wall, /area/security/checkpoint) -"byp" = ( -/turf/closed/wall, -/area/security/checkpoint) "byq" = ( /obj/structure/cable/white{ d2 = 2; @@ -39389,47 +36473,23 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/checkpoint) -"byr" = ( -/turf/closed/wall, -/area/security/checkpoint) "bys" = ( /obj/structure/sign/nanotrasen, /turf/closed/wall, /area/security/checkpoint) -"byt" = ( -/turf/closed/wall, -/area/security/checkpoint) -"byu" = ( -/turf/closed/wall, -/area/security/checkpoint) -"byv" = ( -/turf/closed/wall, -/area/security/checkpoint) -"byw" = ( -/turf/closed/wall, -/area/security/checkpoint) -"byx" = ( -/turf/closed/wall, -/area/security/checkpoint) -"byy" = ( -/turf/closed/wall, -/area/security/checkpoint) -"byz" = ( -/turf/closed/wall, -/area/security/checkpoint) -"byA" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/security/checkpoint) -"byB" = ( -/turf/closed/wall, -/area/security/checkpoint) -"byC" = ( -/turf/closed/wall, -/area/security/checkpoint) -"byD" = ( -/turf/closed/wall, -/area/security/checkpoint) +"swr" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate_nw"; + name = "northwest of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space/basic, +/area/space) (1,1,1) = {" aaa @@ -63106,7 +60166,7 @@ aaa aaa aaa aaa -aaa +swr aaa aaa aaa @@ -67567,7 +64627,7 @@ bxj bxl bxl bxl -bxo +aSO aMJ aMJ aMJ @@ -67991,16 +65051,16 @@ aaa aaa aaa aaa -bmN -bmO -bmO -bmO -bmO -bmO -bmO -bmO -bmO -bnx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -68242,22 +65302,22 @@ aaa aaa aaa aaa -bmN -bmO -bmO -bmO -bmO -bmO -bmO -bpJ -bqa -bpJ -bul -bqZ -brq -brH -brM -bsc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -68499,22 +65559,22 @@ aaa aaa aaa aaa -bmO -bod -btF -btF -btF -btO -bmO -btN -bnp -btv -btv -bra -btv -brI -brM -bsd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -68756,22 +65816,22 @@ aaa aaa aaa aaa -bmO -btv -btv -btv -btv -btv -btU -bpL -bnp -bub -bum -brb -brs -brJ -brM -bse +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -69006,29 +66066,29 @@ aaa aaa aaa aaa -bmN -bmO -bmO -bmO -bnx aaa aaa -bmO -btv -btv -btv -btv -btv -bmO -bpM -bnp -buc -btK -brc -bmO -bmO -bmO -bsp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -69263,26 +66323,26 @@ aaa aaa aaa aaa -bmO -bmX -bng -bnp -bmO -bsq aaa -bmO -bog -boq -boE -btN -btP -bmO -bpN -bnp -buc -btK -brd -bmO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -69520,28 +66580,28 @@ aaa aaa aaa aaa -bmP -bmY -btp -bnp -bmO -bmO -bmO -bmO -bmO -bmO -bmO -boT -boG -bmO -bmO -bmO -bqw -boG -bmO -bmO -bmO -bnx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -69777,28 +66837,28 @@ aaa aaa aaa aaa -bmP -bmZ -btq -bnp -btu -bnI -btw -bty -btw -btw -boG -btv -btv -btv -btv -btY -buc -btK -bnp -boG -brM -bsc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -70034,28 +67094,28 @@ aaa aaa aaa aaa -bmP -bna -bnj -bnp -bnB -btv -btq -btq -btq -btv -boH -btv -btq -btq -btq -btq -buc -btK -bnp -brx -brM -bsd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -70291,28 +67351,28 @@ aaa aaa aaa aaa -bmP -bnb -btq -bnp -bmO -bnK -bnQ -btA -bnQ -bnQ -boG -btv -btv -btv -btv -bua -buc -btK -bnp -boG -brM -bse +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -70548,28 +67608,28 @@ aaa aaa aaa aaa -bmP -bnc -bts -bnp -bmO -bmO -bmO -bob -bmO -bmO -bmO -boX -boG -bmO -bmO -bmO -bqw -boG -bmO -bmO -bmO -bnF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -70805,26 +67865,26 @@ aaa aaa aaa aaa -bmO -bto -btt -bnp -bmO -bsp aaa aaa aaa -bmO -btJ -btv -btR -bmO -bpT -bnp -buc -btK -brj -bmO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -71062,29 +68122,29 @@ aaa aaa aaa aaa -bmV -bmO -bmO -bmO -bnF aaa aaa aaa aaa -box -btK -btv -btR -bmO -bpU -bnp -buc -btK -brk -bmO -bmO -bmO -bsq +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -71328,20 +68388,20 @@ aaa aaa aaa aaa -boy -btL -btv -btT -btu -bpV -bnp -buj -buu -brb -btv -brS -brM -bsc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -71585,20 +68645,20 @@ aaa aaa aaa aaa -bmV -bmO -bmO -bmO -bmO -bpW -bnp -btv -btv -buv -btv -brT -brM -bsd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -71845,17 +68905,17 @@ aaa aaa aaa aaa -bpq -bmO -bpX -bnp -buk -bqW -buw -bua -brS -brM -bse +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -72103,16 +69163,16 @@ aaa aaa aaa aaa -bmV -bmO -bmO -bmO -bmO -bmO -bmO -bmO -bmO -bnF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -104965,4 +102025,4 @@ aaa aaa aaa aaa -"} \ No newline at end of file +"} diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm index 9ac324de33..777ae4d710 100644 --- a/_maps/map_files/PubbyStation/PubbyStation.dmm +++ b/_maps/map_files/PubbyStation/PubbyStation.dmm @@ -1,374 +1,7 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aaa" = ( /turf/open/space/basic, /area/space) -"aab" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 9 - }, -/turf/closed/wall/mineral/plastitanium{ - dir = 8; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"aac" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"aad" = ( -/obj/machinery/door/poddoor/shutters{ - id = "syndieshutters"; - name = "blast shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"aae" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 5 - }, -/turf/closed/wall/mineral/plastitanium{ - dir = 1; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"aaf" = ( -/obj/machinery/computer/med_data/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aag" = ( -/obj/machinery/computer/crew/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aah" = ( -/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aai" = ( -/obj/machinery/computer/shuttle/syndicate, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aaj" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aak" = ( -/obj/machinery/computer/camera_advanced/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aal" = ( -/obj/machinery/computer/secure_data/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aam" = ( -/obj/structure/table/reinforced, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/item/clipboard, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/folder/red, -/obj/item/toy/figure/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aan" = ( -/obj/structure/chair/office/dark{ - dir = 8; - name = "tactical swivel chair" - }, -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"aao" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"aap" = ( -/obj/structure/chair/office/dark{ - dir = 1; - name = "tactical swivel chair" - }, -/obj/machinery/button/door{ - id = "syndieshutters"; - name = "Cockpit View Control"; - pixel_x = 32; - pixel_y = 32; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"aaq" = ( -/obj/structure/chair/office/dark{ - dir = 4; - name = "tactical swivel chair" - }, -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate) -"aar" = ( -/obj/structure/table/reinforced, -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/obj/item/storage/fancy/donut_box, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aas" = ( -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"aat" = ( -/turf/open/space, -/turf/closed/wall/mineral/plastitanium{ - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"aau" = ( -/obj/machinery/status_display, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"aav" = ( -/obj/machinery/door/airlock/hatch{ - name = "Cockpit"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aaw" = ( -/turf/open/space, -/turf/closed/wall/mineral/plastitanium{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"aax" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 10 - }, -/turf/closed/wall/mineral/plastitanium{ - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"aay" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil/white, -/obj/item/stack/cable_coil/white, -/obj/item/crowbar/red, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"aaz" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"aaA" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/handcuffs{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/zipties, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"aaB" = ( -/turf/open/space, -/obj/machinery/porta_turret/syndicate{ - dir = 6 - }, -/turf/closed/wall/mineral/plastitanium{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"aaC" = ( -/obj/structure/chair{ - dir = 4; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"aaD" = ( -/obj/structure/chair{ - dir = 8; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"aaE" = ( -/obj/structure/chair{ - dir = 4; - name = "tactical chair" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"aaF" = ( -/obj/structure/chair{ - dir = 8; - name = "tactical chair" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"aaG" = ( -/obj/machinery/porta_turret/syndicate{ - dir = 4 - }, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"aaH" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 5 - }, -/area/shuttle/syndicate) -"aaI" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aaJ" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 4 - }, -/area/shuttle/syndicate) -"aaK" = ( -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aaL" = ( -/obj/machinery/door/poddoor{ - id = "smindicate"; - name = "outer blast door" - }, -/obj/machinery/button/door{ - id = "smindicate"; - name = "external door control"; - pixel_x = -26; - req_access_txt = "150" - }, -/obj/docking_port/mobile{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate"; - name = "syndicate infiltrator"; - port_direction = 1; - roundstart_move = "syndicate_away"; - width = 18 - }, -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate_nw"; - name = "northwest of station"; - turf_type = /turf/open/space; - width = 18 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"aaM" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK" - }, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"aaN" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aaO" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/shuttle/syndicate) -"aaP" = ( -/obj/machinery/door/airlock/external{ - name = "Ready Room"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aaQ" = ( -/obj/item/storage/toolbox/syndicate, -/obj/item/crowbar/red, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/podhatch{ - dir = 10 - }, -/area/shuttle/syndicate) -"aaR" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate) -"aaS" = ( -/obj/structure/chair{ - name = "tactical chair" - }, -/turf/open/floor/plasteel/podhatch{ - dir = 6 - }, -/area/shuttle/syndicate) "aaT" = ( /obj/docking_port/stationary{ dheight = 9; @@ -382,368 +15,11 @@ }, /turf/open/space, /area/space) -"aaU" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aaV" = ( -/obj/machinery/door/airlock/external{ - name = "E.V.A. Gear Storage"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aaW" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "150" - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate) -"aaX" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 6 - }, -/area/shuttle/syndicate) -"aaY" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aaZ" = ( -/obj/structure/chair{ - dir = 1; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"aba" = ( -/obj/structure/rack, -/obj/item/clothing/suit/space/syndicate/black/red, -/obj/item/clothing/head/helmet/space/syndicate/black/red, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"abb" = ( -/turf/open/space, -/turf/closed/wall/mineral/plastitanium{ - dir = 1; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate) -"abc" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate) -"abd" = ( -/obj/machinery/sleeper/syndie{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"abe" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"abf" = ( -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = -3 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 4; - pixel_y = 1 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 2; - pixel_y = 8 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"abg" = ( -/obj/structure/table/reinforced, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"abh" = ( -/obj/item/stock_parts/cell/high{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stock_parts/cell/high, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"abi" = ( -/obj/item/screwdriver{ - pixel_y = 9 - }, -/obj/item/device/assembly/voice{ - pixel_y = 3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"abj" = ( -/obj/item/wrench, -/obj/item/device/assembly/infra, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"abk" = ( -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"abl" = ( -/obj/item/weldingtool/largetank{ - pixel_y = 3 - }, -/obj/item/device/multitool, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"abm" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"abn" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"abo" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"abp" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 9 - }, -/area/shuttle/syndicate) -"abq" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate) -"abr" = ( -/obj/machinery/door/airlock/hatch{ - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"abs" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 5 - }, -/area/shuttle/syndicate) -"abt" = ( -/obj/structure/closet/syndicate/personal, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"abu" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"abv" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 10 - }, -/area/shuttle/syndicate) -"abw" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 6 - }, -/area/shuttle/syndicate) -"abx" = ( -/obj/structure/closet/syndicate/nuclear, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) "aby" = ( /obj/structure/lattice, /obj/structure/grille, /turf/open/space, /area/space) -"abz" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/bodypart/r_arm/robot, -/obj/item/bodypart/l_arm/robot, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"abA" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Surgery"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"abB" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"abC" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/brute, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"abD" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"abE" = ( -/obj/item/device/sbeacondrop/bomb{ - pixel_y = 5 - }, -/obj/item/device/sbeacondrop/bomb, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"abF" = ( -/obj/item/grenade/syndieminibomb{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/grenade/syndieminibomb{ - pixel_x = -1 - }, -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"abG" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Technological Storage"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) -"abH" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/device/aicard, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate) "abI" = ( /obj/structure/lattice, /turf/open/space, @@ -757,38 +33,6 @@ }, /turf/open/space, /area/space) -"abK" = ( -/obj/item/surgicaldrill, -/obj/item/circular_saw, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"abL" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 30 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate) -"abM" = ( -/obj/machinery/nuclearbomb/syndicate, -/obj/machinery/door/window{ - dir = 1; - name = "Theatre Stage"; - req_access_txt = "0" - }, -/turf/open/floor/circuit/red, -/area/shuttle/syndicate) "abN" = ( /obj/effect/landmark/carpspawn, /turf/open/space, @@ -796,47 +40,6 @@ "abO" = ( /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai) -"abP" = ( -/obj/item/cautery, -/obj/item/scalpel, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"abQ" = ( -/obj/structure/table/optable, -/obj/item/surgical_drapes, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"abR" = ( -/obj/item/retractor, -/obj/item/hemostat, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate) -"abS" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"abT" = ( -/obj/machinery/recharge_station, -/turf/open/floor/circuit/red, -/area/shuttle/syndicate) -"abU" = ( -/obj/machinery/telecomms/allinone{ - intercept = 1 - }, -/turf/open/floor/circuit/red, -/area/shuttle/syndicate) "abV" = ( /obj/effect/turf_decal/stripes/corner, /turf/open/floor/plasteel/white, @@ -854,21 +57,6 @@ "abY" = ( /turf/open/floor/plasteel/white, /area/ai_monitored/turret_protected/ai) -"abZ" = ( -/obj/structure/shuttle/engine/propulsion/left, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"aca" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) -"acb" = ( -/obj/structure/shuttle/engine/propulsion/right, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate) "acc" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -2998,35 +2186,11 @@ }, /turf/open/floor/plasteel/freezer, /area/security/prison) -"ahc" = ( -/obj/structure/closet/wardrobe/red, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) "ahd" = ( /obj/structure/closet/secure_closet/security/sec, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel/showroomfloor, /area/security/main) -"ahe" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/machinery/camera{ - c_tag = "Brig Equipment Room"; - dir = 2 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 29 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"ahf" = ( -/obj/machinery/vending/security, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"ahg" = ( -/obj/machinery/suit_storage_unit/security, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) "ahh" = ( /obj/structure/lattice/catwalk, /obj/structure/showcase/cyborg/old{ @@ -3746,11 +2910,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/security/prison) -"aiI" = ( -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/prison) "aiJ" = ( /obj/machinery/airalarm{ dir = 1; @@ -4113,13 +3272,6 @@ "ajv" = ( /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) -"ajw" = ( -/obj/machinery/vending/boozeomat{ - products = list(/obj/item/reagent_containers/food/drinks/bottle/whiskey = 1, /obj/item/reagent_containers/food/drinks/bottle/absinthe = 1, /obj/item/reagent_containers/food/drinks/bottle/limejuice = 1, /obj/item/reagent_containers/food/drinks/bottle/cream = 1, /obj/item/reagent_containers/food/drinks/soda_cans/tonic = 1, /obj/item/reagent_containers/food/drinks/drinkingglass = 10, /obj/item/reagent_containers/food/drinks/ice = 3, /obj/item/reagent_containers/food/drinks/drinkingglass/shotglass = 6, /obj/item/reagent_containers/food/drinks/flask = 1); - req_access_txt = "0" - }, -/turf/open/floor/plasteel/bar, -/area/maintenance/department/crew_quarters/dorms) "ajx" = ( /obj/machinery/door/poddoor/shutters{ id = "supplybridge" @@ -4446,16 +3598,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) -"aki" = ( -/obj/item/cigbutt/cigarbutt, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating{ - burnt = 1; - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/dorms) "akj" = ( /obj/structure/cable{ d1 = 2; @@ -4903,18 +4045,6 @@ /obj/item/stack/spacecash/c20, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) -"ald" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/bottle/gin{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) "ale" = ( /obj/structure/cable{ d1 = 1; @@ -5631,10 +4761,6 @@ /obj/structure/lattice/catwalk, /turf/open/space/basic, /area/space) -"amE" = ( -/obj/item/cigbutt/roach, -/turf/open/floor/wood, -/area/maintenance/department/crew_quarters/dorms) "amF" = ( /turf/open/floor/wood{ broken = 1; @@ -5923,10 +5049,6 @@ "ann" = ( /turf/closed/wall/mineral/titanium, /area/shuttle/pod_1) -"ano" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/pod_1) "anp" = ( /obj/structure/cable{ d1 = 1; @@ -6286,17 +5408,6 @@ icon_state = "platingdmg3" }, /area/maintenance/department/crew_quarters/dorms) -"anZ" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/crew_quarters/dorms) -"aoa" = ( -/obj/structure/grille/broken, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/dorms) "aob" = ( /obj/structure/closet/emcloset, /obj/item/device/camera, @@ -7592,24 +6703,6 @@ }, /turf/open/floor/plasteel/barber, /area/crew_quarters/dorms) -"aqW" = ( -/obj/structure/table, -/obj/item/clothing/under/color/grey, -/obj/machinery/power/apc{ - dir = 1; - name = "Dormitory APC"; - areastring = "/area/crew_quarters/dorms"; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/barber, -/area/crew_quarters/dorms) "aqX" = ( /obj/structure/shuttle/engine/propulsion/burst, /turf/closed/wall/mineral/titanium, @@ -8193,13 +7286,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/crew_quarters/dorms) -"ask" = ( -/obj/item/clothing/under/kilt, -/obj/item/clothing/head/collectable/wizard, -/obj/structure/closet/cardboard, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) "asl" = ( /obj/structure/grille/broken, /turf/open/floor/plating, @@ -8653,23 +7739,6 @@ }, /turf/open/floor/plasteel/black, /area/teleporter) -"ate" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Dormitory Maintenance APC"; - areastring = "/area/maintenance/department/crew_quarters/dorms"; - pixel_x = -24 - }, -/obj/structure/cable, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating{ - burnt = 1; - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/dorms) "atf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -10613,13 +9682,6 @@ /obj/structure/chair/comfy, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"axs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair/comfy/brown, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) "axt" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -10982,16 +10044,6 @@ /obj/item/storage/pill_bottle/dice, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"ayp" = ( -/obj/structure/table/wood, -/obj/item/pen{ - layer = 4 - }, -/obj/item/paper_bin{ - layer = 2.9 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) "ayq" = ( /obj/structure/table/wood, /obj/item/storage/backpack, @@ -11525,14 +10577,6 @@ }, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"azw" = ( -/obj/structure/table/wood, -/obj/item/storage/crayons, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) "azx" = ( /obj/structure/table/wood, /obj/item/device/paicard, @@ -11551,12 +10595,6 @@ }, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"azz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) "azA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -12109,12 +11147,6 @@ }, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"aAR" = ( -/obj/structure/chair/comfy/brown{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) "aAS" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -14114,11 +13146,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aEX" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) "aEY" = ( /obj/machinery/door/firedoor, /obj/machinery/door/firedoor, @@ -15556,18 +14583,6 @@ /obj/effect/decal/cleanable/deadcockroach, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aIn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/crew_quarters/toilet/restrooms) "aIo" = ( /obj/structure/mineral_door/iron, /turf/open/floor/plating, @@ -15979,17 +14994,6 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aJg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) "aJh" = ( /obj/structure/cable{ d1 = 4; @@ -16500,17 +15504,6 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aKc" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aKd" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) "aKe" = ( /obj/machinery/camera{ c_tag = "Dormitories Hallway"; @@ -16798,18 +15791,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/hallway/primary/central) -"aKW" = ( -/obj/machinery/camera{ - c_tag = "Central Primary Hallway Bridge"; - dir = 1 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/maintenance/department/crew_quarters/bar) -"aKX" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel, -/area/maintenance/department/crew_quarters/bar) "aKY" = ( /turf/closed/wall/r_wall, /area/storage/eva) @@ -17078,15 +16059,6 @@ /obj/structure/closet/coffin, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) -"aLJ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating{ - broken = 1; - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/bar) "aLK" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating{ @@ -17096,38 +16068,6 @@ "aLL" = ( /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) -"aLM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - broken = 1; - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/bar) -"aLN" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aLO" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating{ - burnt = 1; - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/bar) -"aLP" = ( -/obj/structure/girder, -/turf/open/floor/plating{ - broken = 1; - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/bar) "aLQ" = ( /obj/structure/reagent_dispensers/fueltank, /obj/machinery/button/door{ @@ -17544,9 +16484,7 @@ pixel_y = 32 }, /obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating{ - icon_plating = "warnplate" - }, +/turf/open/floor/plating, /area/maintenance/disposal) "aMF" = ( /obj/machinery/conveyor_switch/oneway{ @@ -17555,15 +16493,11 @@ name = "disposal conveyor" }, /obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating{ - icon_plating = "warnplate" - }, +/turf/open/floor/plating, /area/maintenance/disposal) "aMG" = ( /obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating{ - icon_plating = "warnplate" - }, +/turf/open/floor/plating, /area/maintenance/disposal) "aMH" = ( /obj/effect/turf_decal/stripes/corner{ @@ -17819,37 +16753,10 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) -"aNk" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aNl" = ( -/obj/item/trash/pistachios, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) "aNm" = ( /obj/structure/grille, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) -"aNn" = ( -/obj/item/shard{ - icon_state = "small" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aNo" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating{ - broken = 1; - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/bar) "aNp" = ( /obj/structure/rack{ dir = 8; @@ -20418,20 +19325,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) -"aSU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) "aSV" = ( /obj/structure/cable{ d1 = 2; @@ -21047,15 +19940,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) -"aUh" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Theatre Maintenance"; - req_access_txt = "0"; - req_one_access_txt = "12;46" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) "aUi" = ( /obj/machinery/camera{ c_tag = "Central Primary Hallway Cargo"; @@ -21504,11 +20388,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/black, /area/crew_quarters/bar) -"aVe" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/black, -/area/crew_quarters/bar) "aVf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/newscaster{ @@ -22081,12 +20960,6 @@ }, /turf/open/floor/plasteel/black, /area/crew_quarters/bar) -"aWk" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/theatre) "aWl" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/black, @@ -22408,15 +21281,6 @@ }, /turf/open/floor/plasteel/black, /area/crew_quarters/bar) -"aWZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/bar) "aXa" = ( /obj/structure/disposalpipe/sortjunction{ dir = 4; @@ -22456,60 +21320,10 @@ /obj/structure/cable, /turf/open/floor/plasteel/black, /area/crew_quarters/bar) -"aXe" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8; - light_color = "#2cb2e8" - }, -/obj/structure/sign/poster/random{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"aXf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/festivus, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/theatre) -"aXg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/theatre) "aXh" = ( /obj/effect/landmark/start/bartender, /turf/open/floor/plasteel/black, /area/crew_quarters/bar) -"aXi" = ( -/obj/structure/festivus, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/theatre) -"aXj" = ( -/obj/machinery/light/small{ - dir = 4; - light_color = "#b4f237" - }, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) "aXk" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -22884,16 +21698,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/black, /area/crew_quarters/kitchen) -"aYc" = ( -/obj/machinery/door/airlock{ - cyclelinkeddir = 4; - name = "Bar Access"; - req_access_txt = "25" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/black, -/area/crew_quarters/bar) "aYd" = ( /obj/machinery/door/airlock{ cyclelinkeddir = 8; @@ -23260,23 +22064,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/cafeteria, /area/crew_quarters/kitchen) -"aYW" = ( -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks/beer, -/obj/machinery/button/door{ - dir = 2; - id = "barshutters"; - name = "Bar Lockdown"; - pixel_x = 6; - pixel_y = 27; - req_access_txt = "7; 29" - }, -/obj/machinery/light_switch{ - pixel_x = -5; - pixel_y = 28 - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/bar) "aYX" = ( /obj/structure/table/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -23827,13 +22614,6 @@ dir = 5 }, /area/crew_quarters/bar) -"baf" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/bar) "bag" = ( /turf/open/floor/plasteel/vault{ dir = 5 @@ -23842,45 +22622,6 @@ "bah" = ( /turf/open/floor/plasteel/black, /area/crew_quarters/bar) -"bai" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"baj" = ( -/obj/effect/landmark/start/assistant, -/obj/structure/chair/wood/normal, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"bak" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/landmark/xmastree, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"bal" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair/wood/normal, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"bam" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar) "ban" = ( /obj/structure/disposalpipe/segment, /obj/machinery/newscaster{ @@ -24331,23 +23072,6 @@ /obj/machinery/reagentgrinder, /turf/open/floor/plasteel/cafeteria, /area/crew_quarters/kitchen) -"bbj" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/reagent_containers/food/snacks/pie/cream, -/obj/machinery/camera{ - c_tag = "Kitchen"; - dir = 1; - network = list("SS13") - }, -/turf/open/floor/plasteel/hydrofloor, -/area/crew_quarters/kitchen) -"bbk" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/bar) "bbl" = ( /obj/structure/table/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -24363,13 +23087,6 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/black, /area/crew_quarters/bar) -"bbn" = ( -/obj/structure/chair/stool/bar, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar) "bbo" = ( /obj/item/clothing/head/hardhat/cakehat, /obj/structure/table/wood/fancy, @@ -24737,37 +23454,14 @@ }, /turf/open/floor/plasteel/cafeteria, /area/crew_quarters/kitchen) -"bci" = ( -/obj/machinery/newscaster{ - pixel_y = 1 - }, -/turf/closed/wall, -/area/crew_quarters/kitchen) -"bcj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/black, -/area/crew_quarters/bar) "bck" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/black, /area/crew_quarters/bar) -"bcl" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/head/that{ - throwforce = 1 - }, -/turf/open/floor/plasteel/darkred/side{ - dir = 8 - }, -/area/crew_quarters/bar) "bcm" = ( /obj/structure/chair/stool/bar, /turf/open/floor/plasteel/black, /area/crew_quarters/bar) -"bcn" = ( -/mob/living/carbon/monkey/punpun, -/turf/open/floor/plasteel/black, -/area/crew_quarters/bar) "bco" = ( /obj/structure/table/wood/fancy, /obj/item/gun/ballistic/revolver/russian{ @@ -24781,12 +23475,6 @@ icon_state = "carpetsymbol" }, /area/crew_quarters/bar) -"bcp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) "bcq" = ( /obj/item/clothing/glasses/monocle, /obj/item/device/instrument/recorder, @@ -25228,32 +23916,6 @@ }, /turf/open/floor/plasteel/cafeteria, /area/crew_quarters/kitchen) -"bds" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/black, -/area/crew_quarters/bar) -"bdt" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/clothing/head/hardhat/cakehat, -/turf/open/floor/plasteel/darkred/side{ - dir = 8 - }, -/area/crew_quarters/bar) -"bdu" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar) "bdv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -25700,16 +24362,6 @@ }, /turf/open/floor/plasteel/cafeteria, /area/crew_quarters/kitchen) -"bet" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) "beu" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -25717,20 +24369,6 @@ }, /turf/open/floor/plasteel/cafeteria, /area/crew_quarters/kitchen) -"bev" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/bar) -"bew" = ( -/obj/structure/table/reinforced, -/obj/item/lighter, -/turf/open/floor/plasteel/darkred/side{ - dir = 8 - }, -/area/crew_quarters/bar) "bex" = ( /obj/machinery/camera{ c_tag = "Bar Port"; @@ -26525,15 +25163,6 @@ }, /turf/open/floor/plating, /area/crew_quarters/kitchen) -"bgm" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen"; - name = "kitchen shutters" - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/kitchen) "bgn" = ( /obj/structure/chair{ dir = 4 @@ -26809,10 +25438,6 @@ }, /turf/open/floor/plating/airless, /area/shuttle/arrival) -"bgT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) "bgU" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ @@ -27783,12 +26408,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/purple/side, /area/hallway/primary/central) -"biQ" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-05" - }, -/turf/open/floor/plasteel/blue/side, -/area/hallway/primary/central) "biR" = ( /obj/machinery/light, /obj/machinery/camera{ @@ -28529,12 +27148,6 @@ }, /turf/open/floor/plasteel/neutral/corner, /area/hallway/secondary/entry) -"bkU" = ( -/turf/closed/wall/r_wall, -/area/construction/mining/aux_base/closet) -"bkV" = ( -/turf/closed/wall, -/area/construction/mining/aux_base/closet) "bkW" = ( /obj/item/hemostat, /obj/item/retractor, @@ -29279,17 +27892,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/hallway/primary/aft) -"bmE" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/science/research/lobby) -"bmF" = ( -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/science/research/lobby) "bmG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, @@ -29311,11 +27913,6 @@ }, /turf/open/floor/plasteel, /area/science/research/lobby) -"bmK" = ( -/turf/open/floor/plasteel/purple/side{ - dir = 4 - }, -/area/science/research/lobby) "bmL" = ( /obj/structure/rack{ dir = 8; @@ -29722,16 +28319,6 @@ }, /turf/open/floor/plasteel/purple/side, /area/science/research/lobby) -"bnJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/science/research/lobby) -"bnK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research/lobby) "bnL" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -30218,12 +28805,6 @@ dir = 8 }, /area/science/research/lobby) -"boV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/purple/corner{ - dir = 8 - }, -/area/science/research/lobby) "boW" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, @@ -30601,17 +29182,6 @@ }, /turf/open/floor/plasteel/black, /area/medical/morgue) -"bpL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel/black, -/area/medical/morgue) "bpM" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ @@ -37583,18 +36153,6 @@ dir = 4 }, /area/security/checkpoint/science) -"bDJ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/science/research/lobby) "bDK" = ( /obj/structure/table, /obj/item/folder, @@ -37847,10 +36405,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/department/cargo) -"bEi" = ( -/obj/structure/transit_tube, -/turf/open/space, -/area/space) "bEj" = ( /obj/machinery/atmospherics/pipe/manifold/general/hidden{ dir = 8 @@ -39109,10 +37663,6 @@ /obj/structure/window/reinforced, /turf/open/space/basic, /area/space) -"bGJ" = ( -/obj/structure/transit_tube, -/turf/open/space/basic, -/area/space) "bGK" = ( /obj/structure/closet/boxinggloves, /turf/open/floor/plating{ @@ -39610,11 +38160,6 @@ }, /turf/open/space/basic, /area/space) -"bHO" = ( -/obj/structure/transit_tube, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) "bHP" = ( /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plasteel/black, @@ -39652,14 +38197,6 @@ dir = 1 }, /area/medical/virology) -"bHW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) "bHX" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 @@ -39973,15 +38510,6 @@ }, /turf/open/floor/plasteel, /area/science/research/lobby) -"bIB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/science/research/lobby) "bIC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ @@ -40921,17 +39449,10 @@ }, /turf/open/floor/plasteel/yellow/corner, /area/hallway/primary/aft) -"bKL" = ( -/obj/structure/sign/science, -/turf/closed/wall, -/area/maintenance/department/engine/atmos) "bKM" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/hallway/primary/aft) -"bKN" = ( -/turf/closed/wall, -/area/maintenance/department/engine/atmos) "bKO" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/poddoor/preopen{ @@ -41714,13 +40235,6 @@ /obj/structure/lattice, /turf/open/space, /area/space) -"bMz" = ( -/obj/structure/transit_tube/curved{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) "bMA" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/engine, @@ -41792,14 +40306,6 @@ dir = 10 }, /area/medical/medbay/central) -"bML" = ( -/obj/machinery/light, -/obj/item/soap/nanotrasen, -/obj/item/clothing/neck/stethoscope, -/obj/item/gun/syringe, -/obj/structure/table/glass, -/turf/open/floor/plasteel/whiteblue/side, -/area/medical/medbay/central) "bMM" = ( /obj/structure/closet/l3closet, /turf/open/floor/plasteel/whiteblue/side{ @@ -42131,22 +40637,6 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/space) -"bNC" = ( -/obj/structure/transit_tube/horizontal, -/turf/open/space/basic, -/area/space) -"bND" = ( -/obj/structure/transit_tube/horizontal, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"bNE" = ( -/obj/structure/transit_tube/curved/flipped{ - icon_state = "curved1"; - dir = 8 - }, -/turf/open/space/basic, -/area/space) "bNF" = ( /obj/item/stack/medical/bruise_pack, /turf/open/floor/plasteel/black, @@ -42802,12 +41292,6 @@ "bPh" = ( /turf/open/floor/engine/n2o, /area/engine/atmos) -"bPi" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) "bPj" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 @@ -44922,11 +43406,6 @@ icon_state = "platingdmg3" }, /area/maintenance/department/engine) -"bTZ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/lootdrop/grille_or_trash, -/turf/open/floor/plating, -/area/maintenance/department/engine) "bUa" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1; @@ -45560,9 +44039,6 @@ }, /turf/open/space/basic, /area/space) -"bVq" = ( -/turf/closed/wall, -/area/space) "bVr" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/airless, @@ -45702,10 +44178,6 @@ "bVE" = ( /turf/open/floor/plasteel, /area/crew_quarters/heads/chief) -"bVF" = ( -/obj/effect/landmark/start/chief_engineer, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) "bVG" = ( /obj/structure/chair/office/light{ dir = 1 @@ -46359,17 +44831,6 @@ }, /turf/open/floor/engine/co2, /area/engine/atmos) -"bWU" = ( -/obj/structure/flora/ausbushes, -/obj/machinery/camera{ - c_tag = "Monastery Asteroid Port Fore"; - dir = 1; - network = list("SS13","Monastery") - }, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid{ - name = "Monastery Asteroid" - }) "bWV" = ( /turf/closed/wall, /area/chapel/main/monastery) @@ -46392,18 +44853,6 @@ }, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"bWY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK" - }, -/turf/open/floor/plating, -/area/chapel/asteroid{ - name = "Monastery Asteroid" - }) "bWZ" = ( /turf/open/floor/plating{ icon_state = "panelscorched" @@ -46664,12 +45113,6 @@ }, /turf/closed/wall/r_wall, /area/engine/atmos) -"bXH" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) "bXI" = ( /obj/structure/cable{ d1 = 1; @@ -46681,13 +45124,6 @@ "bXJ" = ( /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"bXK" = ( -/obj/item/device/radio/beacon, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) "bXL" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 4 @@ -46712,36 +45148,6 @@ /area/chapel/asteroid{ name = "Monastery Asteroid" }) -"bXO" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bXP" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bXQ" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bXR" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) "bXS" = ( /obj/structure/grille/broken, /obj/machinery/disposal/bin, @@ -46933,14 +45339,6 @@ }, /turf/open/floor/plating, /area/engine/atmos) -"bYr" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) "bYs" = ( /obj/machinery/atmospherics/pipe/simple/green/hidden{ dir = 8 @@ -46980,13 +45378,6 @@ /obj/structure/lattice, /turf/open/space/basic, /area/space) -"bYy" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) "bYz" = ( /obj/machinery/door/morgue{ name = "Confession Booth" @@ -47003,29 +45394,6 @@ /obj/structure/chair/wood/normal, /turf/open/floor/plasteel/chapel, /area/chapel/main/monastery) -"bYC" = ( -/obj/structure/chair, -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = 30 - }, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/chapel/main/monastery) -"bYD" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/space, -/area/space) -"bYE" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/closed/wall, -/area/maintenance/department/engine) "bYF" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 1; @@ -47523,10 +45891,6 @@ }, /turf/closed/wall/r_wall, /area/maintenance/disposal/incinerator) -"bZk" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) "bZl" = ( /obj/structure/chair/wood/normal, /turf/open/floor/plasteel/chapel{ @@ -47550,19 +45914,6 @@ "bZo" = ( /turf/open/floor/carpet, /area/chapel/main/monastery) -"bZp" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/chapel/main/monastery) -"bZq" = ( -/obj/structure/chair, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/chapel, -/area/chapel/main/monastery) "bZr" = ( /obj/item/trash/tray, /obj/structure/disposalpipe/segment{ @@ -47838,29 +46189,9 @@ /obj/structure/sign/fire, /turf/closed/wall/r_wall, /area/maintenance/disposal/incinerator) -"bZW" = ( -/obj/machinery/camera{ - c_tag = "Monastery Asteroid Port"; - dir = 1; - network = list("SS13","Monastery") - }, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid{ - name = "Monastery Asteroid" - }) -"bZX" = ( -/obj/structure/flora/ausbushes/palebush, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid{ - name = "Monastery Asteroid" - }) "bZY" = ( /turf/closed/wall, /area/chapel/office) -"bZZ" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plasteel/black, -/area/chapel/office) "caa" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating{ @@ -48298,12 +46629,6 @@ /obj/structure/window/reinforced/tinted/fulltile, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"caU" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/black, -/area/chapel/office) "caV" = ( /obj/machinery/holopad, /obj/item/device/flashlight/lantern, @@ -48315,26 +46640,6 @@ dir = 8 }, /area/chapel/main/monastery) -"caX" = ( -/obj/structure/chair, -/obj/machinery/camera{ - c_tag = "Chapel"; - dir = 8; - network = list("SS13","Monastery") - }, -/turf/open/floor/plasteel/chapel, -/area/chapel/main/monastery) -"caY" = ( -/obj/structure/flora/ausbushes/pointybush, -/obj/machinery/camera{ - c_tag = "Monastery Asteroid Starboard"; - dir = 1; - network = list("SS13","Monastery") - }, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid{ - name = "Monastery Asteroid" - }) "caZ" = ( /obj/structure/table, /obj/item/wirecutters, @@ -48611,65 +46916,12 @@ }, /turf/open/floor/plating, /area/chapel/office) -"cbH" = ( -/obj/structure/closet{ - name = "chaplain closet" - }, -/obj/item/clothing/under/rank/chaplain, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/storage/backpack/cultpack, -/obj/item/storage/fancy/candle_box, -/obj/item/storage/fancy/candle_box, -/obj/item/clothing/suit/nun, -/obj/item/clothing/head/nun_hood, -/obj/item/clothing/suit/holidaypriest, -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/machinery/requests_console{ - department = "Chapel"; - departmentType = 2; - pixel_x = -32 - }, -/turf/open/floor/carpet, -/area/chapel/office) -"cbI" = ( -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/turf/open/floor/carpet, -/area/chapel/office) -"cbJ" = ( -/obj/structure/table/wood, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-18"; - pixel_y = 8 - }, -/obj/machinery/camera{ - c_tag = "Chapel Office"; - dir = 2; - network = list("SS13","Monastery") - }, -/turf/open/floor/carpet, -/area/chapel/office) "cbK" = ( /obj/structure/chair/wood/normal{ dir = 1 }, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"cbL" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/chapel/main/monastery) "cbM" = ( /turf/open/floor/plasteel/chapel{ dir = 4 @@ -48697,14 +46949,6 @@ dir = 1 }, /area/chapel/main/monastery) -"cbQ" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/chapel/main/monastery) "cbR" = ( /obj/machinery/door/airlock/centcom{ name = "Chapel Access"; @@ -48915,12 +47159,6 @@ }, /turf/open/floor/engine/vacuum, /area/maintenance/disposal/incinerator) -"cct" = ( -/obj/structure/flora/ausbushes/pointybush, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid{ - name = "Monastery Asteroid" - }) "ccu" = ( /obj/structure/flora/ausbushes/leafybush, /turf/open/floor/plating/asteroid, @@ -48933,90 +47171,6 @@ }, /turf/open/floor/carpet, /area/chapel/office) -"ccw" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/office) -"ccx" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/holywater{ - name = "flask of holy water"; - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/nullrod, -/turf/open/floor/carpet, -/area/chapel/office) -"ccy" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = -2 - }, -/turf/open/floor/plasteel/black, -/area/chapel/office) -"ccz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/black, -/area/chapel/office) -"ccA" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/camera{ - c_tag = "Chapel Port Access"; - dir = 2; - network = list("SS13","Monastery") - }, -/turf/open/floor/plasteel/black, -/area/chapel/office) -"ccB" = ( -/obj/machinery/door/airlock/centcom{ - name = "Chapel Access"; - opacity = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) -"ccC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/chapel/main/monastery) -"ccD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel/chapel, -/area/chapel/main/monastery) "ccE" = ( /obj/structure/cable{ d1 = 1; @@ -49035,24 +47189,9 @@ }, /turf/open/floor/carpet, /area/chapel/main/monastery) -"ccG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/chapel/main/monastery) "ccH" = ( /turf/open/floor/plasteel/chapel, /area/chapel/main/monastery) -"ccI" = ( -/obj/machinery/door/airlock/centcom{ - name = "Chapel Access"; - opacity = 1 - }, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) "ccJ" = ( /obj/machinery/light/small{ dir = 1 @@ -49063,17 +47202,6 @@ }, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"ccK" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Chapel Starboard Access"; - dir = 2; - network = list("SS13","Monastery") - }, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) "ccL" = ( /obj/item/device/flashlight/lantern{ on = 1 @@ -49352,13 +47480,6 @@ /obj/structure/lattice/catwalk, /turf/open/space/basic, /area/space) -"cdn" = ( -/obj/structure/closet/crate/bin, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/carpet, -/area/chapel/office) "cdo" = ( /turf/open/floor/carpet, /area/chapel/office) @@ -49393,36 +47514,11 @@ }, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"cdt" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel/black, -/area/chapel/office) "cdu" = ( /turf/open/floor/plasteel/chapel{ dir = 8 }, /area/chapel/main/monastery) -"cdv" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/box/matches{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/chapel/main/monastery) "cdw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/black, @@ -49431,22 +47527,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"cdy" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/fancy/candle_box, -/obj/machinery/light/small, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/chapel/main/monastery) -"cdz" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-08" - }, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/chapel/main/monastery) "cdA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -49751,10 +47831,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"cem" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/chapel/main/monastery) "cen" = ( /obj/structure/table/wood, /obj/item/storage/photo_album, @@ -49892,14 +47968,6 @@ }, /turf/open/floor/plasteel/black, /area/chapel/office) -"ceD" = ( -/obj/machinery/door/airlock/centcom{ - name = "Crematorium"; - opacity = 1; - req_access = "27" - }, -/turf/open/floor/plasteel/black, -/area/chapel/office) "ceE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/black, @@ -49910,10 +47978,6 @@ dir = 8 }, /area/chapel/office) -"ceG" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plasteel/black, -/area/chapel/office) "ceH" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 @@ -49925,23 +47989,6 @@ }, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"ceI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) "ceJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -49979,15 +48026,6 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"ceO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) "ceP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -50000,14 +48038,6 @@ }, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"ceR" = ( -/obj/machinery/field/generator, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"ceS" = ( -/obj/machinery/power/emitter, -/turf/open/floor/plating, -/area/maintenance/department/engine) "ceT" = ( /obj/effect/decal/cleanable/cobweb, /obj/effect/turf_decal/stripes/line{ @@ -50121,23 +48151,6 @@ /obj/structure/closet/emcloset/anchored, /turf/open/floor/plating, /area/engine/engineering) -"cfh" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/black, -/area/chapel/office) -"cfi" = ( -/obj/machinery/button/crematorium{ - id = "foo"; - pixel_x = 25 - }, -/turf/open/floor/plasteel/black, -/area/chapel/office) -"cfj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/chapel/office) "cfk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -50181,13 +48194,6 @@ dir = 5 }, /area/chapel/main/monastery) -"cfq" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/plating, -/area/chapel/main/monastery) "cfr" = ( /obj/structure/transit_tube_pod, /obj/structure/transit_tube/station/reverse{ @@ -50286,17 +48292,6 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"cfA" = ( -/obj/machinery/chem_master/condimaster, -/turf/open/floor/plasteel/hydrofloor, -/area/chapel/main/monastery) -"cfB" = ( -/obj/machinery/seed_extractor, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/hydrofloor, -/area/chapel/main/monastery) "cfC" = ( /obj/machinery/biogenerator, /turf/open/floor/plasteel/hydrofloor, @@ -50474,23 +48469,6 @@ }, /turf/open/floor/plating/airless, /area/engine/engineering) -"cga" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Monastery External APC"; - areastring = "/area/chapel/main/monastery"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/asteroid{ - icon_plating = "asteroid" - }, -/area/chapel/asteroid{ - name = "Monastery Asteroid" - }) "cgb" = ( /obj/machinery/airalarm{ pixel_y = 22 @@ -50498,26 +48476,12 @@ /obj/item/storage/firstaid/regular, /turf/open/floor/plasteel/hydrofloor, /area/chapel/main/monastery) -"cgc" = ( -/obj/item/seeds/wheat, -/turf/open/floor/plasteel/hydrofloor, -/area/chapel/main/monastery) "cgd" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/plasteel/hydrofloor, /area/chapel/main/monastery) -"cge" = ( -/obj/item/storage/bag/plants, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/turf/open/floor/plasteel/hydrofloor, -/area/chapel/main/monastery) "cgf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -50532,10 +48496,6 @@ dir = 8 }, /area/chapel/main/monastery) -"cgh" = ( -/obj/structure/flora/ausbushes/pointybush, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) "cgi" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -50560,14 +48520,6 @@ }, /turf/open/floor/grass, /area/hydroponics/garden/monastery) -"cgl" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/carrot, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) "cgm" = ( /obj/machinery/hydroponics/soil, /obj/item/seeds/watermelon/holy, @@ -50656,86 +48608,6 @@ }, /turf/open/floor/plating/airless, /area/engine/engineering) -"cgy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel/asteroid{ - icon_plating = "asteroid" - }, -/area/chapel/asteroid{ - name = "Monastery Asteroid" - }) -"cgz" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/chapel/main/monastery) -"cgA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/chapel/main/monastery) -"cgB" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/chapel/main/monastery) -"cgC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel/hydrofloor, -/area/chapel/main/monastery) -"cgD" = ( -/obj/machinery/vending/hydronutrients, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel/hydrofloor, -/area/chapel/main/monastery) -"cgE" = ( -/obj/item/shovel/spade, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel/hydrofloor, -/area/chapel/main/monastery) -"cgF" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel/hydrofloor, -/area/chapel/main/monastery) "cgG" = ( /obj/structure/window/reinforced/fulltile, /turf/open/floor/plating, @@ -50918,17 +48790,6 @@ /obj/item/clothing/suit/apron/chef, /turf/open/floor/plasteel/hydrofloor, /area/chapel/main/monastery) -"che" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel/hydrofloor, -/area/chapel/main/monastery) "chf" = ( /obj/machinery/light/small{ dir = 8 @@ -50941,38 +48802,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"chg" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) -"chh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/main/monastery) "chi" = ( /obj/structure/flora/ausbushes/pointybush, /obj/structure/flora/ausbushes/sparsegrass, @@ -50996,14 +48825,6 @@ /obj/structure/flora/ausbushes/sunnybush, /turf/open/floor/grass, /area/hydroponics/garden/monastery) -"chm" = ( -/obj/machinery/door/airlock{ - name = "Garden" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/hydroponics/garden/monastery) "chn" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 @@ -51150,16 +48971,6 @@ /obj/item/seeds/wheat, /turf/open/floor/grass, /area/hydroponics/garden/monastery) -"chH" = ( -/obj/structure/flora/ausbushes/genericbush, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"chI" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) "chJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -51307,24 +49118,6 @@ /obj/structure/flora/ausbushes/sparsegrass, /turf/open/floor/grass, /area/hydroponics/garden/monastery) -"cie" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/light/small, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cif" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Monastery Cells"; - dir = 8; - network = list("SS13","Monastery") - }, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) "cig" = ( /obj/structure/transit_tube/crossing, /turf/open/floor/plating/airless, @@ -51465,22 +49258,6 @@ }, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"ciB" = ( -/obj/structure/closet/coffin, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) -"ciC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) "ciD" = ( /obj/structure/cable{ d1 = 1; @@ -51539,34 +49316,6 @@ /obj/item/clothing/mask/gas, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"ciL" = ( -/obj/machinery/door/window/eastleft{ - dir = 1; - name = "Coffin Storage"; - req_one_access_txt = "22" - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) -"ciM" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) "ciN" = ( /obj/structure/closet/crate/bin, /turf/open/floor/plasteel/black, @@ -51584,27 +49333,6 @@ }, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"ciP" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) -"ciQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) "ciR" = ( /obj/structure/cable{ d1 = 4; @@ -51625,18 +49353,6 @@ /obj/item/seeds/harebell, /turf/open/floor/grass, /area/hydroponics/garden/monastery) -"ciU" = ( -/obj/machinery/light/small, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) "ciV" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/ppflowers, @@ -51734,21 +49450,6 @@ }, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"cjh" = ( -/obj/machinery/door/airlock/external{ - name = "Dock Access" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) -"cji" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) "cjj" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 @@ -51774,20 +49475,6 @@ "cjm" = ( /turf/closed/wall, /area/maintenance/department/chapel/monastery) -"cjn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - name = "Monastery Maintenance"; - req_access_txt = "0"; - req_one_access_txt = "22;24;10;11" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) "cjo" = ( /obj/machinery/hydroponics/soil, /obj/machinery/light/small, @@ -51911,42 +49598,6 @@ }, /turf/open/floor/plating, /area/chapel/main/monastery) -"cjD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Monastery Secondary Dock"; - dir = 8; - network = list("SS13","Monastery") - }, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) -"cjE" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) -"cjF" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/chapel/main/monastery) -"cjG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/button/massdriver{ - id = "chapelgun"; - pixel_x = 28 - }, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) "cjH" = ( /obj/machinery/door/airlock/centcom{ name = "Chapel Garden"; @@ -51954,69 +49605,6 @@ }, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"cjI" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/closed/wall, -/area/maintenance/department/chapel/monastery) -"cjJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"cjK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"cjL" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Monastery Maintenance APC"; - areastring = "/area/maintenance/department/chapel/monastery"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"cjM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"cjN" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/storage/box/lights/bulbs, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) "cjO" = ( /obj/effect/decal/cleanable/cobweb{ icon_state = "cobweb2" @@ -52055,25 +49643,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/carpet, /area/library) -"cjS" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Library APC"; - areastring = "/area/library"; - pixel_x = 24 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/black, -/area/library) "cjT" = ( /obj/structure/grille, /obj/structure/cable{ @@ -52230,10 +49799,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/carpet, /area/library) -"ckn" = ( -/obj/item/storage/bag/books, -/turf/open/floor/plasteel/black, -/area/library) "cko" = ( /obj/structure/bookcase/random/religion, /turf/open/floor/plasteel/black, @@ -52301,14 +49866,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"ckx" = ( -/obj/structure/table/wood/fancy, -/obj/item/clothing/under/burial, -/obj/item/clothing/under/burial, -/obj/item/clothing/under/burial, -/obj/item/clothing/under/burial, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) "cky" = ( /obj/machinery/power/smes{ charge = 5e+006 @@ -52469,23 +50026,6 @@ /obj/structure/shuttle/engine/propulsion/burst, /turf/closed/wall/mineral/titanium, /area/shuttle/abandoned) -"ckZ" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/space, -/area/space) -"cla" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space) "clb" = ( /obj/machinery/door/poddoor{ id = "chapelgun"; @@ -52493,16 +50033,6 @@ }, /turf/open/floor/plating, /area/chapel/main/monastery) -"clc" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space) "cld" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 @@ -52531,12 +50061,6 @@ }, /turf/open/floor/plasteel/black, /area/library) -"clh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/carpet, -/area/library) "cli" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 @@ -52558,13 +50082,6 @@ /obj/machinery/libraryscanner, /turf/open/floor/plasteel/black, /area/library) -"cll" = ( -/obj/machinery/newscaster{ - pixel_x = -32; - pixel_y = -32 - }, -/turf/open/floor/carpet, -/area/library) "clm" = ( /obj/structure/closet/crate/bin, /turf/open/floor/plasteel/black, @@ -52573,34 +50090,11 @@ /obj/structure/bookcase/random/adult, /turf/open/floor/plasteel/black, /area/library) -"clo" = ( -/obj/effect/decal/remains/human, -/turf/closed/mineral, -/area/chapel/asteroid{ - name = "Monastery Asteroid" - }) "clp" = ( /obj/structure/table/wood, /obj/machinery/computer/libraryconsole/bookmanagement, /turf/open/floor/plasteel/black, /area/library) -"clq" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - layer = 2.9; - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen, -/obj/item/barcodescanner, -/turf/open/floor/plasteel/black, -/area/library) -"clr" = ( -/obj/item/pickaxe/mini, -/turf/closed/mineral, -/area/chapel/asteroid{ - name = "Monastery Asteroid" - }) "cls" = ( /obj/effect/spawner/lootdrop/maintenance, /turf/closed/mineral, @@ -52736,12 +50230,6 @@ /obj/machinery/atmospherics/components/unary/tank/air, /turf/open/floor/plating, /area/tcommsat/computer) -"clO" = ( -/obj/structure/grille, -/obj/structure/lattice, -/obj/structure/lattice, -/turf/open/space, -/area/space) "clP" = ( /obj/structure/transit_tube/station/reverse/flipped{ dir = 8 @@ -53199,12 +50687,6 @@ }, /turf/open/floor/plasteel/black/telecomms, /area/tcommsat/server) -"cmS" = ( -/turf/open/floor/plasteel/whitepurple/side/telecomms, -/area/tcommsat/server) -"cmT" = ( -/turf/open/floor/plasteel/darkgreen/side/telecomms, -/area/tcommsat/server) "cmU" = ( /obj/machinery/light{ dir = 4 @@ -53252,32 +50734,6 @@ /obj/machinery/telecomms/server/presets/engineering, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"cnf" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/darkblue/side/telecomms{ - dir = 1 - }, -/area/tcommsat/server) -"cng" = ( -/turf/open/floor/plasteel/darkblue/side/telecomms{ - dir = 1 - }, -/area/tcommsat/server) -"cnh" = ( -/turf/open/floor/plasteel/whitepurple/side/telecomms{ - dir = 1 - }, -/area/tcommsat/server) -"cni" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/side/telecomms{ - dir = 1 - }, -/area/tcommsat/server) "cnj" = ( /obj/machinery/telecomms/processor/preset_four, /turf/open/floor/circuit/telecomms/mainframe, @@ -53412,14 +50868,6 @@ }, /turf/open/space, /area/space) -"cnB" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/purple/side{ - dir = 4 - }, -/area/science/research/lobby) "cnC" = ( /obj/machinery/turretid{ control_area = "/area/ai_monitored/turret_protected/aisat_interior"; @@ -53439,9 +50887,6 @@ /obj/structure/lattice, /turf/open/space/basic, /area/ai_monitored/turret_protected/AIsatextAP) -"cnF" = ( -/turf/open/space/basic, -/area/ai_monitored/turret_protected/AIsatextAP) "cnG" = ( /turf/open/space/basic, /area/ai_monitored/turret_protected/AIsatextAS) @@ -53450,29 +50895,11 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/space/basic, /area/ai_monitored/turret_protected/AIsatextAS) -"cnI" = ( -/turf/open/space/basic, -/area/ai_monitored/turret_protected/AIsatextAS) "cnJ" = ( /obj/structure/closet/wardrobe/red, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel/showroomfloor, /area/security/main) -"cnK" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"cnL" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"cnM" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) "cnN" = ( /obj/structure/closet/secure_closet/security/sec, /obj/machinery/camera{ @@ -53486,11 +50913,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel/showroomfloor, /area/security/main) -"cnO" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) "cnP" = ( /obj/machinery/vending/security, /obj/effect/turf_decal/bot, @@ -53501,11 +50923,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel/showroomfloor, /area/security/main) -"cnR" = ( -/obj/machinery/suit_storage_unit/security, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) "cnS" = ( /turf/closed/wall/r_wall, /area/security/main) @@ -53513,10 +50930,6 @@ /obj/structure/weightlifter, /turf/open/floor/plasteel/showroomfloor, /area/security/main) -"cnU" = ( -/obj/structure/weightlifter, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) "cnV" = ( /obj/structure/punching_bag, /turf/open/floor/plasteel/showroomfloor, @@ -53531,31 +50944,6 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) -"cnY" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/pod_1) -"cnZ" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/pod_1) -"coa" = ( -/turf/open/floor/plasteel/darkred/side{ - dir = 1 - }, -/area/security/brig) -"cob" = ( -/turf/open/floor/plasteel/darkred/side{ - dir = 1 - }, -/area/security/brig) -"coc" = ( -/turf/open/floor/plasteel/darkred/side{ - dir = 1 - }, -/area/security/brig) "cod" = ( /obj/structure/table, /obj/item/clothing/under/color/grey, @@ -53589,15 +50977,6 @@ icon_state = "panelscorched" }, /area/maintenance/department/crew_quarters/dorms) -"cof" = ( -/turf/open/floor/plasteel/darkred/side, -/area/security/brig) -"cog" = ( -/turf/open/floor/plasteel/darkred/side, -/area/security/brig) -"coh" = ( -/turf/open/floor/plasteel/darkred/side, -/area/security/brig) "coi" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -53687,11 +51066,6 @@ /obj/item/storage/toolbox/emergency, /turf/open/floor/plating, /area/storage/emergency/starboard) -"cox" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) "coy" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 @@ -53712,19 +51086,6 @@ dir = 8 }, /area/hallway/primary/central) -"coA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel/blue/corner{ - dir = 8 - }, -/area/hallway/primary/central) "coB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -53742,37 +51103,6 @@ dir = 8 }, /area/hallway/primary/central) -"coC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel/blue/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"coD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel/blue/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"coE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/hallway/primary/central) "coF" = ( /obj/structure/cable{ d1 = 4; @@ -53816,20 +51146,6 @@ icon_state = "panelscorched" }, /area/maintenance/department/crew_quarters/bar) -"coI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - burnt = 1; - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/bar) "coJ" = ( /obj/structure/cable{ d1 = 4; @@ -53843,53 +51159,17 @@ icon_state = "platingdmg3" }, /area/maintenance/department/crew_quarters/bar) -"coK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/bar) "coL" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating/airless, /area/quartermaster/storage) -"coM" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/quartermaster/storage) "coN" = ( /turf/open/floor/plasteel/neutral/corner, /area/hallway/secondary/exit/departure_lounge) -"coO" = ( -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/secondary/exit/departure_lounge) -"coP" = ( -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/secondary/exit/departure_lounge) -"coQ" = ( -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/secondary/exit/departure_lounge) -"coR" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/quartermaster/storage) -"coS" = ( -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/secondary/exit/departure_lounge) "coT" = ( /obj/item/device/radio/beacon, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"coU" = ( -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/secondary/exit/departure_lounge) "coV" = ( /obj/machinery/vending/cigarette, /turf/open/floor/plasteel/vault{ @@ -53904,25 +51184,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) -"coX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"coY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"coZ" = ( -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/secondary/exit/departure_lounge) "cpa" = ( /obj/machinery/vending/boozeomat, /turf/closed/wall, @@ -53963,10 +51224,6 @@ }, /turf/open/floor/plasteel/black, /area/crew_quarters/bar) -"cpd" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/department/cargo) "cpe" = ( /obj/machinery/door/airlock{ cyclelinkeddir = 4; @@ -53975,12 +51232,6 @@ }, /turf/open/floor/plasteel/black, /area/crew_quarters/bar) -"cpf" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/darkred/side{ - dir = 1 - }, -/area/crew_quarters/bar) "cpg" = ( /obj/machinery/button/door{ id = "barshutters"; @@ -54054,14 +51305,6 @@ /obj/machinery/holopad, /turf/open/floor/plasteel/black, /area/crew_quarters/bar) -"cpp" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) "cpq" = ( /obj/machinery/deepfryer, /obj/machinery/light{ @@ -54164,38 +51407,6 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/crew_quarters/bar) -"cpD" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "barshutters"; - name = "bar shutters" - }, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/crew_quarters/bar) -"cpE" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "barshutters"; - name = "bar shutters" - }, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/crew_quarters/bar) -"cpF" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "barshutters"; - name = "bar shutters" - }, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/crew_quarters/bar) -"cpG" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "barshutters"; - name = "bar shutters" - }, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/crew_quarters/bar) "cpH" = ( /turf/open/floor/plasteel{ icon_state = "L1" @@ -54290,12 +51501,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/cargo) -"cpW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) "cpX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/whiteblue/side{ @@ -54320,11 +51525,6 @@ dir = 8 }, /area/medical/medbay/central) -"cqb" = ( -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) "cqc" = ( /turf/open/floor/plasteel/whiteblue/corner{ dir = 4 @@ -54347,11 +51547,6 @@ dir = 1 }, /area/medical/medbay/central) -"cqg" = ( -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/medbay/central) "cqh" = ( /obj/machinery/door/firedoor, /turf/open/floor/plasteel/purple/corner, @@ -54359,9 +51554,6 @@ "cqi" = ( /turf/open/floor/plasteel/purple/side, /area/science/research/lobby) -"cqj" = ( -/turf/open/floor/plasteel/purple/side, -/area/science/research/lobby) "cqk" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 @@ -54385,22 +51577,6 @@ dir = 4 }, /area/medical/medbay/central) -"cqn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cqo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) "cqp" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 @@ -54414,11 +51590,6 @@ /obj/structure/window/shuttle, /turf/open/floor/plating, /area/shuttle/transport) -"cqr" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/transport) "cqs" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -54438,14 +51609,6 @@ }, /turf/open/floor/plasteel/purple/side, /area/science/research/lobby) -"cqu" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/purple/side{ - dir = 8 - }, -/area/science/research/lobby) "cqv" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -54486,24 +51649,6 @@ }, /turf/open/floor/plasteel/green/side, /area/science/research/lobby) -"cqA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/green/side, -/area/science/research/lobby) -"cqB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/green/side, -/area/science/research/lobby) -"cqC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/green/side, -/area/science/research/lobby) "cqD" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -54519,10 +51664,6 @@ }, /turf/open/floor/plasteel/green/side, /area/science/research/lobby) -"cqF" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) "cqG" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 @@ -54542,50 +51683,10 @@ dir = 8 }, /area/chapel/dock) -"cqJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"cqK" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"cqL" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"cqM" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"cqN" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"cqO" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"cqP" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"cqQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"cqR" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) "cqS" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating/airless, /area/space) -"cqT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) "cqU" = ( /obj/structure/window/reinforced{ dir = 4 @@ -54616,37 +51717,10 @@ /obj/structure/lattice, /turf/open/space/basic, /area/space) -"cqY" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/closed/mineral, -/area/chapel/asteroid{ - name = "Monastery Asteroid" - }) -"cqZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"cra" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) "crb" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating/airless, /area/chapel/office) -"crc" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/closed/mineral, -/area/chapel/asteroid{ - name = "Monastery Asteroid" - }) -"crd" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/closed/mineral, -/area/chapel/asteroid{ - name = "Monastery Asteroid" - }) "cre" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -54654,11 +51728,6 @@ }, /turf/open/space/basic, /area/space) -"crf" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) "crg" = ( /obj/structure/chair/wood/normal, /turf/open/floor/plasteel/black, @@ -54673,12 +51742,6 @@ }, /turf/open/floor/plasteel/black, /area/chapel/office) -"cri" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/closed/mineral, -/area/chapel/asteroid{ - name = "Monastery Asteroid" - }) "crj" = ( /obj/machinery/light/small{ dir = 8 @@ -54708,30 +51771,6 @@ /obj/structure/disposalpipe/segment, /turf/open/space, /area/space) -"crn" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"cro" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"crp" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"crq" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"crr" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"crs" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) "crt" = ( /obj/structure/table/wood/fancy, /obj/item/folder, @@ -54746,9 +51785,6 @@ "crv" = ( /turf/open/floor/plasteel/black, /area/chapel/office) -"crw" = ( -/turf/open/floor/plasteel/black, -/area/chapel/office) "crx" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/snacks/grown/harebell, @@ -54834,10 +51870,6 @@ /obj/item/reagent_containers/food/snacks/grown/poppy, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"crI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/department/engine) "crJ" = ( /obj/machinery/door/airlock/centcom{ name = "Crematorium"; @@ -54889,16 +51921,6 @@ }, /turf/open/space/basic, /area/space) -"crP" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/chapel/office) -"crQ" = ( -/turf/open/floor/plasteel/black, -/area/chapel/office) -"crR" = ( -/turf/open/floor/plasteel/black, -/area/chapel/office) "crS" = ( /obj/machinery/airalarm{ frequency = 1439; @@ -54932,10 +51954,6 @@ /area/chapel/asteroid{ name = "Monastery Asteroid" }) -"crW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) "crX" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/black, @@ -54951,24 +51969,6 @@ }, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"crZ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space/basic, -/area/space) -"csa" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"csb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"csc" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) "csd" = ( /obj/structure/table/wood, /turf/open/floor/carpet, @@ -55014,16 +52014,6 @@ }, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"csl" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space/basic, -/area/space) -"csm" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) "csn" = ( /obj/item/device/radio/intercom{ dir = 0; @@ -55081,21 +52071,6 @@ dir = 10 }, /area/chapel/office) -"cst" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkred/side{ - dir = 10 - }, -/area/chapel/office) -"csu" = ( -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/chapel/office) "csv" = ( /obj/machinery/light/small{ dir = 8 @@ -55103,16 +52078,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"csw" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space/basic, -/area/space) -"csx" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) "csy" = ( /obj/effect/spawner/lootdrop/maintenance, /obj/structure/disposalpipe/segment{ @@ -55128,10 +52093,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/engine) -"csA" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/chapel/office) "csB" = ( /obj/structure/chair/comfy/black{ dir = 4 @@ -55174,14 +52135,6 @@ }, /turf/open/floor/plasteel/darkred, /area/chapel/office) -"csH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel/darkred, -/area/chapel/office) "csI" = ( /obj/structure/cable{ d1 = 4; @@ -55195,33 +52148,6 @@ }, /turf/open/floor/plasteel/black, /area/chapel/office) -"csJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel/asteroid, -/area/chapel/office) -"csK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/asteroid, -/area/chapel/office) -"csL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel/asteroid, -/area/chapel/office) "csM" = ( /obj/structure/cable{ d1 = 4; @@ -55260,15 +52186,6 @@ }, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"csP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) "csQ" = ( /obj/structure/cable{ d1 = 4; @@ -55280,17 +52197,6 @@ }, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"csR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) "csS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -55313,16 +52219,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating/airless, /area/chapel/main/monastery) -"csV" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space/basic, -/area/space) -"csW" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) "csX" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/disposalpipe/segment, @@ -55364,35 +52260,12 @@ dir = 9 }, /area/chapel/office) -"ctc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkred/side{ - dir = 9 - }, -/area/chapel/office) -"ctd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkred/side{ - dir = 9 - }, -/area/chapel/office) "cte" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/closed/wall, /area/chapel/office) -"ctf" = ( -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/chapel/office) "ctg" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 @@ -55405,45 +52278,6 @@ /obj/machinery/light/small, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"cti" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space/basic, -/area/space) -"ctj" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"ctk" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"ctl" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"ctm" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"ctn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"cto" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"ctp" = ( -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/chapel/office) -"ctq" = ( -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/chapel/office) "ctr" = ( /turf/open/floor/plasteel/darkyellow/corner{ tag = "icon-darkyellowcorners (EAST)"; @@ -55451,13 +52285,6 @@ dir = 4 }, /area/chapel/office) -"cts" = ( -/turf/open/floor/plasteel/darkyellow/corner{ - tag = "icon-darkyellowcorners (EAST)"; - icon_state = "darkyellowcorners"; - dir = 4 - }, -/area/chapel/office) "ctt" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -55478,61 +52305,10 @@ dir = 4 }, /area/chapel/office) -"ctv" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/black, -/area/chapel/office) -"ctw" = ( -/turf/closed/wall/mineral/iron, -/area/chapel/main/monastery) "ctx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/mineral/iron, /area/chapel/main/monastery) -"cty" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/mineral/iron, -/area/chapel/main/monastery) -"ctz" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space/basic, -/area/space) -"ctA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"ctB" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"ctC" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"ctD" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/chapel/office) -"ctE" = ( -/turf/open/floor/plasteel/black, -/area/chapel/office) -"ctF" = ( -/turf/open/floor/plasteel/black, -/area/chapel/office) -"ctG" = ( -/turf/open/floor/plasteel/black, -/area/chapel/office) -"ctH" = ( -/turf/open/floor/plasteel/black, -/area/chapel/office) -"ctI" = ( -/turf/open/floor/plasteel/black, -/area/chapel/office) "ctJ" = ( /obj/machinery/camera{ c_tag = "Chapel Office"; @@ -55627,12 +52403,6 @@ }, /turf/open/floor/plating, /area/chapel/main/monastery) -"ctR" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space/basic, -/area/space) "ctS" = ( /obj/structure/disposaloutlet, /obj/structure/disposalpipe/trunk{ @@ -55641,14 +52411,6 @@ }, /turf/open/floor/plating/airless, /area/space) -"ctT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"ctU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) "ctV" = ( /obj/structure/closet, /obj/item/clothing/suit/holidaypriest, @@ -55677,25 +52439,6 @@ dir = 8 }, /area/chapel/office) -"ctY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/main/monastery) -"ctZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/main/monastery) "cua" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 @@ -55704,46 +52447,6 @@ dir = 8 }, /area/chapel/main/monastery) -"cub" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space/basic, -/area/space) -"cuc" = ( -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/chapel/main/monastery) -"cud" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space/basic, -/area/space) -"cue" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"cuf" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"cug" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"cuh" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"cui" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"cuj" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) "cuk" = ( /obj/structure/closet{ name = "beekeeping wardrobe" @@ -55792,17 +52495,6 @@ /obj/item/seeds/watermelon/holy, /turf/open/floor/grass, /area/hydroponics/garden/monastery) -"cuq" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cur" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space/basic, -/area/space) "cus" = ( /obj/structure/closet{ name = "beekeeping supplies" @@ -55895,28 +52587,11 @@ /obj/structure/flora/tree/jungle/small, /turf/open/floor/grass, /area/hydroponics/garden/monastery) -"cuC" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/beebox, -/obj/item/queen_bee/bought, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cuD" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) "cuE" = ( /obj/machinery/hydroponics/soil, /obj/item/seeds/carrot, /turf/open/floor/grass, /area/hydroponics/garden/monastery) -"cuF" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/carrot, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) "cuG" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/machinery/light/small{ @@ -55947,17 +52622,6 @@ }, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"cuL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/main/monastery) "cuM" = ( /obj/machinery/power/apc{ dir = 8; @@ -55975,10 +52639,6 @@ /obj/structure/flora/ausbushes/sparsegrass, /turf/open/floor/grass, /area/hydroponics/garden/monastery) -"cuN" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) "cuO" = ( /obj/machinery/hydroponics/soil, /obj/item/seeds/sugarcane, @@ -56016,12 +52676,6 @@ }, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"cuT" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) "cuU" = ( /obj/machinery/door/airlock{ name = "Dining Room" @@ -56081,12 +52735,6 @@ /obj/item/wrench, /turf/open/floor/plasteel/hydrofloor, /area/chapel/main/monastery) -"cva" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) "cvb" = ( /obj/machinery/hydroponics/soil, /obj/item/seeds/wheat, @@ -56113,11 +52761,6 @@ }, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"cvf" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/harebell, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) "cvg" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/structure/flora/ausbushes/brflowers, @@ -56154,28 +52797,6 @@ }, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"cvl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/mineral/iron, -/area/chapel/main/monastery) -"cvm" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/chapel/main/monastery) -"cvn" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/chapel/main/monastery) -"cvo" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/chapel/main/monastery) -"cvp" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/chapel/main/monastery) "cvq" = ( /obj/machinery/camera{ c_tag = "Monastery Secondary Dock"; @@ -56248,14 +52869,6 @@ dir = 8 }, /area/chapel/main/monastery) -"cvx" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/main/monastery) "cvy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 @@ -56264,12 +52877,6 @@ dir = 8 }, /area/chapel/main/monastery) -"cvz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/main/monastery) "cvA" = ( /obj/machinery/door/airlock/external{ name = "Dock Access" @@ -56294,12 +52901,6 @@ }, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"cvD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/mineral/iron, -/area/chapel/main/monastery) "cvE" = ( /obj/structure/cable{ d1 = 1; @@ -56325,19 +52926,6 @@ dir = 5 }, /area/chapel/main/monastery) -"cvG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/main/monastery) "cvH" = ( /obj/structure/cable{ d1 = 2; @@ -56421,22 +53009,6 @@ }, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"cvN" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/chapel/main/monastery) -"cvO" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/chapel/main/monastery) -"cvP" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/chapel/main/monastery) -"cvQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/chapel/main/monastery) "cvR" = ( /obj/machinery/light/small{ dir = 8 @@ -56464,21 +53036,11 @@ /obj/structure/chair/wood/normal, /turf/open/floor/carpet, /area/chapel/main/monastery) -"cvU" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/carpet, -/area/chapel/main/monastery) "cvV" = ( /obj/structure/chair/wood/normal, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"cvW" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) "cvX" = ( /obj/structure/cable{ d1 = 2; @@ -56506,9 +53068,6 @@ "cwa" = ( /turf/closed/wall/mineral/iron, /area/maintenance/department/chapel/monastery) -"cwb" = ( -/turf/closed/wall/mineral/iron, -/area/maintenance/department/chapel/monastery) "cwc" = ( /obj/structure/cable{ d1 = 1; @@ -56523,15 +53082,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/department/chapel/monastery) -"cwd" = ( -/turf/closed/wall/mineral/iron, -/area/maintenance/department/chapel/monastery) "cwe" = ( /turf/closed/wall/mineral/iron, /area/library) -"cwf" = ( -/turf/closed/wall/mineral/iron, -/area/library) "cwg" = ( /obj/machinery/door/airlock/centcom{ name = "Library" @@ -56544,12 +53097,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/black, /area/library) -"cwh" = ( -/turf/closed/wall/mineral/iron, -/area/library) -"cwi" = ( -/turf/closed/wall/mineral/iron, -/area/library) "cwj" = ( /obj/item/storage/box/matches{ pixel_x = -3; @@ -56630,9 +53177,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/chapel/monastery) -"cwq" = ( -/turf/closed/wall/mineral/iron, -/area/library) "cwr" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-22" @@ -56651,18 +53195,6 @@ }, /turf/open/floor/plasteel/black, /area/library) -"cws" = ( -/turf/closed/wall/mineral/iron, -/area/library) -"cwt" = ( -/turf/closed/wall/mineral/iron, -/area/library) -"cwu" = ( -/turf/closed/wall/mineral/iron, -/area/library) -"cwv" = ( -/turf/closed/wall/mineral/iron, -/area/library) "cww" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/snacks/grown/poppy, @@ -56699,18 +53231,6 @@ "cwA" = ( /turf/open/floor/plating, /area/maintenance/department/chapel/monastery) -"cwB" = ( -/turf/closed/wall/mineral/iron, -/area/library) -"cwC" = ( -/turf/closed/wall/mineral/iron, -/area/library) -"cwD" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) "cwE" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -56741,21 +53261,12 @@ }, /turf/open/floor/plating, /area/maintenance/department/chapel/monastery) -"cwI" = ( -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"cwJ" = ( -/turf/closed/wall/mineral/iron, -/area/library) "cwK" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /turf/open/floor/carpet, /area/library) -"cwL" = ( -/turf/closed/wall/mineral/iron, -/area/library) "cwM" = ( /obj/structure/window/reinforced{ dir = 4; @@ -56763,22 +53274,10 @@ }, /turf/open/space, /area/space) -"cwN" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/chapel/main/monastery) "cwO" = ( /obj/item/device/flashlight/lantern, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) -"cwP" = ( -/obj/item/device/flashlight/lantern, -/turf/open/floor/plasteel/black, -/area/chapel/main/monastery) -"cwQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/chapel/main/monastery) "cwR" = ( /obj/structure/window/reinforced{ dir = 8; @@ -56790,60 +53289,17 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/maintenance/department/chapel/monastery) -"cwT" = ( -/turf/closed/wall/mineral/iron, -/area/library) "cwU" = ( /obj/structure/table/wood, /obj/machinery/computer/libraryconsole, /turf/open/floor/plasteel/black, /area/library) -"cwV" = ( -/turf/closed/wall/mineral/iron, -/area/library) -"cwW" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/chapel/main/monastery) -"cwX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/chapel/main/monastery) -"cwY" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/chapel/main/monastery) -"cwZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/chapel/main/monastery) -"cxa" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/chapel/main/monastery) -"cxb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/chapel/main/monastery) -"cxc" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/turf/open/space/basic, -/area/space) -"cxd" = ( -/turf/closed/wall/mineral/iron, -/area/library) "cxe" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, /turf/open/floor/carpet, /area/library) -"cxf" = ( -/turf/closed/wall/mineral/iron, -/area/library) "cxg" = ( /obj/structure/window/reinforced{ dir = 1; @@ -56862,14 +53318,6 @@ }, /turf/open/space/basic, /area/space) -"cxi" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/chapel/main/monastery) -"cxj" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/chapel/main/monastery) "cxk" = ( /obj/structure/window/reinforced{ dir = 1; @@ -56881,16 +53329,6 @@ }, /turf/open/space/basic, /area/space) -"cxl" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/space/basic, -/area/space) -"cxm" = ( -/turf/closed/wall/mineral/iron, -/area/library) "cxn" = ( /obj/machinery/newscaster{ pixel_x = -32; @@ -56899,47 +53337,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/library) -"cxo" = ( -/turf/closed/wall/mineral/iron, -/area/library) -"cxp" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/space/basic, -/area/space) -"cxq" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/space/basic, -/area/space) -"cxr" = ( -/turf/closed/wall/mineral/iron, -/area/library) -"cxs" = ( -/turf/closed/wall/mineral/iron, -/area/library) -"cxt" = ( -/turf/closed/wall/mineral/iron, -/area/library) -"cxu" = ( -/turf/closed/wall/mineral/iron, -/area/library) -"cxv" = ( -/turf/closed/wall/mineral/iron, -/area/library) -"cxw" = ( -/turf/closed/wall/mineral/iron, -/area/library) -"cxx" = ( -/turf/closed/wall/mineral/iron, -/area/library) -"cxy" = ( -/turf/closed/wall/mineral/iron, -/area/library) "cxz" = ( /obj/machinery/door/airlock/centcom{ name = "Library" @@ -56947,9 +53344,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/black, /area/library) -"cxA" = ( -/turf/closed/wall/mineral/iron, -/area/library) "cxB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -56995,13 +53389,6 @@ "cxG" = ( /turf/open/space/basic, /area/library) -"cxH" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/library) -"cxI" = ( -/turf/open/space/basic, -/area/library) "cxJ" = ( /obj/structure/window/reinforced/fulltile, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -57031,42 +53418,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/library) -"cxN" = ( -/turf/open/space/basic, -/area/library) -"cxO" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/library) -"cxP" = ( -/turf/open/space/basic, -/area/library) -"cxQ" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/library) -"cxR" = ( -/turf/open/space/basic, -/area/library) -"cxS" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/library) -"cxT" = ( -/turf/open/space/basic, -/area/library) -"cxU" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/library) -"cxV" = ( -/turf/open/space/basic, -/area/library) -"cxW" = ( -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/library) "cxX" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -57091,50 +53442,6 @@ dir = 1 }, /area/library) -"cxZ" = ( -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/library) -"cya" = ( -/turf/open/space/basic, -/area/library) -"cyb" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/library) -"cyc" = ( -/turf/open/space/basic, -/area/library) -"cyd" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/library) -"cye" = ( -/turf/open/space/basic, -/area/library) -"cyf" = ( -/turf/open/space/basic, -/area/library) -"cyg" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/library) -"cyh" = ( -/turf/open/space/basic, -/area/library) -"cyi" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/library) -"cyj" = ( -/turf/open/space/basic, -/area/library) -"cyk" = ( -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/library) "cyl" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -57152,45 +53459,6 @@ dir = 1 }, /area/library) -"cyn" = ( -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/library) -"cyo" = ( -/turf/open/space/basic, -/area/library) -"cyp" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/library) -"cyq" = ( -/turf/open/space/basic, -/area/library) -"cyr" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/library) -"cys" = ( -/turf/open/space/basic, -/area/library) -"cyt" = ( -/turf/open/space/basic, -/area/library) -"cyu" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/library) -"cyv" = ( -/turf/open/space/basic, -/area/library) -"cyw" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/library) -"cyx" = ( -/turf/open/space/basic, -/area/library) "cyy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -57229,37 +53497,6 @@ }, /turf/closed/wall, /area/library) -"cyC" = ( -/turf/open/space/basic, -/area/library) -"cyD" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/library) -"cyE" = ( -/turf/open/space/basic, -/area/library) -"cyF" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/library) -"cyG" = ( -/turf/open/space/basic, -/area/library) -"cyH" = ( -/turf/open/space/basic, -/area/library) -"cyI" = ( -/obj/machinery/door/airlock/centcom{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/black, -/area/library) -"cyJ" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/library) "cyK" = ( /obj/structure/lattice, /turf/open/space/basic, @@ -57277,14 +53514,6 @@ /area/chapel/asteroid{ name = "Monastery Asteroid" }) -"cyN" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"cyO" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) "cyP" = ( /obj/structure/bookcase/random/nonfiction, /obj/machinery/light/small{ @@ -57330,20 +53559,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating/airless, /area/library) -"cyV" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/library) -"cyW" = ( -/obj/structure/lattice, -/turf/closed/mineral, -/area/chapel/asteroid{ - name = "Monastery Asteroid" - }) -"cyX" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) "cyY" = ( /obj/machinery/light/small{ dir = 8 @@ -57354,66 +53569,10 @@ /obj/structure/displaycase/trophy, /turf/open/floor/plasteel/black, /area/library) -"cza" = ( -/obj/structure/displaycase/trophy, -/turf/open/floor/plasteel/black, -/area/library) -"czb" = ( -/obj/structure/displaycase/trophy, -/turf/open/floor/plasteel/black, -/area/library) -"czc" = ( -/obj/structure/displaycase/trophy, -/turf/open/floor/plasteel/black, -/area/library) -"czd" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"cze" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"czf" = ( -/obj/structure/lattice, -/turf/closed/mineral, -/area/chapel/asteroid{ - name = "Monastery Asteroid" - }) -"czg" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/library) -"czh" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/library) -"czi" = ( -/obj/structure/lattice, -/turf/closed/mineral, -/area/chapel/asteroid{ - name = "Monastery Asteroid" - }) -"czj" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"czk" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) "czl" = ( /obj/structure/chair/wood/normal, /turf/open/floor/carpet, /area/library) -"czm" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/carpet, -/area/library) -"czn" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/carpet, -/area/library) "czo" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ @@ -57475,20 +53634,6 @@ }, /turf/open/floor/plasteel/black, /area/library) -"czx" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"czy" = ( -/obj/structure/lattice, -/turf/closed/mineral, -/area/chapel/asteroid{ - name = "Monastery Asteroid" - }) -"czz" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/library) "czA" = ( /obj/structure/table/wood/fancy, /obj/item/dice/d20, @@ -57513,20 +53658,6 @@ /obj/item/pen, /turf/open/floor/plasteel/black, /area/library) -"czE" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/plasteel/black, -/area/library) -"czF" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/library) -"czG" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) "czH" = ( /obj/machinery/light/small{ dir = 8 @@ -57544,18 +53675,6 @@ }, /turf/open/floor/carpet, /area/library) -"czJ" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/library) -"czK" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/library) "czL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/black, @@ -57591,24 +53710,6 @@ }, /turf/open/floor/plasteel/black, /area/library) -"czR" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"czS" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"czT" = ( -/obj/structure/lattice, -/turf/closed/mineral, -/area/chapel/asteroid{ - name = "Monastery Asteroid" - }) -"czU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/library) "czV" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 @@ -57621,12 +53722,6 @@ }, /turf/open/floor/plasteel/black, /area/library) -"czX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/library) "czY" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -57645,32 +53740,6 @@ }, /turf/open/floor/plasteel/black, /area/library) -"cAb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/library) -"cAc" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/library) -"cAd" = ( -/obj/structure/lattice, -/turf/closed/mineral, -/area/chapel/asteroid{ - name = "Monastery Asteroid" - }) -"cAe" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"cAf" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/black, -/area/library) "cAg" = ( /turf/open/floor/plasteel/vault, /area/library) @@ -57691,38 +53760,6 @@ dir = 5 }, /area/library) -"cAk" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"cAl" = ( -/turf/open/floor/plasteel/vault, -/area/library) -"cAm" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/black, -/area/library) -"cAn" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"cAo" = ( -/obj/structure/lattice, -/turf/closed/mineral, -/area/chapel/asteroid{ - name = "Monastery Asteroid" - }) -"cAp" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/library) -"cAq" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/library) "cAr" = ( /obj/machinery/light/small{ dir = 8 @@ -57771,25 +53808,6 @@ dir = 5 }, /area/library) -"cAw" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lantern{ - pixel_y = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"cAx" = ( -/obj/structure/table/wood, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-05"; - pixel_y = 10 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) "cAy" = ( /obj/machinery/light/small{ dir = 4 @@ -57803,14 +53821,6 @@ }, /turf/open/floor/plasteel/darkred/side, /area/library) -"cAz" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/library) -"cAA" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/library) "cAB" = ( /turf/open/floor/plasteel/darkpurple/side{ dir = 1 @@ -57833,19 +53843,6 @@ /obj/effect/landmark/start/librarian, /turf/open/floor/plasteel/black, /area/library) -"cAE" = ( -/turf/open/floor/plasteel/darkpurple/side{ - dir = 1 - }, -/area/library) -"cAF" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/library) -"cAG" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/library) "cAH" = ( /obj/machinery/light/small, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -57853,12 +53850,6 @@ }, /turf/open/floor/plasteel/black, /area/library) -"cAI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/library) "cAJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -57871,12 +53862,6 @@ }, /turf/open/floor/plasteel/black, /area/library) -"cAL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/library) "cAM" = ( /obj/machinery/light/small, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -57884,28 +53869,6 @@ }, /turf/open/floor/plasteel/black, /area/library) -"cAN" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/library) -"cAO" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/library) -"cAP" = ( -/obj/structure/lattice, -/turf/closed/mineral, -/area/chapel/asteroid{ - name = "Monastery Asteroid" - }) -"cAQ" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"cAR" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) "cAS" = ( /obj/structure/closet/wardrobe/curator, /turf/open/floor/plasteel/black, @@ -57934,60 +53897,6 @@ }, /turf/open/floor/plasteel/black, /area/library) -"cAW" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/library) -"cAX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/library) -"cAY" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/library) -"cAZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/library) -"cBa" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/library) -"cBb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/library) -"cBc" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"cBd" = ( -/obj/structure/lattice, -/turf/closed/mineral, -/area/chapel/asteroid{ - name = "Monastery Asteroid" - }) -"cBe" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"cBf" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"cBg" = ( -/obj/structure/lattice, -/turf/closed/mineral, -/area/chapel/asteroid{ - name = "Monastery Asteroid" - }) -"cBh" = ( -/obj/structure/lattice, -/turf/closed/mineral, -/area/chapel/asteroid{ - name = "Monastery Asteroid" - }) "cBi" = ( /obj/structure/cable{ d1 = 4; @@ -58075,9 +53984,6 @@ }, /turf/open/floor/carpet, /area/maintenance/department/crew_quarters/dorms) -"cBt" = ( -/turf/open/floor/wood, -/area/maintenance/department/crew_quarters/dorms) "cBu" = ( /obj/structure/chair/comfy{ dir = 1 @@ -58156,36 +54062,6 @@ icon_state = "platingdmg3" }, /area/maintenance/department/crew_quarters/dorms) -"cBC" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/shuttle/escape) -"cBD" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/shuttle/escape) -"cBE" = ( -/turf/closed/wall, -/area/shuttle/escape) -"cBF" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/space) -"cBG" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/space) -"cBH" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/shuttle/escape) -"cBI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/shuttle/escape) -"cBJ" = ( -/turf/closed/wall, -/area/shuttle/escape) "cBK" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 @@ -58213,38 +54089,19 @@ /obj/effect/spawner/structure/window/shuttle, /turf/open/floor/plating, /area/shuttle/escape) -"cBO" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/escape) -"cBP" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/escape) -"cBQ" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/escape) -"cBR" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/escape) -"cBS" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/escape) -"cBT" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/escape) -"cBU" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/escape) -"cBV" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/escape) +"YXG" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate_nw"; + name = "northwest of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space/basic, +/area/space) (1,1,1) = {" aaa @@ -64445,16 +60302,16 @@ aaa aaa aaa aaa -aab -aac -aac -aac -aac -aac -aac -aac -aac -aat +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -64696,22 +60553,22 @@ aaa aaa aaa aaa -aab -aac -aac -aac -aac -aac -aac -abd -abm -abd -abu -abz -abK -abP -abS -abZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -64953,22 +60810,22 @@ aaa aaa aaa aaa -aac -aaH -aaJ -aaJ -aaJ -aaX -aac -aaU -aas -aaz -aaz -abA -aaz -abQ -abS -aca +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -65210,22 +61067,22 @@ aaa aaa aaa aaa -aac -aaz -aaz -aaz -aaz -aaz -abc -abe -aas -abp -abv -abB -abL -abR -abS -acb +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -65460,29 +61317,29 @@ aaa aaa aaa aaa -aab -aac -aac -aac -aat aaa aaa -aac -aaz -aaz -aaz -aaz -aaz -aac -abf -aas -abq -aaR -abC -aac -aac -aac -aaB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -65717,26 +61574,26 @@ aaa aaa aaa aaa -aac -aaf -aam -aas -aac -aax aaa -aac -aaI -aaK -aaN -aaU -aaY -aac -abg -aas -abq -aaR -abD -aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -65974,28 +61831,28 @@ aaa aaa aaa aaa -aad -aag -aan -aas -aac -aac -aac -aac -aac -aac -aac -aaV -aaO -aac -aac -aac -abr -aaO -aac -aac -aac -aat +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -66231,28 +62088,28 @@ aaa aaa aaa aaa -aad -aah -aao -aas -aau -aay -aaC -aaE -aaC -aaC -aaO -aaz -aaz -aaz -aaz -abn -abq -aaR -aas -aaO -abS -abZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -66488,28 +62345,28 @@ aaa aaa aaa aaa -aad -aai -aap -aas -aav -aaz -aao -aao -aao -aaz -aaP -aaz -aao -aao -aao -aao -abq -aaR -aas -abM -abS -aca +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -66745,28 +62602,28 @@ aaa aaa aaa aaa -aad -aaj -aao -aas -aac -aaA -aaD -aaF -aaD -aaD -aaO -aaz -aaz -aaz -aaz -abo -abq -aaR -aas -aaO -abS -acb +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -67002,28 +62859,28 @@ aaa aaa aaa aaa -aad -aak -aaq -aas -aac -aac -aac -aaG -aac -aac -aac -aaW -aaO -aac -aac -aac -abr -aaO -aac -aac -aac -aaw +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -67259,26 +63116,26 @@ aaa aaa aaa aaa -aac -aal -aar -aas -aac -aaB aaa aaa aaa -aac -aaQ -aaz -aaZ -aac -abh -aas -abq -aaR -abE -aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -67516,29 +63373,29 @@ aaa aaa aaa aaa -aae -aac -aac -aac -aaw aaa aaa aaa aaa -aaL -aaR -aaz -aaZ -aac -abi -aas -abq -aaR -abF -aac -aac -aac -aax +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -67782,20 +63639,20 @@ aaa aaa aaa aaa -aaM -aaS -aaz -aba -aau -abj -aas -abs -abw -abB -aaz -abT -abS -abZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -68035,24 +63892,24 @@ aaa aaa aaa aaa +YXG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa aaa -aae -aac -aac -aac -aac -abk -aas -aaz -aaz -abG -aaz -abU -abS -aca aaa aaa aaa @@ -68299,17 +64156,17 @@ aaa aaa aaa aaa -abb -aac -abl -aas -abt -abx -abH -abo -abT -abS -acb +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -68557,16 +64414,16 @@ aaa aaa aaa aaa -aae -aac -aac -aac -aac -aac -aac -aac -aac -aaw +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -71780,9 +67637,9 @@ bOw cfN crV cfN -csu -csJ -ctf +cbG +cef +ceB cfN cfN cfN @@ -72037,9 +67894,9 @@ bUC bOw chT cfN -csu -csK -ctf +cbG +cee +ceB cfN cfN cfN @@ -72294,14 +68151,14 @@ bOw bOw bOw ccu -csu -csJ -ctf +cbG +cef +ceB cfN cfN cfN bWV -crW +cdr cuv bXJ ceP @@ -72551,9 +68408,9 @@ bOw bOw bUC bOw -csu +cbG csM -ctf +ceB cfN cfN cfN @@ -72808,9 +68665,9 @@ bOw bOw bOw bOw -csu -csK -ctf +cbG +cee +ceB cfN cfN cfN @@ -73065,9 +68922,9 @@ bOw bSm bOw bUC -csu -csJ -ctf +cbG +cef +ceB cfN cfN cfN @@ -73325,17 +69182,17 @@ bWV cdq ceg chJ -ctw -ctw -ctw -ctw -ctw +cfm +cfm +cfm +cfm +cfm chF -ctw +cfm cuU -ctw -ctw -ctw +cfm +cfm +cfm cjH chF cuQ @@ -73579,18 +69436,18 @@ bWV bWV bXJ bYz -crW +cdr csN ctg ctx ctK -ctY +ciD cfD chf cuz -ctY +ciD cuV -ctY +ciD cfD chf cfD @@ -74096,17 +69953,17 @@ bWV bWV cei bWV -ctw +cfm ceJ cfn bWV -cuc -cuc +cgG +cgG bWV cuX bWV -cuc -cuc +cgG +cgG bWV cfn ciR @@ -74348,24 +70205,24 @@ crj bXJ bXJ crK -crW +cdr cdw csv csN bWV -ctw +cfm cfF -ctZ -cuc +cgi +cgG chi cid cuM chj cvb -cvf +ciT cvh -cuc -ctZ +cgG +cgi cvF cwa cwo @@ -74610,18 +70467,18 @@ cbP cdu csQ ceK -ctw +cfm cfG cfn -cuc +cgG cid cuA cib cgH cgH -cuN +ciS cid -cuc +cgG cfn cvH cwc @@ -74867,16 +70724,16 @@ cbM ccH csQ ceL -ctw +cfm ctM -ctZ +cgi bWV cun cuB cic cgH chG -cvf +ciT cjo bWV cvw @@ -75127,15 +70984,15 @@ cdw cej ceM cfo -cuc +cgG cgk cuA -cuN +ciS chk cgH cgH cvi -cuc +cgG cfn ciR cwa @@ -75384,15 +71241,15 @@ cdx cek ceN cfn -cuc +cgG cuo -cuq +ciV cgI chl cib cvg cid -cuc +cgG cfn ciR cwe @@ -75638,9 +71495,9 @@ cbP cdu ceP cth -ctw +cfm ctN -ctZ +cgi bWV cup cuE @@ -75650,7 +71507,7 @@ cgH cgj cvj bWV -ctZ +cgi cvJ cwe cjP @@ -75895,18 +71752,18 @@ cbM ccH ceP ceK -ctw +cfm cfG cfn -cuc -cuq +cgG +ciV cgH cgH cgH cic -cuq +ciV cjq -cuc +cgG cfn ckE ckT @@ -76152,10 +72009,10 @@ cdx cgn csS bWV -ctw +cfm ctO -ctZ -cuc +cgi +cgG cgm cuE cuO @@ -76163,7 +72020,7 @@ cgH ciE ciW cjr -cuc +cgG cvw cvK cwg @@ -76409,17 +72266,17 @@ csk bWV cbR bWV -ctw +cfm ceP cfn bWV -cuc -cuc +cgG +cgG bWV cuY bWV -cuc -cuc +cgG +cgG bWV cfn ceP @@ -76937,7 +72794,7 @@ cvk cdx cvc cvM -ctw +cfm cwe cko ckH @@ -77180,21 +73037,21 @@ bQg cbR bXJ cdB -ctw -ctw +cfm +cfm cfH -ctw -ctw +cfm +cfm chp cuQ -ctw -ctw +cfm +cfm ciF cuQ -ctw -ctw -ctw -ctw +cfm +cfm +cfm +cfm cwe ckp ckI @@ -77440,15 +73297,15 @@ cen bWV ctQ cfI -ctw +cfm cgL chq chK -ctw +cfm cio chq ciX -ctw +cfm cfN cfN cfN @@ -77697,15 +73554,15 @@ bWV bWV bWV cfJ -ctw +cfm cgM chr chL -ctw +cfm cgM chr chL -ctw +cfm cfN cfN cfN @@ -77954,15 +73811,15 @@ cdD ceo bOw cfK -ctw +cfm cgN chs chM -ctw +cfm cip chs ciY -ctw +cfm cfN cfN cfN @@ -78211,15 +74068,15 @@ bQe bOw bOw cfL -ctw -ctw +cfm +cfm cht -ctw -ctw -ctw +cfm +cfm +cfm cht -ctw -ctw +cfm +cfm cfN cfN cfN @@ -78468,15 +74325,15 @@ bOw bOw bUC cfM -ctw +cfm cgO chu chN -ctw +cfm ciq chu ciZ -ctw +cfm cfN cfN cfN @@ -78725,15 +74582,15 @@ bNs bNs bNs bNs -ctw -ctw -ctw -ctw -ctw -ctw -ctw -ctw -ctw +cfm +cfm +cfm +cfm +cfm +cfm +cfm +cfm +cfm cfN cfN cfN @@ -82469,7 +78326,7 @@ aaa aby aaa agQ -cnK +ahd ahq ahq ahN @@ -82726,11 +78583,11 @@ aaa aby aaa agQ -cnK +ahd ahq cnT ahq -cnK +ahd agP ajm ajW @@ -82983,11 +78840,11 @@ afJ aby aaa agQ -cnK +ahd ahq ahq ahq -cnK +ahd agP ajn ajW @@ -83244,7 +79101,7 @@ cnN ahq cnT ahq -cnK +ahd agP ajo ajX @@ -83497,7 +79354,7 @@ aaa aby aaa agQ -cnK +ahd ahq ahq ahq @@ -88416,7 +84273,7 @@ aHf aHX aIW coz -coE +aKV abI aKT coG @@ -88673,7 +84530,7 @@ aHf aHX aIW coz -coE +aKV abI aKT coH @@ -88930,7 +84787,7 @@ aHf aHY aIX coB -coE +aKV abI aKT coH @@ -89187,7 +85044,7 @@ aHf aHX aIW coz -coE +aKV abI aKT coJ @@ -89444,7 +85301,7 @@ aHf aHX aIY coz -coE +aKV abI aKT coJ @@ -89973,8 +85830,8 @@ bah aYe aZb bag -cpp -cpp +bbr +bbr bdv bez cpC @@ -90484,7 +86341,7 @@ aPE aVh bah bah -cpf +aYg cph bag bbp @@ -90741,7 +86598,7 @@ aPE aVi bah aXh -cpf +aYg aZd beB bbq @@ -90998,11 +86855,11 @@ aPE cpb bah bah -cpf +aYg cpi bag -cpp -cpp +bbr +bbr bah bag bfs @@ -95324,7 +91181,7 @@ cBk aju cBo alQ -cBt +alb cBw aiS aiS @@ -95581,8 +91438,8 @@ ajv aju ajt alQ -cBt -cBt +alb +alb aiS anY apt @@ -95839,7 +91696,7 @@ akh alc alR amF -cBt +alb anm ajv ajv @@ -96096,7 +91953,7 @@ cBm cBp alS amG -cBt +alb aiS aiS aiS @@ -123780,4 +119637,4 @@ aaa aaa aaa aaa -"} \ No newline at end of file +"} diff --git a/_maps/map_files/generic/CentCom.dmm b/_maps/map_files/generic/CentCom.dmm index 72a05373eb..6182250fd3 100644 --- a/_maps/map_files/generic/CentCom.dmm +++ b/_maps/map_files/generic/CentCom.dmm @@ -1,4 +1,4 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aa" = ( /turf/open/space/basic, /area/space) @@ -47,12 +47,6 @@ "aj" = ( /turf/open/floor/holofloor/asteroid, /area/holodeck/rec_center/bunker) -"ak" = ( -/turf/open/floor/holofloor{ - icon_state = "asteroid_warn_side"; - dir = 8 - }, -/area/holodeck/rec_center/bunker) "al" = ( /obj/structure/table, /obj/item/stack/medical/ointment{ @@ -147,12 +141,6 @@ }, /turf/open/floor/holofloor/snow, /area/holodeck/rec_center/winterwonderland) -"az" = ( -/turf/open/floor/holofloor{ - icon_state = "asteroid_warn"; - dir = 8 - }, -/area/holodeck/rec_center/bunker) "aA" = ( /obj/structure/table, /obj/machinery/recharger, @@ -534,11 +522,6 @@ icon_state = "white" }, /area/holodeck/rec_center/medical) -"bK" = ( -/turf/open/floor/holofloor{ - icon_state = "white" - }, -/area/holodeck/rec_center/medical) "bL" = ( /turf/open/floor/holofloor{ dir = 8; @@ -600,11 +583,6 @@ icon_state = "redbluefull" }, /area/holodeck/rec_center/pet_lounge) -"bX" = ( -/turf/open/floor/holofloor{ - icon_state = "white" - }, -/area/holodeck/rec_center/medical) "bZ" = ( /obj/structure/table/optable, /turf/open/floor/holofloor{ @@ -681,11 +659,6 @@ icon_state = "white" }, /area/holodeck/rec_center/medical) -"cl" = ( -/turf/open/floor/holofloor{ - icon_state = "white" - }, -/area/holodeck/rec_center/medical) "cm" = ( /obj/structure/table/glass, /obj/item/storage/box/syringes{ @@ -777,11 +750,6 @@ icon_state = "white" }, /area/holodeck/rec_center/medical) -"cz" = ( -/turf/open/floor/holofloor{ - icon_state = "white" - }, -/area/holodeck/rec_center/medical) "cA" = ( /obj/structure/table/glass, /obj/item/device/healthanalyzer, @@ -961,27 +929,19 @@ /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/pet_lounge) "de" = ( -/turf/open/floor/holofloor{ - icon_state = "white" +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 }, -/area/holodeck/rec_center/medical) -"df" = ( -/turf/open/floor/holofloor{ - dir = 8; - icon_state = "white_warn_corner" - }, -/area/holodeck/rec_center/medical) +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/hallway) "dg" = ( /obj/machinery/door/window/westleft, /turf/open/floor/holofloor{ icon_state = "white" }, /area/holodeck/rec_center/medical) -"dh" = ( -/turf/open/floor/holofloor{ - icon_state = "white" - }, -/area/holodeck/rec_center/medical) "di" = ( /turf/open/floor/holofloor/beach/coast_b, /area/holodeck/rec_center/beach) @@ -1054,14 +1014,6 @@ "dr" = ( /turf/open/floor/holofloor/beach/water, /area/holodeck/rec_center/beach) -"ds" = ( -/turf/open/floor/holofloor/basalt, -/obj/structure/table, -/turf/open/floor/holofloor{ - icon_state = "warningline"; - dir = 1 - }, -/area/holodeck/rec_center/thunderdome) "dt" = ( /obj/structure/table, /obj/item/clothing/head/helmet/thunderdome, @@ -1070,15 +1022,6 @@ /obj/item/holo/esword/green, /turf/open/floor/holofloor/basalt, /area/holodeck/rec_center/thunderdome) -"du" = ( -/turf/open/floor/holofloor/basalt, -/obj/structure/table, -/obj/machinery/readybutton, -/turf/open/floor/holofloor{ - icon_state = "warningline"; - dir = 1 - }, -/area/holodeck/rec_center/thunderdome) "dv" = ( /turf/open/floor/holofloor{ dir = 10; @@ -1190,22 +1133,6 @@ "dM" = ( /turf/open/floor/holofloor, /area/holodeck/rec_center/school) -"dN" = ( -/obj/machinery/conveyor/holodeck{ - dir = 8; - id = "holocoaster" - }, -/turf/open/floor/holofloor/asteroid, -/area/holodeck/rec_center/school) -"dO" = ( -/obj/machinery/conveyor/holodeck{ - dir = 6; - id = "holocoaster"; - movedir = null; - verted = -1 - }, -/turf/open/floor/holofloor/asteroid, -/area/holodeck/rec_center/school) "dP" = ( /turf/open/floor/holofloor{ dir = 8; @@ -1428,26 +1355,12 @@ dir = 4 }, /area/holodeck/rec_center/chapelcourt) -"el" = ( -/obj/machinery/conveyor/holodeck{ - id = "holocoaster" - }, -/turf/open/floor/holofloor/asteroid, -/area/holodeck/rec_center/school) "em" = ( /obj/structure/table/wood, /obj/item/folder, /obj/item/melee/classic_baton/telescopic, /turf/open/floor/holofloor, /area/holodeck/rec_center/school) -"en" = ( -/obj/machinery/conveyor/holodeck{ - dir = 1; - id = "holocoaster"; - layer = 2.5 - }, -/turf/open/floor/holofloor/asteroid, -/area/holodeck/rec_center/school) "eo" = ( /obj/structure/window/reinforced{ dir = 8 @@ -1569,10 +1482,6 @@ dir = 2 }, /area/holodeck/rec_center/chapelcourt) -"eF" = ( -/obj/item/shovel, -/turf/open/floor/holofloor/asteroid, -/area/holodeck/rec_center/school) "eG" = ( /obj/structure/window/reinforced{ dir = 8 @@ -1733,16 +1642,6 @@ dir = 2 }, /area/holodeck/rec_center/chapelcourt) -"ff" = ( -/obj/machinery/conveyor/holodeck{ - id = "holocoaster" - }, -/obj/structure/chair/office{ - dir = 1; - name = "coaster car" - }, -/turf/open/floor/holofloor/asteroid, -/area/holodeck/rec_center/school) "fg" = ( /obj/structure/table, /obj/item/paper, @@ -1928,12 +1827,11 @@ }, /area/holodeck/rec_center/firingrange) "fC" = ( -/turf/open/floor/holofloor/grass, -/turf/open/floor/holofloor{ - icon_state = "warningline"; - dir = 1 +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 }, -/area/holodeck/rec_center/spacechess) +/area/shuttle/syndicate/bridge) "fD" = ( /obj/structure/chair/wood/normal{ dir = 1 @@ -1966,28 +1864,17 @@ }, /area/holodeck/rec_center/kobayashi) "fH" = ( -/obj/machinery/conveyor/holodeck{ - dir = 9; - id = "holocoaster"; - verted = -1 - }, -/turf/open/floor/holofloor/asteroid, -/area/holodeck/rec_center/school) -"fI" = ( -/obj/machinery/conveyor/holodeck{ +/obj/structure/sink{ dir = 4; - id = "holocoaster" + pixel_x = 11 }, -/turf/open/floor/holofloor/asteroid, -/area/holodeck/rec_center/school) -"fJ" = ( -/obj/machinery/conveyor/holodeck{ - dir = 10; - id = "holocoaster"; - verted = -1 +/obj/structure/mirror{ + pixel_x = 30 }, -/turf/open/floor/holofloor/asteroid, -/area/holodeck/rec_center/school) +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/medical) "fK" = ( /obj/item/target, /obj/item/target/clown, @@ -2313,9 +2200,7 @@ /area/ctf) "gS" = ( /obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating{ - icon_plating = "warnplate" - }, +/turf/open/floor/plating, /area/ctf) "gT" = ( /obj/effect/turf_decal/stripes/line{ @@ -5604,6 +5489,14 @@ icon_state = "fakewindows" }, /area/wizard_station) +"pk" = ( +/obj/machinery/door/airlock/hatch{ + req_access_txt = "150" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/medical) "pl" = ( /obj/machinery/computer/shuttle/syndicate/recall, /turf/open/floor/plasteel/bar{ @@ -6424,6 +6317,14 @@ }, /turf/open/floor/plasteel, /area/centcom/evac) +"qW" = ( +/obj/structure/rack, +/obj/item/clothing/suit/space/syndicate/black/red, +/obj/item/clothing/head/helmet/space/syndicate/black/red, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/airlock) "qX" = ( /obj/structure/table, /obj/item/toy/katana, @@ -7326,6 +7227,11 @@ }, /turf/open/floor/carpet, /area/wizard_station) +"tg" = ( +/turf/open/floor/plasteel/podhatch{ + dir = 1 + }, +/area/shuttle/syndicate/medical) "th" = ( /obj/item/storage/box/drinkingglasses, /obj/item/reagent_containers/food/drinks/bottle/rum, @@ -11058,10 +10964,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/centcom/holding) -"CN" = ( -/obj/effect/spawner/structure/window/hollow/reinforced, -/turf/open/floor/plasteel, -/area/centcom/holding) "CO" = ( /obj/structure/sink{ dir = 8; @@ -12828,6 +12730,31 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/centcom/evac) +"HW" = ( +/obj/structure/table/reinforced, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/medical) +"Ic" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/medical) +"Id" = ( +/obj/item/retractor, +/obj/item/hemostat, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/medical) "Ih" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -12850,6 +12777,12 @@ "In" = ( /turf/open/floor/plasteel/neutral, /area/tdome/arena_source) +"Is" = ( +/obj/machinery/computer/crew/syndie, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/bridge) "Iu" = ( /turf/open/floor/plasteel/neutral/side{ dir = 8 @@ -12860,6 +12793,11 @@ dir = 1 }, /area/tdome/arena_source) +"ID" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/armory) "II" = ( /turf/open/floor/plasteel/green/corner{ dir = 4 @@ -12883,14 +12821,78 @@ }, /turf/open/floor/circuit/green, /area/tdome/arena_source) +"IZ" = ( +/obj/structure/table/optable, +/obj/item/surgical_drapes, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/medical) +"Jb" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/armory) "Je" = ( /turf/open/floor/plasteel/red/corner{ dir = 8 }, /area/tdome/arena_source) +"Jg" = ( +/obj/machinery/sleeper/syndie{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/medical) +"Jh" = ( +/obj/machinery/porta_turret/syndicate{ + dir = 4 + }, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/hallway) +"Jk" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/medical) +"Jm" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/dropper, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/medical) +"Jn" = ( +/obj/structure/shuttle/engine/propulsion/left, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/hallway) "Jq" = ( /turf/open/floor/plasteel/green/corner, /area/tdome/arena_source) +"Js" = ( +/turf/open/floor/plasteel/podhatch{ + dir = 5 + }, +/area/shuttle/syndicate/armory) +"Jz" = ( +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/armory) +"JC" = ( +/obj/machinery/suit_storage_unit/syndicate, +/turf/open/floor/plasteel/podhatch{ + dir = 6 + }, +/area/shuttle/syndicate/eva) "JE" = ( /obj/machinery/light, /turf/open/floor/plating, @@ -12926,6 +12928,10 @@ }, /turf/open/floor/plating/airless, /area/syndicate_mothership/control) +"JK" = ( +/obj/machinery/status_display, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/armory) "JL" = ( /obj/machinery/light, /turf/open/floor/wood, @@ -13068,6 +13074,11 @@ }, /turf/open/floor/plating/asteroid/snow/airless, /area/syndicate_mothership) +"Ki" = ( +/turf/open/floor/plasteel/podhatch{ + dir = 10 + }, +/area/shuttle/syndicate/medical) "Kj" = ( /obj/structure/flora/grass/both, /obj/effect/light_emitter{ @@ -13165,6 +13176,9 @@ }, /turf/open/floor/engine/cult, /area/wizard_station) +"KA" = ( +/turf/open/floor/plasteel/vault, +/area/shuttle/syndicate/armory) "KD" = ( /obj/structure/chair, /obj/effect/turf_decal/stripes/line{ @@ -13175,6 +13189,11 @@ }, /turf/open/floor/plasteel, /area/centcom/evac) +"KE" = ( +/turf/open/floor/plasteel/podhatch{ + dir = 9 + }, +/area/shuttle/syndicate/medical) "KG" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/sparsegrass, @@ -13226,6 +13245,15 @@ /obj/machinery/light, /turf/open/floor/plasteel, /area/centcom/ferry) +"KS" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/eva) "KT" = ( /obj/structure/chair{ dir = 1 @@ -13275,6 +13303,13 @@ dir = 5 }, /area/centcom/evac) +"Lf" = ( +/obj/structure/chair/office/dark{ + dir = 8; + name = "tactical swivel chair" + }, +/turf/open/floor/plasteel/black, +/area/shuttle/syndicate/bridge) "Lg" = ( /obj/machinery/light/small{ brightness = 3; @@ -13392,6 +13427,22 @@ }, /turf/open/floor/plating/asteroid/snow/airless, /area/syndicate_mothership) +"Ly" = ( +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/armory) "Lz" = ( /obj/machinery/light{ dir = 1 @@ -13413,6 +13464,12 @@ /obj/structure/fluff/arc, /turf/open/floor/grass, /area/centcom/evac) +"LG" = ( +/obj/machinery/telecomms/allinone{ + intercept = 1 + }, +/turf/open/floor/circuit/red, +/area/shuttle/syndicate/armory) "LH" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/structure/flora/ausbushes/lavendergrass, @@ -13570,7 +13627,29 @@ "Mi" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/centcom/evac) -"QG" = ( +"Mk" = ( +/obj/structure/window/plastitanium, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/airlock) +"Mz" = ( +/obj/structure/shuttle/engine/propulsion/right, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/hallway) +"MI" = ( +/obj/item/storage/toolbox/syndicate, +/obj/item/crowbar/red, +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/podhatch{ + dir = 10 + }, +/area/shuttle/syndicate/airlock) +"MZ" = ( /obj/docking_port/stationary{ area_type = /area/syndicate_mothership; baseturf_type = /turf/open/floor/plating/asteroid/snow; @@ -13583,8 +13662,195 @@ turf_type = /turf/open/floor/plating/asteroid/snow; width = 18 }, -/turf/open/floor/plating/asteroid/snow/airless, -/area/syndicate_mothership) +/obj/machinery/door/poddoor{ + id = "smindicate"; + name = "outer blast door" + }, +/obj/machinery/button/door{ + id = "smindicate"; + name = "external door control"; + pixel_x = -26; + req_access_txt = "150" + }, +/obj/docking_port/mobile{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate"; + name = "syndicate infiltrator"; + port_direction = 1; + roundstart_move = "syndicate_away"; + width = 18 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/podhatch{ + dir = 1 + }, +/area/shuttle/syndicate/airlock) +"Nc" = ( +/obj/structure/window/plastitanium, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/medical) +"Nk" = ( +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/hallway) +"Ns" = ( +/obj/machinery/nuclearbomb/syndicate, +/obj/machinery/door/window{ + dir = 1; + name = "Theatre Stage"; + req_access_txt = "0" + }, +/turf/open/floor/circuit/red, +/area/shuttle/syndicate/hallway) +"NH" = ( +/obj/structure/table/reinforced, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/item/clipboard, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/folder/red, +/obj/item/toy/figure/syndie, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/bridge) +"NJ" = ( +/obj/machinery/door/airlock/external{ + name = "E.V.A. Gear Storage"; + req_access_txt = "150" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/eva) +"NQ" = ( +/obj/machinery/door/window{ + dir = 1; + name = "Technological Storage"; + req_access_txt = "150" + }, +/turf/open/floor/plasteel/vault, +/area/shuttle/syndicate/armory) +"NV" = ( +/turf/open/floor/plasteel/podhatch{ + dir = 1 + }, +/area/shuttle/syndicate/hallway) +"Om" = ( +/obj/structure/chair{ + dir = 8; + name = "tactical chair" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/hallway) +"Os" = ( +/obj/machinery/recharge_station, +/turf/open/floor/circuit/red, +/area/shuttle/syndicate/armory) +"Ou" = ( +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/eva) +"Oz" = ( +/obj/structure/shuttle/engine/propulsion, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/medical) +"OQ" = ( +/obj/structure/closet/syndicate/personal, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/armory) +"OS" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/device/aicard, +/turf/open/floor/plasteel/vault, +/area/shuttle/syndicate/armory) +"OT" = ( +/obj/structure/table/reinforced, +/obj/item/stack/cable_coil/white, +/obj/item/stack/cable_coil/white, +/obj/item/crowbar/red, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/hallway) +"Pa" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/eva) +"Pd" = ( +/obj/structure/window/plastitanium, +/obj/machinery/door/poddoor/shutters{ + id = "syndieshutters"; + name = "blast shutters" + }, +/turf/open/floor/plating, +/area/shuttle/syndicate/bridge) +"Pm" = ( +/obj/structure/shuttle/engine/propulsion/right, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/armory) +"Pt" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/hallway) +"Pv" = ( +/obj/machinery/porta_turret/syndicate{ + dir = 9 + }, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/bridge) +"Qm" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/medical) +"Qo" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "150" + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/syndicate/airlock) +"Qr" = ( +/obj/machinery/suit_storage_unit/syndicate, +/turf/open/floor/plasteel/podhatch{ + dir = 5 + }, +/area/shuttle/syndicate/eva) +"Qt" = ( +/obj/machinery/door/window{ + dir = 1; + name = "Surgery"; + req_access_txt = "150" + }, +/turf/open/floor/plasteel/vault, +/area/shuttle/syndicate/medical) +"QB" = ( +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/eva) "QH" = ( /obj/structure/table/wood, /obj/item/toy/crayon/white, @@ -13615,12 +13881,6 @@ }, /turf/open/floor/holofloor, /area/holodeck/rec_center/school) -"QM" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/holofloor, -/area/holodeck/rec_center/school) "QN" = ( /obj/structure/table, /obj/item/paper, @@ -13628,37 +13888,12 @@ /obj/item/clothing/under/schoolgirl/red, /turf/open/floor/holofloor, /area/holodeck/rec_center/school) -"QO" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/holofloor, -/area/holodeck/rec_center/school) "QP" = ( -/obj/structure/chair{ - dir = 1 +/obj/structure/window/plastitanium, +/turf/open/floor/plasteel/vault{ + dir = 5 }, -/turf/open/floor/holofloor, -/area/holodeck/rec_center/school) -"QQ" = ( -/obj/structure/table, -/obj/item/paper, -/obj/item/pen, -/obj/item/clothing/under/schoolgirl/green, -/turf/open/floor/holofloor, -/area/holodeck/rec_center/school) -"QR" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/holofloor, -/area/holodeck/rec_center/school) -"QS" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/holofloor, -/area/holodeck/rec_center/school) +/area/shuttle/syndicate/medical) "QT" = ( /obj/effect/turf_decal/stripes/corner, /turf/open/floor/plating/airless, @@ -13673,12 +13908,6 @@ }, /turf/open/floor/plating/airless, /area/syndicate_mothership/control) -"QW" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) "QX" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -13691,12 +13920,581 @@ }, /turf/open/floor/plating/airless, /area/syndicate_mothership/control) -"QZ" = ( -/obj/effect/turf_decal/stripes/corner{ +"Rg" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/brute, +/obj/item/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault, +/area/shuttle/syndicate/medical) +"Rj" = ( +/turf/open/floor/plasteel/podhatch{ + dir = 6 + }, +/area/shuttle/syndicate/armory) +"Ru" = ( +/obj/structure/chair{ + dir = 4; + name = "tactical chair" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/hallway) +"Rx" = ( +/obj/structure/shuttle/engine/propulsion/left, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/medical) +"RD" = ( +/turf/open/floor/plasteel/podhatch, +/area/shuttle/syndicate/hallway) +"RF" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/hallway) +"RJ" = ( +/obj/item/grenade/syndieminibomb{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/grenade/syndieminibomb{ + pixel_x = -1 + }, +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ dir = 4 }, +/obj/item/grenade/plastic/c4, +/obj/item/grenade/plastic/c4, +/obj/item/grenade/plastic/c4, +/obj/item/grenade/plastic/c4, +/obj/item/grenade/plastic/c4, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/armory) +"RK" = ( +/obj/machinery/door/airlock/external{ + name = "Ready Room"; + req_access_txt = "150" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/hallway) +"RR" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK" + }, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/airlock) +"RS" = ( +/turf/open/floor/plasteel/podhatch, +/area/shuttle/syndicate/armory) +"RT" = ( +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/medical) +"Sb" = ( +/obj/structure/closet/syndicate/nuclear, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/armory) +"Se" = ( +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/shuttle/syndicate/armory) +"Sg" = ( +/obj/machinery/porta_turret/syndicate{ + dir = 10 + }, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/hallway) +"So" = ( +/turf/open/floor/plasteel/black, +/area/shuttle/syndicate/bridge) +"Sr" = ( +/obj/structure/chair/office/dark{ + dir = 1; + name = "tactical swivel chair" + }, +/obj/machinery/button/door{ + id = "syndieshutters"; + name = "Cockpit View Control"; + pixel_x = 32; + pixel_y = 32; + req_access_txt = "150" + }, +/turf/open/floor/plasteel/black, +/area/shuttle/syndicate/bridge) +"Su" = ( +/obj/machinery/porta_turret/syndicate{ + dir = 10 + }, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/armory) +"Sx" = ( +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/eva) +"SA" = ( +/obj/machinery/computer/secure_data/syndie, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/bridge) +"SC" = ( +/obj/machinery/porta_turret/syndicate{ + dir = 9 + }, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/medical) +"SD" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault, +/area/shuttle/syndicate/medical) +"Tg" = ( +/obj/machinery/suit_storage_unit/syndicate, +/turf/open/floor/plasteel/podhatch{ + dir = 4 + }, +/area/shuttle/syndicate/eva) +"Tl" = ( +/obj/structure/window/plastitanium, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/eva) +"Tm" = ( +/obj/machinery/status_display, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/bridge) +"Tt" = ( +/obj/machinery/ai_status_display, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/medical) +"TC" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/vault, +/area/shuttle/syndicate/armory) +"TD" = ( +/obj/structure/chair/office/dark{ + dir = 4; + name = "tactical swivel chair" + }, +/turf/open/floor/plasteel/black, +/area/shuttle/syndicate/bridge) +"TO" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/vault, +/area/shuttle/syndicate/medical) +"TT" = ( +/turf/open/floor/plasteel/vault, +/area/shuttle/syndicate/hallway) +"TW" = ( +/obj/structure/chair{ + dir = 8; + name = "tactical chair" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/hallway) +"TY" = ( +/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/bridge) +"Um" = ( +/obj/machinery/computer/camera_advanced/syndie, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/bridge) +"Uq" = ( +/obj/machinery/porta_turret/syndicate{ + dir = 6 + }, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/hallway) +"Ur" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/shuttle/syndicate/hallway) +"Us" = ( +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/bridge) +"Uv" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/eva) +"Ux" = ( +/turf/open/floor/plasteel/black, +/area/shuttle/syndicate/hallway) +"UI" = ( +/obj/machinery/door/airlock/hatch{ + name = "Cockpit"; + req_access_txt = "150" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/bridge) +"UK" = ( +/obj/machinery/porta_turret/syndicate{ + dir = 5 + }, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/armory) +"UR" = ( +/obj/structure/chair{ + dir = 1; + name = "tactical chair" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/airlock) +"UW" = ( +/obj/structure/shuttle/engine/propulsion/left, +/obj/effect/turf_decal/stripes/line, /turf/open/floor/plating/airless, -/area/syndicate_mothership/control) +/area/shuttle/syndicate/armory) +"Ve" = ( +/turf/open/floor/plasteel/podhatch{ + dir = 1 + }, +/area/shuttle/syndicate/armory) +"Vk" = ( +/obj/item/weldingtool/largetank{ + pixel_y = 3 + }, +/obj/item/device/multitool, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/armory) +"Vo" = ( +/obj/machinery/computer/med_data/syndie, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/bridge) +"Vv" = ( +/obj/item/wrench, +/obj/item/device/assembly/infra, +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/armory) +"Vy" = ( +/obj/machinery/porta_turret/syndicate{ + dir = 5 + }, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/airlock) +"VO" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/bodypart/r_arm/robot, +/obj/item/bodypart/l_arm/robot, +/obj/structure/table/reinforced, +/obj/item/toy/plush/nukeplushie, +/turf/open/floor/plasteel/vault, +/area/shuttle/syndicate/medical) +"Wd" = ( +/obj/structure/window/plastitanium, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/armory) +"We" = ( +/obj/item/screwdriver{ + pixel_y = 9 + }, +/obj/item/device/assembly/voice{ + pixel_y = 3 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/armory) +"Wj" = ( +/obj/item/device/sbeacondrop/bomb{ + pixel_y = 5 + }, +/obj/item/device/sbeacondrop/bomb, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/armory) +"Wk" = ( +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/airlock) +"Wr" = ( +/turf/open/floor/plasteel/vault, +/area/shuttle/syndicate/bridge) +"Wz" = ( +/obj/structure/shuttle/engine/propulsion/right, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/medical) +"WK" = ( +/obj/structure/shuttle/engine/propulsion, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/hallway) +"WM" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/medical) +"WW" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/hallway) +"WX" = ( +/obj/structure/chair{ + name = "tactical chair" + }, +/turf/open/floor/plasteel/podhatch{ + dir = 6 + }, +/area/shuttle/syndicate/airlock) +"WY" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/armory) +"XJ" = ( +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/medical) +"XL" = ( +/obj/structure/window/plastitanium, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/hallway) +"XN" = ( +/obj/structure/chair{ + dir = 4; + name = "tactical chair" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/hallway) +"XU" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/eva) +"XW" = ( +/turf/open/floor/plasteel/podhatch, +/area/shuttle/syndicate/airlock) +"Yk" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/handcuffs{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/zipties, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/hallway) +"Yl" = ( +/obj/structure/table/reinforced, +/obj/machinery/ai_status_display{ + pixel_x = 32 + }, +/obj/item/storage/fancy/donut_box, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/bridge) +"Ym" = ( +/obj/machinery/porta_turret/syndicate{ + dir = 9 + }, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/eva) +"Yo" = ( +/obj/machinery/computer/shuttle/syndicate, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/bridge) +"Yw" = ( +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 6 + }, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = -3 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = 4; + pixel_y = 1 + }, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = 2; + pixel_y = 8 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/medical) +"Yz" = ( +/obj/item/cautery, +/obj/item/scalpel, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/medical) +"YF" = ( +/obj/structure/shuttle/engine/propulsion, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/armory) +"YS" = ( +/obj/machinery/porta_turret/syndicate{ + dir = 5 + }, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/bridge) +"YX" = ( +/turf/open/floor/plasteel/podhatch, +/area/shuttle/syndicate/medical) +"YY" = ( +/obj/item/stock_parts/cell/high{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stock_parts/cell/high, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/armory) +"Ze" = ( +/turf/open/floor/plasteel/vault, +/area/shuttle/syndicate/medical) +"Zi" = ( +/obj/item/surgicaldrill, +/obj/item/circular_saw, +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/medical) +"ZE" = ( +/obj/structure/window/plastitanium, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/armory) +"ZL" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/airlock) +"ZM" = ( +/obj/machinery/door/airlock/hatch{ + req_access_txt = "150" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/armory) +"ZS" = ( +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/shuttle/syndicate/medical) +"ZY" = ( +/obj/machinery/porta_turret/syndicate{ + dir = 6 + }, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/medical) (1,1,1) = {" aa @@ -26206,20 +27004,20 @@ hq Kl Kl Kl -Kl -Kl -Kl -Kl -hq -hq -hq -hq -hq -hq hq hq hq hq +SC +XJ +XJ +XJ +XJ +XJ +XJ +XJ +XJ +XJ Kl hm aa @@ -26460,23 +27258,23 @@ hq hq hq hq -Kl -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq hq +Ym +Ou +Ou +Ou +Ou +Ou +XJ +Jg +Jk +Jg +Jm +VO +Zi +Yz +Ic +Rx Kl hm aa @@ -26718,22 +27516,22 @@ hq hq hq Kl -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq +Ou +Qr +Tg +Tg +Tg +JC +XJ +RT +Ze +WM +WM +Qt +WM +IZ +Ic +Oz Kl hm aa @@ -26968,29 +27766,29 @@ hq hq Kl Kl +hq +hq +hq +hq +hq +hq Kl -Kl -Kl -Kl -Kl -Kl -Kl -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq +Ou +XU +XU +XU +XU +XU +Tt +Qm +Ze +KE +Ki +TO +fH +Id +Ic +Wz Kl hm aa @@ -27225,29 +28023,29 @@ hq hq Kl hq +Pv +Us +Us +Us +Us hq hq -hq -hq -hq -Kl -Kl -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq +Ou +XU +XU +XU +XU +XU +XJ +Yw +Ze +tg +YX +Rg +ZS +XJ +XJ +ZY Kl hm aa @@ -27482,28 +28280,28 @@ hq hq Kl hq +Us +Vo +NH +Wr +Us +Sg +hq +Ou +Pa +QB +KS +Sx +Uv +XJ +HW +Ze +tg +YX +SD +XJ hq hq -hq -hq -hq -hq -Kl -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -Kl -Kl Kl Kl hm @@ -27739,30 +28537,30 @@ mz hq Kl hq +Pd +Is +Lf +Wr +Us +Nk +Nk +Ou +Ou +Ou +Ou +NJ +Tl +ZS +QP +QP +pk +Nc +XJ +XJ +Nk +Nk hq hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -Kl -hq hm aa aa @@ -27996,30 +28794,30 @@ hq hq Kl hq +Pd +TY +So +Wr +Tm +OT +XN +Ru +XN +XN +Ur +Pt +Pt +Pt +Pt +RF +NV +RD +TT +XL +de +Jn hq hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -Kl -hq hm aa aa @@ -28253,30 +29051,30 @@ hq hq Kl hq +Pd +Yo +Sr +Wr +UI +Pt +Ux +Ux +Ux +Pt +RK +Pt +Ux +Ux +Ux +Ux +NV +RD +TT +Ns +de +WK hq hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -Kl -hq hm aa aa @@ -28510,30 +29308,30 @@ hq hq Kl hq +Pd +fC +So +Wr +Us +Yk +Om +TW +Om +Om +Ur +Pt +Pt +Pt +Pt +WW +NV +RD +TT +XL +de +Mz hq hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -Kl -hq hm aa aa @@ -28767,30 +29565,30 @@ hq hq Kl hq +Pd +Um +TD +Wr +Us +Nk +Nk +Jh +Nk +Wk +Wk +Qo +Mk +Se +Wd +Wd +ZM +ZE +Jz +Jz +Nk +Nk hq hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -Kl -hq hm aa aa @@ -29024,28 +29822,28 @@ hq hq Kl hq -hq -hq -hq -hq -hq -hq +Us +SA +Yl +Wr +Us +Uq rd mg mA +Wk +MI +ZL +UR +Jz +YY +KA +Ve +RS +Wj +Jz hq hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -Kl -Kl Kl Kl hm @@ -29281,29 +30079,29 @@ lF hq Kl hq +YS +Us +Us +Us +Us hq -hq -hq -hq -hq -Kl re kI sB -QG -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq +MZ +XW +ZL +UR +Jz +We +KA +Ve +RS +RJ +Se +Jz +Jz +Su Kl hm aa @@ -29547,20 +30345,20 @@ Kl re kI sC -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq +RR +WX +ZL +qW +JK +Vv +KA +Js +Rj +TC +ID +Os +Jb +UW Kl hm aa @@ -29804,20 +30602,20 @@ Kl re kI re -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq +Vy +Wk +Wk +Wk +Jz +Ly +KA +ID +ID +NQ +ID +LG +Jb +YF Kl hm aa @@ -30061,20 +30859,20 @@ Kl re kI re -Kl -Kl -Kl -hq -hq -hq -hq -hq -hq -hq -hq hq hq hq +Wk +Jz +Vk +KA +OQ +Sb +OS +WY +Os +Jb +Pm Kl hm aa @@ -30318,20 +31116,20 @@ Kl re kI re -Kl -hq -Lw -Kl -hq -hq -hq -hq -hq -hq hq hq hq hq +UK +Jz +Jz +Jz +Jz +Jz +Jz +Jz +Jz +Jz Kl hm aa @@ -36490,7 +37288,7 @@ tl rm uy ve -QZ +QX kl aa aa @@ -36740,7 +37538,7 @@ hm aa kl qs -QW +QV se se se @@ -71538,13 +72336,13 @@ aR bl bq bI -cl -cl +bJ +bJ ck cy -cl +bJ cV -cl +bJ dj ac dA @@ -71794,14 +72592,14 @@ bc bf bl br -cl -cl -cl -cl -cl -cl +bJ +bJ +bJ +bJ +bJ +bJ cW -cl +bJ dk ac dB @@ -72051,12 +72849,12 @@ bb bg bl bs -cl +bJ bZ ci cm cA -cl +bJ cX dg dl @@ -72308,14 +73106,14 @@ bb bg bl bt -cl +bJ ca ci -cl -cl -cl -cl -cl +bJ +bJ +bJ +bJ +bJ dm ac dD @@ -72565,14 +73363,14 @@ bd bh bl bu -cl +bJ cb ci cn cB -cl -cl -cl +bJ +bJ +bJ dn ac dE @@ -79232,4 +80030,4 @@ aa aa HT HT -"} \ No newline at end of file +"} diff --git a/_maps/metastation.json b/_maps/metastation.json index aeed03a353..eae307ea3c 100644 --- a/_maps/metastation.json +++ b/_maps/metastation.json @@ -4,5 +4,5 @@ "map_file": "MetaStation.dmm", "minetype": "lavaland", "transition_config": "default", - "allow_custom_shuttles": "yes" -} \ No newline at end of file + "allow_custom_shuttles": "yes" +} diff --git a/_maps/shuttles/cargo_birdboat.dmm b/_maps/shuttles/cargo_birdboat.dmm index 0644e9dd70..f05af797d1 100644 --- a/_maps/shuttles/cargo_birdboat.dmm +++ b/_maps/shuttles/cargo_birdboat.dmm @@ -1,591 +1,273 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( +"a" = ( +/turf/closed/wall/mineral/titanium/overspace, +/area/shuttle/supply) +"b" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/supply) +"c" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/supply) +"d" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/supply) +"e" = ( +/obj/machinery/conveyor{ + dir = 2; + id = "cargoshuttle"; + name = "cargo shuttle conveyor belt" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/supply) +"f" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "cargoshuttle"; + name = "cargo shuttle conveyor belt" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/supply) +"g" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargoshuttle"; + name = "cargo shuttle conveyor belt" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/supply) +"h" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "cargoshuttle"; + name = "cargo shuttle conveyor belt" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/supply) +"i" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "cargoshuttle"; + name = "cargo shuttle conveyor belt" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/supply) +"j" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "cargoshuttle"; + name = "cargo shuttle conveyor belt" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/supply) +"k" = ( +/obj/machinery/conveyor{ + dir = 6; + id = "cargoshuttle"; + name = "cargo shuttle conveyor belt" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/supply) +"l" = ( +/obj/machinery/door/poddoor{ + id = "QMLoaddoor2"; + name = "supply dock loading door" + }, +/obj/machinery/conveyor{ + dir = 8; + id = "cargoshuttle"; + name = "cargo shuttle conveyor belt" + }, +/turf/open/floor/plating, +/area/shuttle/supply) +"m" = ( +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/supply) +"n" = ( +/turf/open/floor/mineral/titanium, +/area/shuttle/supply) +"o" = ( +/obj/machinery/door/airlock/titanium{ + name = "Supply Shuttle Airlock"; + req_access_txt = "31" + }, +/turf/open/floor/plating, +/area/shuttle/supply) +"p" = ( +/obj/machinery/button/door{ + dir = 2; + id = "QMLoaddoor2"; + name = "Loading Doors"; + pixel_x = 24; + pixel_y = 8 + }, +/obj/machinery/button/door{ + id = "QMLoaddoor"; + name = "Loading Doors"; + pixel_x = 24; + pixel_y = -8 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "cargoshuttle" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/supply) +"q" = ( +/obj/machinery/door/airlock/titanium{ + name = "Supply Shuttle Airlock"; + req_access_txt = "31" + }, +/obj/docking_port/mobile/supply{ + dwidth = 3; + width = 10; + timid = 1 + }, +/turf/open/floor/plating, +/area/shuttle/supply) +"r" = ( +/obj/machinery/door/poddoor{ + id = "QMLoaddoor"; + name = "supply dock loading door" + }, +/obj/machinery/conveyor{ + dir = 4; + id = "cargoshuttle"; + name = "cargo shuttle conveyor belt" + }, +/turf/open/floor/plating, +/area/shuttle/supply) +"s" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/supply) +"t" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/supply) +"u" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/shuttle/engine/heater, +/turf/open/floor/plating/airless, +/area/shuttle/supply) +"v" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/supply) +"w" = ( /turf/open/space, /area/space) -"ab" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) -"ac" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/escape) -"ad" = ( -/obj/structure/table, -/obj/item/scalpel, -/obj/item/retractor{ - pixel_y = 5 - }, -/obj/item/hemostat, -/turf/open/floor/plasteel/white, -/area/shuttle/escape) -"ae" = ( -/obj/structure/table, -/obj/item/cautery, -/obj/item/surgicaldrill, -/obj/item/circular_saw{ - pixel_y = 9 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/escape) -"af" = ( -/turf/open/floor/plasteel/white, -/area/shuttle/escape) -"ag" = ( -/obj/structure/shuttle/engine/propulsion/right{ - dir = 4 - }, +"x" = ( +/obj/structure/shuttle/engine/propulsion/burst/left, /turf/open/floor/plating/airless, -/area/shuttle/escape) -"ah" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/escape) -"ai" = ( -/obj/machinery/computer/emergency_shuttle, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"aj" = ( -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"ak" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"al" = ( -/obj/structure/chair, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"am" = ( -/obj/structure/chair, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"an" = ( -/obj/structure/table/optable, -/obj/item/surgical_drapes, -/turf/open/floor/plasteel/white, -/area/shuttle/escape) -"ao" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/escape) -"ap" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 4 - }, +/area/shuttle/supply) +"y" = ( +/obj/structure/shuttle/engine/propulsion, /turf/open/floor/plating/airless, -/area/shuttle/escape) -"aq" = ( -/obj/machinery/computer/communications, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"ar" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"as" = ( -/obj/machinery/door/airlock/glass_command{ - name = "bridge door"; - req_access_txt = "19" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"at" = ( -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"au" = ( -/obj/structure/shuttle/engine/propulsion/left{ - dir = 4 - }, +/area/shuttle/supply) +"z" = ( +/obj/structure/shuttle/engine/propulsion/burst/right, /turf/open/floor/plating/airless, -/area/shuttle/escape) -"av" = ( -/obj/machinery/light, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"aw" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"ax" = ( -/obj/structure/table, -/obj/machinery/recharger{ - active_power_usage = 0; - idle_power_usage = 0; - pixel_y = 4; - use_power = 0 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"ay" = ( -/obj/structure/table, -/obj/item/storage/box/handcuffs, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"az" = ( -/obj/machinery/door/airlock/glass_security{ - name = "security airlock"; - req_access_txt = "63" - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"aA" = ( -/obj/machinery/door/airlock/glass, -/turf/open/floor/plasteel/white, -/area/shuttle/escape) -"aB" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21"; - layer = 4.1 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"aC" = ( -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"aD" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/escape) -"aE" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/shuttle/escape) -"aF" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/black, -/area/shuttle/escape) -"aG" = ( -/obj/machinery/door/airlock/titanium, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"aH" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/black, -/area/shuttle/escape) -"aI" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/snacks/boiledspaghetti{ - name = "pasghetti"; - pixel_x = 4; - pixel_y = 7 - }, -/turf/open/floor/plasteel/black, -/area/shuttle/escape) -"aJ" = ( -/obj/machinery/light/small, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"aK" = ( -/obj/machinery/door/airlock/titanium, -/obj/docking_port/mobile/emergency{ - dheight = 0; +/area/shuttle/supply) +"A" = ( +/obj/machinery/conveyor{ dir = 8; - dwidth = 6; - height = 18; - port_direction = 4; - width = 14; - timid = 1; - name = "Birdboat emergency escape shuttle" + id = "cargoshuttle"; + name = "cargo shuttle conveyor belt" }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"aL" = ( -/obj/structure/table, -/turf/open/floor/plasteel/black, -/area/shuttle/escape) -"aM" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/snacks/chocolatebar, -/turf/open/floor/plasteel/black, -/area/shuttle/escape) -"aN" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/black, -/area/shuttle/escape) -"aO" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/window/reinforced, /obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/shuttle/escape) -"aP" = ( -/obj/structure/chair, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/plasteel/black, -/area/shuttle/escape) -"aQ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/escape) -"aR" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/fire{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/plasteel/white, -/area/shuttle/escape) -"aS" = ( -/obj/structure/chair{ dir = 1 }, -/turf/open/floor/plasteel/black, -/area/shuttle/escape) -"aT" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/black, -/area/shuttle/escape) -"aU" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/brute{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/brute, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/supply) +"B" = ( /obj/machinery/light{ - dir = 4 + dir = 8 }, -/turf/open/floor/plasteel/white, -/area/shuttle/escape) -"aV" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"aW" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/black, -/area/shuttle/escape) -"aX" = ( -/obj/machinery/sleeper{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/escape) -"aY" = ( -/obj/structure/table/glass, -/obj/item/defibrillator/loaded, -/turf/open/floor/plasteel/white, -/area/shuttle/escape) +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/supply) (1,1,1) = {" -aa -aa -ab -ab -ac -ab -ac -ac -ac -ac -ac -ab -aa -aa +b +b +b +b +b +b +b +b +b +w "} (2,1,1) = {" -aa -ab -ah -aq -ak -ac -aB -aH -aH -aH -aB -ah -ab -aa +b +e +g +e +m +B +m +g +b +x "} (3,1,1) = {" -aa -ab -ai -ar -aj -as -aC -aC -aC -aC -aC -aS -ab -aa +b +f +g +f +m +m +m +g +u +y "} (4,1,1) = {" -aa -ac -aj -aj -av -ab -aD -aD -aL -aC -aC -aS -ab -aa +b +A +g +f +m +m +m +g +u +y "} (5,1,1) = {" -aa -ac -aj -aj -aw -ab -aE -aE -aM -aC -aC -aS -ab -aa +b +f +h +j +m +m +m +g +u +y "} (6,1,1) = {" -aa -ab -ak -aj -ak -ab -aF -aI -aL -aC -aC -aT -ah -ab +b +f +i +k +n +p +n +g +b +z "} (7,1,1) = {" -aa -ab -ab -as -ac -ab -aC -aC -aC -aC -aC -aC -aB -ab +b +b +b +l +o +b +q +r +b +w "} -(8,1,1) = {" -aa -ab -al -at -at -ac -aB -aC -aC -aC -aC -aC -aV -ab -"} -(9,1,1) = {" -aa -ab -al -at -at -az -aC -aC -aN -aP -aC -aC -aW -ac -"} -(10,1,1) = {" -aa -ab -am -at -at -ac -aC -aC -aN -aP -aC -aC -aW -ac -"} -(11,1,1) = {" -aa -ab -al -at -ax -ab -aC -aC -aN -aP -aC -aC -aW -ac -"} -(12,1,1) = {" -aa -ab -al -at -ay -ab -aC -aC -aO -aP -aC -aC -aB -ab -"} -(13,1,1) = {" -ab -ab -ab -ab -ab -ah -aC -aC -ah -ab -aA -ac -ab -ab -"} -(14,1,1) = {" -ab -ad -an -af -af -aA -aC -aC -aA -aQ -af -af -aX -ab -"} -(15,1,1) = {" -ab -ae -af -af -af -aA -aC -aC -aA -af -af -af -af -ab -"} -(16,1,1) = {" -ab -af -ao -af -ab -ab -aG -aG -ab -ab -aR -aU -aY -ab -"} -(17,1,1) = {" -ab -ab -ab -ab -ab -ab -aC -aJ -ab -ab -ab -ab -ab -ab -"} -(18,1,1) = {" -ab -ag -ap -au -ab -ab -aG -aK -ab -ab -ag -ap -au -ab -"} \ No newline at end of file diff --git a/_maps/shuttles/emergency_birdboat.dmm b/_maps/shuttles/emergency_birdboat.dmm index 054254f4db..aefccced65 100644 --- a/_maps/shuttles/emergency_birdboat.dmm +++ b/_maps/shuttles/emergency_birdboat.dmm @@ -587,4 +587,4 @@ ag ap au ab -"} \ No newline at end of file +"} diff --git a/_maps/shuttles/emergency_cere.dmm b/_maps/shuttles/emergency_cere.dmm index cdf3fd8561..8a280916e2 100644 --- a/_maps/shuttles/emergency_cere.dmm +++ b/_maps/shuttles/emergency_cere.dmm @@ -2073,4 +2073,4 @@ aa aa aa aa -"} \ No newline at end of file +"} diff --git a/_maps/shuttles/emergency_delta.dmm b/_maps/shuttles/emergency_delta.dmm index 1e92952ae2..6ed6c2619b 100644 --- a/_maps/shuttles/emergency_delta.dmm +++ b/_maps/shuttles/emergency_delta.dmm @@ -1662,4 +1662,4 @@ aa aa aa aa -"} \ No newline at end of file +"} diff --git a/_maps/shuttles/emergency_pubby.dmm b/_maps/shuttles/emergency_pubby.dmm index 8a5f05cc01..885e4c26a4 100644 --- a/_maps/shuttles/emergency_pubby.dmm +++ b/_maps/shuttles/emergency_pubby.dmm @@ -638,4 +638,4 @@ ab ab ab aa -"} \ No newline at end of file +"} diff --git a/_maps/shuttles/ferry_base.dmm b/_maps/shuttles/ferry_base.dmm index 8e33236727..0519dad64f 100644 --- a/_maps/shuttles/ferry_base.dmm +++ b/_maps/shuttles/ferry_base.dmm @@ -170,4 +170,4 @@ d m d c -"} \ No newline at end of file +"} diff --git a/_maps/shuttles/whiteship_box.dmm b/_maps/shuttles/whiteship_box.dmm index 49d9d76a77..309c366eaf 100644 --- a/_maps/shuttles/whiteship_box.dmm +++ b/_maps/shuttles/whiteship_box.dmm @@ -373,6 +373,10 @@ }, /turf/open/floor/plating, /area/shuttle/abandoned) +"bu" = ( +/obj/machinery/computer/camera_advanced/shuttle_docker/whiteship, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) (1,1,1) = {" aa @@ -1148,7 +1152,7 @@ aa aC ax aC -bb +bu aJ aj aj diff --git a/_maps/shuttles/whiteship_meta.dmm b/_maps/shuttles/whiteship_meta.dmm index 046f699911..8f4d4eed88 100644 --- a/_maps/shuttles/whiteship_meta.dmm +++ b/_maps/shuttles/whiteship_meta.dmm @@ -722,11 +722,12 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, +/obj/structure/table, +/obj/item/device/camera, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) "bs" = ( /obj/structure/table, -/obj/item/device/camera, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" @@ -734,6 +735,8 @@ /obj/structure/light_construct{ dir = 1 }, +/obj/item/folder/blue, +/obj/item/pen, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) "bt" = ( @@ -1162,13 +1165,15 @@ /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) "cg" = ( -/obj/structure/table, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/item/device/megaphone, /obj/structure/light_construct, +/obj/machinery/computer/camera_advanced/shuttle_docker/whiteship{ + x_offset = -3; + y_offset = -7 + }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) "ch" = ( @@ -1765,6 +1770,38 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) +"dk" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"dl" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/structure/chair/office/light, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"dm" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/structure/table, +/obj/item/device/megaphone, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) (1,1,1) = {" aa @@ -2130,10 +2167,10 @@ aR bc ac br -bC -aL -bZ bx +aL +bx +dm ac cA cN @@ -2147,9 +2184,9 @@ ae ac ac bs -ax +dk aL -bp +dl cg ac ac From ea41c0722199df09c47c0163dc011eee368d84f7 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 8 Oct 2017 22:47:42 -0500 Subject: [PATCH 93/95] white --- code/modules/shuttle/white_ship.dm | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/code/modules/shuttle/white_ship.dm b/code/modules/shuttle/white_ship.dm index d22d7280d2..b6775fea82 100644 --- a/code/modules/shuttle/white_ship.dm +++ b/code/modules/shuttle/white_ship.dm @@ -3,4 +3,16 @@ desc = "Used to control the White Ship." circuit = /obj/item/circuitboard/computer/white_ship shuttleId = "whiteship" - possible_destinations = "whiteship_away;whiteship_home;whiteship_z4;whiteship_lavaland" \ No newline at end of file + possible_destinations = "whiteship_away;whiteship_home;whiteship_z4;whiteship_lavaland;whiteship_custom" + +/obj/machinery/computer/camera_advanced/shuttle_docker/whiteship + name = "White Ship Navigation Computer" + desc = "Used to designate a precise transit location for the White Ship." + shuttleId = "whiteship" + station_lock_override = TRUE + shuttlePortId = "whiteship_custom" + shuttlePortName = "Custom Location" + jumpto_ports = list("whiteship_away" = 1, "whiteship_home" = 1, "whiteship_z4" = 1) + view_range = 20 + x_offset = -6 + y_offset = -10 From 86edafb132a933a9447ca2fdf2f0bfa63fa3ce81 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Mon, 9 Oct 2017 01:06:50 -0500 Subject: [PATCH 94/95] lol --- code/game/area/areas/shuttles.dm | 32 +++++++++++++++--- code/game/objects/structures/false_walls.dm | 7 ++-- code/game/objects/structures/window.dm | 24 +++++++++++-- .../turfs/simulated/wall/mineral_walls.dm | 24 +++++++++++-- .../smooth_structures/plastitanium_window.dmi | Bin 0 -> 2401 bytes icons/turf/walls/plastitanium_wall.dmi | Bin 0 -> 2914 bytes 6 files changed, 76 insertions(+), 11 deletions(-) create mode 100644 icons/obj/smooth_structures/plastitanium_window.dmi create mode 100644 icons/turf/walls/plastitanium_wall.dmi diff --git a/code/game/area/areas/shuttles.dm b/code/game/area/areas/shuttles.dm index d008f36e29..68ab30478d 100644 --- a/code/game/area/areas/shuttles.dm +++ b/code/game/area/areas/shuttles.dm @@ -1,5 +1,6 @@ //These are shuttle areas; all subtypes are only used as teleportation markers, they have no actual function beyond that. +//Multi area shuttles are a thing now, use subtypes! ~ninjanomnom /area/shuttle name = "Shuttle" @@ -10,6 +11,33 @@ valid_territory = FALSE icon_state = "shuttle" +////////////////////////////Multi-area shuttles//////////////////////////// + +////////////////////////////Syndicate infiltrator//////////////////////////// + +/area/shuttle/syndicate + name = "Syndicate Infiltrator" + blob_allowed = FALSE + +/area/shuttle/syndicate/bridge + name = "Syndicate Infiltrator Control" + +/area/shuttle/syndicate/medical + name = "Syndicate Infiltrator Medbay" + +/area/shuttle/syndicate/armory + name = "Syndicate Infiltrator Armory" + +/area/shuttle/syndicate/eva + name = "Syndicate Infiltrator EVA" + +/area/shuttle/syndicate/hallway + +/area/shuttle/syndicate/airlock + name = "Syndicate Infiltrator Airlock" + +////////////////////////////Single-area shuttles//////////////////////////// + /area/shuttle/transit name = "Hyperspace" desc = "Weeeeee" @@ -48,10 +76,6 @@ name = "Transport Shuttle" blob_allowed = FALSE -/area/shuttle/syndicate - name = "Syndicate Infiltrator" - blob_allowed = FALSE - /area/shuttle/assault_pod name = "Steel Rain" blob_allowed = FALSE diff --git a/code/game/objects/structures/false_walls.dm b/code/game/objects/structures/false_walls.dm index b81aa7d4d8..460fc62bec 100644 --- a/code/game/objects/structures/false_walls.dm +++ b/code/game/objects/structures/false_walls.dm @@ -321,11 +321,12 @@ /obj/structure/falsewall/plastitanium name = "wall" desc = "An evil wall of plasma and titanium." - icon = 'icons/turf/shuttle.dmi' - icon_state = "wall3" + icon = 'icons/turf/walls/plastitanium_wall.dmi' + icon_state = "shuttle" mineral = /obj/item/stack/sheet/mineral/plastitanium walltype = /turf/closed/wall/mineral/plastitanium - smooth = SMOOTH_FALSE + smooth = SMOOTH_MORE + canSmoothWith = list(/turf/closed/wall/mineral/plastitanium, /obj/machinery/door/airlock/shuttle, /obj/machinery/door/airlock, /obj/structure/window/shuttle, /obj/structure/shuttle/engine/heater) /obj/structure/falsewall/brass name = "clockwork wall" diff --git a/code/game/objects/structures/window.dm b/code/game/objects/structures/window.dm index 170a651315..59db363399 100644 --- a/code/game/objects/structures/window.dm +++ b/code/game/objects/structures/window.dm @@ -588,10 +588,10 @@ flags_1 = PREVENT_CLICK_UNDER_1 reinf = TRUE heat_resistance = 1600 - armor = list("melee" = 50, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 25, "bio" = 100, "rad" = 100, "fire" = 80, "acid" = 100) + armor = list("melee" = 50, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 50, "bio" = 100, "rad" = 100, "fire" = 80, "acid" = 100) smooth = SMOOTH_TRUE canSmoothWith = null - explosion_block = 1 + explosion_block = 3 level = 3 glass_type = /obj/item/stack/sheet/rglass glass_amount = 2 @@ -602,6 +602,26 @@ /obj/structure/window/shuttle/tinted opacity = TRUE +/obj/structure/window/plastitanium + name = "plastitanium window" + desc = "An evil looking window of plasma and titanium." + icon = 'icons/obj/smooth_structures/plastitanium_window.dmi' + icon_state = "plastitanium_window" + dir = FULLTILE_WINDOW_DIR + max_integrity = 100 + wtype = "shuttle" + fulltile = TRUE + flags_1 = PREVENT_CLICK_UNDER_1 + reinf = TRUE + heat_resistance = 1600 + armor = list("melee" = 50, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 50, "bio" = 100, "rad" = 100, "fire" = 80, "acid" = 100) + smooth = SMOOTH_TRUE + canSmoothWith = null + explosion_block = 3 + level = 3 + glass_type = /obj/item/stack/sheet/rglass + glass_amount = 2 + /obj/structure/window/reinforced/clockwork name = "brass window" desc = "A paper-thin pane of translucent yet reinforced brass." diff --git a/code/game/turfs/simulated/wall/mineral_walls.dm b/code/game/turfs/simulated/wall/mineral_walls.dm index 05d6de5ca6..6ae60a6e49 100644 --- a/code/game/turfs/simulated/wall/mineral_walls.dm +++ b/code/game/turfs/simulated/wall/mineral_walls.dm @@ -170,11 +170,14 @@ explosion_block = 3 canSmoothWith = list(/turf/closed/wall/mineral/abductor, /obj/structure/falsewall/abductor) +/////////////////////Titanium walls///////////////////// + /turf/closed/wall/mineral/titanium //has to use this path due to how building walls works name = "wall" desc = "A light-weight titanium wall used in shuttles." icon = 'icons/turf/walls/shuttle_wall.dmi' icon_state = "map-shuttle" + explosion_block = 3 flags_1 = CAN_BE_DIRTY_1 | CHECK_RICOCHET_1 sheet_type = /obj/item/stack/sheet/mineral/titanium smooth = SMOOTH_MORE|SMOOTH_DIAGONAL @@ -230,14 +233,31 @@ /turf/closed/wall/mineral/titanium/survival/pod canSmoothWith = list(/turf/closed/wall/mineral/titanium/survival, /obj/machinery/door/airlock, /obj/structure/window/fulltile, /obj/structure/window/reinforced/fulltile, /obj/structure/window/reinforced/tinted/fulltile, /obj/structure/window/shuttle, /obj/structure/shuttle/engine) +/////////////////////Plastitanium walls///////////////////// + /turf/closed/wall/mineral/plastitanium name = "wall" desc = "An evil wall of plasma and titanium." - icon = 'icons/turf/shuttle.dmi' - icon_state = "wall3" + icon = 'icons/turf/walls/plastitanium_wall.dmi' + icon_state = "map-shuttle" + explosion_block = 4 sheet_type = /obj/item/stack/sheet/mineral/plastitanium + smooth = SMOOTH_MORE|SMOOTH_DIAGONAL + canSmoothWith = list(/turf/closed/wall/mineral/plastitanium, /obj/machinery/door/airlock/shuttle, /obj/machinery/door/airlock, /obj/structure/window/plastitanium, /obj/structure/shuttle/engine, /obj/structure/falsewall/plastitanium) + +/turf/closed/wall/mineral/plastitanium/nodiagonal + smooth = SMOOTH_MORE + icon_state = "map-shuttle_nd" + +/turf/closed/wall/mineral/plastitanium/nosmooth + icon = 'icons/turf/shuttle.dmi' + icon_state = "wall" smooth = SMOOTH_FALSE +/turf/closed/wall/mineral/plastitanium/overspace + icon_state = "map-overspace" + fixed_underlay = list("space"=1) + //have to copypaste this code /turf/closed/wall/mineral/plastitanium/interior/copyTurf(turf/T) if(T.type != type) diff --git a/icons/obj/smooth_structures/plastitanium_window.dmi b/icons/obj/smooth_structures/plastitanium_window.dmi new file mode 100644 index 0000000000000000000000000000000000000000..82ac0306159d66e6909de1123a3407ad645b5bea GIT binary patch literal 2401 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 M07*qoM6N<$f>BV5VE_OC literal 0 HcmV?d00001 From d24654fe8b24d7117f4153227ad320ca2b63e38d Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 9 Oct 2017 04:57:23 -0500 Subject: [PATCH 95/95] Automatic changelog generation for PR #3245 [ci skip] --- html/changelogs/AutoChangeLog-pr-3245.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3245.yml diff --git a/html/changelogs/AutoChangeLog-pr-3245.yml b/html/changelogs/AutoChangeLog-pr-3245.yml new file mode 100644 index 0000000000..f27609e4ec --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3245.yml @@ -0,0 +1,4 @@ +author: "XDTM" +delete-after: True +changes: + - bugfix: "Viral Aggressive Metabolism is now properly inactive when neutered."