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 faafb2809d9..d985956647a 100644 Binary files a/icons/mob/hud.dmi and b/icons/mob/hud.dmi differ diff --git a/icons/mob/mob.dmi b/icons/mob/mob.dmi index 5653c95d262..97c1c2e9195 100644 Binary files a/icons/mob/mob.dmi and b/icons/mob/mob.dmi differ diff --git a/icons/turf/areas.dmi b/icons/turf/areas.dmi index c46758e386d..4e3ea376659 100755 Binary files a/icons/turf/areas.dmi and b/icons/turf/areas.dmi differ 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