From ebf0f3458fa08436f886b4b79e73e72ad897623e Mon Sep 17 00:00:00 2001 From: Geeves Date: Wed, 18 Oct 2023 16:49:44 +0200 Subject: [PATCH] Mecha Gamemode: Jockeys (#17148) --- aurorastation.dme | 3 + code/__defines/gamemode.dm | 1 + code/__defines/projectiles.dm | 1 + code/__defines/radio.dm | 3 + code/datums/outfits/outfit_antag.dm | 60 + code/game/antagonist/outsider/jockey.dm | 57 + code/game/gamemodes/jockeys/jockeys.dm | 14 + .../items/devices/radio/_radio_defines.dm | 6 +- .../items/devices/radio/encryptionkey.dm | 6 + .../objects/items/devices/radio/headset.dm | 6 + code/game/objects/items/devices/uplink.dm | 22 +- .../game/objects/items/weapons/power_cells.dm | 22 + code/modules/clothing/shoes/boots.dm | 3 + code/modules/heavy_vehicle/mecha.dm | 3 +- .../heavy_vehicle/mecha_part_spawners.dm | 71 + code/modules/mob/living/say.dm | 2 + html/changelogs/geeves-jockeys.yml | 6 + icons/mob/hud.dmi | Bin 7929 -> 8193 bytes icons/mob/mob.dmi | Bin 199523 -> 199827 bytes icons/turf/areas.dmi | Bin 35969 -> 36055 bytes maps/_common/areas/special.dm | 6 +- maps/sccv_horizon/sccv_horizon-4_centcomm.dmm | 4148 +++++++---------- 22 files changed, 2013 insertions(+), 2427 deletions(-) create mode 100644 code/game/antagonist/outsider/jockey.dm create mode 100644 code/game/gamemodes/jockeys/jockeys.dm create mode 100644 code/modules/heavy_vehicle/mecha_part_spawners.dm create mode 100644 html/changelogs/geeves-jockeys.yml diff --git a/aurorastation.dme b/aurorastation.dme index a339ecacb14..8e45f9a3ca2 100644 --- a/aurorastation.dme +++ b/aurorastation.dme @@ -515,6 +515,7 @@ #include "code\game\antagonist\outsider\commando.dm" #include "code\game\antagonist\outsider\deathsquad.dm" #include "code\game\antagonist\outsider\ert.dm" +#include "code\game\antagonist\outsider\jockey.dm" #include "code\game\antagonist\outsider\loner.dm" #include "code\game\antagonist\outsider\mercenary.dm" #include "code\game\antagonist\outsider\ninja.dm" @@ -623,6 +624,7 @@ #include "code\game\gamemodes\events\holidays\holidays.dm" #include "code\game\gamemodes\extended\extended.dm" #include "code\game\gamemodes\heist\heist.dm" +#include "code\game\gamemodes\jockeys\jockeys.dm" #include "code\game\gamemodes\loner\loner.dm" #include "code\game\gamemodes\malfunction\malf_hardware.dm" #include "code\game\gamemodes\malfunction\malf_research.dm" @@ -2059,6 +2061,7 @@ #include "code\modules\heavy_vehicle\mech_life.dm" #include "code\modules\heavy_vehicle\mech_wreckage.dm" #include "code\modules\heavy_vehicle\mecha.dm" +#include "code\modules\heavy_vehicle\mecha_part_spawners.dm" #include "code\modules\heavy_vehicle\components\_components.dm" #include "code\modules\heavy_vehicle\components\armor.dm" #include "code\modules\heavy_vehicle\components\arms.dm" diff --git a/code/__defines/gamemode.dm b/code/__defines/gamemode.dm index ab27bdf3a54..7ef3ec7ba89 100644 --- a/code/__defines/gamemode.dm +++ b/code/__defines/gamemode.dm @@ -62,6 +62,7 @@ #define MODE_THRALL "thrall" #define MODE_REVENANT "revenant" #define MODE_GOLEM "golem" +#define MODE_JOCKEY "jockey" #define DEFAULT_TELECRYSTAL_AMOUNT 20 #define DEFAULT_BLUECRYSTAL_AMOUNT 15 diff --git a/code/__defines/projectiles.dm b/code/__defines/projectiles.dm index 57bc71133f0..354109fdc4d 100644 --- a/code/__defines/projectiles.dm +++ b/code/__defines/projectiles.dm @@ -6,6 +6,7 @@ #define IFF_RAIDER "raider" #define IFF_LONER "loner" #define IFF_BURGLAR "burglar" +#define IFF_JOCKEY "jockey" #define IFF_CULTIST "cultist" #define IFF_BLUESPACE "bluespace" #define IFF_DEATHSQUAD "deathsquad" diff --git a/code/__defines/radio.dm b/code/__defines/radio.dm index e375bbfb619..a5636d3d038 100644 --- a/code/__defines/radio.dm +++ b/code/__defines/radio.dm @@ -21,6 +21,7 @@ #define BLSP_FREQ 1253 #define NINJ_FREQ 1255 #define BURG_FREQ 1257 +#define JOCK_FREQ 1259 #define RAID_FREQ 1277 #define DTH_FREQ 1341 #define AI_FREQ 1343 @@ -52,6 +53,7 @@ var/list/radiochannels = list( "Ninja" = NINJ_FREQ, "Bluespace" = BLSP_FREQ, "Burglar" = BURG_FREQ, + "Jockey" = JOCK_FREQ, "Raider" = RAID_FREQ, "Operations" = SUP_FREQ, "Service" = SRV_FREQ, @@ -78,6 +80,7 @@ var/list/reverseradiochannels = list( "[NINJ_FREQ]" = "Ninja", "[BLSP_FREQ]" = "Bluespace", "[BURG_FREQ]" = "Burglar", + "[JOCK_FREQ]" = "Jockey", "[RAID_FREQ]" = "Raider", "[SUP_FREQ]" = "Operations", "[SRV_FREQ]" = "Service", diff --git a/code/datums/outfits/outfit_antag.dm b/code/datums/outfits/outfit_antag.dm index 9944870cb1e..b8e6d5486a5 100644 --- a/code/datums/outfits/outfit_antag.dm +++ b/code/datums/outfits/outfit_antag.dm @@ -487,6 +487,66 @@ if(W) W.handle_item_insertion(passport) + +/datum/outfit/admin/syndicate/jockey + name = "Jockey" + allow_backbag_choice = FALSE + + uniform = list( + /obj/item/clothing/under/color/darkred, + /obj/item/clothing/under/color/red, + /obj/item/clothing/under/color/lightred + ) + + suit = list( + /obj/item/clothing/suit/storage/hazardvest, + /obj/item/clothing/suit/storage/hazardvest/green, + /obj/item/clothing/suit/storage/hazardvest/red + ) + + back = /obj/item/storage/backpack/duffel/syndie + + belt = /obj/item/storage/belt/utility/very_full + shoes = /obj/item/clothing/shoes/workboots/all_species + glasses = null + head = /obj/item/clothing/head/welding + + gloves = /obj/item/clothing/gloves/yellow // glubbs + + backpack_contents = list( + /obj/item/storage/box/survival/engineer = 1, + /obj/item/device/flashlight = 1, + /obj/item/card/emag = 1 + ) + + l_ear = /obj/item/device/radio/headset/jockey + r_pocket = /obj/item/device/special_uplink/jockey + id = /obj/item/storage/wallet + + id_iff = IFF_JOCKEY + +/datum/outfit/admin/syndicate/jockey/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE) + . = ..() + if(visualsOnly) + return + + var/turf/T = get_turf(H) + var/obj/item/gun/projectile/primary = new /obj/item/gun/projectile/silenced(T) + var/obj/item/magazine = new primary.magazine_type(T) + H.equip_to_slot_or_del(magazine, slot_l_store) + var/obj/item/clothing/accessory/holster/armpit/holster = new /obj/item/clothing/accessory/holster/armpit(T) + holster.holstered = primary + primary.forceMove(holster) + + var/obj/item/clothing/under/uniform = H.w_uniform + uniform.attackby(holster, H) + + var/obj/item/storage/wallet/W = H.wear_id + var/obj/item/card/id/syndicate/raider/passport = new(H.loc) + passport.name = "[H.real_name]'s Passport" + if(W) + W.handle_item_insertion(passport) + // Non-syndicate antag outfits /datum/outfit/admin/highlander diff --git a/code/game/antagonist/outsider/jockey.dm b/code/game/antagonist/outsider/jockey.dm new file mode 100644 index 00000000000..c0c2c117866 --- /dev/null +++ b/code/game/antagonist/outsider/jockey.dm @@ -0,0 +1,57 @@ +var/datum/antagonist/jockey/jockeys + +/datum/antagonist/jockey + id = MODE_JOCKEY + role_text = "Jockey" + role_text_plural = "Jockeys" + bantype = "jockey" + antag_indicator = "jockey" + landmark_id = "jockeyspawn" + welcome_text = "You are a Jockey, one of the best damn mech pilots in the spur.
\ + Your uplink will grant you access to various tools you may need to attempt to accomplish your goal.
\ + You can use :H or :B to talk on your encrypted channel, which only you and your partner can read.
" + flags = ANTAG_OVERRIDE_JOB | ANTAG_CLEAR_EQUIPMENT | ANTAG_CHOOSE_NAME | ANTAG_VOTABLE | ANTAG_SET_APPEARANCE | ANTAG_HAS_LEADER + antaghud_indicator = "hudjockey" + required_age = 7 + + hard_cap = 3 + hard_cap_round = 3 + initial_spawn_req = 2 + initial_spawn_target = 2 + + faction = "syndicate" + + id_type = /obj/item/card/id/syndicate + +/datum/antagonist/jockey/New() + ..() + jockeys = src + +/datum/antagonist/jockey/update_access(var/mob/living/player) + for(var/obj/item/storage/wallet/W in player.contents) + for(var/obj/item/card/id/id in W.contents) + id.name = "passport - [player.real_name]" + id.registered_name = player.real_name + W.name = "[initial(W.name)] ([id.name])" + +/datum/antagonist/jockey/equip(var/mob/living/carbon/human/player) + if(!..()) + return FALSE + + for(var/obj/item/I in player) + if(istype(I, /obj/item/implant)) + continue + player.drop_from_inventory(I) + if(I.loc != player) + qdel(I) + + player.preEquipOutfit(/datum/outfit/admin/syndicate/jockey, FALSE) + player.equipOutfit(/datum/outfit/admin/syndicate/jockey, FALSE) + player.force_update_limbs() + player.update_eyes() + player.regenerate_icons() + + return TRUE + +/datum/antagonist/jockey/get_antag_radio() + return "Jockey" diff --git a/code/game/gamemodes/jockeys/jockeys.dm b/code/game/gamemodes/jockeys/jockeys.dm new file mode 100644 index 00000000000..83002796444 --- /dev/null +++ b/code/game/gamemodes/jockeys/jockeys.dm @@ -0,0 +1,14 @@ +// medpop burglar/merc hybrid + +/datum/game_mode/jockeys + name = "jockeys" + config_tag = "jockeys" + required_enemies = 2 + required_players = 10 + antag_scaling_coeff = 7 // three jockeys at highpop + round_description = "Metal Crushers ain't got shit on this." + antag_tags = list(MODE_JOCKEY) + +/datum/game_mode/jockeys/pre_setup() + extended_round_description = "A couple coolant-soaked knuckleheads are on their way to turn a corporate workplace into a thunderdome. Is the crew ready to rumble?" + return ..() diff --git a/code/game/objects/items/devices/radio/_radio_defines.dm b/code/game/objects/items/devices/radio/_radio_defines.dm index 4e1ee4380ff..d466d0711c4 100644 --- a/code/game/objects/items/devices/radio/_radio_defines.dm +++ b/code/game/objects/items/devices/radio/_radio_defines.dm @@ -18,6 +18,7 @@ #define CHANNEL_NINJA "Ninja" #define CHANNEL_BLUESPACE "Bluespace" #define CHANNEL_BURGLAR "Burglar" +#define CHANNEL_JOCKEY "Jockey" var/global/list/ALL_RADIO_CHANNELS = list( CHANNEL_COMMON = TRUE, @@ -37,5 +38,6 @@ var/global/list/ALL_RADIO_CHANNELS = list( CHANNEL_MERCENARY = TRUE, CHANNEL_NINJA = TRUE, CHANNEL_BLUESPACE = TRUE, - CHANNEL_BURGLAR = TRUE - ) + CHANNEL_BURGLAR = TRUE, + CHANNEL_JOCKEY = TRUE +) diff --git a/code/game/objects/items/devices/radio/encryptionkey.dm b/code/game/objects/items/devices/radio/encryptionkey.dm index e9c493b8bb7..983a8fc7b13 100644 --- a/code/game/objects/items/devices/radio/encryptionkey.dm +++ b/code/game/objects/items/devices/radio/encryptionkey.dm @@ -63,6 +63,12 @@ origin_tech = list(TECH_ILLEGAL = 2) syndie = TRUE +/obj/item/device/encryptionkey/jockey + icon_state = "cypherkey" + additional_channels = list(CHANNEL_JOCKEY = TRUE, CHANNEL_HAILING = TRUE) + origin_tech = list(TECH_ILLEGAL = 2) + syndie = TRUE + /obj/item/device/encryptionkey/ninja icon_state = "cypherkey" additional_channels = list(CHANNEL_NINJA = TRUE, CHANNEL_HAILING = TRUE) diff --git a/code/game/objects/items/devices/radio/headset.dm b/code/game/objects/items/devices/radio/headset.dm index f6d8a552fbf..a4933548b60 100644 --- a/code/game/objects/items/devices/radio/headset.dm +++ b/code/game/objects/items/devices/radio/headset.dm @@ -679,6 +679,12 @@ syndie = TRUE ks1type = /obj/item/device/encryptionkey/burglar +/obj/item/device/radio/headset/jockey + icon_state = "syn_headset" + origin_tech = list(TECH_ILLEGAL = 2) + syndie = TRUE + ks1type = /obj/item/device/encryptionkey/jockey + /obj/item/device/radio/headset/ninja icon_state = "syn_headset" origin_tech = list(TECH_ILLEGAL = 3) diff --git a/code/game/objects/items/devices/uplink.dm b/code/game/objects/items/devices/uplink.dm index 9c00dea07ca..a8e62e43510 100644 --- a/code/game/objects/items/devices/uplink.dm +++ b/code/game/objects/items/devices/uplink.dm @@ -188,15 +188,15 @@ Then check if it's true, if true return. This will stop the normal menu appearin // and if it's sanitized for html. nanoui_data["exploit"]["nanoui_exploit_record"] = html_encode(L.exploit_record) // Change stuff into html nanoui_data["exploit"]["nanoui_exploit_record"] = replacetext(nanoui_data["exploit"]["nanoui_exploit_record"], "\n", "
") // change line breaks into
- nanoui_data["exploit"]["name"] = html_encode(L.name) - nanoui_data["exploit"]["sex"] = html_encode(L.sex) - nanoui_data["exploit"]["age"] = html_encode(L.age) - nanoui_data["exploit"]["species"] = html_encode(L.species) - nanoui_data["exploit"]["rank"] = html_encode(L.rank) - nanoui_data["exploit"]["citizenship"] = html_encode(L.citizenship) - nanoui_data["exploit"]["employer"] = html_encode(L.employer) - nanoui_data["exploit"]["religion"] = html_encode(L.religion) - nanoui_data["exploit"]["fingerprint"] = html_encode(L.fingerprint) + nanoui_data["exploit"]["name"] = html_encode(L.name) + nanoui_data["exploit"]["sex"] = html_encode(L.sex) + nanoui_data["exploit"]["age"] = html_encode(L.age) + nanoui_data["exploit"]["species"] = html_encode(L.species) + nanoui_data["exploit"]["rank"] = html_encode(L.rank) + nanoui_data["exploit"]["citizenship"] = html_encode(L.citizenship) + nanoui_data["exploit"]["employer"] = html_encode(L.employer) + nanoui_data["exploit"]["religion"] = html_encode(L.religion) + nanoui_data["exploit"]["fingerprint"] = html_encode(L.fingerprint) nanoui_data["exploit_exists"] = 1 break @@ -441,6 +441,10 @@ Then check if it's true, if true return. This will stop the normal menu appearin name = "sponsored uplink" starting_telecrystals = 20 +/obj/item/device/special_uplink/jockey + name = "jockey uplink" + starting_telecrystals = 10 + /obj/item/device/special_uplink/raider name = "underground uplink" starting_telecrystals = 3 diff --git a/code/game/objects/items/weapons/power_cells.dm b/code/game/objects/items/weapons/power_cells.dm index 8bf3110da45..5b721d6e8cb 100644 --- a/code/game/objects/items/weapons/power_cells.dm +++ b/code/game/objects/items/weapons/power_cells.dm @@ -166,6 +166,28 @@ charge = min(charge + (maxcharge / 10), maxcharge) next_recharge = world.time + 1 MINUTE +/obj/item/cell/nuclear + name = "miniaturized nuclear power core" + desc = "A small self-charging thorium core that can store an immense amount of charge." + origin_tech = list(TECH_POWER = 8, TECH_ILLEGAL = 4) + icon_state = "icell" + maxcharge = 50000 + matter = null + var/next_recharge + +/obj/item/cell/nuclear/Initialize() + . = ..() + START_PROCESSING(SSprocessing, src) + +/obj/item/cell/nuclear/Destroy() + STOP_PROCESSING(SSprocessing, src) + return ..() + +/obj/item/cell/nuclear/process() + if(next_recharge < world.time) + charge = min(charge + (maxcharge / 10), maxcharge) + next_recharge = world.time + 30 SECONDS + /obj/item/cell/device/emergency_light name = "miniature power cell" desc = "A small power cell intended for use with emergency lighting." diff --git a/code/modules/clothing/shoes/boots.dm b/code/modules/clothing/shoes/boots.dm index 3a63f90eddc..ff7b99bebea 100644 --- a/code/modules/clothing/shoes/boots.dm +++ b/code/modules/clothing/shoes/boots.dm @@ -86,6 +86,9 @@ icon_auto_adapt = TRUE icon_supported_species_tags = list("taj") +/obj/item/clothing/shoes/workboots/all_species + species_restricted = null + /obj/item/clothing/shoes/workboots/brown name = "brown workboots" desc = "A pair of brown steel-toed work boots designed for use in industrial settings. Safety first." diff --git a/code/modules/heavy_vehicle/mecha.dm b/code/modules/heavy_vehicle/mecha.dm index 299fbe00578..cf7d3beb2ab 100644 --- a/code/modules/heavy_vehicle/mecha.dm +++ b/code/modules/heavy_vehicle/mecha.dm @@ -136,7 +136,8 @@ if(!user || !user.client) return TRUE to_chat(user, "That's \a [src].") - to_chat(user, desc) + if(desc) + to_chat(user, desc) if(LAZYLEN(pilots) && (!hatch_closed || body.pilot_coverage < 100 || body.transparent_cabin)) if(length(pilots) == 0) to_chat(user, "It has no pilot.") diff --git a/code/modules/heavy_vehicle/mecha_part_spawners.dm b/code/modules/heavy_vehicle/mecha_part_spawners.dm new file mode 100644 index 00000000000..7d7be896a55 --- /dev/null +++ b/code/modules/heavy_vehicle/mecha_part_spawners.dm @@ -0,0 +1,71 @@ +/obj/effect/map_effect/mecha_part_spawner + name = "mecha part spawner" + icon_state = "beam_point" + + var/list/parts_to_spawn = list() + +/obj/effect/map_effect/mecha_part_spawner/Initialize(mapload) + ..() + parts_to_spawn = get_parts_to_spawn() + spawn_parts() + return INITIALIZE_HINT_LATEQDEL + +/obj/effect/map_effect/mecha_part_spawner/proc/get_parts_to_spawn() + return list() + +/obj/effect/map_effect/mecha_part_spawner/proc/spawn_parts() + for(var/thing in parts_to_spawn) + new thing(loc) + + +/obj/effect/map_effect/mecha_part_spawner/manipulator + name = "mecha manipulator spawner" + +/obj/effect/map_effect/mecha_part_spawner/manipulator/get_parts_to_spawn() + return subtypesof(/obj/item/mech_component/manipulators) + +/obj/effect/map_effect/mecha_part_spawner/manipulator/spawn_parts() + . = ..() + new /obj/item/robot_parts/robot_component/actuator(loc) + + +/obj/effect/map_effect/mecha_part_spawner/propulsion + name = "mecha propulsion spawner" + +/obj/effect/map_effect/mecha_part_spawner/propulsion/get_parts_to_spawn() + return subtypesof(/obj/item/mech_component/propulsion) + +/obj/effect/map_effect/mecha_part_spawner/propulsion/spawn_parts() + . = ..() + new /obj/item/robot_parts/robot_component/actuator(loc) + + +/obj/effect/map_effect/mecha_part_spawner/sensors + name = "mecha sensors spawner" + +/obj/effect/map_effect/mecha_part_spawner/sensors/get_parts_to_spawn() + return subtypesof(/obj/item/mech_component/sensors) + +/obj/effect/map_effect/mecha_part_spawner/sensors/spawn_parts() + . = ..() + new /obj/item/robot_parts/robot_component/radio(loc) + new /obj/item/robot_parts/robot_component/camera(loc) + new /obj/item/mech_component/control_module(loc) + + var/list/softwares = subtypesof(/obj/item/circuitboard/exosystem) + for(var/software in softwares) + new software(loc) + + +/obj/effect/map_effect/mecha_part_spawner/chassis + name = "mecha chassis spawner" + +/obj/effect/map_effect/mecha_part_spawner/chassis/get_parts_to_spawn() + return subtypesof(/obj/item/mech_component/chassis) + +/obj/effect/map_effect/mecha_part_spawner/chassis/spawn_parts() + . = ..() + new /obj/item/robot_parts/robot_component/diagnosis_unit(loc) + var/list/armors = typesof(/obj/item/robot_parts/robot_component/armor/mech) + for(var/armor in armors) + new armor(loc) diff --git a/code/modules/mob/living/say.dm b/code/modules/mob/living/say.dm index 18272513ae9..b1891498e6c 100644 --- a/code/modules/mob/living/say.dm +++ b/code/modules/mob/living/say.dm @@ -15,6 +15,7 @@ var/list/department_radio_keys = list( ":t" = "Mercenary", ".t" = "Mercenary", ":x" = "Raider", ".x" = "Raider", ":b" = "Burglar", ".b" = "Burglar", + ":k" = "Jockey", ".k" = "Jockey", ":j" = "Bluespace", ".j" = "Bluespace", ":y" = "Hailing", ".y" = "Hailing", ":q" = "Ninja", ".q" = "Ninja", @@ -38,6 +39,7 @@ var/list/department_radio_keys = list( ":T" = "Mercenary", ".T" = "Mercenary", ":X" = "Raider", ".X" = "Raider", ":B" = "Burglar", ".B" = "Burglar", + ":K" = "Jockey", ".K" = "Jockey", ":J" = "Bluespace", ".J" = "Bluespace", ":Y" = "Hailing", ".Y" = "Hailing", ":Q" = "Ninja", ".Q" = "Ninja", diff --git a/html/changelogs/geeves-jockeys.yml b/html/changelogs/geeves-jockeys.yml new file mode 100644 index 00000000000..120e9baa7ab --- /dev/null +++ b/html/changelogs/geeves-jockeys.yml @@ -0,0 +1,6 @@ +author: Geeves + +delete-after: True + +changes: + - rscadd: "Added a new gamemode, Jockeys, featuring a new antag, Jockey. A mecha-antag focused gamemode. Minimum two antags, minimum ten players on the server for it to roll." diff --git a/icons/mob/hud.dmi b/icons/mob/hud.dmi index faafb2809d958741c20410872187bc7db432c4cb..d985956647abe05c3f1abf48c60134d5e76c7bf4 100644 GIT binary patch literal 8193 zcmcI}cT`i)x9OFPK&jH3QbelsF4Cn)ml}$IRQb}RgVHM&Yan0KC}0nx4PPDbkuCr007WwsH^G& z0EqjND9Hf;V2rGV0RYMKz-J~ts`lP?Ue2CA&K~Xn5RjXm`P6+;k@gMZh(GEDJEPxH zjpU;Up7?cYa`6vh32MayMb&L(y90Q#>|d`P!AMWe82HVQ#o*WHxWg$~S%n%MjG@uF0xs41Hc#Iy$*ndUvUj z{zC%4f2~%&7vBUw?U)43F|YqWovJJx z3)y)(-e=%?{x!K*bgYzGq0n8H(UxXzGFRPVU#~q@ntP7*=oi`4bAD!jZMG--mUx#0 zD+=X4&XG`Y*uSX$jk7_prn#iE73+>W$O+srePm5_RhLxMc(fSI{2g?oJO#a&kZ71Q z$G=Y6{g($hQdG~IK6_(IMjxuw=c$axezY);k{glYh|AlIOzAMMlNR!EKN`nxxOcWM zy3Y!t9yOi$R||G|y?Z4cWgs1DvUG+-?C$u5?cQ8BqHgJxVlItq$m9TK3m$~k_noVC z9(*0W@m!Oh?%Zsx~j=4r%wC`pJ;~WH0FipONQmmznh6n4=yyPHWEW z7*rY7pUHslc8uIuHUMy#X{aha3&`DG4hdlV-A=w2G(atpIHE_=5dGdIHY!ax)#wWK zwb*PP4JDN~POeRXu*wpqs@c(pKRl`3luFc3-?`LFO!88asV3caP+SNQTWvfQ(We95 zeCKq9Bn@~C=gKj4kYuk$*#30PX%9oByE;0y2RQJ_9Lw)^4AOoE6&Vqo=M6Pv* zB^U8KB{=$a0gN5jOC&lF9}z)fXl0co7j#5gqob**92nSv#+GGGKcn>{0rEr38G*eu zGFAZQKn0A2=e$f_{EsAFh$xdBbisoF6*%RUN<;>PRPIrUjwt@rHQ@D(?ix|%ZOXld;ao% z$Jcgx=pQPG3<{zDNlRn&GcB_W${$STvxqqNSQgR`8`my;PW3KZK>ugzz?%dPRl{bE zqy*ved^=9ELdk%aSEfNA!i1Xtv7NV{?A2ukfL1F|_iiu{h8o=ajt+)?tO9?+-Z&^f zg2a)Wqk=I9@~b=O`khuLuTUEv6h-L~L{n4K1p(T`L|~wZS~+;p9(LwVa7c5@LSH)+ zk)21dHL)+5{hQAu^y0$-J-75Otc89=!(Wo|KF7O5h}IPG6ua5=N<$@7NG>YU$4}93Z*FYj%>BWHBwd{yHRqoIHmhMq*~xvet|b0| z!Zqgr4ud_#;px5H2*ld2L_5PjjKPLA5sRWW5?`GIh#}YN3i18pHvR0_cW>?ifNWZ# z>zB-UYJfOSraPOvFcSZ@ady~66_BnI2#)=gc0t$HFA{-Z4NSu47WB-!FL%sKI#+D_ zUh$@nrIccRe06rbhaV!ls{B?+)=yE@Ew^ZpUY&s)^43*^_A~z*sS=Vgy6k9cZCVaI ziz4Hd-0+Vw!7Q>~QZ$c${gfCCqwU*f649QO})H@AZaBgsRs{eE-SKWl&D<9(OD!W{tO zV`>7NtO*vhhx!i1OD56%Xl+%h>^VHhtmPV|xqM5Rwc8s6oN0=JfRG1qAYf}!0KuSK zhe)oh#KsihfB6fc+a#JTk+rT|!B?>=4Lw>Rd36eZ8wdG(=H2x0sfm6Rgts3AujKi! zbO}$;lze2)@(Ecvr$D`_=F0OgTxN&upga&h?(xq;&U%t?>kKzK(V%mVceRkXN@57C z+R5nol+5}oqG;gss&#&VK30d(l7A{(dJv)ENb!OzN}8cZeU-N0pvF5AeoFtM_XP91 z((Fyua9bzHkHW^A6X@8Asj6x0@$QvrRXILjpd%5+gcYvQbN5^b9LLN2k^VFIYA13M zzk1u+ux0?Jw917kc)7wQF7Jb}ijvP9*R z9+42^%cAR5HFX|IO{HNiTyf5%0DB7^^qS40Lta=*UG@2ih7-@#L4b$nJ}vkEB(nxC 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 literal 7929 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 V?26uUbrAmZLSFS*3Bow|{{gB+2l@a2 delta 7396 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 b%p@jjxxeY2Hl{Wp@}qa}!QFZ-#~1$(T48-0 diff --git a/icons/turf/areas.dmi b/icons/turf/areas.dmi index c46758e386daed3522eefdc9603464215d367e17..4e3ea37665969301346a57a76200d37021fc5cd0 100755 GIT binary patch delta 5525 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 diff --git a/maps/_common/areas/special.dm b/maps/_common/areas/special.dm index 8ffa55809d5..eae02c96b4a 100644 --- a/maps/_common/areas/special.dm +++ b/maps/_common/areas/special.dm @@ -132,6 +132,10 @@ name = "Burglar Hideout" icon_state = "burglar" +/area/antag/jockey + name = "Jockey Workshop" + icon_state = "jockey" + /area/antag/loner name = "Loner Basement" icon_state = "loner" @@ -224,4 +228,4 @@ requires_power = 0 sound_env = STANDARD_STATION no_light_control = 1 - flags = RAD_SHIELDED | SPAWN_ROOF \ No newline at end of file + flags = RAD_SHIELDED | SPAWN_ROOF diff --git a/maps/sccv_horizon/sccv_horizon-4_centcomm.dmm b/maps/sccv_horizon/sccv_horizon-4_centcomm.dmm index 79c8e12a2d1..4cce0233807 100644 --- a/maps/sccv_horizon/sccv_horizon-4_centcomm.dmm +++ b/maps/sccv_horizon/sccv_horizon-4_centcomm.dmm @@ -147,13 +147,13 @@ /area/template_noop) "aax" = ( /obj/machinery/door/airlock/hatch{ + dir = 1; frequency = 1337; icon_state = "door_locked"; id_tag = "distress_shuttle_hatch_aft"; locked = 1; name = "Aft Shuttle Hatch"; - req_access = list(112); - dir = 1 + req_access = list(112) }, /obj/machinery/door/blast/regular/open{ dir = 4; @@ -346,19 +346,19 @@ /area/centcom/control) "abc" = ( /obj/machinery/door/airlock/highsecurity{ + dir = 4; name = "Strongroom"; - req_access = list(150); - dir = 4 + req_access = list(150) }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/reinforced, /area/shuttle/mercenary) "abd" = ( /obj/machinery/door/airlock/glass_centcom{ + dir = 1; name = "Sector Administration Copula"; req_access = null; - req_one_access = list(109,108); - dir = 1 + req_one_access = list(109,108) }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -367,8 +367,7 @@ "abe" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor{ icon_state = "wood" @@ -394,8 +393,7 @@ /area/centcom/control) "abh" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -403,8 +401,7 @@ /area/centcom/control) "abi" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -422,8 +419,7 @@ "abk" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/unsimulated/floor{ icon_state = "wood" @@ -449,9 +445,9 @@ /area/centcom/control) "abo" = ( /obj/machinery/door/airlock/centcom{ + dir = 4; name = "Bureau Supervisor's Office"; - req_access = list(109); - dir = 4 + req_access = list(109) }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -459,9 +455,9 @@ /area/centcom/control) "abp" = ( /obj/machinery/door/airlock/centcom{ + dir = 1; name = "Civil Protection Station"; - req_access = list(103); - dir = 1 + req_access = list(103) }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -469,9 +465,9 @@ /area/centcom/holding) "abq" = ( /obj/machinery/door/airlock/glass_security{ + dir = 1; name = "Holding Cell"; - req_access = list(1); - dir = 1 + req_access = list(1) }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -479,23 +475,21 @@ /area/centcom/holding) "abr" = ( /obj/machinery/door/airlock/glass_centcom{ + dir = 1; name = "Valkyrie's Rest Kitchen"; - req_access = list(105); - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" + req_access = list(105) }, +/turf/unsimulated/floor, /area/centcom/bar) "abs" = ( /obj/machinery/door/airlock/external{ + dir = 4; frequency = 1380; icon_state = "door_locked"; id_tag = "centcom_dock_airlock"; locked = 1; name = "Arrivals Airlock"; - req_access = list(13); - dir = 4 + req_access = list(13) }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor, @@ -688,8 +682,7 @@ /area/centcom/control) "abX" = ( /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/item/paper_bin{ pixel_y = 3 @@ -841,8 +834,7 @@ /area/centcom/control) "acp" = ( /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/effect/floor_decal/corner/grey{ dir = 5 @@ -993,8 +985,7 @@ dir = 6 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/unsimulated/floor, /area/centcom/control) @@ -1109,9 +1100,9 @@ /area/shuttle/administration) "ada" = ( /obj/machinery/door/airlock/centcom{ + dir = 1; name = "Bureau Supervisor's Office"; - req_access = list(109); - dir = 1 + req_access = list(109) }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -1119,9 +1110,9 @@ /area/centcom/control) "adc" = ( /obj/machinery/door/airlock/centcom{ + dir = 1; name = "Holding Cells"; - req_access = list(150); - dir = 1 + req_access = list(150) }, /turf/unsimulated/floor, /area/antag/mercenary) @@ -1283,8 +1274,7 @@ /area/centcom/control) "adw" = ( /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -1345,8 +1335,7 @@ dir = 9 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/structure/table/reinforced/steel, /turf/simulated/floor/tiled/dark, @@ -1390,8 +1379,7 @@ dir = 6 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/structure/table/reinforced/steel, /obj/structure/closet/crate/drop/grey, @@ -1677,8 +1665,7 @@ req_access = list(109) }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor{ icon_state = "wood" @@ -1753,8 +1740,7 @@ dir = 9 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -1765,8 +1751,7 @@ dir = 6 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/machinery/recharger/wallcharger{ pixel_x = 36; @@ -1842,9 +1827,9 @@ dir = 6 }, /obj/machinery/door/airlock/highsecurity{ + dir = 1; name = "Bridge"; - req_access = list(101); - dir = 1 + req_access = list(101) }, /turf/simulated/floor/tiled/dark, /area/shuttle/administration) @@ -2026,8 +2011,7 @@ dir = 8 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/simulated/floor/tiled/dark, /area/shuttle/administration) @@ -2081,8 +2065,7 @@ dir = 8 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/simulated/floor/tiled/dark, /area/shuttle/administration) @@ -2324,9 +2307,7 @@ name = "desk access"; req_access = list(109) }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor{ icon_state = "wood" }, @@ -2514,9 +2495,7 @@ /obj/structure/table/reinforced, /obj/item/paper_bin, /obj/item/pen, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor{ icon_state = "dark_preview" }, @@ -2535,8 +2514,7 @@ dir = 6 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/machinery/recharger/wallcharger{ pixel_x = 36; @@ -2621,9 +2599,9 @@ /area/shuttle/administration) "afU" = ( /obj/machinery/door/airlock/glass_centcom{ + dir = 1; name = "CCIA Auxillary Office"; - req_access = list(109); - dir = 1 + req_access = list(109) }, /turf/unsimulated/floor, /area/centcom/control) @@ -2799,8 +2777,7 @@ dir = 8 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/structure/table/reinforced/steel, /turf/simulated/floor/tiled/dark, @@ -2910,8 +2887,7 @@ }, /obj/effect/floor_decal/spline/plain, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/structure/table/reinforced/steel, /turf/simulated/floor/tiled/dark, @@ -2936,8 +2912,7 @@ /obj/machinery/porta_turret/crescent, /obj/effect/floor_decal/industrial/warning/full, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /turf/unsimulated/floor, /area/centcom/control) @@ -2955,8 +2930,7 @@ /area/centcom/control) "agr" = ( /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/effect/floor_decal/corner/red{ dir = 5 @@ -2984,8 +2958,7 @@ "agv" = ( /obj/machinery/deployable/barrier, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /turf/unsimulated/floor{ icon = 'icons/turf/flooring/carpet.dmi'; @@ -3158,8 +3131,7 @@ "agQ" = ( /obj/structure/railing/mapped, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/structure/flora/ausbushes/lavendergrass, /turf/simulated/floor/grass, @@ -3173,8 +3145,7 @@ "agS" = ( /obj/structure/railing/mapped, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/grass, @@ -3235,8 +3206,7 @@ dir = 8 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/simulated/floor/tiled/dark, /area/shuttle/administration) @@ -3256,8 +3226,7 @@ }, /obj/effect/floor_decal/corner/red/diagonal, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/simulated/floor/tiled/dark, /area/shuttle/administration) @@ -3317,9 +3286,7 @@ /area/centcom/control) "ahm" = ( /obj/machinery/deployable/barrier, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor{ icon = 'icons/turf/flooring/carpet.dmi'; icon_state = "rub_carpet" @@ -3403,8 +3370,7 @@ dir = 8 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/structure/flora/ausbushes/lavendergrass, /turf/simulated/floor/grass, @@ -3497,8 +3463,7 @@ /area/shuttle/administration) "ahJ" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/effect/floor_decal/corner/red{ dir = 6 @@ -3507,8 +3472,7 @@ /area/centcom/control) "ahK" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/effect/floor_decal/corner/red{ dir = 9 @@ -3526,9 +3490,9 @@ /area/centcom/bar) "ahN" = ( /obj/machinery/door/airlock/glass_centcom{ + dir = 4; name = "To: NTCC Odin Mass Transit"; - req_access = null; - dir = 4 + req_access = null }, /turf/unsimulated/floor, /area/centcom/bar) @@ -3610,8 +3574,7 @@ pixel_y = 4 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor{ icon = 'icons/turf/flooring/carpet.dmi'; @@ -3630,8 +3593,7 @@ /area/centcom/control) "ahZ" = ( /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /mob/living/silicon/decoy{ name = "Bubble" @@ -3654,8 +3616,7 @@ /obj/structure/table/reinforced, /obj/item/storage/box/fancy/donut, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/unsimulated/floor{ icon = 'icons/turf/flooring/carpet.dmi'; @@ -3680,8 +3641,7 @@ "aie" = ( /obj/item/modular_computer/console/preset/command, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/effect/floor_decal/corner/blue{ dir = 5 @@ -3710,9 +3670,7 @@ /turf/unsimulated/floor, /area/centcom/bar) "aii" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /obj/effect/floor_decal/corner/green{ dir = 10 }, @@ -3928,9 +3886,9 @@ /area/centcom/control) "aiI" = ( /obj/machinery/door/airlock/glass_centcom{ + dir = 4; name = "Administrative Wing Processing"; - req_access = list(101); - dir = 4 + req_access = list(101) }, /obj/effect/floor_decal/corner/blue{ dir = 9 @@ -3987,9 +3945,7 @@ /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "aiN" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, @@ -4001,9 +3957,7 @@ name = "Valkyrie's Rest Kitchen"; req_access = list(105) }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "aiP" = ( /obj/effect/decal/fake_object{ @@ -4115,8 +4069,7 @@ /area/centcom/specops) "ajc" = ( /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -4136,10 +4089,10 @@ /area/centcom/specops) "ajf" = ( /obj/machinery/door/airlock/glass_centcom{ + dir = 4; name = "Sector Administration Copula"; req_access = null; - req_one_access = list(109,108); - dir = 4 + req_one_access = list(109,108) }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -4184,8 +4137,7 @@ /area/centcom/control) "ajk" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/effect/floor_decal/corner/green{ dir = 6 @@ -4203,57 +4155,44 @@ id = "CentComKitchenShutters"; name = "Kitchen Shutter" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "ajm" = ( /obj/machinery/appliance/cooker/oven{ stat = 0 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "ajn" = ( /obj/structure/table/stone/marble, /obj/item/reagent_containers/glass/beaker/large{ pixel_y = 3 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "ajo" = ( /obj/machinery/chem_master/condimaster{ pixel_y = 1 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "ajp" = ( -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/bar) +/obj/structure/mech_wreckage/powerloader, +/turf/template_noop, +/area/template_noop) "ajq" = ( /obj/structure/sink/kitchen{ layer = 3.5; pixel_y = 27 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "ajr" = ( /obj/structure/table/stone/marble, /obj/machinery/appliance/mixer/cereal{ pixel_y = 4 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "ajs" = ( /turf/unsimulated/floor/plating, @@ -4263,12 +4202,12 @@ /area/centcom/bar) "aju" = ( /obj/machinery/door/airlock/centcom{ + dir = 1; icon = 'icons/obj/doors/Doorglass.dmi'; locked = 1; name = "Rapid Transit Ticket Kiosk"; opacity = 0; - req_access = list(101); - dir = 1 + req_access = list(101) }, /obj/item/tape/engineering{ icon_state = "engineering_door"; @@ -4282,12 +4221,12 @@ layer = 4 }, /obj/machinery/door/airlock/centcom{ + dir = 1; icon = 'icons/obj/doors/Doorglass.dmi'; locked = 1; name = "Rapid Transit Ticket Kiosk"; opacity = 0; - req_access = list(101); - dir = 1 + req_access = list(101) }, /turf/simulated/floor/tiled/dark, /area/centcom/bar) @@ -4339,8 +4278,7 @@ }, /obj/effect/floor_decal/corner/red/diagonal, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/machinery/button/remote/blast_door{ id = "corvette_exterior"; @@ -4397,8 +4335,7 @@ /area/shuttle/administration) "ajH" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -4450,27 +4387,21 @@ "ajM" = ( /obj/structure/table/stone/marble, /obj/machinery/chemical_dispenser/coffeemaster/full, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "ajN" = ( /obj/machinery/vending/dinnerware{ density = 0; pixel_y = 29 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "ajO" = ( /obj/structure/table/stone/marble, /obj/machinery/appliance/mixer/candy{ pixel_y = 6 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "ajP" = ( /turf/simulated/floor/tiled/dark, @@ -4532,13 +4463,13 @@ /area/shuttle/administration) "ajY" = ( /obj/machinery/door/airlock/external{ + dir = 1; frequency = 1399; icon_state = "door_locked"; id_tag = "admin_shuttle_hatch"; locked = 1; name = "Corvette Hatch"; - req_access = list(13); - dir = 1 + req_access = list(13) }, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -4615,8 +4546,7 @@ /obj/item/device/magnetic_lock, /obj/item/device/magnetic_lock, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor{ icon = 'icons/turf/flooring/carpet.dmi'; @@ -4669,8 +4599,7 @@ /obj/structure/table/reinforced, /obj/item/card/id/captains_spare, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/unsimulated/floor{ icon = 'icons/turf/flooring/carpet.dmi'; @@ -4687,9 +4616,7 @@ /area/centcom/control) "akl" = ( /obj/machinery/porta_turret/crescent, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -4716,51 +4643,40 @@ /obj/machinery/smartfridge/foodheater, /obj/structure/table/stone/marble, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" + dir = 8 }, +/turf/unsimulated/floor, /area/centcom/bar) "akp" = ( /obj/structure/table/stone/marble, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "akq" = ( /obj/machinery/appliance/cooker/stove{ stat = 0 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "akr" = ( /obj/machinery/door/airlock/external{ + dir = 1; frequency = 1332; icon_state = "door_locked"; id_tag = "pirate_hideout_door"; locked = 1; name = "hideout airlock"; - req_access = list(110); - dir = 1 + req_access = list(110) }, /obj/effect/shuttle_landmark/skipjack_ship/start{ dir = 1 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "aks" = ( /obj/machinery/appliance/cooker/fryer{ stat = 0 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "akt" = ( /obj/machinery/light/small{ @@ -4780,16 +4696,14 @@ /area/centcom/bar) "akv" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/structure/computerframe, /turf/simulated/floor/tiled/dark, /area/centcom/bar) "akx" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/structure/computerframe, /turf/simulated/floor/tiled/dark, @@ -4804,8 +4718,7 @@ pixel_y = 4 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/item/storage/firstaid/toxin{ layer = 3.1; @@ -4901,15 +4814,13 @@ /area/shuttle/administration) "akJ" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/simulated/floor/reinforced, /area/shuttle/administration) "akK" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/simulated/floor/reinforced, /area/shuttle/administration) @@ -4990,8 +4901,8 @@ dir = 1 }, /obj/machinery/door/airlock/glass_centcom{ - name = "Valkyrie's Rest"; - dir = 1 + dir = 1; + name = "Valkyrie's Rest" }, /turf/unsimulated/floor{ icon_state = "wood" @@ -5018,17 +4929,11 @@ /obj/machinery/chemical_dispenser/bar_soft/full{ pixel_y = 6 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "akX" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/obj/machinery/light, +/turf/unsimulated/floor, /area/centcom/bar) "akY" = ( /obj/structure/table/stone/marble, @@ -5046,9 +4951,7 @@ pixel_x = 3; pixel_y = -11 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "akZ" = ( /obj/effect/decal/fake_object{ @@ -5136,13 +5039,13 @@ /area/shuttle/administration) "aln" = ( /obj/machinery/door/airlock/external{ + dir = 1; frequency = 1399; icon_state = "door_locked"; id_tag = "admin_shuttle_hatch"; locked = 1; name = "Corvette Hatch"; - req_access = list(13); - dir = 1 + req_access = list(13) }, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/plasticflaps/airtight, @@ -5203,9 +5106,7 @@ pixel_y = 7 }, /obj/structure/sign/flag/nanotrasen/large/north, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "alu" = ( /obj/structure/table/reinforced/wood, @@ -5213,9 +5114,7 @@ pixel_x = -8; pixel_y = 7 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "alv" = ( /obj/structure/table/reinforced/wood, @@ -5275,9 +5174,7 @@ pixel_x = 24; pixel_y = 27 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "alw" = ( /obj/structure/table/reinforced/wood, @@ -5295,9 +5192,7 @@ id = "CentComBarShutters"; name = "Bar Shutter" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "alx" = ( /obj/effect/floor_decal/spline/fancy/wood{ @@ -5340,24 +5235,17 @@ }, /obj/item/reagent_containers/cooking_container/board/bowl, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" + dir = 4 }, +/turf/unsimulated/floor, /area/centcom/bar) "alB" = ( /obj/item/stack/material/cyborg/steel, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "alD" = ( /obj/item/stack/cable_coil, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor{ icon_state = "whiteshiny" }, @@ -5380,8 +5268,7 @@ /obj/machinery/light{ dir = 1; layer = 2.9; - name = "adjusted light fixture"; - icon_state = "tube_empty" + name = "adjusted light fixture" }, /obj/item/pizzabox/vegetable{ pixel_y = 12 @@ -5410,8 +5297,7 @@ /obj/machinery/light{ dir = 8; name = "adjusted light fixture"; - pixel_y = 16; - icon_state = "tube_empty" + pixel_y = 16 }, /turf/simulated/floor/tiled, /area/merchant_station) @@ -5482,9 +5368,7 @@ random_itemcount = 1; req_access = null }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "alV" = ( /obj/structure/table/reinforced/wood, @@ -5498,9 +5382,7 @@ id = "CentComBarShutters"; name = "Bar Shutter" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "alW" = ( /obj/structure/bed/stool/bar/padded/red, @@ -5543,9 +5425,7 @@ pixel_x = 11; pixel_y = 1 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "alZ" = ( /obj/structure/table/stone/marble, @@ -5568,9 +5448,7 @@ pixel_x = 29; pixel_y = 3 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "ama" = ( /obj/structure/table/stone/marble, @@ -5599,9 +5477,7 @@ pixel_x = -16; pixel_y = 4 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "amb" = ( /obj/structure/table/stone/marble, @@ -5614,9 +5490,7 @@ pixel_x = 3; pixel_y = 7 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "amc" = ( /obj/item/reagent_containers/food/condiment/flour{ @@ -5634,20 +5508,17 @@ pixel_y = -4 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" + dir = 8 }, +/turf/unsimulated/floor, /area/centcom/bar) "amd" = ( /turf/simulated/wall, /area/merchant_station/warehouse) "ame" = ( /obj/machinery/door/airlock/silver{ - name = "Washroom"; - dir = 4 + dir = 4; + name = "Washroom" }, /turf/simulated/floor/tiled, /area/merchant_station) @@ -5661,8 +5532,8 @@ /area/merchant_station) "amg" = ( /obj/machinery/door/airlock/glass{ - name = "Infirmary"; - dir = 1 + dir = 1; + name = "Infirmary" }, /obj/effect/floor_decal/corner/paleblue/diagonal{ dir = 8 @@ -5728,12 +5599,9 @@ /obj/machinery/light{ dir = 8; name = "adjusted light fixture"; - pixel_y = -16; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" + pixel_y = -16 }, +/turf/unsimulated/floor, /area/centcom/bar) "ams" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ @@ -5748,8 +5616,7 @@ dir = 1 }, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /turf/unsimulated/floor{ icon_state = "wood" @@ -5790,8 +5657,7 @@ pixel_y = 10 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -5806,15 +5672,11 @@ /area/centcom/bar) "amz" = ( /obj/machinery/smartfridge/stocked, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "amA" = ( /obj/structure/closet/secure_closet/freezer/meat, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "amB" = ( /obj/structure/closet/secure_closet/freezer/fridge, @@ -5824,9 +5686,7 @@ /obj/item/reagent_containers/food/drinks/carton/soymilk, /obj/item/reagent_containers/food/drinks/carton/milk, /obj/item/reagent_containers/food/drinks/carton/milk, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "amC" = ( /obj/structure/table/stone/marble, @@ -5846,17 +5706,14 @@ pixel_x = 3; pixel_y = 1 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "amD" = ( /turf/unsimulated/floor/plating, /area/centcom/evac) "amE" = ( /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /turf/unsimulated/floor/plating, /area/centcom/evac) @@ -5893,8 +5750,7 @@ /area/merchant_station/warehouse) "amM" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/machinery/papershredder, /turf/simulated/floor/wood, @@ -5927,8 +5783,7 @@ pixel_y = 32 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/machinery/media/jukebox, /turf/simulated/floor/lino, @@ -5952,9 +5807,7 @@ /turf/simulated/floor/plating, /area/shuttle/merchant) "amW" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor{ icon_state = "dark_preview" }, @@ -5980,18 +5833,14 @@ "amZ" = ( /obj/machinery/porta_turret/crescent, /obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor, /area/centcom/control) "ana" = ( /obj/effect/floor_decal/corner/red{ dir = 10 }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor, /area/centcom/control) "anb" = ( @@ -5999,9 +5848,7 @@ /obj/item/reagent_containers/glass/rag{ pixel_y = 3 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "anc" = ( /obj/structure/bed/stool/padded/beige{ @@ -6190,9 +6037,7 @@ pixel_x = -24; req_access = list(105) }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "anI" = ( /obj/structure/table/reinforced/wood, @@ -6239,8 +6084,7 @@ prices = list() }, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /turf/unsimulated/floor{ icon_state = "wood" @@ -6286,9 +6130,9 @@ /area/shuttle/merchant) "aoe" = ( /obj/machinery/door/airlock/hatch{ + dir = 4; name = "Equipment"; - req_access = list(110); - dir = 4 + req_access = list(110) }, /turf/simulated/floor/tiled, /area/merchant_station) @@ -6300,9 +6144,9 @@ /area/merchant_station) "aoh" = ( /obj/machinery/door/airlock/glass{ + dir = 4; name = "Lounge"; - req_access = list(110); - dir = 4 + req_access = list(110) }, /turf/simulated/floor/lino, /area/merchant_station) @@ -6310,9 +6154,7 @@ /turf/simulated/floor/tiled, /area/merchant_station) "aok" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/simulated/floor/tiled, /area/merchant_station) "aol" = ( @@ -6345,9 +6187,7 @@ name = "railing" }, /obj/effect/floor_decal/spline/plain, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/specops) "aop" = ( /obj/effect/decal/fake_object{ @@ -6359,9 +6199,7 @@ name = "railing" }, /obj/effect/floor_decal/spline/plain, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/specops) "aoq" = ( /obj/effect/floor_decal/industrial/warning{ @@ -6386,19 +6224,14 @@ layer = 3.02; name = "surveillance camera" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/specops) "aos" = ( /obj/structure/bed, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" + dir = 1 }, +/turf/unsimulated/floor, /area/centcom/specops) "aot" = ( /obj/effect/decal/fake_object{ @@ -6408,23 +6241,16 @@ layer = 3.02; name = "surveillance camera" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/specops) "aou" = ( /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" + dir = 1 }, +/turf/unsimulated/floor, /area/centcom/specops) "aov" = ( -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/specops) "aow" = ( /obj/machinery/door/airlock/centcom{ @@ -6492,9 +6318,7 @@ /obj/machinery/door/window/southleft{ req_access = list(105) }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "aoE" = ( /obj/structure/table/reinforced/wood, @@ -6511,9 +6335,7 @@ id = "CentComBarShutters"; name = "Bar Shutter" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "aoF" = ( /obj/structure/table/reinforced/wood, @@ -6527,9 +6349,7 @@ id = "CentComBarShutters"; name = "Bar Shutter" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/bar) "aoG" = ( /obj/structure/table/reinforced/wood, @@ -6570,9 +6390,9 @@ /area/centcom/evac) "aoX" = ( /obj/machinery/door/airlock/glass{ + dir = 4; name = "Merchant's Office"; - req_access = list(110); - dir = 4 + req_access = list(110) }, /turf/simulated/floor/wood, /area/merchant_station) @@ -6716,8 +6536,7 @@ "apu" = ( /turf/unsimulated/wall/fakeairlock{ icon = 'icons/obj/doors/Doorext.dmi'; - icon_state = "door_locked"; - name = "airlock" + icon_state = "door_locked" }, /area/centcom/specops) "apv" = ( @@ -6761,35 +6580,27 @@ /obj/structure/bed/stool{ pixel_y = 10 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/specops) "apB" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 4 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/specops) "apC" = ( /obj/structure/table/steel, /obj/item/device/flashlight/lamp{ pixel_y = 2 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/specops) "apD" = ( /obj/structure/bed/stool/chair{ dir = 8 }, /obj/effect/floor_decal/industrial/outline/red, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/specops) "apE" = ( /obj/machinery/door/airlock/centcom{ @@ -6821,8 +6632,7 @@ dir = 1 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor{ icon_state = "wood" @@ -6909,9 +6719,9 @@ /area/merchant_station) "aqg" = ( /obj/machinery/door/airlock/hatch{ + dir = 1; name = "Equipment"; - req_access = list(110); - dir = 1 + req_access = list(110) }, /turf/simulated/floor/tiled, /area/merchant_station/warehouse) @@ -6981,9 +6791,7 @@ layer = 2.6; pixel_y = 1 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/specops) "aqs" = ( /obj/structure/sign/staff_only, @@ -7028,8 +6836,7 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/machinery/recharge_station, /turf/unsimulated/floor{ @@ -7044,8 +6851,7 @@ /obj/machinery/light{ dir = 8; name = "adjusted light fixture"; - pixel_y = 16; - icon_state = "tube_empty" + pixel_y = 16 }, /obj/structure/bed/stool/chair/padded/blue{ dir = 4 @@ -7128,8 +6934,7 @@ /obj/machinery/light{ dir = 4; name = "adjusted light fixture"; - pixel_y = 16; - icon_state = "tube_empty" + pixel_y = 16 }, /obj/structure/bed/stool/chair/padded/blue{ dir = 8 @@ -7140,9 +6945,9 @@ /area/centcom/evac) "aqQ" = ( /obj/machinery/door/airlock/hatch{ + dir = 1; name = "Lounge"; - req_access = null; - dir = 1 + req_access = null }, /turf/simulated/floor/wood, /area/merchant_station) @@ -7190,32 +6995,26 @@ /area/centcom/specops) "arc" = ( /obj/machinery/door/airlock/glass_centcom{ + dir = 1; name = "Cell 1"; - req_access = list(105); - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" + req_access = list(105) }, +/turf/unsimulated/floor, /area/centcom/specops) "ard" = ( /obj/machinery/door/airlock/glass_centcom{ + dir = 1; name = "Cell 2"; - req_access = list(105); - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" + req_access = list(105) }, +/turf/unsimulated/floor, /area/centcom/specops) "are" = ( /obj/machinery/door/airlock/centcom{ name = "Advanced Interrogation"; req_access = list(105) }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/specops) "arf" = ( /obj/item/aiModule/nanotrasen, @@ -7293,8 +7092,7 @@ /area/centcom/bar) "arm" = ( /turf/unsimulated/floor{ - dir = 4; - icon_state = "tiled_preview" + dir = 4 }, /area/centcom/bar) "arn" = ( @@ -7373,8 +7171,7 @@ /obj/structure/table/reinforced/steel, /obj/item/device/price_scanner, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /turf/simulated/floor/wood, /area/merchant_station/warehouse) @@ -7400,8 +7197,7 @@ /obj/machinery/light{ dir = 8; name = "adjusted light fixture"; - pixel_y = 16; - icon_state = "tube_empty" + pixel_y = 16 }, /obj/effect/decal/fake_object{ desc = "A conveyor belt."; @@ -7608,9 +7404,7 @@ /obj/machinery/vending/cigarette{ pixel_x = -3 }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor{ icon_state = "wood" }, @@ -7624,8 +7418,7 @@ /area/centcom/bar) "asi" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/structure/bed/stool/padded/beige{ dir = 8 @@ -7646,8 +7439,7 @@ /area/centcom/bar) "ask" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/effect/floor_decal/corner/blue{ dir = 10 @@ -7778,8 +7570,7 @@ /obj/machinery/light{ dir = 1; name = "adjusted light fixture"; - pixel_x = -16; - icon_state = "tube_empty" + pixel_x = -16 }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) @@ -7894,8 +7685,7 @@ dir = 8 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -7937,8 +7727,8 @@ /area/centcom/control) "ato" = ( /obj/machinery/door/airlock/glass_centcom{ - name = "Valkyrie's Rest"; - dir = 1 + dir = 1; + name = "Valkyrie's Rest" }, /obj/effect/floor_decal/spline/fancy/wood, /turf/unsimulated/floor{ @@ -7968,14 +7758,11 @@ name = "adjusted railing" }, /obj/structure/lattice/catwalk/indoor, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/checkpoint/fore) "atr" = ( /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/structure/railing/mapped{ layer = 4.1; @@ -8176,8 +7963,7 @@ "aue" = ( /obj/structure/closet/wardrobe/orange, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -8205,8 +7991,7 @@ /obj/effect/floor_decal/corner/lime/diagonal, /obj/structure/bed/stool/chair/padded/teal, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -8285,8 +8070,7 @@ pixel_x = 6 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -8329,8 +8113,7 @@ dir = 5 }, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/effect/floor_decal/corner/paleblue{ dir = 8 @@ -8365,9 +8148,7 @@ /obj/effect/floor_decal/spline/plain{ dir = 1 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/checkpoint/fore) "auv" = ( /obj/machinery/door/blast/odin{ @@ -8418,8 +8199,7 @@ /area/centcom/evac) "auz" = ( /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /turf/unsimulated/floor{ icon_state = "wood_preview" @@ -8597,8 +8377,7 @@ "avj" = ( /obj/machinery/optable, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /turf/unsimulated/floor{ icon_state = "white" @@ -8746,15 +8525,11 @@ /area/centcom/holding) "avy" = ( /obj/effect/floor_decal/spline/plain, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/checkpoint/fore) "avz" = ( /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/checkpoint/fore) "avA" = ( /obj/effect/floor_decal/corner/red{ @@ -8857,8 +8632,7 @@ }, /obj/machinery/light{ name = "adjusted light fixture"; - pixel_x = -16; - icon_state = "tube_empty" + pixel_x = -16 }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) @@ -8890,8 +8664,7 @@ }, /obj/machinery/light{ name = "adjusted light fixture"; - pixel_x = -16; - icon_state = "tube_empty" + pixel_x = -16 }, /obj/item/storage/toolbox/mechanical{ pixel_x = -4 @@ -8954,8 +8727,7 @@ }, /obj/machinery/vending/assist, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor/plating, /area/centcom/specops) @@ -9124,8 +8896,7 @@ /area/centcom/specops) "awo" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/shieldwallgen, @@ -9143,8 +8914,7 @@ pixel_y = 23 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/machinery/button/remote/blast_door{ dir = 8; @@ -9222,8 +8992,7 @@ pixel_y = 28 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/structure/closet/crate/drop{ name = "problemsolver crate" @@ -9475,8 +9244,7 @@ dir = 1 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/structure/railing/mapped{ dir = 1 @@ -9487,8 +9255,7 @@ /area/centcom/control) "awW" = ( /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/structure/table/reinforced, /obj/structure/window/reinforced{ @@ -9509,11 +9276,11 @@ /area/shuttle/transport1) "awY" = ( /obj/machinery/computer/shuttle_control{ + can_rename_ship = 1; dir = 4; req_access = null; req_one_access = list(38,72); - shuttle_tag = "SCC Shuttle"; - can_rename_ship = 1 + shuttle_tag = "SCC Shuttle" }, /turf/simulated/floor/shuttle/dark_blue, /area/shuttle/transport1) @@ -9533,8 +9300,7 @@ "axc" = ( /obj/machinery/light{ name = "adjusted light fixture"; - pixel_x = -16; - icon_state = "tube_empty" + pixel_x = -16 }, /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -9570,9 +9336,7 @@ /turf/simulated/floor/shuttle/dark_blue, /area/shuttle/transport1) "axj" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /obj/structure/table/reinforced, /obj/structure/window/reinforced{ dir = 8 @@ -9661,8 +9425,7 @@ /obj/machinery/light{ dir = 4; name = "adjusted light fixture"; - pixel_x = -3; - icon_state = "tube_empty" + pixel_x = -3 }, /obj/structure/table/steel, /obj/machinery/chem_master{ @@ -9717,9 +9480,7 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /obj/structure/table/wood, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/specops) "axz" = ( /obj/item/material/ashtray/bronze{ @@ -9757,8 +9518,7 @@ dir = 4 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -9816,8 +9576,7 @@ dir = 4 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/unsimulated/floor{ icon_state = "wood_preview" @@ -9873,8 +9632,7 @@ /obj/machinery/porta_turret/crescent, /obj/effect/floor_decal/industrial/warning/full, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor, /area/centcom/control) @@ -9990,9 +9748,9 @@ /area/centcom/specops) "ayx" = ( /obj/machinery/door/airlock/centcom{ + dir = 4; name = "Commander's Office"; - req_access = list(108); - dir = 4 + req_access = list(108) }, /obj/machinery/door/blast/odin{ dir = 2; @@ -10137,8 +9895,7 @@ /area/centcom/holding) "ayJ" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/machinery/recharger/wallcharger{ pixel_x = 4; @@ -10410,9 +10167,7 @@ /area/centcom/holding) "azG" = ( /obj/machinery/optable, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor{ icon_state = "white" }, @@ -10430,9 +10185,7 @@ pixel_x = -3 }, /obj/effect/floor_decal/corner/orange/diagonal, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor{ icon_state = "white" }, @@ -10462,9 +10215,7 @@ /area/centcom/holding) "azL" = ( /obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor{ icon_state = "dark_preview" }, @@ -10729,8 +10480,7 @@ req_access = list(108) }, /turf/unsimulated/floor{ - dir = 1; - icon_state = "tiled_preview" + dir = 1 }, /area/centcom/specops) "aAx" = ( @@ -10760,8 +10510,7 @@ /area/centcom/control) "aAA" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/structure/closet/secure_closet/guncabinet{ name = "contraband"; @@ -10909,8 +10658,7 @@ /obj/machinery/light{ dir = 4; name = "adjusted light fixture"; - pixel_x = -3; - icon_state = "tube_empty" + pixel_x = -3 }, /turf/unsimulated/floor/plating, /area/centcom/specops) @@ -10928,8 +10676,7 @@ pixel_y = 1 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor{ @@ -10941,8 +10688,7 @@ pixel_y = 31 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor{ icon_state = "wood" @@ -11000,8 +10746,7 @@ name = "igs - NTERT" }, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -11009,8 +10754,7 @@ /area/centcom/specops) "aAU" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/effect/floor_decal/corner/green/full{ dir = 8 @@ -11025,8 +10769,7 @@ /area/centcom/holding) "aAW" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/effect/floor_decal/corner/green/full{ dir = 1 @@ -11076,8 +10819,7 @@ "aBa" = ( /obj/structure/filingcabinet/chestdrawer, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/effect/floor_decal/corner/blue{ dir = 5 @@ -11147,8 +10889,7 @@ }, /obj/structure/lattice/catwalk/indoor/grate, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /turf/unsimulated/floor/plating, /area/centcom/holding) @@ -11173,8 +10914,7 @@ dir = 4 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor, /area/centcom/holding) @@ -11234,8 +10974,7 @@ "aBA" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/structure/table/reinforced/steel, /obj/item/storage/box/zipties{ @@ -11603,9 +11342,7 @@ /area/centcom/specops) "aBK" = ( /obj/effect/floor_decal/spline/plain, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/specops) "aBL" = ( /obj/item/stamp/centcomm, @@ -11684,9 +11421,9 @@ /area/centcom/holding) "aBT" = ( /obj/machinery/door/airlock/centcom{ + dir = 4; name = "Civil Protection Station"; - req_access = list(103); - dir = 4 + req_access = list(103) }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -11817,8 +11554,7 @@ dir = 4 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/structure/railing/mapped{ layer = 4.1; @@ -11840,9 +11576,7 @@ name = "blastdoor" }, /obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/specops) "aCv" = ( /obj/item/device/magnetic_lock, @@ -11935,8 +11669,8 @@ dir = 8 }, /obj/machinery/door/airlock/glass_centcom{ - name = "Cryogenics"; - dir = 4 + dir = 4; + name = "Cryogenics" }, /turf/unsimulated/floor, /area/centcom/holding) @@ -12013,15 +11747,11 @@ /obj/effect/floor_decal/spline/plain{ dir = 1 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/checkpoint/aft) "aCK" = ( /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/checkpoint/aft) "aCL" = ( /obj/machinery/door/blast/odin{ @@ -12191,9 +11921,9 @@ /area/centcom/specops) "aDj" = ( /obj/machinery/door/airlock/glass_centcom{ + dir = 4; name = "Briefing Room"; - req_access = list(103); - dir = 4 + req_access = list(103) }, /turf/unsimulated/floor{ icon = 'icons/turf/flooring/carpet.dmi'; @@ -12299,9 +12029,7 @@ /obj/effect/floor_decal/corner/paleblue{ dir = 10 }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /obj/effect/floor_decal/corner/paleblue{ dir = 1 }, @@ -12334,9 +12062,7 @@ name = "adjusted railing" }, /obj/effect/floor_decal/spline/plain, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/checkpoint/aft) "aDw" = ( /obj/effect/floor_decal/corner/red{ @@ -12360,9 +12086,7 @@ /turf/unsimulated/floor, /area/centcom/evac) "aDy" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor{ icon_state = "wood_preview" }, @@ -12372,8 +12096,7 @@ pixel_y = -15 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/item/storage/box/fancy/cigarettes/cigar{ pixel_x = -1; @@ -12404,9 +12127,9 @@ /area/centcom/specops) "aDL" = ( /obj/machinery/door/airlock/glass_centcom{ + dir = 4; name = "Response Team Leader's Office"; - req_access = list(103); - dir = 4 + req_access = list(103) }, /obj/machinery/door/blast/odin/shuttle/ert{ dir = 2; @@ -12451,8 +12174,7 @@ dir = 4 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/effect/floor_decal/corner/blue/full, /turf/unsimulated/floor{ @@ -12470,8 +12192,7 @@ "aDR" = ( /obj/machinery/vending/security, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/effect/floor_decal/corner/blue/full{ dir = 4 @@ -12510,14 +12231,10 @@ /obj/machinery/porta_turret/crescent, /obj/effect/floor_decal/industrial/warning/full, /obj/structure/lattice/catwalk/indoor, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/checkpoint/aft) "aDW" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /obj/effect/decal/fake_object{ color = "#ff0000"; icon = 'icons/obj/power_cond_white.dmi'; @@ -12571,8 +12288,7 @@ /obj/item/rig_module/mounted/egun, /obj/item/rig_module/mounted, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/structure/closet{ icon_door = "blue"; @@ -12632,8 +12348,7 @@ "aEp" = ( /obj/machinery/light{ name = "adjusted light fixture"; - pixel_x = -16; - icon_state = "tube_empty" + pixel_x = -16 }, /obj/item/clothing/mask/balaclava{ pixel_x = 4; @@ -12722,8 +12437,7 @@ /obj/item/device/flashlight/flare, /obj/item/device/flashlight/flare, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor{ @@ -12734,8 +12448,7 @@ /obj/item/device/paicard, /obj/item/device/paicard, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/structure/railing/mapped{ layer = 6; @@ -12811,8 +12524,7 @@ /obj/machinery/light{ dir = 4; name = "adjusted light fixture"; - pixel_y = 16; - icon_state = "tube_empty" + pixel_y = 16 }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -12820,8 +12532,7 @@ /area/centcom/specops) "aEz" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/effect/floor_decal/corner/green{ dir = 9 @@ -12830,8 +12541,7 @@ /area/centcom/holding) "aEA" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/effect/floor_decal/corner/green{ dir = 6 @@ -12863,9 +12573,7 @@ }, /obj/structure/window/reinforced/crescent, /obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor/plating, /area/centcom/holding) "aEE" = ( @@ -12898,8 +12606,7 @@ "aEG" = ( /obj/machinery/vending/zora, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -12920,8 +12627,7 @@ "aEJ" = ( /obj/machinery/vending/snack, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -12953,11 +12659,11 @@ /area/centcom/specops) "aFc" = ( /obj/machinery/door/airlock/external{ + dir = 4; frequency = 1380; icon_state = "door_locked"; id_tag = "specops_centcom_dock_door"; - locked = 1; - dir = 4 + locked = 1 }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor{ @@ -12993,32 +12699,26 @@ /area/centcom/specops) "aFf" = ( /obj/structure/bed/stool/chair, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/holding) "aFg" = ( /obj/structure/window/reinforced/crescent{ dir = 4 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/holding) "aFh" = ( /obj/structure/window/reinforced/crescent{ dir = 8 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/holding) "aFi" = ( /obj/machinery/door/airlock/glass_centcom{ + dir = 4; icon = 'icons/obj/doors/Doorglass.dmi'; name = "To: Mendell City Shuttle Terminal"; - req_access = null; - dir = 4 + req_access = null }, /turf/unsimulated/floor, /area/centcom/holding) @@ -13096,8 +12796,7 @@ dir = 1 }, /turf/unsimulated/floor{ - dir = 4; - icon_state = "tiled_preview" + dir = 4 }, /area/centcom/holding) "aFF" = ( @@ -13147,13 +12846,13 @@ /area/shuttle/specops) "aFM" = ( /obj/machinery/door/airlock/external{ + dir = 4; frequency = 1380; icon_state = "door_locked"; id_tag = "specops_shuttle_port_hatch"; locked = 1; name = "Docking Port Airlock"; - req_access = list(13); - dir = 4 + req_access = list(13) }, /turf/simulated/floor/shuttle/black, /area/shuttle/specops) @@ -13194,9 +12893,7 @@ identifier = "NTERTSpawn"; name = "igs - NTERT" }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor{ icon_state = "dark_preview" }, @@ -13218,15 +12915,12 @@ /area/centcom/specops) "aFU" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/machinery/door/window/brigdoor/southright{ name = "holding cell" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/holding) "aFV" = ( /obj/structure/window/reinforced/crescent{ @@ -13234,9 +12928,7 @@ }, /obj/structure/window/reinforced/crescent, /obj/effect/floor_decal/sign/a, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/holding) "aFW" = ( /obj/structure/window/reinforced/crescent{ @@ -13244,26 +12936,20 @@ }, /obj/structure/window/reinforced/crescent, /obj/effect/floor_decal/sign/b, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/holding) "aFX" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/machinery/door/window/brigdoor/southleft{ name = "holding cell" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/holding) "aFY" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/structure/sign/flag/nanotrasen{ pixel_y = 30 @@ -13293,8 +12979,7 @@ /area/centcom/holding) "aGb" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/structure/bed/stool/chair, /obj/structure/sign/flag/nanotrasen{ @@ -13318,8 +13003,7 @@ /area/centcom/holding) "aGe" = ( /turf/unsimulated/floor{ - dir = 4; - icon_state = "tiled_preview" + dir = 4 }, /area/centcom/holding) "aGr" = ( @@ -13388,8 +13072,7 @@ "aGy" = ( /obj/machinery/mech_recharger, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /turf/simulated/floor/shuttle/black, /area/shuttle/specops) @@ -13470,8 +13153,7 @@ "aGJ" = ( /obj/structure/railing/mapped, /turf/unsimulated/floor{ - dir = 4; - icon_state = "tiled_preview" + dir = 4 }, /area/centcom/holding) "aGK" = ( @@ -13497,14 +13179,11 @@ dir = 1 }, /turf/unsimulated/floor{ - dir = 4; - icon_state = "tiled_preview" + dir = 4 }, /area/centcom/evac) "aGN" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor/plating, /area/centcom/evac) "aGO" = ( @@ -13514,8 +13193,7 @@ /area/shuttle/specops) "aGP" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/simulated/floor/shuttle/black, /area/shuttle/specops) @@ -13546,8 +13224,7 @@ dir = 4 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor, /area/centcom/holding) @@ -13625,8 +13302,7 @@ dir = 4 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/effect/floor_decal/corner/paleblue{ dir = 1 @@ -13636,8 +13312,7 @@ /area/centcom/holding) "aHe" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/structure/bed/stool/chair/padded/blue{ dir = 4 @@ -13670,8 +13345,7 @@ /area/centcom/holding) "aHi" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/structure/bed/stool/chair/padded/blue{ dir = 8 @@ -13710,13 +13384,13 @@ /area/centcom/evac) "aHm" = ( /obj/machinery/door/airlock/external{ + dir = 4; frequency = 1380; icon_state = "door_locked"; id_tag = "specops_shuttle_fore_hatch"; locked = 1; name = "Forward Docking Hatch"; - req_access = list(13); - dir = 4 + req_access = list(13) }, /obj/effect/shuttle_landmark/ert/start, /turf/simulated/floor/shuttle/black, @@ -13770,9 +13444,7 @@ /obj/item/modular_computer/console/preset/command{ dir = 8 }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/simulated/floor/shuttle/black, /area/shuttle/specops) "aHt" = ( @@ -13833,8 +13505,7 @@ /area/centcom/spawning) "aHB" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/unsimulated/floor/plating, /area/centcom/spawning) @@ -13915,8 +13586,8 @@ /area/centcom/specops) "aHP" = ( /obj/machinery/door/airlock/glass_centcom{ - req_access = list(101); - dir = 4 + dir = 4; + req_access = list(101) }, /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -13931,8 +13602,7 @@ /area/centcom/holding) "aHR" = ( /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/effect/floor_decal/corner/green{ dir = 5 @@ -13962,8 +13632,7 @@ /area/centcom/holding) "aHW" = ( /turf/unsimulated/floor{ - dir = 8; - icon_state = "tiled_preview" + dir = 8 }, /area/centcom/holding) "aHX" = ( @@ -13976,8 +13645,7 @@ /obj/machinery/light{ dir = 8; name = "adjusted light fixture"; - pixel_y = -32; - icon_state = "tube_empty" + pixel_y = -32 }, /turf/unsimulated/floor/plating, /area/centcom/spawning) @@ -13989,9 +13657,7 @@ /area/centcom/spawning) "aIj" = ( /obj/effect/floor_decal/industrial/warning, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor/plating, /area/centcom/specops) "aIk" = ( @@ -14013,8 +13679,7 @@ dir = 4 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor, /area/centcom/holding) @@ -14055,9 +13720,7 @@ /turf/unsimulated/floor, /area/centcom/holding) "aID" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /obj/effect/floor_decal/corner/green{ dir = 10 }, @@ -14111,8 +13774,7 @@ /obj/machinery/light{ dir = 1; name = "adjusted light fixture"; - pixel_x = -16; - icon_state = "tube_empty" + pixel_x = -16 }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -14148,8 +13810,7 @@ pixel_y = 6 }, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /turf/unsimulated/floor{ icon_state = "wood_preview" @@ -14184,9 +13845,9 @@ /area/centcom/ferry) "aJd" = ( /obj/machinery/door/airlock/centcom{ + dir = 1; name = "Entertainment Wing"; - req_access = null; - dir = 1 + req_access = null }, /turf/unsimulated/floor, /area/centcom/holding) @@ -14212,11 +13873,11 @@ /area/centcom/holding) "aJh" = ( /obj/machinery/door/airlock/glass_centcom{ + dir = 1; icon = 'icons/obj/doors/Doorglass.dmi'; name = "To: Upper Shuttle Terminal"; req_access = null; - req_one_access = list(108,109); - dir = 1 + req_one_access = list(108,109) }, /turf/unsimulated/floor, /area/centcom/spawning) @@ -14323,8 +13984,7 @@ /area/centcom/ferry) "aJC" = ( /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -14360,8 +14020,7 @@ }, /obj/structure/filingcabinet/chestdrawer, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -14413,8 +14072,7 @@ }, /obj/structure/filingcabinet/chestdrawer, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -14667,10 +14325,10 @@ /area/centcom/ferry) "aKM" = ( /obj/machinery/door/airlock/glass_centcom{ + dir = 4; name = "Diplomatic Waiting Lounge"; req_access = null; - req_one_access = list(38,72); - dir = 4 + req_one_access = list(38,72) }, /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 4 @@ -14723,8 +14381,7 @@ dir = 9 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -14759,8 +14416,7 @@ dir = 6 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -14808,8 +14464,7 @@ }, /turf/unsimulated/floor{ dir = 1; - name = "staircase"; - icon_state = "tiled_preview" + name = "staircase" }, /area/centcom/spawning) "aLa" = ( @@ -14818,8 +14473,7 @@ }, /turf/unsimulated/floor{ dir = 1; - name = "staircase"; - icon_state = "tiled_preview" + name = "staircase" }, /area/centcom/spawning) "aLb" = ( @@ -14857,13 +14511,13 @@ /area/horizon/holodeck/source_emptycourt) "aLr" = ( /obj/machinery/door/airlock/external{ + dir = 1; frequency = 1380; icon_state = "door_locked"; id_tag = "centcom_shuttle_hatch"; locked = 1; name = "Shuttle Hatch"; - req_access = list(13); - dir = 1 + req_access = list(13) }, /obj/effect/shuttle_landmark/ccia/start, /turf/simulated/floor/shuttle/dark_blue, @@ -14878,9 +14532,7 @@ /obj/machinery/vending/coffee/free{ pixel_x = 2 }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor, /area/centcom/ferry) "aLx" = ( @@ -14956,9 +14608,7 @@ /turf/unsimulated/floor, /area/centcom/control) "aLA" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /obj/machinery/door/window/brigdoor/westright{ name = "checkpoint desk"; req_access = list(101) @@ -14994,9 +14644,7 @@ /obj/effect/floor_decal/corner/red{ dir = 9 }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor{ icon_state = "dark_preview" }, @@ -15005,9 +14653,7 @@ /obj/effect/floor_decal/corner/lime{ dir = 6 }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor{ icon_state = "dark_preview" }, @@ -15049,8 +14695,7 @@ dir = 8 }, /turf/unsimulated/floor{ - name = "staircase"; - icon_state = "tiled_preview" + name = "staircase" }, /area/centcom/spawning) "aLK" = ( @@ -15061,8 +14706,7 @@ dir = 4 }, /turf/unsimulated/floor{ - name = "staircase"; - icon_state = "tiled_preview" + name = "staircase" }, /area/centcom/spawning) "aLL" = ( @@ -15158,13 +14802,13 @@ /area/centcom/spawning) "aLT" = ( /obj/machinery/door/airlock/external{ + dir = 1; frequency = 1380; icon_state = "door_locked"; id_tag = "centcom_arrivals_airlock"; locked = 1; name = "Arrivals Airlock"; - req_access = list(13); - dir = 1 + req_access = list(13) }, /turf/unsimulated/floor, /area/centcom/spawning) @@ -15229,11 +14873,11 @@ dir = 4 }, /obj/machinery/door/airlock/glass_centcom{ + dir = 4; icon = 'icons/obj/doors/Doorglass.dmi'; name = "To: Lower Shuttle Terminal"; req_access = null; - req_one_access = list(108,109); - dir = 4 + req_one_access = list(108,109) }, /turf/unsimulated/floor, /area/centcom/spawning) @@ -15248,8 +14892,7 @@ /area/centcom/spawning) "aMm" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/structure/bed/stool/chair/unmovable{ dir = 8 @@ -15274,8 +14917,7 @@ /area/centcom/spawning) "aMn" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor/plating, /area/centcom/spawning) @@ -15295,8 +14937,7 @@ /area/supply/dock) "aMv" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/simulated/floor/shuttle/dark_blue, /area/shuttle/transport1) @@ -15333,18 +14974,16 @@ }, /area/centcom/ferry) "aMC" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor, /area/centcom/holding) "aMD" = ( /obj/machinery/door/airlock/glass_centcom{ + dir = 4; icon = 'icons/obj/doors/Doorglass.dmi'; name = "To: Lower Shuttle Terminal"; req_access = null; - req_one_access = list(108,109); - dir = 4 + req_one_access = list(108,109) }, /turf/unsimulated/floor, /area/centcom/spawning) @@ -15364,9 +15003,7 @@ /obj/effect/floor_decal/corner/red{ dir = 10 }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor, /area/centcom/spawning) "aMH" = ( @@ -15427,8 +15064,7 @@ /area/shuttle/transport1) "aMU" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor{ icon_state = "dark_preview" @@ -15522,8 +15158,7 @@ dir = 5 }, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -15689,21 +15324,16 @@ /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/spawning) "aNK" = ( /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/spawning) "aNL" = ( /obj/effect/floor_decal/industrial/hatch/yellow, @@ -15798,8 +15428,7 @@ dir = 4 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/structure/flora/ausbushes/leafybush, /obj/structure/flora/ausbushes/ppflowers, @@ -15811,10 +15440,9 @@ /turf/unsimulated/floor, /area/centcom/spawning) "aNY" = ( -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/spawning) +/obj/effect/map_effect/window_spawner/full/reinforced, +/turf/unsimulated/floor/plating, +/area/antag/jockey) "aNZ" = ( /obj/effect/floor_decal/industrial/loading/yellow{ dir = 4 @@ -15891,8 +15519,7 @@ }) "aOh" = ( /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /turf/unsimulated/floor/plating, /area/centcom/suppy) @@ -15937,8 +15564,7 @@ "aOo" = ( /turf/unsimulated/floor{ dir = 1; - name = "staircase"; - icon_state = "tiled_preview" + name = "staircase" }, /area/centcom/spawning) "aOp" = ( @@ -15951,9 +15577,7 @@ /area/centcom/spawning) "aOq" = ( /obj/effect/floor_decal/industrial/warning, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/spawning) "aOr" = ( /obj/structure/sign/directions/dock{ @@ -16050,8 +15674,7 @@ dir = 6 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/unsimulated/floor, /area/centcom/spawning) @@ -16208,8 +15831,7 @@ dir = 1 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor, /area/centcom/spawning) @@ -16225,8 +15847,7 @@ /area/centcom/spawning) "aOU" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor/plating, /area/centcom/suppy) @@ -16244,13 +15865,13 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/airlock/external{ + dir = 1; frequency = 1380; icon_state = "door_locked"; id_tag = "cargo_shuttle_airlock"; locked = 1; name = "Cargo Shuttle"; - req_access = list(13,31); - dir = 1 + req_access = list(13,31) }, /turf/simulated/floor/tiled/dark, /area/supply/dock) @@ -16266,21 +15887,20 @@ id = "cargo_1" }, /obj/machinery/door/airlock/external{ + dir = 1; frequency = 1380; icon_state = "door_locked"; id_tag = "cargo_shuttle_airlock"; locked = 1; name = "Cargo Shuttle"; - req_access = list(13,31); - dir = 1 + req_access = list(13,31) }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, /area/supply/dock) "aPc" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/unsimulated/floor/plating, /area/centcom/suppy) @@ -16296,9 +15916,7 @@ /obj/effect/floor_decal/corner/red{ dir = 1 }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor{ icon_state = "dark_preview" }, @@ -16346,9 +15964,7 @@ /obj/effect/floor_decal/corner/lime{ dir = 4 }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor{ icon_state = "dark_preview" }, @@ -16479,9 +16095,7 @@ /obj/structure/window/reinforced/crescent, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/ppflowers, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/simulated/floor/grass, /area/centcom/spawning) "aPH" = ( @@ -16515,9 +16129,7 @@ /obj/structure/window/reinforced/crescent, /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/ywflowers, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/simulated/floor/grass, /area/centcom/spawning) "aPK" = ( @@ -16549,9 +16161,7 @@ }, /obj/structure/window/reinforced/crescent, /obj/structure/flora/ausbushes/grassybush, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/simulated/floor/grass, /area/centcom/spawning) "aPN" = ( @@ -16889,9 +16499,7 @@ pixel_y = 28 }, /obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/spawning) "aQB" = ( /obj/effect/floor_decal/corner/lime/full{ @@ -16923,9 +16531,7 @@ /obj/structure/window/reinforced/crescent{ dir = 4 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/spawning) "aQF" = ( /obj/structure/sink{ @@ -16946,8 +16552,7 @@ /obj/machinery/light{ dir = 4; name = "adjusted light fixture"; - pixel_y = -16; - icon_state = "tube_empty" + pixel_y = -16 }, /turf/unsimulated/floor, /area/centcom/spawning) @@ -17024,9 +16629,7 @@ "aQT" = ( /obj/machinery/cryopod/robot, /obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/spawning) "aQU" = ( /obj/effect/floor_decal/corner/lime{ @@ -17046,9 +16649,7 @@ /obj/structure/window/reinforced/crescent{ dir = 4 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/spawning) "aQX" = ( /obj/effect/landmark{ @@ -17076,8 +16677,7 @@ }, /obj/machinery/light{ name = "adjusted light fixture"; - pixel_x = 16; - icon_state = "tube_empty" + pixel_x = 16 }, /turf/unsimulated/floor, /area/centcom/spawning) @@ -17087,9 +16687,7 @@ /obj/structure/window/reinforced/crescent{ dir = 4 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/spawning) "aRd" = ( /obj/effect/floor_decal/corner/white/diagonal, @@ -17225,9 +16823,7 @@ name = "Thunderdome Administration"; req_access = list(102) }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/tdome/tdome1) "aRM" = ( /obj/effect/floor_decal/corner/red/full, @@ -17276,9 +16872,9 @@ /area/tdome/tdomeadmin) "aRS" = ( /obj/machinery/door/airlock/command{ + dir = 1; name = "Thunderdome Administration"; - req_access = list(102); - dir = 1 + req_access = list(102) }, /obj/effect/floor_decal/corner/orange/diagonal, /turf/unsimulated/floor{ @@ -17376,15 +16972,12 @@ }, /area/tdome/tdomeadmin) "aSm" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor/plating, /area/centcom/suppy) "aSn" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor, /area/centcom/holding) @@ -17417,8 +17010,7 @@ /area/tdome/tdomeadmin) "aSt" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/unsimulated/floor, /area/centcom/holding) @@ -17689,18 +17281,14 @@ /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aSW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aSX" = ( /obj/effect/decal/cleanable/dirt, @@ -17728,9 +17316,7 @@ /obj/machinery/light/small/emergency{ dir = 1 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aTa" = ( /obj/effect/decal/cleanable/dirt, @@ -17760,9 +17346,7 @@ pixel_x = 2; pixel_y = 19 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aTb" = ( /obj/item/storage/bag/inflatable{ @@ -17800,13 +17384,10 @@ pixel_y = -8 }, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/structure/table/reinforced, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aTc" = ( /obj/structure/table/rack, @@ -17817,9 +17398,7 @@ /obj/item/pickaxe/jackhammer{ pixel_y = -6 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aTd" = ( /obj/structure/table/rack, @@ -17833,9 +17412,7 @@ pixel_y = -4 }, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aTe" = ( /obj/structure/table/rack, @@ -17858,9 +17435,7 @@ /obj/item/clothing/glasses/meson{ pixel_y = 7 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aTf" = ( /obj/structure/table/rack, @@ -17893,9 +17468,7 @@ /obj/item/plastique{ pixel_x = 8 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aTg" = ( /obj/effect/floor_decal/industrial/outline/yellow, @@ -17913,57 +17486,43 @@ name = "blaster turret assembly kit" }, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" + dir = 1 }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aTh" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/portable_atmospherics/powered/pump/filled{ start_pressure = 15000 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aTi" = ( /obj/machinery/portable_atmospherics/powered/pump/filled{ start_pressure = 15000 }, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aTj" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/power/emitter{ dir = 4 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aTk" = ( /obj/machinery/pipedispenser/orderable, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aTl" = ( /obj/machinery/pipedispenser/disposal/orderable, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" + dir = 1 }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aTm" = ( /obj/structure/grille/broken, @@ -18014,9 +17573,7 @@ dir = 10 }, /obj/item/storage/box/tcfl_pamphlet, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aTt" = ( /obj/structure/table/wood, @@ -18067,9 +17624,7 @@ /obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aTx" = ( /obj/effect/decal/cleanable/blood/oil, @@ -18077,37 +17632,27 @@ /obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aTz" = ( /obj/structure/table/reinforced, /obj/item/device/multitool, /obj/structure/fireaxecabinet/west, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aTA" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 8 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aTB" = ( /obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aTE" = ( -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) +/turf/unsimulated/wall/steel, +/area/antag/jockey) "aTF" = ( /obj/structure/grille, /obj/structure/window/reinforced/crescent{ @@ -18151,8 +17696,7 @@ "aTJ" = ( /obj/machinery/washing_machine, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /turf/unsimulated/floor{ icon_state = "wood_preview" @@ -18163,16 +17707,12 @@ pixel_x = -9; pixel_y = 7 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "aTL" = ( /obj/structure/bed, /obj/item/bedsheet/black, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "aTM" = ( /obj/item/reagent_containers/glass/bucket{ @@ -18180,9 +17720,7 @@ pixel_y = 7 }, /obj/effect/decal/cleanable/vomit, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "aTN" = ( /obj/structure/closet/secure_closet/guncabinet{ @@ -18242,9 +17780,7 @@ pixel_y = 8 }, /obj/item/clothing/head/helmet/tank/legion, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aTS" = ( /obj/item/clothing/glasses/welding/superior{ @@ -18255,9 +17791,7 @@ pixel_y = -8 }, /obj/structure/table/reinforced, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aTU" = ( /obj/machinery/autolathe{ @@ -18265,9 +17799,7 @@ hacked = 1; name = "Unlocked Autolathe" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aTV" = ( /turf/unsimulated/floor{ @@ -18284,9 +17816,7 @@ /obj/machinery/light/small{ dir = 8 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "aTZ" = ( /turf/unsimulated/floor, @@ -18331,32 +17861,27 @@ pixel_y = 14 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/structure/table/reinforced, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aUf" = ( -/obj/structure/closet/crate/secure/legion, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" +/obj/effect/floor_decal/corner/black/diagonal, +/obj/effect/floor_decal/corner/black/diagonal{ + dir = 1 }, -/area/centcom/legion/hangar5) +/turf/unsimulated/floor, +/area/antag/jockey) "aUh" = ( /obj/machinery/vending/assist{ random_itemcount = 0 }, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" + dir = 4 }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aUi" = ( /obj/vehicle/droppod/legion{ @@ -18424,33 +17949,27 @@ /area/centcom/legion) "aUr" = ( /obj/machinery/door/airlock/glass_command{ + dir = 1; name = "Cell 1"; - req_access = list(111); - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" + req_access = list(111) }, +/turf/unsimulated/floor, /area/centcom/legion) "aUs" = ( /obj/machinery/door/airlock/glass_command{ + dir = 1; name = "Cell 2"; - req_access = list(111); - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" + req_access = list(111) }, +/turf/unsimulated/floor, /area/centcom/legion) "aUt" = ( /obj/machinery/door/airlock/glass_command{ + dir = 1; name = "Cell 3"; - req_access = list(111); - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" + req_access = list(111) }, +/turf/unsimulated/floor, /area/centcom/legion) "aUu" = ( /obj/structure/closet/crate/secure/legion, @@ -18544,9 +18063,7 @@ /obj/item/clothing/accessory/legion/specialist, /obj/item/clothing/accessory/legion/specialist, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aUD" = ( /obj/structure/table/rack, @@ -18575,9 +18092,7 @@ /obj/item/stack/material/steel{ amount = 50 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aUE" = ( /obj/structure/table/rack, @@ -18606,18 +18121,14 @@ /obj/item/stack/material/glass/reinforced{ amount = 50 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aUF" = ( /obj/machinery/vending/tool{ random_itemcount = 0 }, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aUG" = ( /obj/structure/lattice/catwalk/indoor, @@ -18626,9 +18137,7 @@ layer = 2.8; name = "Droppod A" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aUH" = ( /obj/structure/lattice/catwalk/indoor, @@ -18637,9 +18146,7 @@ layer = 2.8; name = "Droppod B" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aUI" = ( /obj/structure/lattice/catwalk/indoor, @@ -18648,9 +18155,7 @@ layer = 2.8; name = "Droppod C" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aUJ" = ( /obj/structure/lattice/catwalk/indoor, @@ -18659,9 +18164,7 @@ layer = 2.8; name = "Droppod D" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aUK" = ( /turf/unsimulated/wall/riveted{ @@ -18804,36 +18307,25 @@ /obj/item/rfd/construction{ layer = 3.01 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aVc" = ( /obj/effect/decal/cleanable/liquid_fuel, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aVd" = ( /obj/machinery/vending/engivend, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aVe" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/centcom/legion/hangar5) +/obj/structure/table/rack, +/obj/effect/map_effect/mecha_part_spawner/chassis, +/turf/unsimulated/floor, +/area/antag/jockey) "aVg" = ( /obj/machinery/suit_storage_unit/standard_unit, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aVh" = ( /obj/structure/table/wood, @@ -18877,9 +18369,7 @@ }, /area/antag/wizard) "aVk" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor{ icon_state = "wood_preview" }, @@ -18896,12 +18386,6 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"aVn" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor, -/area/centcom/legion) "aVo" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 6 @@ -18996,22 +18480,16 @@ "aVz" = ( /obj/structure/closet/secure_closet/engineering_electrical, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aVA" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aVB" = ( /obj/machinery/light/small, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aVC" = ( /obj/structure/table/wood, @@ -19074,9 +18552,7 @@ pixel_x = -24; pixel_y = 25 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "aVJ" = ( /turf/simulated/floor/tiled/ramp/bottom{ @@ -19114,8 +18590,7 @@ /area/centcom/legion) "aVO" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/machinery/turretid{ ailock = 1; @@ -19197,18 +18672,14 @@ layer = 2.4; name = "shutter" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aVV" = ( /obj/machinery/door/blast/shutters/open{ dir = 2; name = "Droppods" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "aVW" = ( /obj/structure/sign/pods{ @@ -19267,9 +18738,7 @@ /obj/machinery/light/small/emergency{ dir = 4 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "aWd" = ( /obj/machinery/door/airlock/centcom{ @@ -19526,18 +18995,14 @@ /area/centcom/legion) "aWF" = ( /obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "aWG" = ( /obj/machinery/door/airlock/hatch{ name = "Thruster Access" }, /obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "aWH" = ( /turf/unsimulated/floor/plating, @@ -19569,9 +19034,9 @@ /area/centcom/legion) "aWL" = ( /obj/machinery/door/airlock/centcom{ + dir = 1; name = "Holding Cells"; - req_access = list(111); - dir = 1 + req_access = list(111) }, /turf/unsimulated/floor, /area/centcom/legion) @@ -19662,8 +19127,7 @@ "aWQ" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) @@ -19749,8 +19213,7 @@ dir = 8 }, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/machinery/porta_turret/legion, /obj/effect/floor_decal/industrial/warning, @@ -19898,9 +19361,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /obj/machinery/porta_turret/legion, /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -19957,13 +19418,13 @@ /area/shuttle/legion) "aXw" = ( /obj/machinery/door/airlock/hatch{ + dir = 1; frequency = 1337; icon_state = "door_locked"; id_tag = "legion_shuttle_hatch"; locked = 1; name = "Dropship Hatch"; - req_access = list(111); - dir = 1 + req_access = list(111) }, /obj/machinery/door/blast/regular/open{ dir = 8; @@ -19982,13 +19443,13 @@ /area/shuttle/legion) "aXx" = ( /obj/machinery/door/airlock/hatch{ + dir = 1; frequency = 1337; icon_state = "door_locked"; id_tag = "legion_shuttle_hatch"; locked = 1; name = "Dropship Hatch"; - req_access = list(111); - dir = 1 + req_access = list(111) }, /obj/machinery/door/blast/regular/open{ dir = 8; @@ -20084,9 +19545,7 @@ "aXJ" = ( /obj/structure/bed/stool, /obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "aXK" = ( /obj/effect/decal/cleanable/dirt, @@ -20212,8 +19671,7 @@ }, /obj/structure/table/reinforced/steel, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -20320,9 +19778,7 @@ /obj/item/deck/cards, /obj/effect/decal/cleanable/dirt, /obj/item/trash/cigbutt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "aYk" = ( /obj/machinery/light/small/emergency{ @@ -20332,9 +19788,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "aYl" = ( /obj/effect/decal/cleanable/dirt, @@ -20376,8 +19830,7 @@ /area/centcom/legion) "aYq" = ( /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/machinery/vending/coffee, /obj/effect/floor_decal/corner/paleblue{ @@ -20430,8 +19883,7 @@ "aYw" = ( /obj/machinery/atmospherics/portables_connector, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/machinery/atmospherics/unary/cryo_cell, /obj/structure/lattice/catwalk/indoor/grate, @@ -20522,8 +19974,7 @@ dir = 8 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -20626,13 +20077,13 @@ /area/centcom/legion) "aYX" = ( /obj/machinery/door/airlock/external{ + dir = 4; frequency = 1337; icon_state = "door_locked"; id_tag = "legion_shuttle_aft_exterior"; locked = 1; name = "Dropship External Airlock"; - req_access = list(111); - dir = 4 + req_access = list(111) }, /obj/machinery/access_button{ command = "cycle_exterior"; @@ -20669,13 +20120,13 @@ req_access = list(111) }, /obj/machinery/door/airlock/glass_command{ + dir = 4; frequency = 1337; icon_state = "door_locked"; id_tag = "legion_shuttle_aft_interior"; locked = 1; name = "Dropship Internal Airlock"; - req_access = list(111); - dir = 4 + req_access = list(111) }, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -20764,9 +20215,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "aZk" = ( /obj/structure/closet/crate/trashcart, @@ -20792,9 +20241,7 @@ /turf/unsimulated/floor, /area/centcom/legion) "aZn" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /obj/effect/floor_decal/corner/paleblue{ dir = 10 }, @@ -20834,8 +20281,7 @@ pixel_y = 12 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/effect/floor_decal/corner/lime/diagonal{ dir = 8 @@ -21093,9 +20539,7 @@ }, /obj/structure/railing/mapped, /obj/structure/table/reinforced/steel, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /obj/structure/closet/crate/freezer/rations, /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -21183,9 +20627,7 @@ /obj/effect/decal/cleanable/dirt, /obj/item/trash/cigbutt, /obj/item/trash/cigbutt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "bag" = ( /obj/structure/janitorialcart/full{ @@ -21204,31 +20646,26 @@ dir = 1; maxhealth = 140 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "bai" = ( /obj/machinery/cryopod{ dir = 4 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "baj" = ( /obj/machinery/computer/cryopod{ pixel_y = 32 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "bak" = ( -/turf/unsimulated/floor{ - icon_state = "tiled_preview" +/obj/machinery/light/small/emergency{ + dir = 1 }, -/area/centcom/legion) +/turf/unsimulated/floor, +/area/antag/jockey) "bal" = ( /obj/structure/sink{ pixel_y = 16 @@ -21236,9 +20673,7 @@ /obj/structure/mirror{ pixel_y = 32 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "bam" = ( /obj/structure/sink{ @@ -21248,9 +20683,7 @@ pixel_y = 32 }, /obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "ban" = ( /obj/structure/closet{ @@ -21362,13 +20795,13 @@ /area/shuttle/legion) "baz" = ( /obj/machinery/door/airlock/hatch{ + dir = 1; frequency = 1337; icon_state = "door_locked"; id_tag = "legion_shuttle_hatch"; locked = 1; name = "Dropship Hatch"; - req_access = list(111); - dir = 1 + req_access = list(111) }, /obj/machinery/door/blast/regular/open{ dir = 4; @@ -21381,13 +20814,13 @@ /area/shuttle/legion) "baA" = ( /obj/machinery/door/airlock/hatch{ + dir = 1; frequency = 1337; icon_state = "door_locked"; id_tag = "legion_shuttle_hatch"; locked = 1; name = "Dropship Hatch"; - req_access = list(111); - dir = 1 + req_access = list(111) }, /obj/machinery/door/blast/regular/open{ dir = 4; @@ -21475,14 +20908,12 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "baM" = ( /obj/machinery/door/airlock/glass{ - name = "Cryogenic Storage"; - dir = 4 + dir = 4; + name = "Cryogenic Storage" }, /turf/unsimulated/floor, /area/centcom/legion) @@ -21490,15 +20921,11 @@ /obj/machinery/door/airlock/silver{ name = "Washroom" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "baP" = ( /obj/machinery/light/small, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "baQ" = ( /obj/structure/sink{ @@ -21574,18 +21001,14 @@ /area/template_noop) "bbb" = ( /obj/structure/closet/secure_closet/personal, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "bbc" = ( /obj/machinery/door/airlock/silver{ id_tag = "tower_stall_2"; name = "Washroom" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "bbd" = ( /obj/structure/table/standard, @@ -21595,8 +21018,7 @@ }, /obj/item/storage/firstaid/adv, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/effect/floor_decal/corner/lime/diagonal{ dir = 8 @@ -21607,8 +21029,7 @@ /area/centcom/legion) "bbe" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/structure/bed/roller, /obj/effect/floor_decal/corner/lime/diagonal{ @@ -21623,8 +21044,7 @@ dir = 4 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) @@ -21777,17 +21197,11 @@ dir = 8 }, /obj/structure/window/reinforced, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "bbz" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/obj/machinery/light, +/turf/unsimulated/floor, /area/centcom/legion) "bbA" = ( /obj/machinery/light/small{ @@ -21797,9 +21211,7 @@ pixel_x = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "bbB" = ( /obj/structure/toilet{ @@ -21815,9 +21227,7 @@ pixel_y = 23; specialfunctions = 4 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "bbC" = ( /obj/structure/table/standard, @@ -21916,14 +21326,11 @@ layer = 2.8; name = "Pod L" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/loner) "bbN" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1337; @@ -21940,8 +21347,7 @@ dir = 8 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor/plating, /area/antag/mercenary) @@ -21996,8 +21402,7 @@ dir = 4 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/unsimulated/floor/plating, /area/antag/mercenary) @@ -22123,14 +21528,12 @@ status = 2 }, /obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "bch" = ( /obj/machinery/door/airlock/glass{ - name = "Mess Hall"; - dir = 1 + dir = 1; + name = "Mess Hall" }, /obj/effect/floor_decal/corner/paleblue/full, /turf/unsimulated/floor{ @@ -22139,8 +21542,8 @@ /area/centcom/legion) "bci" = ( /obj/machinery/door/airlock/glass{ - name = "Mess Hall"; - dir = 1 + dir = 1; + name = "Mess Hall" }, /obj/effect/floor_decal/corner/paleblue/full{ dir = 4 @@ -22189,9 +21592,9 @@ /area/centcom/legion/hangar5) "bcm" = ( /obj/machinery/door/airlock/glass_command{ + dir = 1; name = "Prefect Office"; - req_access = list(103,111); - dir = 1 + req_access = list(103,111) }, /turf/unsimulated/floor{ icon_state = "dark" @@ -22247,9 +21650,7 @@ /turf/unsimulated/floor, /area/antag/loner) "bcs" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor, /area/antag/loner) "bct" = ( @@ -22344,8 +21745,7 @@ /obj/machinery/light{ dir = 8; name = "adjusted light fixture"; - pixel_y = -16; - icon_state = "tube_empty" + pixel_y = -16 }, /turf/unsimulated/floor{ icon_state = "ramptop"; @@ -22373,8 +21773,7 @@ pixel_y = -12 }, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/structure/table/wood{ table_reinf = "wood" @@ -22498,9 +21897,7 @@ pixel_y = 6 }, /obj/effect/floor_decal/industrial/warning, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion) "bcS" = ( /obj/item/reagent_containers/food/snacks/liquidfood{ @@ -22526,8 +21923,7 @@ /obj/structure/sign/flag/biesel/large/north, /obj/structure/table/standard, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor{ icon_state = "wood_preview" @@ -22828,8 +22224,7 @@ /obj/item/clothing/accessory/legion/specialist, /obj/item/clothing/accessory/legion/specialist, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) @@ -22842,8 +22237,7 @@ /obj/item/reagent_containers/blood/OMinus, /obj/item/reagent_containers/blood/OMinus, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/effect/floor_decal/industrial/outline/red, /turf/unsimulated/floor, @@ -22854,8 +22248,7 @@ /obj/item/rig/retro/equipped, /obj/item/rig/retro/equipped, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/machinery/recharger/wallcharger{ pixel_x = 4; @@ -22869,8 +22262,7 @@ /area/centcom/legion/hangar5) "bdm" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/structure/table/rack, /obj/machinery/recharger/wallcharger{ @@ -22899,8 +22291,7 @@ prices = list() }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor{ dir = 8; @@ -22991,9 +22382,7 @@ /obj/structure/mirror{ pixel_y = 31 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "bdu" = ( /obj/effect/decal/cleanable/dirt, @@ -23001,18 +22390,14 @@ /obj/machinery/shower{ pixel_y = 20 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "bdv" = ( /obj/structure/curtain/open/shower, /obj/machinery/shower{ pixel_y = 20 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "bdw" = ( /obj/effect/floor_decal/industrial/warning{ @@ -23041,8 +22426,7 @@ /area/shuttle/syndicate_elite) "bdz" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/machinery/vending/wallmed1{ layer = 3.3; @@ -23057,8 +22441,7 @@ /area/shuttle/syndicate_elite) "bdB" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/structure/extinguisher_cabinet/east{ layer = 3.3; @@ -23079,8 +22462,7 @@ /area/shuttle/syndicate_elite) "bdE" = ( /turf/unsimulated/floor{ - name = "staircase"; - icon_state = "tiled_preview" + name = "staircase" }, /area/antag/mercenary) "bdH" = ( @@ -23139,8 +22521,7 @@ /area/antag/burglar) "bdO" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/structure/bed, /obj/item/bedsheet/syndie, @@ -23173,8 +22554,7 @@ "bdT" = ( /obj/structure/bed/stool/padded, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/unsimulated/floor, /area/centcom/legion) @@ -23182,8 +22562,7 @@ /obj/structure/table/standard, /obj/item/storage/box/fancy/tray, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/effect/floor_decal/corner/paleblue/diagonal{ dir = 8 @@ -23194,8 +22573,7 @@ /area/centcom/legion) "bdV" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/effect/floor_decal/corner/paleblue/diagonal{ dir = 8 @@ -23359,9 +22737,7 @@ /obj/machinery/door/airlock/silver{ name = "Washroom" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "bej" = ( /obj/machinery/light/small{ @@ -23371,9 +22747,7 @@ pixel_x = 3; pixel_y = -1 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "bep" = ( /obj/structure/closet/secure_closet/freezer/kitchen{ @@ -23382,18 +22756,14 @@ /obj/structure/sign/poster{ pixel_y = 32 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "beq" = ( /obj/structure/sink/kitchen{ layer = 3.5; pixel_y = 28 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "ber" = ( /obj/structure/table/reinforced, @@ -23403,18 +22773,14 @@ /obj/structure/sign/poster{ pixel_y = 32 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bes" = ( /obj/structure/sign/poster{ pixel_y = 32 }, /obj/machinery/appliance/cooker/stove, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bet" = ( /obj/structure/table/standard, @@ -23460,9 +22826,9 @@ /area/shuttle/syndicate_elite) "bez" = ( /obj/machinery/door/airlock/highsecurity{ + dir = 1; name = "Cockpit"; - req_access = list(150); - dir = 1 + req_access = list(150) }, /turf/simulated/floor/shuttle/black, /area/shuttle/syndicate_elite) @@ -23729,8 +23095,7 @@ /area/centcom/legion/hangar5) "bfb" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/unsimulated/floor{ dir = 8; @@ -23742,9 +23107,7 @@ id_tag = "tower_stall_1"; name = "Washroom" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "bfd" = ( /turf/simulated/wall/shuttle/dark/corner/underlay{ @@ -23753,27 +23116,21 @@ /area/centcom/legion/hangar5) "bfl" = ( /obj/structure/bed/stool/chair/padded/black, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bfm" = ( -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) +/obj/item/modular_computer/console/preset/command/teleporter/ninja, +/turf/unsimulated/floor, +/area/antag/jockey) "bfn" = ( /obj/structure/table/reinforced, /obj/item/storage/box/drinkingglasses, /obj/item/material/kitchen/utensil/knife, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bfo" = ( /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/effect/landmark{ name = "Nuclear-Bomb" @@ -23789,8 +23146,7 @@ /area/antag/mercenary) "bfq" = ( /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/structure/undies_wardrobe{ anchored = 1 @@ -23809,8 +23165,7 @@ req_access = list(150) }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/simulated/floor/tiled/dark, /area/shuttle/syndicate_elite) @@ -23824,8 +23179,7 @@ /area/shuttle/syndicate_elite) "bfv" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/structure/closet/secure_closet{ req_access = list(150) @@ -24148,9 +23502,7 @@ /obj/machinery/light/small{ dir = 1 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "bfU" = ( /obj/effect/ghostspawpoint{ @@ -24164,9 +23516,7 @@ pixel_y = -22; specialfunctions = 4 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/legion/hangar5) "bfX" = ( /obj/machinery/computer/security/nuclear, @@ -24191,36 +23541,28 @@ "bgc" = ( /obj/structure/table/standard, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/item/reagent_containers/food/drinks/bottle/vodka{ pixel_x = 3; pixel_y = 12 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bgd" = ( /obj/structure/table/standard, /obj/item/pizzabox/meat{ pixel_y = 8 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bge" = ( /obj/structure/table/reinforced, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/item/storage/box/donkpockets, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bgf" = ( /obj/structure/bed, @@ -24247,13 +23589,13 @@ /area/antag/mercenary) "bgi" = ( /obj/machinery/door/airlock/external{ + dir = 4; frequency = 1337; icon_state = "door_locked"; id_tag = "elite_shuttle_hatch_port"; locked = 1; name = "Port Airlock"; - req_access = list(150); - dir = 4 + req_access = list(150) }, /obj/machinery/door/blast/regular/open{ id = "mercelite_port"; @@ -24270,13 +23612,13 @@ /area/shuttle/syndicate_elite) "bgk" = ( /obj/machinery/door/airlock/external{ + dir = 4; frequency = 1337; icon_state = "door_locked"; id_tag = "elite_shuttle_hatch_starboard"; locked = 1; name = "Starboard Airlock"; - req_access = list(150); - dir = 4 + req_access = list(150) }, /obj/machinery/door/blast/regular/open{ id = "mercelite_starboard"; @@ -24438,9 +23780,7 @@ /area/centcom/legion) "bgy" = ( /obj/structure/bed/stool/padded, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor, /area/centcom/legion) "bgz" = ( @@ -24593,8 +23933,7 @@ /area/centcom/legion/hangar5) "bgO" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/simulated/floor/shuttle/black, /area/shuttle/mercenary) @@ -24604,8 +23943,7 @@ /area/shuttle/mercenary) "bgQ" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/simulated/floor/shuttle/black, /area/shuttle/mercenary) @@ -24624,15 +23962,11 @@ /obj/structure/bed/stool/chair/padded/black{ dir = 1 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bgW" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bgX" = ( /turf/simulated/wall/shuttle/unique/mercenary/small{ @@ -24658,8 +23992,7 @@ /area/shuttle/syndicate_elite) "bhb" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/structure/table/steel, /obj/effect/floor_decal/corner/red/diagonal{ @@ -24970,16 +24303,9 @@ /turf/unsimulated/floor/plating, /area/antag/mercenary) "bhJ" = ( -/obj/effect/decal/fake_object{ - icon = 'icons/obj/doors/rapid_pdoor.dmi'; - icon_state = "shutter0"; - layer = 2.4; - name = "shutter" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) +/obj/machinery/teleport/pad/ninja, +/turf/unsimulated/floor, +/area/antag/jockey) "bhK" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "0,5" @@ -25048,11 +24374,11 @@ name = "blast door" }, /obj/machinery/door/airlock/hatch{ + dir = 4; frequency = 1337; id_tag = "burglar_shuttle_hatch"; locked = 1; - req_access = list(150); - dir = 4 + req_access = list(150) }, /obj/machinery/button/remote/blast_door{ dir = 1; @@ -25092,9 +24418,7 @@ /turf/unsimulated/floor, /area/antag/burglar) "bhW" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor{ icon_state = "wood_preview" }, @@ -25121,8 +24445,7 @@ /area/centcom/legion/hangar5) "bhY" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/structure/table/reinforced, /obj/item/storage/box/syringes{ @@ -25211,16 +24534,14 @@ /obj/item/storage/box/gloves, /obj/item/storage/box/masks, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) "bie" = ( /obj/structure/table/reinforced, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/item/storage/box/zipties, /obj/item/storage/box/zipties, @@ -25366,8 +24687,7 @@ "bii" = ( /obj/machinery/vending/security, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) @@ -25396,9 +24716,7 @@ /obj/structure/bed/stool/padded/brown{ dir = 1 }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor{ dir = 8; icon_state = "wood" @@ -25463,8 +24781,7 @@ /area/antag/mercenary) "biy" = ( /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /turf/unsimulated/floor, /area/antag/mercenary) @@ -25489,18 +24806,14 @@ }, /area/antag/mercenary) "biC" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor{ icon_state = "wood_preview" }, /area/antag/mercenary) "biD" = ( /obj/structure/closet/crate/drop/grey, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /obj/random/coin, /turf/unsimulated/floor{ icon_state = "wood_preview" @@ -25554,8 +24867,7 @@ /obj/machinery/door/window/westright, /obj/structure/railing/mapped, /turf/unsimulated/floor{ - dir = 8; - icon_state = "tiled_preview" + dir = 8 }, /area/antag/burglar) "biQ" = ( @@ -25636,8 +24948,7 @@ /obj/machinery/light{ dir = 4; name = "adjusted light fixture"; - pixel_y = -16; - icon_state = "tube_empty" + pixel_y = -16 }, /obj/machinery/vending/cola{ name = "hacked Robust Softdrinks"; @@ -25666,8 +24977,7 @@ /area/shuttle/syndicate_elite) "bjl" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/structure/table/reinforced/steel, /obj/structure/closet/crate/freezer/rations{ @@ -25679,8 +24989,7 @@ /area/shuttle/syndicate_elite) "bjm" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/machinery/recharge_station, /turf/simulated/floor/tiled/dark, @@ -25848,8 +25157,7 @@ pixel_y = 4 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/machinery/recharger/wallcharger{ pixel_x = 4; @@ -25919,8 +25227,7 @@ /obj/structure/table/reinforced, /obj/item/storage/firstaid/o2, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/machinery/recharger/wallcharger{ pixel_x = 4; @@ -26053,8 +25360,7 @@ /area/antag/burglar) "bkf" = ( /turf/unsimulated/floor{ - dir = 4; - icon_state = "tiled_preview" + dir = 4 }, /area/antag/burglar) "bkg" = ( @@ -26071,8 +25377,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/bed/stool/chair, /turf/unsimulated/floor{ - dir = 1; - icon_state = "tiled_preview" + dir = 1 }, /area/antag/raider) "bkj" = ( @@ -26080,8 +25385,7 @@ /obj/structure/bed/stool/chair, /obj/item/storage/briefcase, /turf/unsimulated/floor{ - dir = 1; - icon_state = "tiled_preview" + dir = 1 }, /area/antag/raider) "bkk" = ( @@ -26098,8 +25402,7 @@ name = "adjusted emergency light" }, /turf/unsimulated/floor{ - dir = 5; - icon_state = "tiled_preview" + dir = 5 }, /area/antag/raider) "bkl" = ( @@ -26111,8 +25414,7 @@ /obj/item/paper_bin, /obj/item/pen, /turf/unsimulated/floor{ - dir = 9; - icon_state = "tiled_preview" + dir = 9 }, /area/antag/raider) "bkm" = ( @@ -26121,8 +25423,7 @@ /obj/item/device/taperecorder, /obj/item/device/megaphone/red, /turf/unsimulated/floor{ - dir = 1; - icon_state = "tiled_preview" + dir = 1 }, /area/antag/raider) "bkn" = ( @@ -26131,9 +25432,7 @@ desc = "The old dusty labels on this crate indicate that it was supposed to be shipped long ago."; name = "forgotten shipment" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bko" = ( /turf/unsimulated/wall/riveted, @@ -26182,8 +25481,7 @@ /area/antag/mercenary) "bkw" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/unsimulated/floor{ icon_state = "freezer" @@ -26260,9 +25558,7 @@ "bkI" = ( /obj/item/ore, /obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bkJ" = ( /turf/unsimulated/mineral/asteroid, @@ -26275,9 +25571,7 @@ dir = 1; name = "adjusted emergency light" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bkL" = ( /turf/unsimulated/wall/fakepdoor{ @@ -26292,8 +25586,7 @@ /obj/machinery/door/window/westright, /obj/item/device/hand_labeler, /turf/unsimulated/floor{ - dir = 8; - icon_state = "tiled_preview" + dir = 8 }, /area/antag/raider) "bkP" = ( @@ -26301,17 +25594,14 @@ /obj/structure/bed/stool/chair{ dir = 8 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bkQ" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, /turf/unsimulated/floor{ - dir = 4; - icon_state = "tiled_preview" + dir = 4 }, /area/centcom/distress_prep) "bkR" = ( @@ -26328,8 +25618,7 @@ dir = 8 }, /turf/unsimulated/floor{ - dir = 8; - icon_state = "tiled_preview" + dir = 8 }, /area/centcom/distress_prep) "bkV" = ( @@ -26368,8 +25657,7 @@ /area/shuttle/mercenary) "blb" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/machinery/photocopier, /turf/unsimulated/floor, @@ -26380,8 +25668,7 @@ /area/antag/mercenary) "bld" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/machinery/vending/cigarette/hacked, /turf/unsimulated/floor, @@ -26398,9 +25685,7 @@ /area/antag/mercenary) "blf" = ( /obj/machinery/acting/changer, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor{ icon_state = "freezer" }, @@ -26457,8 +25742,7 @@ /area/shuttle/syndicate_elite) "blo" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/effect/floor_decal/corner/red{ dir = 6 @@ -26514,16 +25798,12 @@ /area/antag/raider) "blw" = ( /obj/item/ore, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "blx" = ( /obj/effect/decal/cleanable/dirt, /obj/item/ore, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bly" = ( /obj/effect/decal/cleanable/dirt, @@ -26532,9 +25812,7 @@ pixel_x = -9; pixel_y = 7 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "blz" = ( /obj/effect/decal/cleanable/dirt, @@ -26543,8 +25821,7 @@ name = "forgotten shipment" }, /turf/unsimulated/floor{ - dir = 4; - icon_state = "tiled_preview" + dir = 4 }, /area/antag/raider) "blA" = ( @@ -26555,8 +25832,7 @@ /obj/structure/table/reinforced, /obj/item/device/camera, /turf/unsimulated/floor{ - dir = 8; - icon_state = "tiled_preview" + dir = 8 }, /area/antag/raider) "blB" = ( @@ -26606,12 +25882,12 @@ /area/antag/mercenary) "blL" = ( /obj/machinery/door/airlock/external{ + dir = 1; frequency = 1337; icon_state = "door_locked"; id_tag = "elite_shuttle_origin_airlock"; locked = 1; - name = "Shuttle Access"; - dir = 1 + name = "Shuttle Access" }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor, @@ -26625,9 +25901,7 @@ layer = 2.8; name = "Pod E" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "blN" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, @@ -26646,9 +25920,7 @@ layer = 2.8; name = "Pod F" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "blP" = ( /obj/effect/floor_decal/industrial/loading/yellow{ @@ -26659,9 +25931,7 @@ layer = 2.8; name = "Pod G" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "blQ" = ( /obj/effect/floor_decal/industrial/loading/yellow{ @@ -26672,9 +25942,7 @@ layer = 2.8; name = "Pod G" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "blS" = ( /turf/space/dynamic, @@ -26696,9 +25964,7 @@ name = "shutter" }, /obj/effect/decal/cleanable/cobweb, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "blW" = ( /obj/effect/decal/cleanable/dirt, @@ -26708,21 +25974,17 @@ layer = 2.4; name = "shutter" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "blX" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/mining{ close_sound_powered = 'sound/machines/airlock_close_force.ogg'; + dir = 1; name = "Cargo Office"; - open_sound_powered = 'sound/machines/airlock_open_force.ogg'; - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" + open_sound_powered = 'sound/machines/airlock_open_force.ogg' }, +/turf/unsimulated/floor, /area/antag/raider) "blY" = ( /obj/structure/table/wood, @@ -26828,8 +26090,7 @@ "bmm" = ( /obj/structure/table/reinforced, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/item/storage/secure/briefcase{ pixel_y = 12 @@ -26841,8 +26102,7 @@ /obj/structure/table/reinforced, /obj/item/pinpointer/nukeop, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/simulated/floor/shuttle/black, /area/shuttle/mercenary) @@ -26937,8 +26197,7 @@ /area/antag/raider) "bmD" = ( /turf/unsimulated/floor{ - dir = 4; - icon_state = "tiled_preview" + dir = 4 }, /area/antag/raider) "bmE" = ( @@ -26952,17 +26211,13 @@ desc = "An old dusty rifle, once the pride of the bar."; pixel_y = 26 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bmG" = ( /obj/structure/sign/double/barsign{ pixel_y = 32 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bmH" = ( /obj/item/ammo_magazine/d762{ @@ -26980,9 +26235,7 @@ /obj/structure/table/wood{ table_reinf = "wood" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bmI" = ( /obj/machinery/chemical_dispenser/bar_alc/full{ @@ -26991,9 +26244,7 @@ /obj/structure/table/wood{ table_reinf = "wood" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bmJ" = ( /obj/machinery/chemical_dispenser/bar_soft/full{ @@ -27002,9 +26253,7 @@ /obj/structure/table/wood{ table_reinf = "wood" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bmK" = ( /obj/item/storage/box/drinkingglasses{ @@ -27014,9 +26263,7 @@ /obj/structure/table/wood{ table_reinf = "wood" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bmL" = ( /obj/structure/sink/kitchen{ @@ -27027,24 +26274,18 @@ /obj/machinery/light/small{ dir = 4 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bmN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/undies_wardrobe{ anchored = 1 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bmP" = ( /obj/structure/reagent_dispensers/watertank, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bmQ" = ( /obj/structure/sign/nosmoking_1{ @@ -27052,9 +26293,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/lube, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bmR" = ( /obj/structure/lattice, @@ -27148,8 +26387,7 @@ invisibility = 101; name = "adjusted light fixture"; pixel_x = 16; - pixel_y = 32; - icon_state = "tube_empty" + pixel_y = 32 }, /turf/unsimulated/floor/plating, /area/centcom/distress_prep) @@ -27219,12 +26457,9 @@ name = "turret" }, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" + dir = 1 }, +/turf/unsimulated/floor, /area/antag/mercenary) "bnq" = ( /obj/effect/floor_decal/industrial/warning{ @@ -27242,31 +26477,24 @@ /obj/structure/bed/stool/chair{ name = "uncomfortable chair" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bnt" = ( /obj/structure/window/reinforced/crescent{ dir = 4 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bnu" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/machinery/portable_atmospherics/canister/oxygen, /turf/unsimulated/floor, /area/antag/mercenary) "bnv" = ( /obj/effect/decal/cleanable/liquid_fuel, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bnw" = ( /obj/effect/decal/cleanable/dirt, @@ -27278,29 +26506,21 @@ /obj/machinery/light/small{ dir = 8 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bny" = ( -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bnz" = ( /obj/effect/landmark{ name = "raiderstart" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bnA" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/large_stock_marker, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bnB" = ( /obj/machinery/door/airlock/centcom{ @@ -27358,9 +26578,7 @@ layer = 2.4; name = "conveyor" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bnG" = ( /obj/item/ore{ @@ -27406,8 +26624,7 @@ brightness_range = 3; dir = 8; name = "adjusted light fixture"; - pixel_y = 4; - icon_state = "tube_empty" + pixel_y = 4 }, /turf/unsimulated/floor{ icon_state = "freezer" @@ -27415,17 +26632,17 @@ /area/centcom/distress_prep) "bnO" = ( /obj/machinery/door/airlock/hatch{ + dir = 1; name = "Workshop"; - req_access = list(150); - dir = 1 + req_access = list(150) }, /turf/simulated/floor/shuttle/black, /area/shuttle/mercenary) "bnR" = ( /obj/machinery/door/airlock/highsecurity{ + dir = 1; name = "Crew Cabin"; - req_access = list(150); - dir = 1 + req_access = list(150) }, /turf/simulated/floor/shuttle/black, /area/shuttle/mercenary) @@ -27441,15 +26658,11 @@ pixel_x = -25; pixel_y = -5 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bob" = ( /obj/machinery/recharge_station, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "boc" = ( /obj/item/storage/box/zipties{ @@ -27475,14 +26688,11 @@ pixel_y = 6 }, /obj/structure/table/reinforced/steel, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bod" = ( /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/item/clothing/accessory/storage/bandolier{ pixel_x = -8 @@ -27564,9 +26774,7 @@ pixel_x = 6; pixel_y = 6 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "boe" = ( /obj/item/clothing/mask/gas/syndicate{ @@ -27634,9 +26842,7 @@ pixel_y = -6 }, /obj/structure/table/reinforced/steel, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bof" = ( /obj/item/clothing/accessory/storage/pouches/black{ @@ -27687,14 +26893,11 @@ pixel_x = 12 }, /obj/structure/table/reinforced/steel, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bog" = ( /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/structure/table/reinforced/steel, /obj/item/storage/belt/military{ @@ -27769,9 +26972,7 @@ pixel_x = 16; pixel_y = 5 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "boh" = ( /obj/item/clothing/accessory/holster/hip, @@ -27787,9 +26988,7 @@ /obj/item/clothing/accessory/holster/thigh/brown, /obj/item/clothing/accessory/holster/thigh/brown, /obj/structure/table/reinforced/steel, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "boi" = ( /obj/machinery/button/remote/blast_door{ @@ -27800,9 +26999,7 @@ pixel_y = -8; req_access = list(150) }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "boj" = ( /obj/structure/sign/directions/security{ @@ -27810,18 +27007,14 @@ pixel_x = 32; pixel_y = -8 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bok" = ( /obj/machinery/door/window/brigdoor/southleft{ name = "holding cell"; req_access = list(150) }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bol" = ( /obj/structure/window/reinforced/crescent{ @@ -27829,9 +27022,7 @@ }, /obj/structure/window/reinforced/crescent, /obj/effect/floor_decal/sign/a, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bom" = ( /obj/structure/window/reinforced/crescent{ @@ -27839,9 +27030,7 @@ }, /obj/structure/window/reinforced/crescent, /obj/effect/floor_decal/sign/b, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bon" = ( /obj/structure/window/reinforced/crescent{ @@ -27849,14 +27038,10 @@ }, /obj/structure/window/reinforced/crescent, /obj/effect/floor_decal/sign/c, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "boo" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/unsimulated/floor, /area/antag/mercenary) "bop" = ( @@ -27874,9 +27059,7 @@ "bos" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/liquid_fuel, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bot" = ( /obj/effect/decal/cleanable/dirt, @@ -27884,9 +27067,7 @@ /obj/structure/bed/stool/chair{ dir = 8 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bou" = ( /obj/machinery/computer/slot_machine, @@ -27905,9 +27086,7 @@ /area/antag/raider) "bow" = ( /obj/machinery/door/airlock/glass, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "box" = ( /obj/effect/decal/fake_object{ @@ -27921,9 +27100,7 @@ }, /obj/item/material/ashtray, /obj/structure/table/reinforced, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "boy" = ( /obj/effect/decal/fake_object{ @@ -27933,9 +27110,7 @@ name = "shutter" }, /obj/structure/table/reinforced, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "boz" = ( /obj/effect/decal/fake_object{ @@ -27948,9 +27123,7 @@ pixel_y = 3 }, /obj/structure/table/reinforced, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "boA" = ( /obj/effect/decal/fake_object{ @@ -27964,9 +27137,7 @@ pixel_x = 14; pixel_y = 10 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "boB" = ( /obj/effect/decal/fake_object{ @@ -27977,9 +27148,7 @@ }, /obj/item/flame/lighter/zippo, /obj/structure/table/reinforced, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "boC" = ( /obj/item/storage/box/fancy/candle_box{ @@ -27995,28 +27164,20 @@ dir = 4 }, /obj/structure/table/reinforced, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "boD" = ( /obj/machinery/acting/changer, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "boE" = ( /obj/structure/window/reinforced/crescent, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "boF" = ( /obj/structure/window/reinforced/crescent, /obj/item/material/shard, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "boG" = ( /obj/structure/urinal{ @@ -28045,8 +27206,7 @@ /obj/machinery/recharge_station, /obj/effect/floor_decal/corner/red/diagonal, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) @@ -28069,8 +27229,7 @@ /area/shuttle/mercenary) "boP" = ( /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/machinery/porta_turret/ballistic{ cover_set = 1; @@ -28091,11 +27250,11 @@ /area/shuttle/mercenary) "boT" = ( /obj/machinery/door/airlock/external{ + dir = 4; frequency = 1337; id_tag = "merc_shuttle_inner"; name = "Ship External Access"; - req_access = list(0); - dir = 4 + req_access = list(0) }, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/button/remote/blast_door{ @@ -28157,11 +27316,11 @@ /area/shuttle/mercenary) "boX" = ( /obj/machinery/door/airlock/external{ + dir = 4; frequency = 1337; id_tag = "merc_shuttle_outer"; name = "Ship External Access"; - req_access = list(150); - dir = 4 + req_access = list(150) }, /obj/machinery/door/blast/regular{ density = 0; @@ -28181,10 +27340,10 @@ /area/shuttle/mercenary) "boY" = ( /obj/machinery/door/airlock/external{ + dir = 4; frequency = 1337; id_tag = "merc_base_hatch"; - req_access = list(150); - dir = 4 + req_access = list(150) }, /turf/unsimulated/floor, /area/antag/mercenary) @@ -28243,9 +27402,9 @@ /area/antag/mercenary) "bpg" = ( /obj/machinery/door/airlock/centcom{ + dir = 4; name = "Holding Cells"; - req_access = list(150); - dir = 4 + req_access = list(150) }, /turf/unsimulated/floor, /area/antag/mercenary) @@ -28342,8 +27501,7 @@ name = "ruptured phoron canister" }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor{ icon_state = "floorscorched2" @@ -28355,29 +27513,22 @@ desc = "The old dusty labels on this crate indicate that it was supposed to be shipped long ago."; name = "forgotten shipment" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bpt" = ( /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bpu" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/crate/loot{ desc = "The old dusty labels on this crate indicate that it was supposed to be shipped long ago."; name = "forgotten shipment" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bpv" = ( /obj/structure/lattice, @@ -28436,20 +27587,20 @@ /area/shuttle/mercenary) "bpD" = ( /obj/machinery/door/airlock/hatch{ + dir = 4; name = "Workshop"; - req_access = list(150); - dir = 4 + req_access = list(150) }, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) "bpE" = ( /obj/machinery/door/airlock/external{ + dir = 4; frequency = 1337; id_tag = "merc_shuttle_inner"; name = "Ship External Access"; - req_access = list(0); - dir = 4 + req_access = list(0) }, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/access_button{ @@ -28488,11 +27639,11 @@ /area/shuttle/mercenary) "bpH" = ( /obj/machinery/door/airlock/external{ + dir = 4; frequency = 1337; id_tag = "merc_shuttle_outer"; name = "Ship External Access"; - req_access = list(150); - dir = 4 + req_access = list(150) }, /obj/machinery/door/blast/regular{ density = 0; @@ -28515,10 +27666,10 @@ /area/shuttle/mercenary) "bpI" = ( /obj/machinery/door/airlock/external{ + dir = 4; frequency = 1337; id_tag = "merc_base_hatch"; - req_access = list(150); - dir = 4 + req_access = list(150) }, /obj/structure/window/reinforced/crescent{ dir = 1; @@ -28576,26 +27727,21 @@ /turf/unsimulated/floor, /area/antag/mercenary) "bpR" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /obj/effect/floor_decal/industrial/warning, /turf/unsimulated/floor, /area/antag/mercenary) "bpS" = ( /obj/structure/undies_wardrobe, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/effect/floor_decal/industrial/warning, /turf/unsimulated/floor, /area/antag/mercenary) "bpT" = ( /obj/structure/bed/stool/chair, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bpU" = ( /obj/effect/decal/cleanable/dirt, @@ -28605,27 +27751,20 @@ pixel_y = 23; req_access = list(150) }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bpV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/blocker/steel, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bpW" = ( /obj/effect/decal/cleanable/cobweb2, /obj/machinery/door/blast/odin{ - id = "hideout_access"; - name = "blast door" + id = "hideout_access" }, /obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bpX" = ( /obj/effect/decal/cleanable/cobweb, @@ -28633,8 +27772,7 @@ dir = 4 }, /turf/unsimulated/floor{ - dir = 4; - icon_state = "tiled_preview" + dir = 4 }, /area/antag/raider) "bpY" = ( @@ -28642,18 +27780,14 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bpZ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bqa" = ( /obj/machinery/door/airlock/glass{ @@ -28679,9 +27813,7 @@ "bqd" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/cigbutt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bqe" = ( /obj/effect/floor_decal/industrial/warning{ @@ -28696,11 +27828,11 @@ }, /obj/machinery/door/airlock/external{ close_sound_powered = 'sound/machines/airlock_close_force.ogg'; + dir = 4; glass = 1; name = "airlock"; opacity = 0; - open_sound_powered = 'sound/machines/airlock_open_force.ogg'; - dir = 4 + open_sound_powered = 'sound/machines/airlock_open_force.ogg' }, /turf/unsimulated/floor/plating, /area/antag/raider) @@ -28781,7 +27913,6 @@ "bqj" = ( /obj/machinery/vending/cola{ density = 0; - layer = 2.99; name = "Free Robust Softdrinks"; pixel_x = -7; pixel_y = 20; @@ -28798,7 +27929,6 @@ "bqk" = ( /obj/machinery/vending/snack{ density = 0; - layer = 2.99; name = "Free Chocolate Corp"; pixel_x = -14; pixel_y = 20; @@ -28824,8 +27954,7 @@ /area/centcom/distress_prep) "bqm" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/random/pottedplant{ pixel_y = 8 @@ -28870,8 +27999,7 @@ /obj/structure/table/reinforced, /obj/machinery/door/blast/shutters/open{ dir = 4; - id = "mercworkshop"; - name = "shutter" + id = "mercworkshop" }, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled/dark, @@ -28905,26 +28033,24 @@ /area/template_noop) "bqA" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/machinery/mech_recharger, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bqB" = ( -/obj/structure/dispenser/oxygen, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" +/obj/effect/floor_decal/corner/black/diagonal{ + dir = 4 }, -/area/antag/mercenary) +/obj/effect/floor_decal/corner/black/diagonal{ + dir = 8 + }, +/turf/unsimulated/floor, +/area/antag/jockey) "bqC" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bqD" = ( /obj/effect/floor_decal/spline/plain{ @@ -28974,12 +28100,9 @@ }, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" + dir = 4 }, +/turf/unsimulated/floor, /area/antag/mercenary) "bqG" = ( /obj/effect/floor_decal/industrial/outline/yellow, @@ -29001,8 +28124,7 @@ pixel_y = 4 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor, /area/antag/mercenary) @@ -29019,76 +28141,58 @@ name = "surveillance camera"; pixel_y = -18 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bqI" = ( /obj/effect/decal/cleanable/cobweb, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bqJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/steel, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bqK" = ( /obj/machinery/door/blast/odin{ - id = "hideout_access"; - name = "blast door" + id = "hideout_access" }, /obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bqL" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, /turf/unsimulated/floor{ - dir = 4; - icon_state = "tiled_preview" + dir = 4 }, /area/antag/raider) "bqM" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bqN" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bqO" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bqP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/warning, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bqQ" = ( /obj/machinery/door/airlock/glass{ - welded = 1; - dir = 4 + dir = 4; + welded = 1 }, /obj/structure/curtain/open/bed{ icon_state = "closed"; @@ -29122,22 +28226,18 @@ id = "hideout_shipping"; pixel_y = -4 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bqY" = ( /obj/machinery/door/airlock/external{ close_sound_powered = 'sound/machines/airlock_close_force.ogg'; + dir = 4; glass = 1; name = "airlock"; opacity = 0; - open_sound_powered = 'sound/machines/airlock_open_force.ogg'; - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" + open_sound_powered = 'sound/machines/airlock_open_force.ogg' }, +/turf/unsimulated/floor, /area/antag/raider) "bqZ" = ( /obj/structure/table/rack, @@ -29147,9 +28247,7 @@ /obj/item/device/suit_cooling_unit, /obj/item/rig_module/cooling_unit, /obj/item/rig_module/cooling_unit, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/distress_prep) "bra" = ( /obj/structure/table/rack, @@ -29160,9 +28258,7 @@ /obj/item/storage/belt/utility/very_full, /obj/item/storage/belt/utility/very_full, /obj/item/storage/belt/utility/very_full, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/distress_prep) "brb" = ( /obj/structure/table/rack, @@ -29187,8 +28283,7 @@ /obj/machinery/light{ dir = 1; name = "adjusted light fixture"; - pixel_x = -16; - icon_state = "tube_empty" + pixel_x = -16 }, /obj/item/clothing/mask/gas/half, /obj/item/clothing/mask/gas/half, @@ -29200,9 +28295,7 @@ /obj/item/clothing/mask/gas/alt, /obj/item/clothing/mask/gas/alt, /obj/item/clothing/mask/gas/alt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/distress_prep) "brc" = ( /obj/structure/table/rack, @@ -29210,9 +28303,7 @@ /obj/item/clothing/shoes/magboots, /obj/item/clothing/shoes/magboots, /obj/item/clothing/shoes/magboots, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/distress_prep) "brd" = ( /obj/structure/dispenser/oxygen{ @@ -29272,8 +28363,7 @@ /obj/structure/table/reinforced, /obj/machinery/door/blast/shutters/open{ dir = 4; - id = "mercworkshop"; - name = "shutter" + id = "mercworkshop" }, /obj/effect/floor_decal/corner/red/diagonal, /obj/machinery/door/window/brigdoor/eastleft{ @@ -29288,8 +28378,7 @@ }, /obj/structure/bed/stool/chair/shuttle, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) @@ -29336,8 +28425,7 @@ pixel_x = 6 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/item/storage/firstaid/regular{ layer = 3.01; @@ -29348,8 +28436,7 @@ "brs" = ( /obj/structure/table/rack, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/item/tank/jetpack/carbondioxide{ pixel_y = 6 @@ -29376,9 +28463,7 @@ pixel_x = -5 }, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "brt" = ( /obj/structure/table/rack, @@ -29393,9 +28478,7 @@ /obj/item/gun/projectile/pistol, /obj/item/gun/projectile/pistol, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bru" = ( /obj/effect/floor_decal/industrial/outline/yellow, @@ -29404,8 +28487,7 @@ /area/antag/mercenary) "brw" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/effect/decal/fake_object{ desc = "An automated turret."; @@ -29414,9 +28496,7 @@ layer = 3.02; name = "turret" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "brx" = ( /obj/effect/decal/fake_object{ @@ -29427,12 +28507,9 @@ name = "turret" }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" + dir = 8 }, +/turf/unsimulated/floor, /area/antag/mercenary) "bry" = ( /obj/effect/decal/fake_object{ @@ -29443,12 +28520,9 @@ name = "turret" }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" + dir = 4 }, +/turf/unsimulated/floor, /area/antag/mercenary) "brA" = ( /obj/structure/lattice/catwalk/indoor/grate/light/old{ @@ -29465,17 +28539,13 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "brC" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "brD" = ( /obj/structure/lattice/catwalk/indoor/grate/light/old{ @@ -29490,8 +28560,7 @@ dir = 4 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /turf/unsimulated/floor{ icon_state = "wood" @@ -29579,8 +28648,7 @@ dir = 8 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/unsimulated/floor{ icon_state = "wood" @@ -29619,25 +28687,19 @@ /obj/effect/floor_decal/industrial/loading/yellow{ dir = 8 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "brR" = ( /obj/structure/closet/crate/loot{ desc = "The old dusty labels on this crate indicate that it was supposed to be shipped long ago."; name = "forgotten shipment" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "brS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "brT" = ( /obj/effect/decal/cleanable/dirt, @@ -29646,18 +28708,14 @@ desc = "The old dusty labels on this crate indicate that it was supposed to be shipped long ago."; name = "forgotten shipment" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "brU" = ( /obj/random/vendor{ scan_id = 0 }, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "brV" = ( /obj/structure/lattice, @@ -29770,8 +28828,7 @@ /obj/structure/table/reinforced, /obj/machinery/door/blast/shutters/open{ dir = 4; - id = "mercworkshop"; - name = "shutter" + id = "mercworkshop" }, /obj/effect/floor_decal/corner/red/diagonal, /obj/item/screwdriver, @@ -29782,9 +28839,9 @@ /area/shuttle/mercenary) "bsf" = ( /obj/machinery/door/airlock/medical{ + dir = 4; name = "Infirmary"; - req_access = list(150); - dir = 4 + req_access = list(150) }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) @@ -29832,9 +28889,7 @@ /obj/item/storage/backpack/satchel, /obj/item/storage/backpack/satchel, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bsm" = ( /obj/effect/floor_decal/spline/plain{ @@ -29857,8 +28912,7 @@ "bso" = ( /obj/structure/table/rack, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/item/device/suit_cooling_unit, /obj/item/device/suit_cooling_unit, @@ -29871,16 +28925,12 @@ /obj/item/tank/emergency_oxygen/double, /obj/item/tank/emergency_oxygen/double, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bsp" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bsq" = ( /obj/structure/table/rack, @@ -29920,13 +28970,10 @@ /turf/unsimulated/floor, /area/antag/mercenary) "bsr" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) +/obj/structure/table/rack, +/obj/effect/map_effect/mecha_part_spawner/sensors, +/turf/unsimulated/floor, +/area/antag/jockey) "bss" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -29940,9 +28987,7 @@ name = "blast door" }, /obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bsu" = ( /obj/structure/sign/directions/civ{ @@ -29950,9 +28995,7 @@ pixel_x = 32; pixel_y = -9 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bsv" = ( /obj/structure/window/reinforced/crescent, @@ -29961,17 +29004,13 @@ /obj/machinery/light/small/emergency{ dir = 8 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bsw" = ( /obj/structure/window/reinforced/crescent, /obj/effect/decal/cleanable/dirt, /obj/structure/table/steel, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bsx" = ( /obj/structure/window/reinforced/crescent, @@ -29979,15 +29018,12 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bsy" = ( /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor{ - dir = 1; - icon_state = "tiled_preview" + dir = 1 }, /area/antag/raider) "bsz" = ( @@ -30025,30 +29061,28 @@ /area/antag/raider) "bsD" = ( /obj/machinery/door/airlock/external{ + dir = 1; frequency = 1332; icon_state = "door_locked"; id_tag = "pirate_hideout_door"; locked = 1; name = "hideout airlock"; - req_access = list(110); - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" + req_access = list(110) }, +/turf/unsimulated/floor, /area/antag/raider) "bsE" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, /obj/machinery/door/airlock/external{ + dir = 1; frequency = 1332; icon_state = "door_locked"; id_tag = "pirate_hideout_door"; locked = 1; name = "hideout airlock"; - req_access = list(110); - dir = 1 + req_access = list(110) }, /obj/machinery/conveyor{ id = "hideout_shipping" @@ -30059,8 +29093,7 @@ /obj/machinery/light{ dir = 8; name = "adjusted light fixture"; - pixel_y = 16; - icon_state = "tube_empty" + pixel_y = 16 }, /turf/unsimulated/floor, /area/centcom/distress_prep) @@ -30074,9 +29107,7 @@ /obj/item/device/multitool, /obj/item/device/multitool, /obj/item/device/multitool, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) @@ -30105,9 +29136,7 @@ pixel_y = -22; req_access = null }, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) @@ -30120,8 +29149,7 @@ /obj/machinery/recharger, /obj/machinery/door/blast/shutters/open{ dir = 4; - id = "mercworkshop"; - name = "shutter" + id = "mercworkshop" }, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled/dark, @@ -30133,9 +29161,7 @@ /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) "bsM" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /obj/machinery/porta_turret/ballistic{ cover_set = 1; health = 120; @@ -30267,9 +29293,7 @@ /obj/item/clothing/head/beret/corporate/idris, /obj/item/clothing/head/beret/corporate/idris, /obj/item/clothing/head/beret/corporate/idris, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bsT" = ( /obj/effect/floor_decal/spline/plain{ @@ -30299,18 +29323,16 @@ pixel_y = -2 }, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bsX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/floor_decal/corner/black/diagonal, +/obj/effect/floor_decal/corner/black/diagonal{ + dir = 1 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) +/turf/unsimulated/floor, +/area/antag/jockey) "bsY" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -30349,8 +29371,7 @@ "btd" = ( /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor{ - dir = 4; - icon_state = "tiled_preview" + dir = 4 }, /area/antag/raider) "bte" = ( @@ -30361,9 +29382,7 @@ name = "dead plant"; pixel_x = 6 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "btf" = ( /obj/structure/lattice, @@ -30377,18 +29396,14 @@ dir = 8 }, /obj/item/stack/rods, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bth" = ( /obj/structure/window/reinforced/crescent{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bti" = ( /obj/structure/lattice, @@ -30399,9 +29414,7 @@ /area/antag/raider) "btj" = ( /obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "btk" = ( /obj/structure/bed/stool/chair/padded/brown{ @@ -30433,9 +29446,7 @@ /obj/structure/window/reinforced/crescent{ dir = 8 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "bto" = ( /obj/structure/window/reinforced/crescent{ @@ -30463,30 +29474,25 @@ /area/antag/raider) "btq" = ( /obj/effect/landmark/distress_team_equipment, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/centcom/distress_prep) "btr" = ( /obj/machinery/light{ name = "adjusted light fixture"; - pixel_x = 16; - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" + pixel_x = 16 }, +/turf/unsimulated/floor, /area/centcom/distress_prep) "bts" = ( -/turf/unsimulated/floor{ - icon_state = "tiled_preview" +/obj/effect/floor_decal/corner/black{ + dir = 10 }, -/area/centcom/distress_prep) +/turf/unsimulated/floor, +/area/antag/jockey) "btt" = ( /obj/machinery/light{ name = "adjusted light fixture"; - pixel_x = 16; - icon_state = "tube_empty" + pixel_x = 16 }, /obj/structure/table/rack{ pixel_y = -3 @@ -30532,8 +29538,7 @@ /area/centcom/distress_prep) "btv" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/random/pottedplant, /turf/unsimulated/floor{ @@ -30543,18 +29548,18 @@ /area/centcom/distress_prep) "btz" = ( /obj/machinery/door/airlock/highsecurity{ + dir = 1; name = "Strongroom"; - req_access = list(150); - dir = 1 + req_access = list(150) }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/reinforced, /area/shuttle/mercenary) "btC" = ( /obj/machinery/door/airlock/hatch{ + dir = 1; name = "Maintenance"; - req_access = list(150); - dir = 1 + req_access = list(150) }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) @@ -30600,13 +29605,10 @@ "btJ" = ( /obj/machinery/acting/changer, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "btK" = ( /obj/structure/table/rack, @@ -30632,9 +29634,7 @@ pixel_x = -6 }, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "btL" = ( /obj/effect/decal/fake_object{ @@ -30644,35 +29644,29 @@ layer = 3.02; name = "turret" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "btM" = ( -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/light/small/emergency{ dir = 8 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, -/area/antag/mercenary) +/obj/structure/table/rack, +/obj/effect/map_effect/mecha_part_spawner/propulsion, +/turf/unsimulated/floor, +/area/antag/jockey) "btN" = ( /obj/structure/window/reinforced/crescent{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "btO" = ( /obj/structure/window/reinforced/crescent{ dir = 4 }, /obj/item/material/shard, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/raider) "btP" = ( /obj/structure/window/reinforced/crescent{ @@ -30750,9 +29744,9 @@ dir = 4 }, /obj/machinery/door/airlock/hatch{ + dir = 4; name = "Maintenance"; - req_access = list(150); - dir = 4 + req_access = list(150) }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) @@ -30815,8 +29809,7 @@ req_access = null }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/item/reagent_containers/glass/bottle/peridaxon{ pixel_x = 8; @@ -30903,9 +29896,7 @@ /obj/item/clothing/under/suit_jacket/charcoal, /obj/item/clothing/under/suit_jacket/charcoal, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "buj" = ( /obj/effect/floor_decal/spline/plain{ @@ -30930,8 +29921,7 @@ dir = 1 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/structure/closet/crate/drop/grey, /turf/unsimulated/floor, @@ -30951,8 +29941,8 @@ /area/antag/raider) "buv" = ( /obj/machinery/door/airlock/centcom{ - name = "Dock"; - dir = 1 + dir = 1; + name = "Dock" }, /turf/unsimulated/floor, /area/centcom/distress_prep) @@ -31009,8 +29999,7 @@ dir = 8 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/structure/closet/crate/medical, /obj/item/reagent_containers/inhaler/pneumalin, @@ -31100,9 +30089,7 @@ /obj/item/clothing/under/rank/sol, /obj/item/clothing/under/rank/sol, /obj/item/clothing/under/rank/sol, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "buP" = ( /obj/effect/floor_decal/spline/plain{ @@ -31120,9 +30107,7 @@ /area/antag/mercenary) "buR" = ( /obj/structure/table/rack, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /obj/item/clothing/mask/balaclava/grey{ pixel_x = -6; pixel_y = 8 @@ -31188,9 +30173,7 @@ pixel_y = -5 }, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "buS" = ( /obj/structure/table/rack, @@ -31202,9 +30185,7 @@ pixel_y = -2 }, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "buT" = ( /obj/structure/table/rack, @@ -31219,9 +30200,7 @@ /obj/item/gun/energy/gun, /obj/item/gun/energy/gun, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "buU" = ( /obj/structure/table/rack, @@ -31262,12 +30241,8 @@ pixel_x = 9 }, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - icon_state = "tube_empty" - }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/obj/machinery/light, +/turf/unsimulated/floor, /area/antag/mercenary) "buV" = ( /obj/structure/table/rack, @@ -31282,9 +30257,7 @@ /obj/item/gun/projectile/automatic/c20r, /obj/item/gun/projectile/automatic/c20r, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "buW" = ( /obj/structure/table/rack, @@ -31337,9 +30310,7 @@ pixel_x = -8; pixel_y = 7 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "buX" = ( /obj/structure/table/rack, @@ -31350,9 +30321,7 @@ }, /obj/item/storage/box/flashbangs, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "buY" = ( /turf/unsimulated/mineral/asteroid, @@ -31368,11 +30337,11 @@ /area/antag/ninja) "bvn" = ( /obj/machinery/door/airlock/hatch{ + dir = 1; frequency = 1332; id_tag = "raider_northeast_lock"; locked = 1; - req_access = list(150); - dir = 1 + req_access = list(150) }, /obj/machinery/access_button{ command = "cycle_exterior"; @@ -31411,8 +30380,7 @@ /area/centcom/distress_prep) "bvs" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/effect/floor_decal/corner/paleblue{ dir = 6 @@ -31431,9 +30399,7 @@ name = "blast door" }, /obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bvM" = ( /obj/effect/decal/fake_object/light_source/invisible, @@ -31522,8 +30488,7 @@ /area/centcom/distress_prep) "bwj" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + dir = 8 }, /obj/effect/floor_decal/corner/paleblue{ dir = 9 @@ -31546,16 +30511,12 @@ /obj/item/clothing/suit/space/void/merc, /obj/item/clothing/head/helmet/space/void/merc, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bwD" = ( /obj/structure/closet/emcloset/offworlder, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bwE" = ( /obj/structure/table/rack, @@ -31564,13 +30525,10 @@ /obj/item/clothing/mask/breath, /obj/item/clothing/head/helmet/space/syndicate/black, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bwF" = ( /obj/structure/table/rack, @@ -31579,9 +30537,7 @@ /obj/item/clothing/mask/breath, /obj/item/clothing/head/helmet/space/syndicate/black/red, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bwG" = ( /obj/structure/table/rack, @@ -31590,9 +30546,7 @@ /obj/item/clothing/mask/breath, /obj/item/clothing/head/helmet/space/syndicate/black/med, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bwH" = ( /obj/vehicle/droppod/syndie{ @@ -31808,9 +30762,7 @@ /obj/effect/floor_decal/industrial/loading/yellow{ dir = 1 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bxy" = ( /obj/machinery/door/blast/odin/open{ @@ -31821,9 +30773,7 @@ /obj/effect/floor_decal/industrial/loading/yellow{ dir = 1 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bxz" = ( /obj/effect/decal/fake_object{ @@ -31931,11 +30881,11 @@ /area/shuttle/skipjack) "bxU" = ( /obj/machinery/door/airlock/hatch{ + dir = 1; frequency = 1332; id_tag = "raider_southeast_lock"; locked = 1; - req_access = list(150); - dir = 1 + req_access = list(150) }, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/plating, @@ -31950,8 +30900,7 @@ dir = 4 }, /turf/unsimulated/floor{ - dir = 4; - icon_state = "tiled_preview" + dir = 4 }, /area/antag/mercenary) "bya" = ( @@ -31995,9 +30944,9 @@ /area/antag/ninja) "byi" = ( /obj/machinery/door/airlock/hatch{ + dir = 1; name = "Captain's Quarters"; - req_access = list(150); - dir = 1 + req_access = list(150) }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood, @@ -32100,9 +31049,7 @@ /turf/unsimulated/floor, /area/centcom/distress_prep) "byC" = ( -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /obj/effect/floor_decal/corner/paleblue{ dir = 10 }, @@ -32124,8 +31071,7 @@ "byF" = ( /obj/effect/floor_decal/spline/plain, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/unsimulated/floor, /area/antag/mercenary) @@ -32261,23 +31207,17 @@ /area/shuttle/skipjack) "bzf" = ( /obj/structure/table/rack, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /obj/item/rig/merc/empty, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bzg" = ( /obj/machinery/suit_cycler/syndicate{ locked = 0 }, /obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bzh" = ( /obj/structure/table/rack, @@ -32286,9 +31226,7 @@ /obj/item/clothing/mask/breath, /obj/item/clothing/head/helmet/space/syndicate/black/green, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bzi" = ( /obj/structure/table/rack, @@ -32297,9 +31235,7 @@ /obj/item/clothing/mask/breath, /obj/item/clothing/head/helmet/space/syndicate/black/blue, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bzj" = ( /obj/structure/table/rack, @@ -32308,23 +31244,17 @@ /obj/item/clothing/mask/breath, /obj/item/clothing/head/helmet/space/syndicate/black/orange, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bzk" = ( /obj/structure/table/rack, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /obj/item/clothing/shoes/magboots, /obj/item/clothing/suit/space/syndicate/black/engie, /obj/item/clothing/mask/breath, /obj/item/clothing/head/helmet/space/syndicate/black/engie, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bzl" = ( /obj/machinery/door/blast/odin/open{ @@ -32333,9 +31263,7 @@ name = "Pod C" }, /obj/effect/floor_decal/industrial/loading/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bzm" = ( /obj/machinery/door/blast/odin/open{ @@ -32344,9 +31272,7 @@ name = "Pod D" }, /obj/effect/floor_decal/industrial/loading/yellow, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/mercenary) "bzn" = ( /obj/effect/decal/fake_object{ @@ -32433,8 +31359,8 @@ /area/shuttle/skipjack) "bzB" = ( /obj/machinery/door/airlock/hatch{ - req_access = list(150); - dir = 1 + dir = 1; + req_access = list(150) }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, @@ -32642,12 +31568,12 @@ /area/shuttle/skipjack) "bAk" = ( /obj/machinery/door/airlock/external{ + dir = 1; frequency = 1337; icon_state = "door_locked"; id_tag = "distress_origin_airlock"; locked = 1; - name = "Barracks"; - dir = 1 + name = "Barracks" }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor, @@ -32656,28 +31582,20 @@ /obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/ninja) "bAm" = ( -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/ninja) "bAn" = ( /obj/machinery/acting/changer, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/ninja) "bAo" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/ninja) "bAr" = ( /obj/machinery/light/small{ @@ -32697,8 +31615,8 @@ /area/shuttle/skipjack) "bAt" = ( /obj/machinery/door/airlock/hatch{ - req_access = list(150); - dir = 4 + dir = 4; + req_access = list(150) }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood, @@ -32740,8 +31658,8 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/lattice/catwalk/indoor/grate, /obj/machinery/door/airlock/hatch{ - req_access = list(150); - dir = 4 + dir = 4; + req_access = list(150) }, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -32788,8 +31706,7 @@ /area/centcom/distress_prep) "bAG" = ( /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /turf/unsimulated/floor/plating, /area/centcom/distress_prep) @@ -32811,27 +31728,21 @@ /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/ninja) "bAL" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 }, /obj/effect/decal/fake_object/light_source/invisible, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/ninja) "bAM" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, /obj/effect/decal/fake_object/light_source/invisible, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/ninja) "bAN" = ( /obj/effect/floor_decal/industrial/warning{ @@ -32843,9 +31754,7 @@ icon_state = "drop_crate-grey"; name = "underwear crate" }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/ninja) "bAW" = ( /obj/effect/floor_decal/corner/red{ @@ -32926,9 +31835,7 @@ /obj/item/rig_module/cooling_unit, /obj/item/rig_module/cooling_unit, /obj/structure/table/standard, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/ninja) "bBl" = ( /obj/machinery/vending/snack{ @@ -32936,9 +31843,7 @@ prices = list(); random_itemcount = 0 }, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/ninja) "bBo" = ( /obj/structure/bed/stool/chair/office/bridge/generic{ @@ -32980,8 +31885,8 @@ /area/shuttle/skipjack) "bBt" = ( /obj/machinery/door/airlock/hatch{ - req_access = list(150); - dir = 4 + dir = 4; + req_access = list(150) }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, @@ -33098,28 +32003,20 @@ /obj/item/device/camera, /obj/item/device/taperecorder, /obj/item/device/megaphone/red, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/ninja) "bBR" = ( /obj/machinery/portable_atmospherics/canister/oxygen, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/ninja) "bBS" = ( /obj/effect/decal/fake_object/light_source/invisible, /obj/item/modular_computer/console/preset/command/teleporter/ninja, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/ninja) "bBT" = ( /obj/structure/table/standard, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/ninja) "bBU" = ( /obj/item/paper_bin{ @@ -33155,9 +32052,7 @@ pixel_y = 16 }, /obj/structure/table/standard, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/ninja) "bBX" = ( /obj/machinery/light/small{ @@ -33331,9 +32226,7 @@ /area/shuttle/distress) "bCC" = ( /obj/machinery/teleport/pad/ninja, -/turf/unsimulated/floor{ - icon_state = "tiled_preview" - }, +/turf/unsimulated/floor, /area/antag/ninja) "bCF" = ( /obj/effect/floor_decal/spline/fancy/wood{ @@ -33375,8 +32268,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/lattice/catwalk/indoor/grate, /obj/machinery/door/airlock/hatch{ - req_access = list(150); - dir = 1 + dir = 1; + req_access = list(150) }, /turf/simulated/floor/plating, /area/shuttle/skipjack) @@ -33512,13 +32405,13 @@ /area/shuttle/skipjack) "bEh" = ( /obj/machinery/door/airlock/hatch{ + dir = 4; frequency = 1337; icon_state = "door_locked"; id_tag = "distress_shuttle_hatch_fore"; locked = 1; name = "Port Shuttle Hatch"; - req_access = list(112); - dir = 4 + req_access = list(112) }, /obj/machinery/door/blast/regular/open{ dir = 2; @@ -34593,7 +33486,6 @@ name = "rolling fog" }, /obj/item/device/flashlight/lamp/holodeck{ - brightness_on = 12; light_color = "#C48A18"; light_power = 2; light_range = 14; @@ -36584,6 +35476,10 @@ /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) +"dcR" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/unsimulated/floor, +/area/antag/jockey) "dgN" = ( /obj/structure/railing/mapped, /obj/effect/floor_decal/corner/grey{ @@ -36745,10 +35641,10 @@ /obj/effect/decal/fake_object{ density = 1; desc = "Locked during work hours due to safety concerns. Particularly pirate ones."; + dir = 1; icon = 'icons/obj/doors/basic/single/generic/door.dmi'; icon_state = "preview_glass"; name = "Upper Levels Access"; - dir = 1; pixel_x = -16; pixel_y = -16 }, @@ -36788,11 +35684,13 @@ /obj/structure/table/reinforced, /obj/item/storage/secure/briefcase, /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) +"dPs" = ( +/turf/simulated/floor/carpet/rubber, +/area/antag/jockey) "dPA" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 8 @@ -36812,18 +35710,24 @@ /area/centcom/shared_dream) "dSS" = ( /obj/machinery/door/airlock/external{ + dir = 1; frequency = 1337; icon_state = "door_locked"; id_tag = "merchant_station_door"; locked = 1; - req_access = list(110); - dir = 1 + req_access = list(110) }, /obj/effect/floor_decal/industrial/warning/cee{ dir = 1 }, /turf/simulated/floor/tiled, /area/merchant_station/warehouse) +"dWC" = ( +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/turf/unsimulated/floor, +/area/antag/jockey) "dXh" = ( /obj/effect/floor_decal/snowdrift/large, /turf/simulated/floor/exoplanet/snow, @@ -36840,6 +35744,12 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_dininghall) +"dXC" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/antag/jockey) "dZU" = ( /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/holofloor/grass, @@ -36886,8 +35796,7 @@ pixel_y = 33 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/simulated/floor/tiled/white, /area/merchant_station) @@ -37096,6 +36005,21 @@ }, /turf/simulated/floor/plating, /area/shuttle/transport1) +"eWj" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/screwdriver, +/obj/item/stack/cable_coil, +/obj/item/wirecutters, +/obj/item/weldingtool, +/obj/item/device/hand_labeler, +/obj/item/cell/nuclear, +/turf/simulated/floor/carpet/rubber, +/area/antag/jockey) "eWy" = ( /obj/structure/flora/rock, /obj/effect/floor_decal/spline/plain{ @@ -37166,6 +36090,22 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) +"fzi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/plasteel/full, +/obj/item/stack/material/plasteel/full, +/obj/item/stack/material/plasteel/full, +/obj/item/stack/material/glass/full, +/obj/item/stack/material/glass/full, +/obj/item/stack/material/glass/full, +/turf/unsimulated/floor, +/area/antag/jockey) "fDU" = ( /obj/effect/floor_decal/spline/plain, /obj/structure/flora/ausbushes/ppflowers, @@ -37432,14 +36372,14 @@ /area/horizon/holodeck/source_adhomai) "gwr" = ( /obj/machinery/door/airlock/external{ + dir = 4; frequency = 1337; icon_state = "door_locked"; id_tag = "merchant_shuttle_hatch"; layer = 2.8; name = "Ship External Access"; open_layer = 2.8; - req_access = list(110); - dir = 4 + req_access = list(110) }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, @@ -37701,6 +36641,19 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) +"hkf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/vending/snack{ + density = 0; + name = "Jacked Getmore Chocolate Corp"; + pixel_y = -22; + prices = list(); + random_itemcount = 0 + }, +/turf/unsimulated/floor, +/area/antag/jockey) "hlt" = ( /obj/effect/floor_decal/corner/white{ dir = 8 @@ -37756,12 +36709,12 @@ /area/horizon/holodeck/source_trinary) "hvO" = ( /obj/machinery/door/airlock/external{ + dir = 1; frequency = 1337; icon_state = "door_locked"; id_tag = "merchant_station_door"; locked = 1; - req_access = list(110); - dir = 1 + req_access = list(110) }, /obj/effect/shuttle_landmark/merchant/start{ dir = 1 @@ -37792,6 +36745,12 @@ }, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_meetinghall) +"hFB" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/carpet/rubber, +/area/antag/jockey) "hIs" = ( /obj/structure/lattice/catwalk/indoor/grate, /obj/structure/railing/mapped{ @@ -37817,12 +36776,20 @@ name = "overgrowth" }, /area/horizon/holodeck/source_moghes) +"hNk" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/structure/heavy_vehicle_frame, +/obj/machinery/mech_recharger, +/turf/simulated/floor/carpet/rubber, +/area/antag/jockey) "hRC" = ( /obj/machinery/door/airlock/silver{ + dir = 4; hashatch = 0; name = "Bridge"; - req_access = list(110); - dir = 4 + req_access = list(110) }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, @@ -38015,6 +36982,12 @@ }, /turf/simulated/floor/bluegrid, /area/horizon/holodeck/source_trinary) +"iqe" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/unsimulated/floor, +/area/antag/jockey) "irL" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -38022,6 +36995,12 @@ /obj/structure/holostool, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_theatre) +"itB" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/carpet/rubber, +/area/antag/jockey) "ixa" = ( /obj/structure/bed/stool/chair/holochair, /obj/effect/floor_decal/spline/fancy/wood, @@ -38115,13 +37094,13 @@ "iRU" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/airlock/external{ + dir = 1; frequency = 1380; icon_state = "door_locked"; id_tag = "cargo_shuttle_airlock"; locked = 1; name = "Cargo Shuttle"; - req_access = list(13,31); - dir = 1 + req_access = list(13,31) }, /turf/simulated/floor/tiled/dark, /area/supply/dock) @@ -38140,6 +37119,20 @@ }, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) +"iVw" = ( +/obj/structure/bed/stool/padded/brown{ + dir = 8 + }, +/obj/effect/landmark{ + name = "jockeyspawn" + }, +/obj/structure/sign/double/map/left{ + desc = "A framed picture of a station."; + pixel_x = 16; + pixel_y = 32 + }, +/turf/simulated/floor/carpet, +/area/antag/jockey) "iWv" = ( /obj/effect/decal/fake_object/light_source/invisible{ light_color = "#64C864"; @@ -38166,14 +37159,14 @@ /area/horizon/holodeck/source_jupiter) "iXb" = ( /obj/machinery/door/airlock/external{ + dir = 1; frequency = 1337; icon_state = "door_locked"; id_tag = "merchant_shuttle_hatch"; layer = 2.8; name = "Ship External Access"; open_layer = 2.8; - req_access = list(110); - dir = 1 + req_access = list(110) }, /obj/machinery/door/blast/shutters/open{ id = "merchant_airlock"; @@ -38363,12 +37356,12 @@ /obj/effect/ghostspawpoint/button{ desc = "This button is used for summoning an assistant from the upper floors."; dir = 8; + icon = 'icons/obj/airlock_machines.dmi'; + icon_state = "airlock_control_standby"; identifier = "MerchantAss"; name = "call button"; pixel_x = 24; - pixel_y = 26; - icon = 'icons/obj/airlock_machines.dmi'; - icon_state = "airlock_control_standby" + pixel_y = 26 }, /turf/simulated/floor/tiled, /area/merchant_station) @@ -38477,6 +37470,12 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_thunderdomecourt) +"jYW" = ( +/obj/structure/table/wood, +/obj/item/wrench, +/obj/effect/decal/fake_object/light_source/invisible, +/turf/simulated/floor/carpet, +/area/antag/jockey) "kcw" = ( /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/marble/dark, @@ -38630,8 +37629,7 @@ dir = 5 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /turf/simulated/floor/tiled, /area/shuttle/merchant) @@ -38706,6 +37704,34 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) +"kNK" = ( +/obj/machinery/light/small/emergency, +/obj/structure/table/rack, +/obj/item/mecha_equipment/sleeper, +/obj/item/mecha_equipment/sleeper, +/obj/item/mecha_equipment/sleeper, +/obj/item/mecha_equipment/sleeper, +/obj/item/mecha_equipment/sleeper/passenger_compartment, +/obj/item/mecha_equipment/sleeper/passenger_compartment, +/obj/item/mecha_equipment/sleeper/passenger_compartment, +/obj/item/mecha_equipment/sleeper/passenger_compartment, +/obj/item/mecha_equipment/light, +/obj/item/mecha_equipment/light, +/obj/item/mecha_equipment/light, +/obj/item/mecha_equipment/quick_enter, +/obj/item/mecha_equipment/quick_enter, +/obj/item/mecha_equipment/quick_enter, +/obj/item/mecha_equipment/phazon, +/obj/item/mecha_equipment/phazon, +/obj/item/mecha_equipment/phazon, +/obj/item/mecha_equipment/autolathe, +/obj/item/mecha_equipment/autolathe, +/obj/item/mecha_equipment/autolathe, +/obj/item/anomaly_core, +/obj/item/anomaly_core, +/obj/item/anomaly_core, +/turf/unsimulated/floor, +/area/antag/jockey) "kOG" = ( /obj/effect/step_trigger/thrower/shuttle/southwest, /turf/template_noop, @@ -38741,8 +37767,7 @@ /area/horizon/holodeck/source_courtroom) "kTU" = ( /obj/machinery/light{ - dir = 1; - icon_state = "tube_empty" + dir = 1 }, /obj/effect/shuttle_landmark/supply/horizon/start{ dir = 1 @@ -38816,6 +37841,10 @@ /obj/effect/floor_decal/corner/full, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) +"ljU" = ( +/obj/machinery/acting/changer, +/turf/simulated/floor/carpet, +/area/antag/jockey) "lnJ" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/beach/sand{ @@ -38878,11 +37907,11 @@ "lxe" = ( /obj/structure/closet/secure_closet/merchant, /obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 1; frequency = 1337; id_tag = "merchant_shuttle"; pixel_y = -19; - tag_door = "merchant_shuttle_hatch"; - dir = 1 + tag_door = "merchant_shuttle_hatch" }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) @@ -38895,20 +37924,20 @@ dir = 4 }, /obj/machinery/button/remote/blast_door{ + dir = 1; id = "merchant_windows"; name = "viewing shutters"; pixel_x = -7; pixel_y = 25; - req_access = null; - dir = 1 + req_access = null }, /obj/machinery/button/remote/blast_door{ + dir = 1; id = "merchant_airlock"; name = "external airlock shutter"; pixel_x = -7; pixel_y = 35; - req_access = null; - dir = 1 + req_access = null }, /turf/simulated/floor/wood, /area/shuttle/merchant) @@ -38929,11 +37958,11 @@ }, /area/horizon/holodeck/source_konyang) "lxW" = ( -/turf/simulated/floor/beach/sand{ - dir = 2; - icon_state = "beachcorner" +/obj/effect/floor_decal/corner/black{ + dir = 6 }, -/area/centcom/shared_dream) +/turf/unsimulated/floor, +/area/antag/jockey) "lyb" = ( /obj/structure/flora/tree/jungle/small, /turf/simulated/floor/exoplanet/grass, @@ -39020,6 +38049,36 @@ /obj/structure/flora/grass/green, /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) +"lRp" = ( +/obj/structure/table/rack, +/obj/item/mecha_equipment/mounted_system/combat/grenadetear, +/obj/item/mecha_equipment/mounted_system/combat/grenadetear, +/obj/item/mecha_equipment/mounted_system/combat/grenadetear, +/obj/item/mecha_equipment/mounted_system/combat/grenadetear, +/obj/item/mecha_equipment/mounted_system/combat/grenadesmoke, +/obj/item/mecha_equipment/mounted_system/combat/grenadesmoke, +/obj/item/mecha_equipment/mounted_system/combat/grenadesmoke, +/obj/item/mecha_equipment/mounted_system/combat/grenadesmoke, +/obj/item/mecha_equipment/mounted_system/combat/grenadefrag, +/obj/item/mecha_equipment/mounted_system/combat/grenadefrag, +/obj/item/mecha_equipment/mounted_system/combat/grenadefrag, +/obj/item/mecha_equipment/mounted_system/combat/grenadefrag, +/obj/item/mecha_equipment/mounted_system/combat/grenadeflash, +/obj/item/mecha_equipment/mounted_system/combat/grenadeflash, +/obj/item/mecha_equipment/mounted_system/combat/grenadeflash, +/obj/item/mecha_equipment/mounted_system/combat/grenadeflash, +/obj/item/mecha_equipment/catapult, +/obj/item/mecha_equipment/catapult, +/obj/item/mecha_equipment/catapult, +/obj/item/mecha_equipment/catapult, +/obj/item/mecha_equipment/catapult, +/obj/item/mecha_equipment/catapult, +/obj/item/mecha_equipment/mounted_system/grenadecleaner, +/obj/item/mecha_equipment/mounted_system/grenadecleaner, +/obj/item/mecha_equipment/mounted_system/grenadecleaner, +/obj/item/mecha_equipment/mounted_system/grenadecleaner, +/turf/unsimulated/floor, +/area/antag/jockey) "lSe" = ( /obj/structure/bed/stool/chair/sofa/left/black{ desc = "A pew, how holy!"; @@ -39148,6 +38207,13 @@ name = "coast" }, /area/horizon/holodeck/source_konyang) +"mth" = ( +/obj/effect/floor_decal/corner/black/diagonal{ + dir = 1 + }, +/obj/effect/floor_decal/corner/black/diagonal, +/turf/unsimulated/floor, +/area/antag/jockey) "mun" = ( /obj/effect/floor_decal/spline/plain{ dir = 9 @@ -39398,6 +38464,12 @@ /obj/structure/bed/stool/chair/folding, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) +"nla" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/unsimulated/floor, +/area/antag/jockey) "nnX" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -39504,6 +38576,10 @@ icon_state = "desert4" }, /area/horizon/holodeck/source_beach) +"nPg" = ( +/obj/machinery/light/small/emergency, +/turf/unsimulated/floor, +/area/antag/jockey) "nRj" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/effect/floor_decal/spline/fancy/wood{ @@ -39652,6 +38728,19 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/shared_dream) +"owU" = ( +/obj/effect/floor_decal/spline/plain, +/obj/structure/table/standard, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/screwdriver, +/obj/item/stack/cable_coil, +/obj/item/wirecutters, +/obj/item/weldingtool, +/obj/item/device/hand_labeler, +/obj/item/cell/nuclear, +/turf/simulated/floor/carpet/rubber, +/area/antag/jockey) "oyi" = ( /obj/effect/decal/fake_object/light_source{ density = 1; @@ -39678,11 +38767,13 @@ /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_meetinghall) "ozQ" = ( -/turf/simulated/floor/beach/sand{ - dir = 2; - icon_state = "beach" +/obj/effect/floor_decal/spline/plain{ + dir = 9 }, -/area/centcom/shared_dream) +/obj/structure/heavy_vehicle_frame, +/obj/machinery/mech_recharger, +/turf/simulated/floor/carpet/rubber, +/area/antag/jockey) "oDu" = ( /turf/simulated/floor/beach/sand{ dir = 9; @@ -39783,6 +38874,16 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) +"oUT" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/floor_decal/corner/black/diagonal{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor, +/area/antag/jockey) "oVx" = ( /obj/effect/floor_decal/carpet{ dir = 1 @@ -39801,6 +38902,10 @@ name = "dirt" }, /area/horizon/holodeck/source_adhomai) +"oWy" = ( +/obj/effect/decal/fake_object/light_source/invisible, +/turf/simulated/floor/carpet/rubber, +/area/antag/jockey) "oWX" = ( /obj/structure/railing/mapped, /obj/effect/floor_decal/corner/grey{ @@ -39888,6 +38993,14 @@ }, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) +"pic" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/effect/map_effect/mecha_part_spawner/propulsion, +/turf/unsimulated/floor, +/area/antag/jockey) "pjU" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 10 @@ -39972,6 +39085,21 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) +"pCD" = ( +/obj/structure/table/standard, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/screwdriver, +/obj/item/stack/cable_coil, +/obj/item/wirecutters, +/obj/item/weldingtool, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/item/device/hand_labeler, +/obj/item/cell/nuclear, +/turf/simulated/floor/carpet/rubber, +/area/antag/jockey) "pEO" = ( /obj/effect/floor_decal/spline/plain/corner, /turf/simulated/floor/exoplanet/barren/raskara, @@ -40038,11 +39166,21 @@ /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) "pMI" = ( -/obj/item/modular_computer/console/preset/merchant{ - dir = 2 - }, +/obj/item/modular_computer/console/preset/merchant, /turf/simulated/floor/wood, /area/merchant_station/warehouse) +"pNK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/vending/zora{ + density = 0; + name = "Jacked Zo'ra Soda"; + pixel_y = -22; + prices = list() + }, +/turf/unsimulated/floor, +/area/antag/jockey) "pRF" = ( /obj/effect/floor_decal/snowdrift{ dir = 1 @@ -40703,6 +39841,10 @@ }, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) +"sYH" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/carpet, +/area/antag/jockey) "sZZ" = ( /obj/random/pottedplant, /obj/effect/floor_decal/spline/fancy/wood/full, @@ -40762,6 +39904,11 @@ }, /turf/simulated/floor/carpet/purple, /area/centcom/shared_dream) +"tie" = ( +/obj/structure/table/rack, +/obj/effect/map_effect/mecha_part_spawner/manipulator, +/turf/unsimulated/floor, +/area/antag/jockey) "tlI" = ( /obj/effect/floor_decal/spline/plain, /obj/structure/ore_box{ @@ -41072,6 +40219,40 @@ icon_state = "beach" }, /area/centcom/shared_dream) +"uxa" = ( +/obj/structure/table/wood, +/obj/effect/decal/fake_object{ + desc = "An intricate set of blueprints of a spacestation."; + icon = 'icons/obj/items.dmi'; + icon_state = "blueprints"; + name = "station blueprints"; + pixel_y = -8 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/material/ashtray/glass{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/material/knife/tacknife{ + layer = 3.51; + pixel_x = 8; + pixel_y = 28 + }, +/obj/item/material/knife/tacknife{ + layer = 3.51; + pixel_x = -20; + pixel_y = 30 + }, +/obj/item/material/knife/tacknife{ + layer = 3.51; + pixel_x = -6; + pixel_y = 32 + }, +/turf/simulated/floor/carpet, +/area/antag/jockey) "uAv" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -41142,14 +40323,16 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) +"uEg" = ( +/turf/simulated/floor/carpet, +/area/antag/jockey) "uEo" = ( /obj/structure/table/reinforced, /obj/machinery/button/remote/blast_door{ dir = 10; id = "merchant_bridge"; name = "bridge window shutters"; - pixel_x = -6; - pixel_y = 0 + pixel_x = -6 }, /turf/simulated/floor/carpet/cyan, /area/shuttle/merchant) @@ -41182,6 +40365,20 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) +"uKd" = ( +/obj/structure/bed/stool/padded/brown{ + dir = 8 + }, +/obj/effect/landmark{ + name = "jockeyspawn" + }, +/obj/structure/sign/double/map/right{ + desc = "A framed picture of a station."; + pixel_x = -16; + pixel_y = 32 + }, +/turf/simulated/floor/carpet, +/area/antag/jockey) "uMu" = ( /obj/structure/flora/tree/pine, /obj/effect/floor_decal/spline/plain{ @@ -41209,8 +40406,7 @@ /area/centcom/shared_dream) "uSI" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube_empty" + dir = 4 }, /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -41312,6 +40508,15 @@ }, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) +"viC" = ( +/obj/structure/bed/stool/padded/brown{ + dir = 8 + }, +/obj/effect/landmark{ + name = "jockeyspawn" + }, +/turf/simulated/floor/carpet, +/area/antag/jockey) "vjo" = ( /obj/effect/floor_decal/corner/red/full, /turf/simulated/floor/marble, @@ -41319,7 +40524,6 @@ "vlQ" = ( /obj/effect/floor_decal/carpet, /obj/item/device/flashlight/lamp/holodeck{ - brightness_on = 12; light_color = "#C48A18"; light_power = 2; light_range = 14; @@ -41346,6 +40550,12 @@ icon_state = "desert" }, /area/centcom/shared_dream) +"vwJ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/antag/jockey) "vyr" = ( /obj/effect/floor_decal/spline/plain, /obj/structure/railing/mapped{ @@ -41379,6 +40589,37 @@ dir = 4 }, /area/horizon/holodeck/source_chapel) +"vEB" = ( +/obj/structure/table/rack, +/obj/item/mecha_equipment/shield, +/obj/item/mecha_equipment/shield, +/obj/item/mecha_equipment/shield, +/obj/item/mecha_equipment/crisis_drone, +/obj/item/mecha_equipment/crisis_drone, +/obj/item/mecha_equipment/crisis_drone, +/obj/item/mecha_equipment/mounted_system/medanalyzer, +/obj/item/mecha_equipment/mounted_system/medanalyzer, +/obj/item/mecha_equipment/mounted_system/medanalyzer, +/obj/item/mecha_equipment/clamp, +/obj/item/mecha_equipment/clamp, +/obj/item/mecha_equipment/clamp, +/obj/item/mecha_equipment/clamp, +/obj/item/mecha_equipment/clamp, +/obj/item/mecha_equipment/clamp, +/obj/item/mecha_equipment/mounted_system/plasmacutter, +/obj/item/mecha_equipment/mounted_system/plasmacutter, +/obj/item/mecha_equipment/mounted_system/plasmacutter, +/obj/item/mecha_equipment/mounted_system/plasmacutter, +/obj/item/mecha_equipment/mounted_system/plasmacutter, +/obj/item/mecha_equipment/mounted_system/plasmacutter, +/obj/item/mecha_equipment/toolset, +/obj/item/mecha_equipment/toolset, +/obj/item/mecha_equipment/toolset, +/obj/item/mecha_equipment/mounted_system/rfd, +/obj/item/mecha_equipment/mounted_system/rfd, +/obj/item/mecha_equipment/mounted_system/rfd, +/turf/unsimulated/floor, +/area/antag/jockey) "vEO" = ( /obj/structure/shuttle_part/ccia{ icon_state = "12,2" @@ -41420,6 +40661,51 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_battlemonsters) +"vOz" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/item/mecha_equipment/mounted_system/combat/taser, +/obj/item/mecha_equipment/mounted_system/combat/taser, +/obj/item/mecha_equipment/mounted_system/combat/taser, +/obj/item/mecha_equipment/mounted_system/combat/taser, +/obj/item/mecha_equipment/mounted_system/combat/xray, +/obj/item/mecha_equipment/mounted_system/combat/xray, +/obj/item/mecha_equipment/mounted_system/combat/xray, +/obj/item/mecha_equipment/mounted_system/combat/xray, +/obj/item/mecha_equipment/mounted_system/combat/smg, +/obj/item/mecha_equipment/mounted_system/combat/smg, +/obj/item/mecha_equipment/mounted_system/combat/smg, +/obj/item/mecha_equipment/mounted_system/combat/smg, +/obj/item/mecha_equipment/mounted_system/combat/pulse, +/obj/item/mecha_equipment/mounted_system/combat/pulse, +/obj/item/mecha_equipment/mounted_system/combat/pulse, +/obj/item/mecha_equipment/mounted_system/combat/pulse, +/obj/item/mecha_equipment/mounted_system/combat/laser, +/obj/item/mecha_equipment/mounted_system/combat/laser, +/obj/item/mecha_equipment/mounted_system/combat/laser, +/obj/item/mecha_equipment/mounted_system/combat/laser, +/obj/item/mecha_equipment/mounted_system/combat/ion, +/obj/item/mecha_equipment/mounted_system/combat/ion, +/obj/item/mecha_equipment/mounted_system/combat/ion, +/obj/item/mecha_equipment/mounted_system/combat/ion, +/obj/item/mecha_equipment/mounted_system/combat/gauss, +/obj/item/mecha_equipment/mounted_system/combat/gauss, +/obj/item/mecha_equipment/mounted_system/combat/gauss, +/obj/item/mecha_equipment/mounted_system/combat/gauss, +/obj/item/mecha_equipment/mounted_system/combat/blaster, +/obj/item/mecha_equipment/mounted_system/combat/blaster, +/obj/item/mecha_equipment/mounted_system/combat/blaster, +/obj/item/mecha_equipment/mounted_system/combat/blaster, +/turf/unsimulated/floor, +/area/antag/jockey) +"vOG" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/antag/jockey) "vOL" = ( /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, @@ -41473,6 +40759,14 @@ name = "mossy grass" }, /area/horizon/holodeck/source_konyang) +"vYZ" = ( +/obj/structure/table/rack, +/obj/effect/map_effect/mecha_part_spawner/chassis, +/obj/structure/sign/flag/coalition/large/south{ + pixel_y = -32 + }, +/turf/unsimulated/floor, +/area/antag/jockey) "waQ" = ( /obj/effect/floor_decal/spline/plain{ dir = 5 @@ -41500,20 +40794,20 @@ }, /obj/structure/bed/stool/padded/brown, /obj/machinery/button/remote/blast_door{ + dir = 1; id = "merchant_windows"; name = "viewing shutters"; pixel_x = -7; pixel_y = 25; - req_access = null; - dir = 1 + req_access = null }, /obj/machinery/button/remote/blast_door{ + dir = 1; id = "merchant_airlock"; name = "external airlock shutter"; pixel_x = -7; pixel_y = 35; - req_access = null; - dir = 1 + req_access = null }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) @@ -41607,6 +40901,9 @@ /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) +"wyY" = ( +/turf/unsimulated/floor, +/area/antag/jockey) "wAB" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -41647,6 +40944,12 @@ }, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) +"wOc" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/turf/unsimulated/floor, +/area/antag/jockey) "wUz" = ( /obj/structure/table/wood, /turf/simulated/floor/holofloor/grass{ @@ -41656,6 +40959,13 @@ name = "mossy grass" }, /area/horizon/holodeck/source_konyang) +"wVo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/small/emergency, +/turf/unsimulated/floor, +/area/antag/jockey) "wWn" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/beach/sand{ @@ -41670,9 +40980,7 @@ "wWR" = ( /obj/structure/table/reinforced, /obj/item/storage/wallet/random, -/obj/machinery/light{ - icon_state = "tube_empty" - }, +/obj/machinery/light, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) "wXq" = ( @@ -41764,6 +41072,12 @@ icon_state = "10,1" }, /area/shuttle/transport1) +"xom" = ( +/obj/structure/heavy_vehicle_frame, +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/carpet/rubber, +/area/antag/jockey) "xrl" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -41963,6 +41277,12 @@ }, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_meetinghall) +"xTo" = ( +/obj/machinery/light/small/emergency, +/obj/structure/table/rack, +/obj/effect/map_effect/mecha_part_spawner/propulsion, +/turf/unsimulated/floor, +/area/antag/jockey) "xUh" = ( /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_chapel) @@ -60505,10 +59825,10 @@ aaP akl adV alu -ajp -ajp -ajp -ajp +ahL +ahL +ahL +ahL aoE apI aly @@ -60762,10 +60082,10 @@ aaP akk adV alv -ajp -ajp -ajp -ajp +ahL +ahL +ahL +ahL aoF apI aly @@ -62557,9 +61877,9 @@ ahL aij aiM ajl -ajp -ajp -ajp +ahL +ahL +ahL ajl alZ amv @@ -62814,9 +62134,9 @@ ahL aij aiM ajl -ajp -ajp -ajp +ahL +ahL +ahL ajl ama amw @@ -63071,9 +62391,9 @@ ahL aij aiM ajl -ajp -ajp -ajp +ahL +ahL +ahL ajl amb amx @@ -63585,13 +62905,13 @@ ahL aik adV ajm -ajp +ahL akq -ajp +ahL akp amc akp -ajp +ahL adV aoH apL @@ -63842,13 +63162,13 @@ ahL aik adV ajn -ajp -ajp -ajp -ajp -ajp -ajp -ajp +ahL +ahL +ahL +ahL +ahL +ahL +ahL adV aoI apM @@ -64099,11 +63419,11 @@ ahL aik aiN ajo -ajp +ahL akp akp -ajp -ajp +ahL +ahL amz adV adV @@ -64355,12 +63675,12 @@ ahp ahL aik abr -ajp -ajp +ahL +ahL akp akp -ajp -ajp +ahL +ahL amA adV anL @@ -64613,11 +63933,11 @@ ahL aik aht ajq -ajp -ajp -ajp -ajp -ajp +ahL +ahL +ahL +ahL +ahL amB adV anM @@ -64657,7 +63977,7 @@ aMo aMF aHC aNJ -aNY +aMo aOq aOP aPo @@ -64914,7 +64234,7 @@ aMo aMF aNd aNK -aNY +aMo aOq aOQ aPp @@ -65171,7 +64491,7 @@ aMo aMH aHC aNJ -aNY +aMo aOq aOR aPo @@ -68984,7 +68304,7 @@ agT aht ajQ akv -ajp +ahL alB adV amD @@ -69242,7 +68562,7 @@ aju ajP ajP ajP -ajp +ahL adV amD amD @@ -84956,7 +84276,7 @@ bko brb bre bre -bts +bre bko bko bko @@ -85213,7 +84533,7 @@ bko brc bre bre -bts +bre bko bko bko @@ -89523,10 +88843,10 @@ aam aam baX beq -bfm -bfm -bfm -bhJ +bix +bix +bix +bms bix bjg bjg @@ -89780,10 +89100,10 @@ aam aam baX ber -bfm -bfm -bfm -bhJ +bix +bix +bix +bms bix bix bix @@ -90037,9 +89357,9 @@ aam aam baX bes -bfm -bfm -bfm +bix +bix +bix bhI bix bix @@ -90309,7 +89629,7 @@ baX bob bmy bpJ -bqB +boq baX bso bpd @@ -92624,8 +91944,8 @@ bmy bix bqG bru -bsr -bsX +bss +bnr btL bun buY @@ -92883,7 +92203,7 @@ bix bix bix bpJ -bfm +bix bun buY bun @@ -93140,7 +92460,7 @@ bnr bnr bpa bpJ -bfm +bix bun buY bun @@ -93394,10 +92714,10 @@ boj bmy bix bqH -bfm +bix bmy bpJ -bsX +bnr bun bun bun @@ -93651,7 +92971,7 @@ baX bpg bpg baX -bfm +bix bmy bix bix @@ -93705,8 +93025,8 @@ aYS aZm aTp baj -bak -bak +aTZ +aTZ bbz aTp bcT @@ -93908,10 +93228,10 @@ bok bmy bpJ baX -bfm +bix bmy bpJ -btM +bnq bun bun bun @@ -93961,8 +93281,8 @@ aYo aTZ aZn aTp -bak -bak +aTZ +aTZ bbb bbb aTp @@ -94936,10 +94256,10 @@ bok bmy bpR baX -bfm +bix bmy bpJ -bsX +bnr bun bun bun @@ -94975,7 +94295,7 @@ aaa aSu aTq aTL -bak +aTZ aUr aUQ aTZ @@ -95193,7 +94513,7 @@ bon bmy bpJ baX -bfm +bix bmy bix bix @@ -95247,7 +94567,7 @@ aTZ aZo aTp bal -bak +aTZ bbc bbA aTp @@ -95255,7 +94575,7 @@ bcY aTZ aTZ aTZ -aVn +bbz aTp aaa aaa @@ -95450,10 +94770,10 @@ bnq boZ bpJ baX -bfm +bix bmy bpJ -btM +bnq bun bun bun @@ -95710,7 +95030,7 @@ adc bnq boZ bpJ -bfm +bix bun buY bun @@ -95746,10 +95066,10 @@ aaa aSu aTq aTL -bak +aTZ aUs aUQ -aVn +bbz aTp aWg aWg @@ -95967,7 +95287,7 @@ adc bnr bnr bta -bfm +bix bun buY bun @@ -96517,7 +95837,7 @@ aaa aSu aTq aTL -bak +aTZ aUt aUR aVo @@ -97296,7 +96616,7 @@ aVN aWl aWO aTZ -aVn +bbz aTp aYv aYU @@ -97917,7 +97237,7 @@ bLO bLO bMQ bNf -ozQ +bNk bNq lfP tlX @@ -98432,7 +97752,7 @@ bLO bMQ bMQ xPK -ozQ +bNk bNq lnJ rZP @@ -98689,7 +98009,7 @@ egX bLO bMQ bMk -ozQ +bNk bNq kdV rZP @@ -98946,7 +98266,7 @@ bLO bMQ bMQ bMQ -ozQ +bNk bNq kdV rZP @@ -99461,7 +98781,7 @@ bMQ txP bMQ bMQ -ozQ +bNk rfc rZP rZP @@ -99718,7 +99038,7 @@ bMQ bMQ bMQ ifr -ozQ +bNk uux rZP rZP @@ -99975,7 +99295,7 @@ bMG bMQ bMQ lJV -ozQ +bNk uux rZP rZP @@ -100053,8 +99373,8 @@ aaa aaa aaa aaa -aaa -aaa +aao +aao bbx bbw bbw @@ -100065,7 +99385,7 @@ bbw bhk bbw bbw -aam +aTE bjB bkJ blx @@ -100232,7 +99552,7 @@ bMQ bMQ bMQ qEC -ozQ +bNk uux rZP rZP @@ -100310,19 +99630,19 @@ aaa aaa aaa aaa +aao +ajp aaa -aaa -aaa -aam -aam -aam -aam -aam -aam -aam -aam -aam -aam +aNY +aUf +bsr +btM +tie +vOz +wyY +lRp +bqB +aTE bjB bkK btj @@ -100567,19 +99887,19 @@ aaa aaa aaa aaa +aao aaa aaa -aaa -aam -aam -aam -aam -aam -aam -aam -aam -aam -aam +aNY +aVe +bsX +lxW +lxW +lxW +lxW +oUT +vEB +aTE bkg btj btj @@ -100824,19 +100144,19 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aam -aam -aam -aam -aam -aam -aam -aam -aam -aam +aao +aao +aao +aTE +bak +bts +ozQ +pCD +vOG +itB +dWC +kNK +aTE bkh btj btj @@ -101081,19 +100401,19 @@ aaa aaa aaa aaa +aao aaa aaa -aaa -aaa -aaa -aam -aam -aam -aam -aam -aam -aam -aam +aTE +bfm +bts +dXC +dPs +oWy +owU +dWC +vYZ +aTE bkh btj btj @@ -101338,19 +100658,19 @@ aaa aaa aaa aaa +aao aaa aaa -aaa -aaa -aaa -aam -aam -aam -aam -aam -aam -aam -aam +aTE +bhJ +bts +dXC +oWy +dPs +xom +dWC +tie +aTE bjB btj btj @@ -101595,19 +100915,19 @@ aaa aaa aaa aaa +aao aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aam -aam -aam +aTE +bak +bts +hNk +eWj +vwJ +hFB +dWC +xTo +aTE bkh btj btj @@ -101852,19 +101172,19 @@ aaa aaa aaa aaa +aao aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aam -aam -aam +aNY +aVe +bqB +wOc +wOc +wOc +wOc +mth +bsr +aTE bkh btj btj @@ -101914,10 +101234,10 @@ aSC aTc aTA aTB -aTE +aVu aTB -aTE -aTE +aVu +aVu aVU aVu aWR @@ -102109,19 +101429,19 @@ aaa aaa aaa aaa +aao aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aam -aam -aam +aNY +bqB +bsr +pic +tie +wyY +dcR +wyY +aUf +aTE bkg btj btj @@ -102171,10 +101491,10 @@ aSC aTd aTB aTB -aUf +bbG aUD aTB -aTE +aVu aVU aVu aWR @@ -102366,18 +101686,18 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aam -aam +aao +aao +aao +aTE +aTE +aTE +aTE +aTE +fzi +iqe +iqe +nPg bjB bjB bkL @@ -102426,9 +101746,9 @@ aaa aSu aSC aTe -aTE -aTE -aUf +aVu +aVu +bbG aUE aVc aTB @@ -102623,18 +101943,18 @@ aaa aaa aaa aaa +aao +ajp aaa aaa +aao aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aam -aam +aNY +uEg +uEg +uEg +pNK bjB bki btj @@ -102683,12 +102003,12 @@ aaa aSu aSC aTf -aTE -aTE +aVu +aVu aTB -aTE +aVu aTB -aTE +aVu aVU aVu aWR @@ -102880,18 +102200,18 @@ aaa aaa aaa aaa +aao aaa aaa aaa +aao aaa aaa -aaa -aaa -aaa -aaa -aaa -aam -aam +aNY +uEg +uEg +sYH +hkf bjB bkj btj @@ -102940,7 +102260,7 @@ aaa aSu aSB aTg -aTE +aVu aTU aUh aUF @@ -103137,18 +102457,18 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aam -aam +aao +aao +aao +aao +aao +aao +aao +aTE +iVw +uEg +uEg +wVo bjB bki btj @@ -103197,7 +102517,7 @@ aaa aSu aSC aTh -aTE +aVu aSB aSB aSB @@ -103397,15 +102717,15 @@ aaa aaa aaa aaa +ajp +aao aaa aaa -aaa -aaa -aaa -aaa -aaa -aam -aam +aTE +uxa +jYW +uEg +nla bjB bkk btd @@ -103454,12 +102774,12 @@ aaa aSu aSC aTi -aTE +aVu aSB aUi aUG -aVe -aTE +aWr +aVu aVV aWx aWR @@ -103564,7 +102884,7 @@ bMG bMQ bLO uSd -lxW +bNj drX yjt bMQ @@ -103655,14 +102975,14 @@ aaa aaa aaa aaa +aao aaa aaa -aaa -aaa -aaa -aaa -aam -aam +aTE +uKd +viC +uEg +nla bjB bkl bkO @@ -103711,12 +103031,12 @@ aaa aSu aSC aTj -aTE +aVu aSB aSB aSB -aTE -aTE +aVu +aVu aVV aWr aWR @@ -103912,14 +103232,14 @@ aaa aaa aaa aaa +aao aaa aaa -aaa -aaa -aaa -aaa -aam -aam +aNY +uEg +uEg +uEg +wVo bjB bkm bkP @@ -103968,12 +103288,12 @@ aaa aSu aSC aTk -aTE +aVu aSB aUj aUH -aVe -aTE +aWr +aVu aVW aWy aWR @@ -104169,14 +103489,14 @@ aaa aaa aaa aaa +aao +ajp aaa -aaa -aaa -aaa -aaa -aaa -aam -aam +aNY +ljU +uEg +uEg +nla bjC bkn btj @@ -104225,12 +103545,12 @@ aaa aSu aSB aTl -aTE +aVu aSB aSB aSB -aTE -aTE +aVu +aVu aSB aSB aSB @@ -104426,14 +103746,14 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aam -aam +aao +aao +aao +aTE +aNY +aNY +aNY +aTE bjB bjB bjB @@ -104486,7 +103806,7 @@ aTF aSB aUk aUI -aVe +aWr aVB aSB aVu @@ -104683,10 +104003,10 @@ aaa aaa aaa aaa +aao aaa aaa -aaa -aaa +aao aaa aaa aaa @@ -104743,8 +104063,8 @@ aSu aSB aSB aSB -aTE -aTE +aVu +aVu aSB aVu aWR @@ -104940,14 +104260,14 @@ aaa aaa aaa aaa +aao aaa aaa +aao +ajp aaa aaa -aaa -aaa -aaa -aaa +aao aam aam aam @@ -105000,8 +104320,8 @@ aaa aSB aUl aUJ -aVe -aTE +aWr +aVu aVX aVu aWR @@ -105018,7 +104338,7 @@ aWr aVu aSB bdu -aTE +aVu bfc bfU aSC @@ -105197,17 +104517,17 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao aaa aaa bmR