diff --git a/code/game/machinery/vending/cigarette.dm b/code/game/machinery/vending/cigarette.dm index 124e31d6b21..57c7ed06afa 100644 --- a/code/game/machinery/vending/cigarette.dm +++ b/code/game/machinery/vending/cigarette.dm @@ -3,6 +3,7 @@ * Low Supply * Merchant Station * Hacked + * Horizon */ /obj/machinery/vending/cigarette @@ -149,6 +150,22 @@ /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2 ) +// The Horizon gets a basic list of products. The rest should be put in commissary stocks. +/obj/machinery/vending/cigarette/horizon + products = list( + /obj/item/storage/box/fancy/cigarettes/rugged = 6, + /obj/item/storage/box/fancy/cigarettes = 8, + /obj/item/storage/chewables/tobacco = 8, + /obj/item/storage/cigfilters = 6, + /obj/item/storage/box/fancy/cigpaper = 6, + /obj/item/storage/box/fancy/matches = 10, + /obj/item/flame/lighter/random = 4, + /obj/item/spacecash/ewallet/lotto = 30, + /obj/item/clothing/mask/smokable/ecig/simple = 2, + /obj/item/reagent_containers/ecig_cartridge/med_nicotine = 10, + /obj/item/reagent_containers/ecig_cartridge/high_nicotine = 10 + ) + /obj/item/device/vending_refill/smokes name = "smokes resupply canister" vend_id = "smokes" diff --git a/code/game/machinery/vending/medical.dm b/code/game/machinery/vending/medical.dm index 58416b92f5a..ec50e2ec3d2 100644 --- a/code/game/machinery/vending/medical.dm +++ b/code/game/machinery/vending/medical.dm @@ -7,6 +7,7 @@ * Low Supply * NanoPharm Mini * Low Supply + * NanoPharm Mini (commissary) */ /obj/machinery/vending/medical @@ -206,3 +207,25 @@ /obj/item/storage/pill_bottle/cetahydramine = 1, /obj/item/storage/pill_bottle/rmt = 1 ) + +/obj/machinery/vending/wallpharm/commissary + random_itemcount = TRUE + products = list( + /obj/item/storage/box/mms_inhaler = 3, + /obj/item/storage/box/ambrosia = 3, + /obj/item/storage/box/reishi = 3, + /obj/item/storage/box/wulumunusha = 3, + /obj/item/storage/pill_bottle/colorspace = 3, + /obj/item/storage/pill_bottle/snowflake = 3, + /obj/item/storage/pill_bottle/psilocybin = 3, + /obj/item/reagent_containers/food/condiment/wulumunusha = 3, + /obj/item/reagent_containers/food/condiment/ambrosia = 3, + /obj/item/storage/pill_bottle/antidexafen = 3, + /obj/item/storage/pill_bottle/vitamin = 3, + /obj/item/storage/pill_bottle/cetahydramine = 3, + /obj/item/storage/pill_bottle/caffeine = 3, + /obj/item/storage/pill_bottle/nicotine = 3, + /obj/item/storage/pill_bottle/rmt = 3 + ) + prices = list( + ) diff --git a/code/game/machinery/vending/snacks.dm b/code/game/machinery/vending/snacks.dm index ae0708f92f9..2fe61e33787 100644 --- a/code/game/machinery/vending/snacks.dm +++ b/code/game/machinery/vending/snacks.dm @@ -2,6 +2,7 @@ * GetMore Chocolate Corp * Low Supply * Konyang + * Horizon * FrontierVend * Low Supply * Hacked @@ -135,6 +136,69 @@ /obj/item/reagent_containers/food/snacks/seaweed = 10, ) +/obj/machinery/vending/snack/horizon + products = list( + /obj/item/reagent_containers/food/drinks/dry_ramen = 6, + /obj/item/reagent_containers/food/snacks/sosjerky = 6, + /obj/item/reagent_containers/food/snacks/spacetwinkie = 6, + /obj/item/reagent_containers/food/snacks/cheesiehonkers = 6, + /obj/item/reagent_containers/food/snacks/tastybread = 6, + /obj/item/reagent_containers/food/snacks/maps = 2, + /obj/item/reagent_containers/food/snacks/koisbar_clean = 4, + /obj/item/reagent_containers/food/snacks/tuna = 2, + /obj/item/reagent_containers/food/drinks/jyalra = 5, + /obj/item/reagent_containers/food/drinks/jyalra/cheese = 5, + /obj/item/reagent_containers/food/drinks/jyalra/apple = 5, + /obj/item/reagent_containers/food/drinks/jyalra/cherry = 5, + /obj/item/reagent_containers/food/drinks/cans/cola = 10, + /obj/item/reagent_containers/food/drinks/cans/diet_cola = 10, + /obj/item/reagent_containers/food/drinks/waterbottle = 10, + /obj/item/reagent_containers/food/drinks/carton/small/milk = 10, + /obj/item/reagent_containers/food/drinks/carton/small/milk/choco = 10, + /obj/item/reagent_containers/food/drinks/carton/small/milk/strawberry = 10, + /obj/item/reagent_containers/food/drinks/zobo = 10 + ) + contraband = list( + /obj/item/reagent_containers/food/snacks/syndicake = 6, + /obj/item/reagent_containers/food/snacks/koisbar = 4, + /obj/item/reagent_containers/food/drinks/cans/thirteenloko = 5, + /obj/item/reagent_containers/food/drinks/cans/koispunch = 3 + ) + premium = list( + /obj/item/reagent_containers/food/snacks/cookie = 6, + /obj/item/storage/box/fancy/food/pralinebox = 2, + /obj/item/reagent_containers/food/drinks/bottle/cola = 2, + /obj/item/reagent_containers/food/drinks/bottle/space_mountain_wind = 2, + /obj/item/reagent_containers/food/drinks/bottle/space_up = 2 + ) + prices = list( + /obj/item/reagent_containers/food/drinks/dry_ramen = 2.00, + /obj/item/reagent_containers/food/snacks/sosjerky = 3.50, + /obj/item/reagent_containers/food/snacks/spacetwinkie = 2.00, + /obj/item/reagent_containers/food/snacks/cheesiehonkers = 2.50, + /obj/item/reagent_containers/food/snacks/tastybread = 3.50, + /obj/item/reagent_containers/food/snacks/maps = 3.25, + /obj/item/reagent_containers/food/snacks/koisbar_clean = 4.25, + /obj/item/reagent_containers/food/snacks/tuna = 2.50, + /obj/item/reagent_containers/food/drinks/jyalra = 1.50, + /obj/item/reagent_containers/food/drinks/jyalra/cheese = 1.75, + /obj/item/reagent_containers/food/drinks/jyalra/apple = 1.75, + /obj/item/reagent_containers/food/drinks/jyalra/cherry = 1.75, + /obj/item/reagent_containers/food/snacks/syndicake = 3.50, + /obj/item/reagent_containers/food/snacks/koisbar = 12.00, + + /obj/item/reagent_containers/food/drinks/cans/cola = 1.50, + /obj/item/reagent_containers/food/drinks/cans/diet_cola = 1.50, + /obj/item/reagent_containers/food/drinks/cans/space_mountain_wind = 1.50, + /obj/item/reagent_containers/food/drinks/waterbottle = 1.25, + /obj/item/reagent_containers/food/drinks/cans/space_up = 1.50, + /obj/item/reagent_containers/food/drinks/cans/koispunch = 5.00, + /obj/item/reagent_containers/food/drinks/carton/small/milk = 1.80, + /obj/item/reagent_containers/food/drinks/carton/small/milk/choco = 1.80, + /obj/item/reagent_containers/food/drinks/carton/small/milk/strawberry = 1.80, + /obj/item/reagent_containers/food/drinks/zobo = 1.75 + ) + /obj/item/device/vending_refill/snack name = "snacks resupply canister" vend_id = "snacks" diff --git a/code/game/machinery/vending/soda.dm b/code/game/machinery/vending/soda.dm index 3ba0674dead..9452802611d 100644 --- a/code/game/machinery/vending/soda.dm +++ b/code/game/machinery/vending/soda.dm @@ -2,6 +2,7 @@ * Idris Re-Fresh * Low Supply * Konyang + * Horizon * Zo'ra Soda * Low Supply * BODA (Soviet Soda) @@ -108,6 +109,27 @@ /obj/item/reagent_containers/food/drinks/cans/melon_soda = 10 ) +// Reduced list of products as most are in the commissary +/obj/machinery/vending/cola/horizon + products = list( + /obj/item/reagent_containers/food/drinks/cans/cola = 10, + /obj/item/reagent_containers/food/drinks/cans/diet_cola = 10, + /obj/item/reagent_containers/food/drinks/waterbottle = 10, + /obj/item/reagent_containers/food/drinks/carton/small/milk = 10, + /obj/item/reagent_containers/food/drinks/carton/small/milk/choco = 10, + /obj/item/reagent_containers/food/drinks/carton/small/milk/strawberry = 10, + /obj/item/reagent_containers/food/drinks/zobo = 10 + ) + contraband = list( + /obj/item/reagent_containers/food/drinks/cans/thirteenloko = 5, + /obj/item/reagent_containers/food/drinks/cans/koispunch = 3 + ) + premium = list( + /obj/item/reagent_containers/food/drinks/bottle/cola = 2, + /obj/item/reagent_containers/food/drinks/bottle/space_mountain_wind = 2, + /obj/item/reagent_containers/food/drinks/bottle/space_up = 2 + ) + /obj/item/device/vending_refill/cola name = "cola resupply canister" vend_id = "cola" diff --git a/code/modules/cargo/items/operations.dm b/code/modules/cargo/items/operations.dm index 8c150de5ccc..d226fd90121 100644 --- a/code/modules/cargo/items/operations.dm +++ b/code/modules/cargo/items/operations.dm @@ -581,3 +581,157 @@ container_type = "crate" groupable = TRUE spawn_amount = 1 + +/singleton/cargo_item/cigarette_restock + category = "operations" + name = "commissary cigarette restock" + supplier = "getmore" + description = "A box full of stock for the commissary." + price = 200 + items = list( + /obj/item/commissary_restrock + ) + access = 0 + container_type = "crate" + groupable = TRUE + spawn_amount = 1 + +/singleton/cargo_item/rollable_restock + category = "operations" + name = "commissary tobacco leaves restock" + supplier = "getmore" + description = "A box full of stock for the commissary." + price = 150 + items = list( + /obj/item/commissary_restrock/rollable + ) + access = 0 + container_type = "crate" + groupable = TRUE + spawn_amount = 1 + +/singleton/cargo_item/chewable_restock + category = "operations" + name = "commissary chewing tobacco restock" + supplier = "getmore" + description = "A box full of stock for the commissary." + price = 175 + items = list( + /obj/item/commissary_restrock/chewable + ) + access = 0 + container_type = "crate" + groupable = TRUE + spawn_amount = 1 + +/singleton/cargo_item/smoking_accessory_restock + category = "operations" + name = "commissary smoking accessories restock" + supplier = "getmore" + description = "A box full of stock for the commissary." + price = 400 // includes a bunch of lottery tickets, so it should be relatively high compared to other restocks + items = list( + /obj/item/commissary_restrock/smoking_accessory + ) + access = 0 + container_type = "crate" + groupable = TRUE + spawn_amount = 1 + +/singleton/cargo_item/electric_cig_restock + category = "operations" + name = "commissary electronic cigarette restock" + supplier = "getmore" + description = "A box full of stock for the commissary." + price = 225 + items = list( + /obj/item/commissary_restrock/electronic_cig + ) + access = 0 + container_type = "crate" + groupable = TRUE + spawn_amount = 1 + +/singleton/cargo_item/snack_restock + category = "operations" + name = "commissary snack restock" + supplier = "getmore" + description = "A box full of stock for the commissary." + price = 150 + items = list( + /obj/item/commissary_restrock/food + ) + access = 0 + container_type = "crate" + groupable = TRUE + spawn_amount = 1 + +/singleton/cargo_item/xeno_restock + category = "operations" + name = "commissary xeno snack restock" + supplier = "getmore" + description = "A box full of stock for the commissary." + price = 150 + items = list( + /obj/item/commissary_restrock/food/xeno + ) + access = 0 + container_type = "crate" + groupable = TRUE + spawn_amount = 1 + +/singleton/cargo_item/candy_restock + category = "operations" + name = "commissary candy restock" + supplier = "getmore" + description = "A box full of stock for the commissary." + price = 150 + items = list( + /obj/item/commissary_restrock/food/candy + ) + access = 0 + container_type = "crate" + groupable = TRUE + spawn_amount = 1 + +/singleton/cargo_item/microwave_restock + category = "operations" + name = "commissary microwave meal restock" + supplier = "getmore" + description = "A box full of stock for the commissary." + price = 150 + items = list( + /obj/item/commissary_restrock/food/microwave + ) + access = 0 + container_type = "crate" + groupable = TRUE + spawn_amount = 1 + +/singleton/cargo_item/drink_restock + category = "operations" + name = "commissary drink restock" + supplier = "getmore" + description = "A box full of stock for the commissary." + price = 300 + items = list( + /obj/item/commissary_restrock/drink + ) + access = 0 + container_type = "crate" + groupable = TRUE + spawn_amount = 1 + +/singleton/cargo_item/cheap_booze_restock + category = "operations" + name = "commissary beer restock" + supplier = "getmore" + description = "A box full of stock for the commissary." + price = 200 + items = list( + /obj/item/commissary_restrock/drink/booze_cheap + ) + access = 0 + container_type = "crate" + groupable = TRUE + spawn_amount = 1 diff --git a/code/modules/cooking/machinery/commissary.dm b/code/modules/cooking/machinery/commissary.dm index 86c15951972..7b2736526c6 100644 --- a/code/modules/cooking/machinery/commissary.dm +++ b/code/modules/cooking/machinery/commissary.dm @@ -1,3 +1,24 @@ +/** + * Cigarette shelf + * Clothing shelf + * Food and drinks shelf + * Toy shelf + * Cash register + * Commissary restock + * Cigarettes + * Tobacco leaves + * Chewing tobacco + * Smoking accessories + * Electronic cigarette + * Snack + * Xeno snack + * Candy + * Microwave meal + * Drink + * Cheap booze + * Restock crate + */ + /obj/machinery/smartfridge/tradeshelf name = "cigarette shelf" desc = "A commercialized shelf for cigarettes and associated items." @@ -14,7 +35,8 @@ /obj/item/storage/box/fancy/matches, /obj/item/flame/lighter, /obj/item/clothing/mask/smokable/ecig, - /obj/item/reagent_containers/ecig_cartridge + /obj/item/reagent_containers/ecig_cartridge, + /obj/item/spacecash/ewallet/lotto ) display_tiers = 5 display_tier_amt = 3 @@ -41,7 +63,22 @@ active_power_usage = 100 cooling = TRUE accepted_items = list(/obj/item/reagent_containers/food, - /obj/item/storage/box/fancy/cookiesnack + /obj/item/storage/box/fancy/cookiesnack, + /obj/item/storage/box/pineapple, + /obj/item/storage/box/fancy/gum, + /obj/item/storage/box/fancy/vkrexitaffy, + /obj/item/clothing/mask/chewable/candy/lolli, + /obj/item/storage/box/fancy/admints, + /obj/item/storage/box/fancy/quick_microwave_pizza, + /obj/item/reagent_containers/food/snacks/packaged_microwave_mac_and_cheeze, + /obj/item/reagent_containers/food/snacks/packaged_microwave_fiery_mac_and_cheeze, + /obj/item/storage/box/fancy/packaged_burger, + /obj/item/storage/box/fancy/packaged_mossburger, + /obj/item/storage/box/fancy/toptarts_strawberry, + /obj/item/storage/box/fancy/toptarts_chocolate_peanutbutter, + /obj/item/storage/box/fancy/toptarts_blueberry, + /obj/item/storage/box/unique/donkpockets, + /obj/item/storage/box/fancy/yoke ) display_tiers = 4 display_tier_amt = 5 @@ -73,6 +110,28 @@ display_tiers = 4 display_tier_amt = 5 +/obj/machinery/smartfridge/tradeshelf/mouse_drop_receive(atom/dropping, mob/user, params) + LoadComponent(/datum/component/leanable, dropping) + +/obj/machinery/smartfridge/tradeshelf/attackby(obj/item/attacking_item, mob/user) + if(istype(attacking_item, /obj/item/commissary_restrock)) + var/obj/item/commissary_restrock/P = attacking_item + var/item_loaded = 0 + for(var/obj/G in P.contents) + if(accept_check(G)) + if(length(contents) >= max_n_of_items) + break + P.remove_from_storage(G,src) + item_quants[G.name]++ + item_loaded++ + if(item_loaded) + user.visible_message("[user] loads [src] with [P].", SPAN_NOTICE("You load [src] with [P].")) + if(length(P.contents) > 0) + to_chat(user, SPAN_NOTICE("Some items are refused.")) + update_overlays() + return TRUE + . = ..() + // ------------------------------------------------- /obj/structure/cash_register/commissary var/machine_id = "" @@ -345,3 +404,272 @@ buying.Cut() sum = 0 receipt = "" + +/obj/item/commissary_restrock + name = "commissary cigarette restock pack" + icon = 'icons/obj/storage/boxes.dmi' + icon_state = "commissary_restock" + item_state = "commissary_restock" + w_class = WEIGHT_CLASS_NORMAL + var/illustration = "sparkler" + var/starts_with = list( + // Cigarettes + /obj/item/storage/box/fancy/cigarettes/pra = 3, + /obj/item/storage/box/fancy/cigarettes/dpra = 3, + /obj/item/storage/box/fancy/cigarettes/nka = 3, + /obj/item/storage/box/fancy/cigarettes/federation = 3, + /obj/item/storage/box/fancy/cigarettes/dyn = 3, + /obj/item/storage/box/fancy/cigarettes/oracle = 3, + /obj/item/storage/box/fancy/cigarettes/koko = 3, + /obj/item/storage/box/fancy/cigarettes/dromedaryco = 3, + /obj/item/storage/box/fancy/cigarettes/nicotine = 3, + /obj/item/storage/box/fancy/cigarettes/cigar = 3 + ) + +/obj/item/commissary_restrock/rollable + name = "commissary tobacco leaves restock pack" + starts_with = list( + // Rollables + /obj/item/storage/chewables/rollable = 3, + /obj/item/storage/chewables/rollable/unathi = 3, + /obj/item/storage/chewables/rollable/fine = 3, + /obj/item/storage/chewables/rollable/nico = 3, + /obj/item/storage/chewables/rollable/oracle = 3, + /obj/item/storage/chewables/rollable/vedamor = 3 + ) + +/obj/item/commissary_restrock/chewable + name = "commissary chewing tobacco restock pack" + starts_with = list( + // Chewing tobacco + /obj/item/storage/chewables/tobacco = 3, + /obj/item/storage/chewables/tobacco/bad = 3, + /obj/item/storage/chewables/tobacco/fine = 3, + /obj/item/storage/chewables/tobacco/federation = 3, + /obj/item/storage/chewables/tobacco/dyn = 3, + /obj/item/storage/chewables/tobacco/koko = 3, + /obj/item/storage/box/fancy/chewables/tobacco/nico = 3, + /obj/item/storage/chewables/oracle = 3 + ) + +/obj/item/commissary_restrock/smoking_accessory + name = "commissary smoking accessories restock pack" + starts_with = list( + // Misc smoking + /obj/item/storage/cigfilters = 6, + /obj/item/storage/box/fancy/cigpaper = 3, + /obj/item/storage/box/fancy/cigpaper/fine = 3, + // Lighters & stuff + /obj/item/storage/box/fancy/matches = 5, + /obj/item/flame/lighter/random = 4, + /obj/item/flame/lighter/zippo = 4, + /obj/item/spacecash/ewallet/lotto = 8 // A bit of a risk that hangar techs may just use them instead of selling, but that should be handled IC as theft + ) + +/obj/item/commissary_restrock/electronic_cig + name = "commissary electronic cigarette restock pack" + starts_with = list( + // Electronic + /obj/item/clothing/mask/smokable/ecig/util = 3, + /obj/item/reagent_containers/ecig_cartridge/med_nicotine = 2, + /obj/item/reagent_containers/ecig_cartridge/high_nicotine = 2, + /obj/item/reagent_containers/ecig_cartridge/orange = 2, + /obj/item/reagent_containers/ecig_cartridge/watermelon = 2, + /obj/item/reagent_containers/ecig_cartridge/grape = 2 + ) + +/obj/item/commissary_restrock/food + name = "commissary snack restock pack" + illustration = "snack" + starts_with = list( + // Chips + /obj/item/reagent_containers/food/snacks/chips = 6, + /obj/item/reagent_containers/food/snacks/chips/chicken = 3, + /obj/item/reagent_containers/food/snacks/chips/cucumber = 3, + /obj/item/reagent_containers/food/snacks/chips/dirtberry = 3, + /obj/item/reagent_containers/food/snacks/chips/phoron = 3, // Not actually phoron + /obj/item/reagent_containers/food/snacks/algaechips = 2, + // General + /obj/item/reagent_containers/food/snacks/no_raisin = 3, + /obj/item/storage/box/pineapple = 2, + /obj/item/reagent_containers/food/snacks/ricetub = 4, + /obj/item/reagent_containers/food/snacks/riceball = 4, + /obj/item/reagent_containers/food/snacks/seaweed = 4, + /obj/item/reagent_containers/food/snacks/tuna = 2, + /obj/item/reagent_containers/food/drinks/dry_ramen = 3, + /obj/item/reagent_containers/food/snacks/sosjerky = 3 + ) + +/obj/item/commissary_restrock/food/xeno + name = "commissary xeno snack restock pack" + illustration = "snack" + starts_with = list( + // Skrell + /obj/item/reagent_containers/food/snacks/skrellsnacks = 3, + /obj/item/reagent_containers/food/snacks/meatsnack = 2, + /obj/item/reagent_containers/food/drinks/jyalra = 2, + /obj/item/reagent_containers/food/drinks/jyalra/cheese = 2, + /obj/item/reagent_containers/food/drinks/jyalra/apple = 2, + /obj/item/reagent_containers/food/drinks/jyalra/cherry = 2, + // Vaurca + /obj/item/reagent_containers/food/snacks/koisbar_clean = 6, + // Unathi + /obj/item/reagent_containers/food/snacks/nathisnack = 2, + /obj/item/reagent_containers/food/snacks/candy/koko = 3, + // Tajara + /obj/item/reagent_containers/food/snacks/adhomian_can = 2, + ) + +/obj/item/commissary_restrock/food/candy + name = "commissary candy restock pack" + starts_with = list( + // Candy + /obj/item/reagent_containers/food/snacks/candy = 4, + /obj/item/reagent_containers/food/snacks/chocolatebar = 4, + /obj/item/reagent_containers/food/snacks/whitechocolate/wrapped = 4, + /obj/item/storage/box/fancy/cookiesnack = 3, + /obj/item/storage/box/fancy/gum = 4, + /obj/item/storage/box/fancy/vkrexitaffy = 3, + /obj/item/clothing/mask/chewable/candy/lolli = 5, + /obj/item/storage/box/fancy/admints = 3, + /obj/item/reagent_containers/food/drinks/bottle/bestblend, + /obj/item/storage/box/fancy/foysnack, + /obj/item/reagent_containers/food/snacks/choctruffles + ) + +/obj/item/commissary_restrock/food/microwave + name = "commissary microwave meal restock pack" + starts_with = list( + // Microwave meals + /obj/item/storage/box/fancy/quick_microwave_pizza = 3, + /obj/item/storage/box/fancy/quick_microwave_pizza/olive = 3, + /obj/item/storage/box/fancy/quick_microwave_pizza/pepperoni = 3, + /obj/item/storage/box/fancy/quick_microwave_pizza/district6 = 3, + /obj/item/reagent_containers/food/snacks/packaged_microwave_mac_and_cheeze = 3, + /obj/item/reagent_containers/food/snacks/packaged_microwave_fiery_mac_and_cheeze = 3, + /obj/item/storage/box/fancy/packaged_burger = 3, + /obj/item/storage/box/fancy/packaged_mossburger = 2, + /obj/item/reagent_containers/food/snacks/quick_curry = 3, + /obj/item/reagent_containers/food/snacks/hv_dinner = 3, + /obj/item/storage/box/fancy/toptarts_strawberry = 3, + /obj/item/storage/box/fancy/toptarts_chocolate_peanutbutter = 3, + /obj/item/storage/box/fancy/toptarts_blueberry = 3, + /obj/item/storage/box/unique/donkpockets = 3 + ) + +/obj/item/commissary_restrock/drink + name = "commissary drink restock pack" + illustration = "soda" + starts_with = list( + // Soda + /obj/item/reagent_containers/food/drinks/cans/cola = 5, + /obj/item/reagent_containers/food/drinks/cans/diet_cola = 5, + /obj/item/reagent_containers/food/drinks/cans/space_mountain_wind = 5, + /obj/item/reagent_containers/food/drinks/cans/dr_gibb = 5, + /obj/item/reagent_containers/food/drinks/cans/starkist = 5, + /obj/item/reagent_containers/food/drinks/cans/peach_soda = 5, + /obj/item/reagent_containers/food/drinks/cans/space_up = 5, + /obj/item/reagent_containers/food/drinks/cans/melon_soda = 5, + // Misc + /obj/item/reagent_containers/food/drinks/waterbottle = 5, + /obj/item/reagent_containers/food/drinks/cans/root_beer = 5, + /obj/item/reagent_containers/food/drinks/cans/iced_tea = 5, + /obj/item/reagent_containers/food/drinks/cans/grape_juice = 5, + /obj/item/reagent_containers/food/drinks/zobo = 5, + // Skrell + /obj/item/reagent_containers/food/drinks/cans/dyn = 5, + // Tajara + /obj/item/reagent_containers/food/drinks/cans/hrozamal_soda = 5, + /obj/item/reagent_containers/food/drinks/cans/adhomai_milk = 3, + // Milk + /obj/item/reagent_containers/food/drinks/cans/beetle_milk = 5, + /obj/item/reagent_containers/food/drinks/carton/small/milk = 5, + /obj/item/reagent_containers/food/drinks/carton/small/milk/choco = 5, + /obj/item/reagent_containers/food/drinks/carton/small/milk/strawberry = 5 + ) + +/obj/item/commissary_restrock/drink/booze_cheap + name = "commissary cheap booze restock pack" + starts_with = list( + // Booze + /obj/item/storage/box/fancy/yoke/beer = 2, + /obj/item/storage/box/fancy/yoke/ebisu = 2, + /obj/item/storage/box/fancy/yoke/shimauma = 2, + /obj/item/reagent_containers/food/drinks/cans/beer = 6, + /obj/item/reagent_containers/food/drinks/cans/beer/rice = 6, + /obj/item/reagent_containers/food/drinks/cans/beer/rice/shimauma = 6, + /obj/item/reagent_containers/food/drinks/cans/beer/whistlingforest = 6, + /obj/item/reagent_containers/food/drinks/bottle/small/xuizijuice = 6 + ) + +/obj/item/commissary_restrock/Initialize(mapload, ...) + . = ..() + if(illustration) + var/image/illustration_img = image(icon, illustration) + illustration_img.appearance_flags |= RESET_COLOR + AddOverlays(illustration_img) + fill() + +/obj/item/commissary_restrock/proc/fill() + if(LAZYLEN(starts_with)) + for(var/t in starts_with) + if(!ispath(t)) + crash_with("[t] in [src]'s starts_with list is not a path!") + continue + for(var/i=0, i 0) - items.Add(list(list("display_name" = html_encode(capitalize(K)), "vend" = i, "quantity" = count))) + items.Add(list(list("display_name" = capitalize(K), "vend" = i, "quantity" = count))) if(length(items) > 0) data["contents"] = items diff --git a/html/changelogs/YetAnotherCommissaryChange.yml b/html/changelogs/YetAnotherCommissaryChange.yml new file mode 100644 index 00000000000..04b0092dcd0 --- /dev/null +++ b/html/changelogs/YetAnotherCommissaryChange.yml @@ -0,0 +1,11 @@ +author: TheGreyWolf & Kaizr + +delete-after: True + +changes: + - rscadd: "Commissary restocks are now supplied to operations." + - rscadd: "It is now possible to order commissary restocks from the ordering console." + - rscadd: "The commissary was expanded in size and the library reduced in size." + - rscdel: "The cigarette, getmore and idris refresh machines had their stock severely reduced, with idris refresh and getmore being combined into a single vending machine on the Horizon." + - bugfix: "Smartfridges sanitization was fixed." + - rscadd: "The specialized commissary shelves can now be leaned on." diff --git a/icons/obj/storage/boxes.dmi b/icons/obj/storage/boxes.dmi index 427cb4372e8..7f9c6398793 100644 Binary files a/icons/obj/storage/boxes.dmi and b/icons/obj/storage/boxes.dmi differ diff --git a/maps/sccv_horizon/sccv_horizon.dmm b/maps/sccv_horizon/sccv_horizon.dmm index f9e260691e4..7aee7cdbf06 100644 --- a/maps/sccv_horizon/sccv_horizon.dmm +++ b/maps/sccv_horizon/sccv_horizon.dmm @@ -801,6 +801,25 @@ /obj/machinery/alarm/east, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/reactor/supermatter/waste) +"aeC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atm{ + dir = 1; + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/commissary) "aeH" = ( /obj/structure/table/rack, /obj/item/ammo_magazine/gauss{ @@ -1302,6 +1321,10 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/storage/eva) +"agL" = ( +/obj/structure/closet/crate/commissary, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/commissary) "agP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1318,6 +1341,10 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/hangar/intrepid) +"agU" = ( +/obj/machinery/smartfridge/tradeshelf/clothing, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/commissary) "agV" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 1 @@ -1422,6 +1449,15 @@ icon_state = "4,0" }, /area/shuttle/transport1) +"ahA" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) "ahB" = ( /turf/simulated/wall/r_wall, /area/horizon/service/custodial/disposals/deck_1) @@ -1553,6 +1589,11 @@ /obj/structure/railing/mapped, /turf/simulated/floor/grass/no_edge, /area/horizon/rnd/hallway/secondary) +"aii" = ( +/obj/item/device/radio/intercom/south, +/obj/structure/table/rack/retail_shelf, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/commissary) "aio" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -2443,6 +2484,21 @@ icon_state = "white" }, /area/tdome/tdomeobserve) +"aoj" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/interrogation) "aok" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2515,15 +2571,6 @@ /obj/random/loot, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/holodeck) -"aoD" = ( -/obj/machinery/fabricator/autolathe/hacked, -/obj/machinery/light/small{ - dir = 4; - name = "old light fixture"; - pixel_y = -8 - }, -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) "aoE" = ( /turf/simulated/wall/r_wall, /area/horizon/command/heads/hos) @@ -2603,11 +2650,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/near) -"apo" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/cola, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hallway/primary/deck_3/port) "apz" = ( /obj/machinery/door/blast/shutters/open{ dir = 2; @@ -2809,19 +2851,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/office) -"arb" = ( -/obj/structure/table/rack/retail_shelf, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/power/apc/south, -/obj/structure/cable/green, -/obj/item/device/hand_labeler, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 13 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/commissary) "arj" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -3049,6 +3078,13 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) +"atl" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/bookcase/libraryspawn/fiction, +/turf/simulated/floor/wood, +/area/horizon/service/library) "atp" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /turf/unsimulated/floor, @@ -3423,6 +3459,11 @@ /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/plating, /area/antag/mercenary) +"auR" = ( +/obj/structure/table/rack/retail_shelf, +/obj/machinery/light, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/commissary) "auT" = ( /obj/structure/platform/ledge{ dir = 1 @@ -3678,30 +3719,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_3/auxatmos) -"avO" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/horizon/command/bridge/meeting_room) "avV" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -3751,6 +3768,29 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/storage/eva) +"awl" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/main/starboard) "awq" = ( /obj/structure/railing/mapped{ dir = 8 @@ -3862,6 +3902,18 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/custodial) +"axm" = ( +/obj/structure/sign/emergency/evacuation{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hangar/operations) "axn" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -4050,6 +4102,30 @@ /obj/machinery/portable_atmospherics/hydroponics/soil, /turf/simulated/floor/grass/no_edge, /area/horizon/service/hydroponics/garden) +"ayu" = ( +/obj/machinery/door/airlock/glass_service{ + dir = 8; + name = "Library" + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/service/library) "ayw" = ( /obj/structure/lattice, /obj/structure/grille, @@ -4649,23 +4725,6 @@ /obj/structure/curtain/open/medical, /turf/simulated/floor/tiled/white, /area/horizon/medical/ward) -"aCH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/operations, -/obj/machinery/vending/quick_e_meals, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/full, -/area/horizon/operations/commissary) "aCQ" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -5022,6 +5081,16 @@ }, /turf/unsimulated/floor/wood, /area/centcom/evac) +"aGr" = ( +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/obj/structure/platform_stairs, +/obj/structure/platform{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/operations) "aGs" = ( /obj/structure/sign/christmas/snowman/hat, /turf/simulated/floor/exoplanet/snow, @@ -6086,18 +6155,6 @@ /obj/effect/shuttle_landmark/ccia/start, /turf/simulated/floor/shuttle/dark_blue, /area/shuttle/transport1) -"aMA" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/engineering/hallway/interior) "aMB" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -6605,6 +6662,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/horizon/rnd/xenoarch/atrium) +"aPv" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "aPx" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -7326,6 +7390,12 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) +"aUW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "aUX" = ( /obj/structure/railing/mapped, /obj/effect/floor_decal/corner_wide/yellow{ @@ -7352,16 +7422,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/storage/eva) -"aUZ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled, -/area/horizon/hangar/intrepid) "aVa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 6 @@ -7713,26 +7773,6 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/storage/eva) -"aXF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/fake_object{ - density = 1; - desc = "A particularly scuffed cargo trolley."; - icon = 'icons/obj/vehicles.dmi'; - icon_state = "cargo_trailer"; - name = "cargo trailer"; - pixel_x = 1 - }, -/obj/effect/decal/fake_object{ - desc = "This one looks particularly heavy."; - icon = 'icons/obj/containers/crate.dmi'; - icon_state = "tcfl_crate_preview"; - name = "legion supply crate"; - pixel_x = 1; - pixel_y = 3 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) "aXL" = ( /obj/structure/table/wood, /obj/item/clothing/accessory/holster/armpit, @@ -8586,6 +8626,25 @@ /obj/effect/step_trigger/thrower/shuttle/east, /turf/space/transit/north, /area/template_noop) +"bdI" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/commissary) "bdS" = ( /obj/effect/mist, /turf/simulated/floor/exoplanet/water/shallow{ @@ -8629,30 +8688,6 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"bel" = ( -/obj/structure/table/wood, -/obj/machinery/power/outlet, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/pen{ - pixel_x = 5; - pixel_y = 13 - }, -/obj/item/paper/crumpled{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/item/toy/desk/fan{ - pixel_x = -1; - pixel_y = -6 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet/red, -/area/horizon/service/library) "bep" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -8826,6 +8861,16 @@ /obj/machinery/recharge_station, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/break_room) +"bfB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "bfC" = ( /turf/simulated/open, /area/horizon/stairwell/starboard/deck_3) @@ -8876,6 +8921,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/crew/vacantoffice) +"bfN" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/vending/snack/horizon, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) "bfO" = ( /turf/simulated/floor/holofloor/grass{ dir = 1; @@ -9541,35 +9593,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/rnd/hallway) -"bjm" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/window/shuttle/scc_space_ship, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/horizon/command/bridge/meeting_room) "bjs" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -9623,6 +9646,9 @@ }, /turf/simulated/floor/plating, /area/horizon/shuttle/quark/cargo_hold) +"bjz" = ( +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "bjB" = ( /obj/machinery/recharge_station, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -10072,6 +10098,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/hangar/auxiliary) +"bmW" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/platform_deco{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/operations) "bmX" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 6 @@ -10554,6 +10587,12 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/weapons/grauwolf) +"bpr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/library) "bps" = ( /obj/machinery/door/airlock/maintenance{ req_one_access = list(12,26,29,31,48,67); @@ -11002,10 +11041,6 @@ "bsx" = ( /turf/simulated/wall/r_wall, /area/horizon/engineering/reactor/supermatter/waste) -"bsD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/horizon/service/library) "bsG" = ( /obj/structure/table/stone/marble, /obj/effect/floor_decal/spline/fancy/wood{ @@ -11060,15 +11095,6 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/bluespace_drive/monitoring) -"bsU" = ( -/obj/effect/floor_decal/corner_wide/grey/diagonal, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/vending/cola, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/break_room) "bsX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black, /obj/effect/floor_decal/spline/plain/black{ @@ -12466,6 +12492,16 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/lobby) +"bDF" = ( +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/structure/railing/retractable, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad"; + color = "#CCCCCC" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hangar/operations) "bDI" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 1 @@ -13315,26 +13351,6 @@ /obj/effect/floor_decal/corner/green/full, /turf/unsimulated/floor, /area/centcom/bar) -"bKF" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_1/main/starboard) "bKH" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -13512,6 +13528,17 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/service/bar) +"bLY" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/engineer_maintenance/pipe/wall, +/obj/machinery/bookbinder, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/horizon/service/library) "bMd" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -15236,13 +15263,6 @@ }, /turf/space, /area/horizon/exterior) -"bYz" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/horizon/holodeck/source_combat_training) "bYE" = ( /obj/effect/shuttle_landmark/escape_pod/transit/pod2, /turf/space/transit/east, @@ -16022,12 +16042,6 @@ }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/weapons/grauwolf) -"cep" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/exoplanet/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "cet" = ( /obj/machinery/power/apc/north, /obj/structure/cable/green{ @@ -16051,21 +16065,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/starboard/far) -"ceC" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/commissary) "ceE" = ( /obj/machinery/cryopod/living_quarters{ pixel_y = 8 @@ -16269,10 +16268,6 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/shared_dream) -"cga" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood, -/area/horizon/service/library) "cgc" = ( /obj/structure/railing/mapped{ dir = 4 @@ -17299,13 +17294,6 @@ /obj/effect/floor_decal/spline/plain/black, /turf/simulated/floor/carpet/rubber, /area/horizon/tcommsat/chamber) -"cnP" = ( -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_2/aft) "cod" = ( /obj/structure/cable{ icon_state = "4-8" @@ -17665,6 +17653,16 @@ /obj/machinery/mech_recharger, /turf/simulated/floor/plating, /area/horizon/crew/chargebay) +"cqu" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/fore) "cqw" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -17695,6 +17693,12 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/open, /area/horizon/maintenance/deck_2/wing/starboard) +"cqF" = ( +/obj/structure/sign/radiation{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) "cqO" = ( /obj/effect/floor_decal/corner/yellow/full{ dir = 1 @@ -18707,17 +18711,6 @@ /obj/effect/floor_decal/industrial/hatch/engineering, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/mainchamber) -"cwS" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/door/window/westleft{ - req_one_access = list(26,29,31,48,67,35,25,28,37) - }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "horizon_commissary_desk" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/commissary) "cwT" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 9 @@ -18826,31 +18819,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/hydroponics) -"cxD" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, -/turf/simulated/floor/plating, -/area/horizon/command/bridge/meeting_room) "cxF" = ( /obj/machinery/computer/general_air_control/large_tank_control/terminal{ input_tag = "fusion_injector_air"; @@ -19172,6 +19140,23 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/dark, /area/horizon/hallway/primary/deck_3/central) +"czk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/fake_object{ + density = 1; + desc = "A wooden crate containing spare parts."; + icon = 'icons/obj/containers/crate.dmi'; + icon_state = "densecrate"; + name = "mechanical supply crate"; + pixel_x = 1 + }, +/obj/structure/sign/emergency/exit/ladder{ + dir = 1; + pixel_x = -9; + pixel_y = 30 + }, +/turf/unsimulated/floor/plating, +/area/centcom/legion) "czl" = ( /obj/machinery/door/airlock/external{ dir = 4; @@ -19300,10 +19285,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/command/heads/cmo) -"cAf" = ( -/obj/effect/landmark/holodeck/holocarp_spawn_pain, -/turf/simulated/floor/holofloor/tiled, -/area/horizon/holodeck/source_combat_training) "cAg" = ( /turf/simulated/wall/shuttle/unique/ert{ icon_state = "0,3" @@ -19475,6 +19456,18 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) +"cBG" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/bed/stool/chair/padded/beige{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "cBI" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden, /obj/effect/map_effect/marker/airlock{ @@ -19869,15 +19862,6 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) -"cEI" = ( -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Central Ring Port"; - dir = 8 - }, -/obj/machinery/vending/cola, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/cafeteria) "cEN" = ( /obj/structure/bed/stool/chair/padded/brown{ can_buckle = 0; @@ -20099,14 +20083,6 @@ /obj/machinery/photocopier, /turf/simulated/floor/tiled/full, /area/horizon/command/bridge/cciaroom) -"cGM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/coatrack{ - pixel_x = -11; - pixel_y = 19 - }, -/turf/simulated/floor/wood, -/area/horizon/service/library) "cGR" = ( /obj/machinery/light/small{ dir = 1 @@ -20201,6 +20177,16 @@ /obj/random/dirt_75, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_3/aft/starboard) +"cHm" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hangar/operations) "cHu" = ( /obj/effect/floor_decal/corner/green{ dir = 10 @@ -20292,23 +20278,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/aft) -"cHO" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/machinery/light_switch{ - dir = 5; - pixel_x = -26 - }, -/obj/machinery/button/remote/blast_door{ - dir = 9; - id = "shutters_deck3_bridgesafety"; - name = "Bridge Safety Shutters"; - pixel_x = -26; - pixel_y = 8 - }, -/turf/simulated/floor/carpet, -/area/horizon/command/bridge/meeting_room) "cHX" = ( /obj/structure/cable{ icon_state = "1-2" @@ -20361,21 +20330,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway/upper) -"cIj" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/obj/structure/railing/retractable{ - dir = 4 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/machinery/light/floor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hangar/operations) "cIn" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 @@ -20534,6 +20488,13 @@ name = "overgrowth" }, /area/horizon/holodeck/source_moghes) +"cJm" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "cJo" = ( /obj/structure/bed/stool/chair/padded/blue{ dir = 8 @@ -20719,6 +20680,17 @@ dir = 4 }, /area/horizon/holodeck/source_pool) +"cKq" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) "cKr" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -20839,10 +20811,37 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_battlemonsters) +"cLL" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/computer/general_air_control/large_tank_control/wall{ + input_tag = "n2o_in"; + name = "Nitrous Oxide Supply Monitor"; + output_tag = "n2o_out"; + pixel_x = 32; + sensors = list("n2o_sensor"="Tank") + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "cLM" = ( /obj/random/dirt_75, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_3/auxatmos) +"cLT" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/coatrack{ + pixel_x = -9 + }, +/turf/simulated/floor/wood, +/area/horizon/service/library) "cLU" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/lattice/catwalk/indoor/grate/dark, @@ -20992,15 +20991,15 @@ icon_state = "dark_preview" }, /area/centcom/control) -"cNe" = ( -/obj/structure/table/wood, -/obj/machinery/power/outlet, -/obj/random/pottedplant_small{ - pixel_x = 7; - pixel_y = 9 +"cNc" = ( +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad"; + color = "#CCCCCC" }, -/turf/simulated/floor/wood, -/area/horizon/service/library) +/turf/simulated/floor/tiled/dark/full, +/area/supply/dock) "cNg" = ( /obj/effect/floor_decal/corner/green{ dir = 9 @@ -21200,6 +21199,26 @@ }, /turf/simulated/floor, /area/horizon/command/heads/captain) +"cOH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + name = "Library"; + sortType = "Library" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/fore) "cOI" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 @@ -21918,6 +21937,12 @@ }, /turf/simulated/floor/exoplanet/barren, /area/centcom/shared_dream) +"cTw" = ( +/obj/structure/bed/stool/chair/sofa/red{ + dir = 1 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/library) "cTD" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -22063,6 +22088,11 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/rnd/conference) +"cUb" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/vending/snack/horizon, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/lobby) "cUd" = ( /obj/machinery/door/window/westright{ name = "Firing Range Access" @@ -22456,6 +22486,17 @@ }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/maintenance/deck_2/wing/port/nacelle) +"cWC" = ( +/obj/effect/decal/fake_object{ + density = 1; + desc = "A wooden crate containing spare parts."; + icon = 'icons/obj/containers/crate.dmi'; + icon_state = "densecrate"; + name = "mechanical supply crate"; + pixel_x = 1 + }, +/turf/unsimulated/floor/plating, +/area/centcom/legion/hangar5) "cWD" = ( /obj/structure/sink{ dir = 8; @@ -23086,9 +23127,6 @@ /obj/machinery/vending/generic_clothing, /turf/unsimulated/floor/monotile, /area/antag/loner) -"dat" = ( -/turf/simulated/floor/holofloor/tiled, -/area/horizon/holodeck/source_combat_training) "daB" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -25340,16 +25378,6 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/legion) -"doX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/engineering/hallway/fore) "dpa" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/visible/red, @@ -25828,6 +25856,11 @@ }, /turf/unsimulated/floor/monotile, /area/antag/mercenary) +"drr" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/vending/snack/horizon, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/hallway/fore) "dry" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -26521,13 +26554,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/shuttle/intrepid/main_compartment) -"dwp" = ( -/obj/machinery/vending/cigarette{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/simulated/floor/wood/walnut, -/area/horizon/medical/smoking) "dwq" = ( /obj/machinery/light/small{ dir = 8 @@ -26594,6 +26620,12 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/mail_room) +"dwE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/engineering/hallway/fore) "dwG" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; @@ -27029,6 +27061,14 @@ }, /turf/simulated/floor/tiled, /area/horizon/engineering/hallway/interior) +"dzJ" = ( +/obj/machinery/fabricator/autolathe/hacked, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/shuttle/merchant) "dzN" = ( /obj/effect/floor_decal/corner_wide/black{ dir = 9 @@ -27099,24 +27139,6 @@ /obj/random/loot, /turf/simulated/floor, /area/horizon/maintenance/deck_3/security/port) -"dAi" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/service/library) "dAj" = ( /obj/structure/bed/stool/chair/padded/brown{ dir = 4 @@ -27275,12 +27297,31 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/machinist) +"dBa" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "dBe" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 10 }, /turf/unsimulated/floor, /area/centcom/holding) +"dBf" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hallway/primary/deck_3/port) "dBg" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 @@ -27323,6 +27364,10 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_battlemonsters) +"dBq" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/exoplanet/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "dBs" = ( /obj/effect/floor_decal/spline/plain{ dir = 9 @@ -28536,6 +28581,21 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/service/custodial/disposals/deck_1) +"dJl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/commissary) "dJn" = ( /obj/effect/floor_decal/corner/mauve/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -28576,6 +28636,23 @@ }, /turf/simulated/floor/wood, /area/horizon/command/heads/om) +"dJy" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = -20 + }, +/obj/machinery/button/remote/blast_door{ + dir = 9; + id = "shutters_deck3_bridgesafety"; + name = "Bridge Safety Shutters"; + pixel_x = -29 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) "dJC" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -28646,6 +28723,14 @@ "dKa" = ( /turf/simulated/wall, /area/horizon/maintenance/substation/security) +"dKf" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/obj/machinery/vending/snack/horizon, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) "dKr" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /obj/random/loot{ @@ -28887,6 +28972,17 @@ }, /turf/simulated/floor/wood, /area/merchant_station) +"dMF" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/sign/waste_station{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/hallway/aft) "dMG" = ( /obj/effect/floor_decal/corner/mauve/full, /turf/simulated/floor/tiled, @@ -29652,6 +29748,35 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/mainchamber) +"dSj" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad"; + pixel_x = 7; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) "dSk" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -29748,13 +29873,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/lobby) -"dTh" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/service/library) "dTl" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -30428,13 +30546,6 @@ /obj/item/device/radio/intercom/east, /turf/simulated/floor/tiled/white, /area/horizon/medical/ward) -"dYl" = ( -/obj/effect/floor_decal/corner/red, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled, -/area/horizon/holodeck/source_combat_training) "dYm" = ( /obj/machinery/conveyor{ id = "cargo_1" @@ -30476,26 +30587,6 @@ }, /turf/simulated/floor/reinforced, /area/horizon/engineering/gravity_gen) -"dYT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/east, -/turf/simulated/floor/wood, -/area/horizon/service/library) "dYV" = ( /obj/structure/table/steel, /obj/item/paper_bin{ @@ -30592,6 +30683,19 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor, /area/horizon/maintenance/deck_3/cafe) +"dZA" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Commissary Maintenance"; + req_one_access = list(25,26,28,29,31,35,37,48,67) + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/commissary) "dZB" = ( /obj/random/tech_supply, /obj/random/tool, @@ -30853,6 +30957,19 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_gym) +"ebm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "ebn" = ( /obj/structure/railing/mapped{ dir = 8 @@ -31037,6 +31154,26 @@ icon_state = "dark_preview" }, /area/centcom/control) +"ecn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/fake_object{ + density = 1; + desc = "A particularly scuffed cargo trolley."; + icon = 'icons/obj/vehicles.dmi'; + icon_state = "cargo_trailer"; + name = "cargo trailer"; + pixel_x = 1 + }, +/obj/effect/decal/fake_object{ + desc = "This one looks particularly heavy."; + icon = 'icons/obj/containers/crate.dmi'; + icon_state = "tcfl_crate_preview"; + name = "legion supply crate"; + pixel_x = 1; + pixel_y = 3 + }, +/turf/unsimulated/floor/plating, +/area/centcom/legion) "ecr" = ( /obj/effect/floor_decal/spline/plain/cee, /turf/simulated/floor/carpet/rubber, @@ -31435,6 +31572,13 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) +"eeI" = ( +/obj/effect/floor_decal/corner_wide/yellow/full{ + dir = 8 + }, +/obj/machinery/newscaster/west, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) "eeO" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 @@ -31453,12 +31597,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/hallway/primary/deck_2/fore) -"efc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/lino/diamond, -/area/horizon/service/library) "efg" = ( /turf/simulated/wall/r_wall, /area/horizon/security/hallway) @@ -31826,6 +31964,21 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/main/port) +"ehd" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) "ehh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -31836,14 +31989,6 @@ /obj/effect/floor_decal/corner/dark_blue/diagonal, /turf/simulated/floor/tiled/dark, /area/horizon/security/checkpoint) -"ehj" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/vending/snack, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/horizon/security/checkpoint2) "ehl" = ( /obj/machinery/light/colored/blue{ dir = 4 @@ -33196,26 +33341,6 @@ name = "mossy grass" }, /area/horizon/holodeck/source_konyang) -"erg" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - name = "Library"; - sortType = "Library" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/primary/deck_2/fore) "eri" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -33279,16 +33404,6 @@ }, /turf/unsimulated/floor/wood, /area/antag/raider) -"erE" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/obj/structure/engineer_maintenance/electric{ - dir = 1 - }, -/obj/random/pottedplant, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/fore) "erI" = ( /obj/effect/shuttle_landmark/escape_pod/transit/pod4, /turf/space/transit/east, @@ -33765,6 +33880,26 @@ /obj/structure/sign/nosmoking_1, /turf/simulated/wall, /area/horizon/rnd/eva) +"euQ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) "euR" = ( /obj/item/holomenu/holodeck, /turf/simulated/wall, @@ -34068,12 +34203,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/horizon/medical/gen_treatment) -"exs" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/commissary) "exx" = ( /turf/simulated/wall/shuttle/unique/scc/mining{ icon_state = "4,2" @@ -34148,35 +34277,6 @@ }, /turf/simulated/floor/airless, /area/horizon/hangar/operations) -"eyb" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/conveyor_switch/oneway{ - id = "QMLoad"; - pixel_x = 7; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/loading) "eyc" = ( /obj/machinery/door/airlock/external, /obj/machinery/access_button{ @@ -34924,6 +35024,18 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/mainchamber) +"eDW" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/structure/railing/retractable{ + dir = 4 + }, +/obj/structure/platform_deco{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hangar/operations) "eEa" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 @@ -35324,6 +35436,25 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hangar/intrepid) +"eFY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/horizon/service/library) "eGa" = ( /obj/effect/shuttle_landmark/horizon/exterior/deck_3/fore, /turf/template_noop, @@ -35800,18 +35931,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/atmos/turbine) -"eJf" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad" - }, -/obj/effect/floor_decal/industrial/hatch/operations, -/obj/structure/plasticflaps, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hangar/operations) "eJh" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -35871,6 +35990,35 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) +"eJJ" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) +"eJM" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) "eKq" = ( /obj/effect/floor_decal/corner/lime{ dir = 8 @@ -35884,6 +36032,22 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/horizon/medical/morgue) +"eKv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/service/library) "eKF" = ( /obj/structure/girder, /obj/effect/decal/cleanable/dirt, @@ -37512,15 +37676,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/brig) -"eVZ" = ( -/obj/effect/floor_decal/corner/red{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/horizon/holodeck/source_combat_training) "eWc" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -37717,15 +37872,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/command/heads/xo) -"eXx" = ( -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/horizon/holodeck/source_combat_training) "eXB" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 @@ -37985,22 +38131,6 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/monotile, /area/antag/raider) -"eZE" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/obj/machinery/door/airlock/glass{ - dir = 4; - name = "Cafe Storage"; - glass = 0 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/cafeteria) "eZH" = ( /turf/simulated/floor/tiled, /area/horizon/stairwell/port/deck_2) @@ -38292,6 +38422,15 @@ icon_state = "dark_preview" }, /area/centcom/control) +"fbS" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/commissary) "fbT" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -38643,6 +38782,14 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/horizon/operations/mining_main/refinery) +"feo" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/port) "fer" = ( /obj/structure/table/standard, /obj/item/folder/purple, @@ -39081,6 +39228,10 @@ }, /turf/simulated/floor, /area/horizon/ai/upload_foyer) +"fgX" = ( +/obj/effect/decal/fake_object/light_source/invisible, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "fgY" = ( /obj/machinery/firealarm/south, /obj/effect/floor_decal/corner/dark_blue/full, @@ -39252,12 +39403,6 @@ /obj/machinery/light/floor, /turf/simulated/floor/tiled/full, /area/supply/dock) -"fif" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled, -/area/horizon/holodeck/source_combat_training) "fij" = ( /obj/structure/tank_wall{ icon_state = "m-3" @@ -40039,11 +40184,6 @@ /turf/simulated/wall/r_wall, /area/horizon/engineering/storage_hard/upper) "foB" = ( -/obj/machinery/door/airlock/glass_security{ - desc = "It opens and closes. Hazardous lifeforms ahead. Caution advised!"; - dir = 1; - name = "Security Lobby" - }, /obj/machinery/door/firedoor, /obj/machinery/door/blast/regular{ density = 0; @@ -40056,6 +40196,11 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow{ dir = 8 }, +/obj/machinery/door/airlock/glass_security{ + desc = "It opens and closes. Hazardous lifeforms ahead. Caution advised!"; + dir = 1; + name = "Security Lobby" + }, /turf/simulated/floor/tiled/full, /area/horizon/security/lobby) "foD" = ( @@ -40066,6 +40211,18 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/plating, /area/horizon/engineering/reactor/supermatter/airlock) +"foE" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/platform_deco{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/operations) +"foH" = ( +/obj/effect/floor_decal/industrial/hatch/grey, +/obj/machinery/vending/frontiervend, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/starboard) "foJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -40104,18 +40261,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/service/hydroponics) -"foM" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hangar/operations) "foN" = ( /obj/effect/floor_decal/corner/yellow{ dir = 10 @@ -40231,6 +40376,11 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/antag/burglar) +"fpz" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/vending/snack/horizon, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hallway/primary/deck_3/port) "fpB" = ( /obj/structure/cable/green{ icon_state = "1-4" @@ -40385,6 +40535,18 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/near) +"fqH" = ( +/obj/structure/sign/emergency/evacuation/pods{ + pixel_x = -32 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "fqO" = ( /obj/structure/railing/mapped, /obj/effect/floor_decal/corner/black{ @@ -40489,6 +40651,11 @@ }, /turf/simulated/open, /area/horizon/maintenance/deck_2/operations) +"frl" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/platform, +/turf/simulated/floor/plating, +/area/horizon/hangar/operations) "frm" = ( /obj/structure/table/reinforced/steel, /obj/item/paper_bin{ @@ -40545,6 +40712,14 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/atmos/turbine) +"frz" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/alarm/west, +/obj/structure/table/wood, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "frB" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /obj/structure/cable/green{ @@ -40711,6 +40886,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_2/starboard) +"ftp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/random/keg, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/port) "ftx" = ( /obj/structure/table/standard, /obj/item/reagent_containers/glass/beaker/large, @@ -40725,17 +40907,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/supply/dock) -"ftI" = ( -/obj/effect/decal/fake_object{ - density = 1; - desc = "A wooden crate containing spare parts."; - icon = 'icons/obj/containers/crate.dmi'; - icon_state = "densecrate"; - name = "mechanical supply crate"; - pixel_x = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) "ftU" = ( /obj/structure/table/standard, /obj/item/autopsy_scanner{ @@ -40859,13 +41030,6 @@ }, /turf/unsimulated/floor/marble, /area/antag/wizard) -"fuN" = ( -/obj/structure/table/wood, -/obj/machinery/librarycomp{ - pixel_y = 4 - }, -/turf/simulated/floor/carpet/red, -/area/horizon/service/library) "fuP" = ( /obj/effect/floor_decal/corner/lime/diagonal, /obj/structure/cable/green{ @@ -41404,6 +41568,17 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway) +"fzv" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad"; + color = "#CCCCCC" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/industrial/hatch/operations, +/turf/simulated/floor/tiled/dark/full, +/area/supply/dock) "fzw" = ( /obj/effect/decal/fake_object{ color = "#ff0000"; @@ -41509,25 +41684,6 @@ /obj/effect/floor_decal/corner/dark_green/diagonal, /turf/simulated/floor/tiled, /area/horizon/crew/fitness/changing) -"fAd" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/commissary) "fAf" = ( /turf/unsimulated/floor/grass, /area/antag/actor) @@ -41659,13 +41815,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"fBB" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/papershredder, -/turf/simulated/floor/wood, -/area/horizon/service/library) "fBC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -42000,6 +42149,17 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/lobby) +"fEj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/machinery/conveyor{ + id = "cargo_1"; + color = "#CCCCCC" + }, +/turf/simulated/floor/tiled/dark/full, +/area/supply/dock) "fEm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -42423,6 +42583,13 @@ icon_state = "carpet" }, /area/antag/raider) +"fHe" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/bookcase/libraryspawn/nonfiction, +/turf/simulated/floor/wood, +/area/horizon/service/library) "fHg" = ( /obj/machinery/ammunition_loader/longbow{ weapon_id = "Longbow Cannon" @@ -42461,6 +42628,18 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) +"fHF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/undies_wardrobe{ + anchored = 1; + icon = 'icons/obj/containers/crate.dmi'; + icon_state = "drop_crate-grey"; + name = "underwear crate" + }, +/turf/unsimulated/floor, +/area/antag/ninja) "fHO" = ( /obj/structure/disposalpipe/sortjunction{ dir = 4; @@ -42509,6 +42688,12 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/main/port/shortcut) +"fIj" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "fIm" = ( /obj/machinery/door/blast/regular/open{ id = "tcflcheckpointouter"; @@ -42569,16 +42754,6 @@ /obj/machinery/light_switch/east, /turf/simulated/floor/tiled, /area/horizon/engineering/lobby) -"fIG" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/horizon/hangar/operations) "fIH" = ( /obj/random/dirt_75, /obj/random/dirt_75, @@ -42647,6 +42822,15 @@ }, /turf/unsimulated/floor, /area/centcom/distress_prep) +"fJq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hangar/operations) "fJr" = ( /obj/structure/table/reinforced/steel, /obj/random/toolbox, @@ -43322,42 +43506,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/gen_treatment) -"fNG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/fake_object{ - density = 1; - desc = "A secure supply crate, It carries the insignia of the Tau Ceti Foreign Legion. It appears quite scuffed."; - icon = 'icons/obj/containers/crate.dmi'; - icon_state = "tcfl_crate_preview"; - name = "foreign legion supply crate"; - pixel_x = 3; - pixel_y = 8 - }, -/obj/effect/decal/fake_object{ - desc = "A secure supply crate, It carries the insignia of the Tau Ceti Foreign Legion. It appears quite scuffed."; - icon = 'icons/obj/containers/crate.dmi'; - icon_state = "tcfl_crate_preview"; - name = "foreign legion supply crate" - }, -/obj/effect/decal/fake_object{ - desc = "A secure supply crate, It carries the insignia of the Tau Ceti Foreign Legion. It appears quite scuffed."; - icon = 'icons/obj/containers/crate.dmi'; - icon_state = "tcfl_crate_preview"; - name = "foreign legion supply crate"; - pixel_x = 2; - pixel_y = 19 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"fNI" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/commissary) "fNL" = ( /obj/structure/table/rack{ dir = 8 @@ -44397,15 +44545,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/lobby) -"fUm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hangar/operations) "fUq" = ( /obj/machinery/door/firedoor{ req_one_access = list(24,11,67,73); @@ -44772,6 +44911,11 @@ "fXk" = ( /turf/simulated/wall, /area/horizon/medical/surgery) +"fXl" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/lobby) "fXo" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 8 @@ -44807,18 +44951,6 @@ /obj/machinery/alarm/south, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/propulsion/starboard) -"fXC" = ( -/obj/effect/floor_decal/spline/plain/lime{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/operations/commissary) "fXI" = ( /obj/effect/floor_decal/corner_wide/green/full, /obj/effect/floor_decal/sign/cmo, @@ -45204,6 +45336,15 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_2/service/starboard) +"gaq" = ( +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Central Ring Port"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/vending/snack/horizon, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/cafeteria) "gat" = ( /turf/simulated/floor/beach/sand{ icon_state = "seashallow" @@ -45899,6 +46040,17 @@ /obj/machinery/portable_atmospherics/canister/nitrogen/prechilled, /turf/simulated/floor/plating, /area/horizon/engineering/reactor/supermatter/mainchamber) +"gfj" = ( +/obj/effect/decal/fake_object{ + density = 1; + desc = "A wooden crate containing spare parts."; + icon = 'icons/obj/containers/crate.dmi'; + icon_state = "densecrate"; + name = "mechanical supply crate"; + pixel_x = 1 + }, +/turf/unsimulated/floor/plating, +/area/centcom/legion) "gfk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -46878,16 +47030,6 @@ "gmq" = ( /turf/simulated/wall/r_wall, /area/horizon/engineering/reactor/indra/office) -"gmA" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Librarian" - }, -/obj/structure/bed/stool/chair/office/light, -/turf/simulated/floor/lino/diamond, -/area/horizon/service/library) "gmB" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/engineering/reactor/supermatter/airlock) @@ -47905,16 +48047,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/xenoarch/atrium) -"gtk" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/engineering/atmos) "gtl" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1 @@ -48017,6 +48149,12 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/horizon/hallway/primary/deck_2/central) +"gun" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/exoplanet/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "gur" = ( /obj/structure/table/reinforced/steel, /obj/machinery/door/blast/regular{ @@ -48205,6 +48343,39 @@ icon_state = "dark_preview" }, /area/centcom/holding) +"gvE" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/fake_object{ + name = "service ladder"; + pixel_y = 24 + }, +/obj/effect/decal/fake_object{ + density = 1; + desc = "What jerk stacked these here?"; + icon = 'icons/obj/containers/crate.dmi'; + icon_state = "tcfl_crate_preview"; + name = "inconveniently placed crate"; + pixel_x = 3; + pixel_y = 8 + }, +/obj/effect/decal/fake_object{ + desc = "What jerk stacked these here?"; + icon = 'icons/obj/containers/crate.dmi'; + icon_state = "tcfl_crate_preview"; + name = "inconveniently placed crate"; + pixel_x = 2; + pixel_y = 19 + }, +/obj/effect/decal/fake_object{ + desc = "What jerk stacked these here?"; + icon = 'icons/obj/containers/crate.dmi'; + icon_state = "tcfl_crate_preview"; + name = "inconveniently placed crate"; + pixel_x = 1 + }, +/turf/unsimulated/floor/plating, +/area/centcom/legion) "gvG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -48363,6 +48534,35 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/exoplanet/plating, /area/horizon/maintenance/deck_2/wing/starboard) +"gwC" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "engineering_storage_d2"; + name = "Engineering Hard Storage"; + req_one_access = list(11,24); + pixel_x = -21; + pixel_y = 34 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) "gwI" = ( /obj/random/dirt_75, /turf/simulated/floor/plating, @@ -48951,26 +49151,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"gAA" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/operations, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/loading) "gAB" = ( /obj/effect/floor_decal/corner/brown{ dir = 9 @@ -49028,11 +49208,6 @@ }, /turf/simulated/floor/wood, /area/horizon/rnd/hallway) -"gAW" = ( -/obj/machinery/libraryscanner, -/obj/item/device/radio/intercom/north, -/turf/simulated/floor/lino/diamond, -/area/horizon/service/library) "gAX" = ( /obj/effect/decal/fake_object{ desc = "The proudly waving flag of the Izweski Nation."; @@ -49117,6 +49292,19 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/stairwell/starboard/deck_1) +"gBD" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/engineering/hallway/fore) "gBF" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -49189,6 +49377,15 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/reactor/supermatter/mainchamber) +"gBW" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "gCb" = ( /obj/machinery/door/airlock/centcom{ dir = 1; @@ -49634,6 +49831,13 @@ }, /turf/simulated/floor/tiled, /area/merchant_station) +"gFr" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/fabricator/autolathe, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) "gFv" = ( /obj/machinery/light, /obj/effect/floor_decal/corner/dark_green{ @@ -49661,16 +49865,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/horizon/rnd/xenoarch/presentation) -"gFD" = ( -/obj/effect/floor_decal/corner/black{ - dir = 10 - }, -/obj/structure/platform_stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/hangar/operations) "gFJ" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 @@ -50458,21 +50652,6 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/horizon/medical/morgue) -"gKy" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_3/starboard) "gKz" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plating, @@ -50501,21 +50680,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/investigations_hallway) -"gKP" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/computer/general_air_control/large_tank_control/wall{ - input_tag = "n2o_in"; - name = "Nitrous Oxide Supply Monitor"; - output_tag = "n2o_out"; - pixel_x = 32; - sensors = list("n2o_sensor"="Tank") - }, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/horizon/engineering/atmos/air) "gKS" = ( /obj/effect/landmark/entry_point/starboard{ name = "starboard, medical head" @@ -50557,15 +50721,6 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) -"gLs" = ( -/obj/structure/window/reinforced/holowindow{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/holofloor/tiled, -/area/horizon/holodeck/source_combat_training) "gLw" = ( /obj/effect/floor_decal/industrial/warning, /turf/unsimulated/floor/plating, @@ -51142,14 +51297,6 @@ }, /turf/simulated/floor/plating, /area/horizon/shuttle/canary) -"gPC" = ( -/obj/machinery/conveyor{ - id = "cargo_1"; - color = "#CCCCCC" - }, -/obj/effect/floor_decal/industrial/hatch/operations, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hangar/operations) "gPD" = ( /obj/structure/railing/mapped, /obj/effect/floor_decal/corner/dark_blue{ @@ -51225,6 +51372,11 @@ }, /turf/simulated/floor/plating, /area/turbolift/primary/deck_1) +"gQi" = ( +/obj/machinery/vending/snack/horizon, +/obj/effect/floor_decal/industrial/hatch/grey, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/starboard) "gQm" = ( /obj/structure/cable/green{ icon_state = "1-4" @@ -51727,15 +51879,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/engineering/hallway/fore) -"gTW" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/sign/air_station{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/engineering/hallway/aft) "gTY" = ( /obj/effect/shuttle_landmark/research/interim, /turf/space/transit/north, @@ -52232,10 +52375,6 @@ }, /turf/space, /area/horizon/exterior) -"gXl" = ( -/obj/structure/bookcase/libraryspawn/religion, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/library) "gXn" = ( /turf/simulated/floor/tiled, /area/horizon/operations/machinist) @@ -52855,6 +52994,14 @@ /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/hydroponics) +"hbC" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/vending/snack/horizon, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) "hbD" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/command/bridge/meeting_room) @@ -53164,6 +53311,15 @@ }, /turf/simulated/floor/reinforced/carbon_dioxide, /area/horizon/engineering/atmos) +"hdR" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/sign/securearea{ + name = "\improper WARNING: MUNITIONS BAY sign"; + pixel_y = -32 + }, +/obj/machinery/vending/cigarette/horizon, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hallway/primary/deck_3/port) "hdT" = ( /obj/machinery/light{ dir = 8 @@ -53578,6 +53734,16 @@ /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) +"hgh" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/small/east, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/commissary) "hgn" = ( /obj/machinery/door/firedoor{ dir = 4 @@ -53615,12 +53781,6 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"hgy" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/service/port) "hgz" = ( /turf/simulated/floor/wood, /area/horizon/service/chapel/main) @@ -53765,6 +53925,17 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/operations/mining_main/refinery) +"hhC" = ( +/obj/machinery/conveyor{ + id = "cargo_1" + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/structure/plasticflaps, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hangar/operations) "hhH" = ( /obj/effect/ghostspawpoint{ identifier = "NTERTSpawn"; @@ -54652,6 +54823,10 @@ icon_state = "dark_preview" }, /area/centcom/ferry) +"hns" = ( +/obj/machinery/fabricator/autolathe/hacked, +/turf/unsimulated/floor/plating, +/area/centcom/specops) "hnu" = ( /obj/machinery/camera/network/medbay{ c_tag = "Medical - Secondary Storage" @@ -55070,6 +55245,15 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled/full, /area/horizon/engineering/hallway/interior) +"hqj" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/mining_main/refinery) "hql" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -56025,15 +56209,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hallway/primary/deck_3/central) -"hvY" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch_door/engineering{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/engineering/hallway/fore) "hwa" = ( /obj/machinery/light{ dir = 1 @@ -56220,21 +56395,6 @@ }, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/port) -"hxx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/fore) "hxC" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 @@ -56961,10 +57121,6 @@ "hCu" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/hangar/operations) -"hCx" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/service/port) "hCC" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -57198,6 +57354,12 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/surgery) +"hDK" = ( +/obj/structure/bed/stool/chair/sofa/left/red{ + dir = 1 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/library) "hDM" = ( /obj/machinery/light/small/emergency{ dir = 4 @@ -57225,16 +57387,6 @@ icon_state = "white" }, /area/tdome/tdomeobserve) -"hDU" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/platform, -/obj/effect/floor_decal/corner/dark_blue, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled/full, -/area/horizon/command/bridge/upperdeck) "hDV" = ( /obj/random/dirt_75, /obj/random/dirt_75, @@ -57523,10 +57675,6 @@ /obj/effect/floor_decal/industrial/warning, /turf/unsimulated/floor, /area/centcom/spawning) -"hFQ" = ( -/obj/machinery/fabricator/autolathe, -/turf/simulated/floor/carpet/rubber, -/area/horizon/rnd/lab) "hFU" = ( /obj/machinery/newscaster/east, /obj/effect/floor_decal/corner/dark_green{ @@ -57534,21 +57682,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hangar/intrepid) -"hFW" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_3/starboard) "hFZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, @@ -57617,6 +57750,26 @@ "hGt" = ( /turf/simulated/wall, /area/horizon/maintenance/deck_1/medical/cryo) +"hGv" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/loading) "hGz" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -57665,10 +57818,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/holding_cell_a) -"hHf" = ( -/obj/structure/bed/stool/chair/sofa/left/red, -/turf/simulated/floor/carpet/red, -/area/horizon/service/library) "hHg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -57774,12 +57923,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/starboard/far) -"hHH" = ( -/obj/structure/bed/stool/bar/padded/red{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/service/library) "hHN" = ( /obj/effect/floor_decal/industrial/outline/operations, /obj/structure/closet/secure_closet/atmos_personal, @@ -57872,21 +58015,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/reactor/supermatter/waste) -"hIz" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/platform/ledge{ - dir = 1 - }, -/obj/structure/platform/ledge{ - dir = 4 - }, -/obj/structure/platform_deco/ledge{ - dir = 10 - }, -/turf/simulated/open, -/area/horizon/hallway/primary/deck_3/central) "hIA" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging, /obj/effect/floor_decal/industrial/warning{ @@ -58066,39 +58194,6 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) -"hJR" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/fake_object{ - name = "service ladder"; - pixel_y = 24 - }, -/obj/effect/decal/fake_object{ - density = 1; - desc = "What jerk stacked these here?"; - icon = 'icons/obj/containers/crate.dmi'; - icon_state = "tcfl_crate_preview"; - name = "inconveniently placed crate"; - pixel_x = 3; - pixel_y = 8 - }, -/obj/effect/decal/fake_object{ - desc = "What jerk stacked these here?"; - icon = 'icons/obj/containers/crate.dmi'; - icon_state = "tcfl_crate_preview"; - name = "inconveniently placed crate"; - pixel_x = 2; - pixel_y = 19 - }, -/obj/effect/decal/fake_object{ - desc = "What jerk stacked these here?"; - icon = 'icons/obj/containers/crate.dmi'; - icon_state = "tcfl_crate_preview"; - name = "inconveniently placed crate"; - pixel_x = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) "hJU" = ( /obj/structure/table/rack, /obj/item/device/suit_cooling_unit, @@ -58232,14 +58327,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden, /turf/simulated/floor/tiled, /area/horizon/service/hydroponics) -"hKE" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/vending/cigarette, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hallway/primary/deck_3/port) "hKF" = ( /obj/structure/table/reinforced/wood, /obj/machinery/chemical_dispenser/coffee/full{ @@ -58378,13 +58465,6 @@ }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/engineering/bluespace_drive) -"hLy" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/sign/drop{ - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/horizon/hangar/operations) "hLz" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/machinery/door/firedoor, @@ -58997,23 +59077,6 @@ }, /turf/simulated/open, /area/horizon/operations/office) -"hPs" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = -20 - }, -/obj/machinery/button/remote/blast_door{ - dir = 9; - id = "shutters_deck3_bridgesafety"; - name = "Bridge Safety Shutters"; - pixel_x = -29 - }, -/turf/simulated/floor/wood, -/area/horizon/command/bridge/minibar) "hPu" = ( /obj/effect/floor_decal/corner_wide/paleblue{ dir = 10 @@ -59366,21 +59429,6 @@ icon_state = "dark_preview" }, /area/centcom/control) -"hRv" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/obj/structure/railing/retractable{ - dir = 4 - }, -/obj/machinery/light/floor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hangar/operations) "hRD" = ( /obj/machinery/conveyor_switch/oneway{ id = "warehousetomail"; @@ -59619,6 +59667,11 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/wood, /area/horizon/service/chapel/main) +"hTv" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/horizon/hangar/operations) "hTw" = ( /turf/space, /area/antag/raider) @@ -59633,6 +59686,14 @@ /obj/random/contraband, /turf/simulated/floor, /area/horizon/maintenance/deck_3/security/port) +"hTG" = ( +/obj/effect/floor_decal/corner_wide/yellow/full, +/obj/structure/extinguisher_cabinet/south, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) "hTK" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -59910,10 +59971,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/surgery) -"hWx" = ( -/obj/machinery/fabricator/autolathe/hacked, -/turf/unsimulated/floor/plating, -/area/centcom/specops) "hWA" = ( /obj/machinery/light{ dir = 8 @@ -59987,15 +60044,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/nacelle) -"hXn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/service/port) "hXo" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 @@ -60247,6 +60295,14 @@ /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/horizon/medical/surgery) +"hZi" = ( +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/machinery/conveyor{ + id = "cargo_1"; + color = "#CCCCCC" + }, +/turf/simulated/floor/tiled/dark/full, +/area/supply/dock) "hZk" = ( /obj/machinery/light/small/emergency{ dir = 1 @@ -60588,6 +60644,31 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/command/bridge/aibunker) +"ibK" = ( +/obj/effect/map_effect/door_helper/unres{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73) + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/machinery/door/airlock/glass_mining{ + dir = 1; + name = "Commissary Backroom"; + req_one_access = list(25,26,28,29,31,35,37,48,67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/commissary) "ibP" = ( /obj/structure/window/reinforced/crescent{ dir = 4 @@ -60712,6 +60793,12 @@ }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"icx" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/commissary) "icz" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -60912,15 +60999,6 @@ /obj/random/dirt_75, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/port/nacelle) -"idA" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/engineering/hallway/fore) "idB" = ( /obj/structure/cable/green{ icon_state = "2-4" @@ -61118,21 +61196,6 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/full, /area/horizon/operations/mining_main/refinery) -"ieF" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = 10 - }, -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = -5 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/lino/diamond, -/area/horizon/service/library) "ieG" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -61190,13 +61253,6 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) -"ifc" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 5 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/horizon/engineering/atmos/air) "ifh" = ( /obj/structure/cable{ icon_state = "4-8" @@ -61904,6 +61960,12 @@ }, /turf/simulated/floor/carpet, /area/horizon/repoffice/representative_one) +"ikp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) "ikq" = ( /obj/machinery/power/terminal{ dir = 1 @@ -63053,6 +63115,18 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway/upper) +"isf" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/structure/plasticflaps, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hangar/operations) "ish" = ( /obj/effect/floor_decal/corner/red{ dir = 6 @@ -63378,18 +63452,6 @@ }, /turf/simulated/floor/carpet, /area/horizon/repoffice/consular_one) -"ius" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hangar/operations) "iuG" = ( /obj/structure/cable{ icon_state = "4-8" @@ -63556,12 +63618,6 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/wood, /area/antag/burglar) -"ivQ" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/aft) "ivT" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -63981,21 +64037,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos) -"iyh" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_3/port) "iyi" = ( /obj/machinery/light, /obj/structure/table/wood, @@ -64345,10 +64386,6 @@ }, /turf/simulated/floor/plating, /area/merchant_station/warehouse) -"iAu" = ( -/obj/machinery/smartfridge/tradeshelf, -/turf/simulated/floor/tiled/full, -/area/horizon/operations/commissary) "iAy" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -64367,29 +64404,6 @@ dir = 4 }, /area/antag/raider) -"iAA" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/main/starboard) "iAH" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/full, @@ -64546,12 +64560,6 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"iBC" = ( -/obj/structure/platform, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/cigarette, -/turf/simulated/floor/tiled/full, -/area/horizon/command/bridge/upperdeck) "iBG" = ( /obj/machinery/door/blast/regular{ dir = 4; @@ -65126,6 +65134,15 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/storage/secure/ops_vault) +"iGc" = ( +/obj/machinery/fabricator/autolathe/hacked, +/obj/machinery/light/small{ + dir = 4; + name = "old light fixture"; + pixel_y = -8 + }, +/turf/simulated/floor/tiled, +/area/merchant_station/warehouse) "iGf" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -65147,6 +65164,18 @@ /obj/effect/floor_decal/corner/grey/full, /turf/unsimulated/floor, /area/centcom/control) +"iGv" = ( +/obj/structure/bed/stool/chair/sofa/right/red{ + dir = 8 + }, +/obj/structure/window/reinforced{ + anchored = 0; + desc = "On further inspection, this window seems to have been loosened."; + dir = 4; + name = "loose window" + }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/library) "iGw" = ( /obj/machinery/light{ dir = 8 @@ -65756,21 +65785,6 @@ }, /turf/simulated/floor/marble, /area/horizon/holodeck/source_tribunal) -"iKQ" = ( -/obj/structure/table/wood, -/obj/item/storage/box/fancy/matches{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/random/pottedplant_small{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/machinery/door/window/southright{ - req_access = list(37) - }, -/turf/simulated/floor/lino/diamond, -/area/horizon/service/library) "iKW" = ( /obj/item/hullbeacon/red, /obj/structure/sign/securearea{ @@ -66998,14 +67012,6 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/central) -"iTN" = ( -/obj/structure/bed/stool/chair/sofa/corner/convex/red{ - dir = 4 - }, -/obj/item/device/radio/intercom/west, -/obj/structure/engineer_maintenance/pipe/wall, -/turf/simulated/floor/carpet/red, -/area/horizon/service/library) "iTP" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -67219,25 +67225,6 @@ }, /turf/simulated/floor/wood, /area/horizon/service/cafeteria) -"iVC" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/item/gun/energy/mousegun/xenofauna/holo{ - pixel_x = 16 - }, -/turf/simulated/floor/holofloor/tiled, -/area/horizon/holodeck/source_combat_training) -"iVF" = ( -/obj/effect/floor_decal/corner_wide/grey/diagonal, -/obj/machinery/vending/snack, -/obj/effect/floor_decal/spline/plain/brown{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/break_room) "iVG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -67290,18 +67277,6 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"iVQ" = ( -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled/dark, -/area/horizon/engineering/atmos) "iVS" = ( /obj/effect/floor_decal/corner/dark_blue/full, /obj/effect/floor_decal/industrial/outline/grey, @@ -67570,6 +67545,21 @@ }, /turf/simulated/open, /area/horizon/engineering/atmos/storage) +"iXZ" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/pen/fountain/black{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/machinery/door/window/southright{ + req_access = list(37) + }, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/library) "iYg" = ( /obj/effect/floor_decal/corner_wide/blue{ dir = 10 @@ -68132,6 +68122,18 @@ }, /turf/simulated/floor/plating, /area/horizon/command/heads/captain) +"jbs" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/structure/engineer_maintenance/pipe{ + dir = 8 + }, +/obj/structure/engineer_maintenance/electric{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/commissary) "jbt" = ( /obj/structure/table/reinforced/steel, /obj/item/modular_computer/handheld/pda/command/captain, @@ -68515,15 +68517,6 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"jeP" = ( -/obj/effect/floor_decal/industrial/hatch/operations, -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad"; - color = "#CCCCCC" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hangar/operations) "jeR" = ( /obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ id = "XO" @@ -69146,16 +69139,6 @@ /obj/item/clothing/under/rank/centcom_commander, /turf/simulated/floor/shuttle/black, /area/shuttle/hapt) -"jiV" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/obj/machinery/firealarm/west, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_3/port) "jiZ" = ( /obj/effect/floor_decal/corner/red, /turf/unsimulated/floor, @@ -69474,11 +69457,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/break_room) -"jkV" = ( -/obj/random/junk, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/exoplanet/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "jkX" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/structure/bed/stool/chair, @@ -70282,6 +70260,13 @@ "jqG" = ( /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/atmos_crosser) +"jqI" = ( +/obj/effect/floor_decal/corner/dark_green/full, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/railing/mapped, +/obj/machinery/vending/cigarette/horizon, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) "jqU" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ dir = 8 @@ -71234,6 +71219,21 @@ }, /turf/simulated/floor/reinforced, /area/horizon/rnd/xenoarch/isolation_b) +"jxU" = ( +/obj/machinery/computer/general_air_control/large_tank_control/wall{ + input_tag = "o2_in"; + name = "Oxygen Supply Monitor"; + output_tag = "o2_out"; + pixel_x = -32; + sensors = list("o2_sensor"="Tank") + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "jya" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/fake_object{ @@ -71437,15 +71437,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/horizon/operations/office) -"jzk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hangar/operations) "jzl" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -71638,9 +71629,6 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/monotile, /area/antag/jockey) -"jAE" = ( -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/primary/deck_3/starboard) "jAG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -71757,15 +71745,6 @@ }, /turf/simulated/floor/wood, /area/horizon/security/meeting_room) -"jBt" = ( -/obj/effect/floor_decal/industrial/hatch/operations, -/obj/structure/railing/retractable, -/obj/machinery/conveyor{ - id = "cargo_1"; - color = "#CCCCCC" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hangar/operations) "jBu" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -72063,10 +72042,6 @@ }, /turf/simulated/floor/wood, /area/horizon/service/mess_hall) -"jDE" = ( -/obj/structure/bookcase/libraryspawn/fiction, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/library) "jDG" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 @@ -72340,19 +72315,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/carpet/rubber, /area/horizon/rnd/xenoarch/spectrometry) -"jFy" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/structure/platform/ledge{ - dir = 4 - }, -/obj/structure/platform/ledge{ - dir = 1 - }, -/turf/simulated/open, -/area/horizon/hallway/primary/deck_3/central) "jFB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -73456,12 +73418,6 @@ }, /turf/simulated/floor/wood, /area/horizon/command/heads/rd) -"jNV" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/holofloor/tiled, -/area/horizon/holodeck/source_combat_training) "jOb" = ( /obj/structure/cable{ icon_state = "1-2" @@ -73968,6 +73924,12 @@ icon_state = "2,7" }, /area/horizon/shuttle/canary) +"jRp" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "jRt" = ( /obj/effect/floor_decal/corner{ dir = 9 @@ -74801,30 +74763,11 @@ }, /turf/simulated/floor/wood, /area/merchant_station/warehouse) -"jWq" = ( -/obj/machinery/atm{ - dir = 1; - pixel_y = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/engineer_maintenance/electric{ - dir = 1 - }, -/obj/structure/engineer_maintenance/pipe{ +"jWp" = ( +/obj/machinery/light{ dir = 8 }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, +/obj/machinery/smartfridge/tradeshelf/food, /turf/simulated/floor/tiled/full, /area/horizon/operations/commissary) "jWv" = ( @@ -74997,6 +74940,37 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/horizon/operations/machinist) +"jXw" = ( +/obj/effect/floor_decal/spline/plain/lime{ + dir = 5 + }, +/obj/machinery/disposal/small/west, +/obj/structure/closet/crate, +/obj/item/storage/box/plasticbag, +/obj/item/storage/box/unique/papersack, +/obj/item/storage/box/unique/papersack, +/obj/item/storage/box/unique/papersack, +/obj/item/storage/box/unique/papersack, +/obj/item/storage/box/unique/papersack, +/obj/item/storage/box/unique/papersack, +/obj/item/storage/box/unique/papersack, +/obj/item/storage/box/unique/papersack, +/obj/item/storage/box/plasticbag, +/obj/item/storage/bag/plasticbag, +/obj/item/storage/bag/plasticbag, +/obj/item/storage/bag/plasticbag, +/obj/item/storage/bag/plasticbag, +/obj/item/storage/bag/plasticbag, +/obj/item/storage/bag/plasticbag, +/obj/item/storage/bag/plasticbag, +/obj/item/storage/bag/plasticbag, +/obj/machinery/power/apc/east, +/obj/structure/disposalpipe/trunk, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/commissary) "jXA" = ( /turf/simulated/wall, /area/horizon/service/hydroponics/garden) @@ -75175,6 +75149,19 @@ }, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/starboard) +"jYI" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/horizon/service/library) "jYL" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -75720,11 +75707,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/wing/starboard/far) -"kcu" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light, -/turf/simulated/floor/plating, -/area/horizon/hangar/operations) "kcv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -76015,6 +75997,19 @@ icon_state = "dark_preview" }, /area/centcom/control) +"kep" = ( +/obj/structure/table/rack/retail_shelf, +/obj/item/device/hand_labeler, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 13 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "horizon_commissary_desk" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/commissary) "kes" = ( /obj/effect/floor_decal/corner/yellow{ dir = 5 @@ -76319,34 +76314,6 @@ "kgj" = ( /turf/unsimulated/wall/steel, /area/antag/ninja) -"kgl" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_mining{ - dir = 4; - name = "Commissary Backroom"; - req_one_access = list(25,26,28,29,31,35,37,48,67) - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/commissary) "kgm" = ( /obj/machinery/light/small/emergency{ dir = 1 @@ -76383,6 +76350,17 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/teleporter) +"kgE" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/camera/network/service{ + c_tag = "Second Deck - Commissary Backroom"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/commissary) "kgJ" = ( /obj/effect/floor_decal/corner/black{ dir = 5 @@ -76690,6 +76668,19 @@ /obj/effect/floor_decal/industrial/outline/emergency_closet, /turf/simulated/floor/tiled/dark, /area/horizon/hallway/primary/deck_3/central) +"kiq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "kiI" = ( /obj/structure/cable{ icon_state = "4-8" @@ -77497,6 +77488,18 @@ }, /turf/simulated/floor/shuttle/dark_blue, /area/horizon/shuttle/escape_pod/pod1) +"knx" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "knA" = ( /obj/machinery/alarm/south, /obj/structure/lattice/catwalk/indoor/grate/dark, @@ -77781,6 +77784,11 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/main/port) +"kpl" = ( +/obj/effect/floor_decal/industrial/hatch/grey, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/starboard) "kpx" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -78007,6 +78015,22 @@ /obj/item/device/radio/intercom/east, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_2/central) +"krp" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "krr" = ( /obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, /turf/simulated/floor/tiled/dark/full, @@ -78262,6 +78286,22 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/propulsion/starboard) +"ktp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) "ktr" = ( /obj/machinery/light/small{ dir = 1 @@ -78930,6 +78970,13 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/port/far) +"kxc" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "kxf" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 1 @@ -79076,13 +79123,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"kxW" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/optable/robotics, -/turf/simulated/floor/tiled/white, -/area/horizon/operations/machinist/surgicalbay) "kxX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -79321,17 +79361,6 @@ }, /turf/simulated/floor/plating, /area/horizon/service/hydroponics) -"kzi" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/operations, -/obj/machinery/conveyor{ - id = "cargo_1"; - color = "#CCCCCC" - }, -/turf/simulated/floor/tiled/dark/full, -/area/supply/dock) "kzo" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Heavy Asset Protection"; @@ -79967,14 +79996,6 @@ /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/atmos) -"kDb" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/small/south, -/turf/simulated/floor/wood, -/area/horizon/service/library) "kDh" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 10 @@ -80389,24 +80410,6 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"kFF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/fore) "kFG" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -81416,6 +81419,18 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/mainchamber) +"kLW" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/vending/games, +/obj/machinery/power/apc/east, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/library) "kMa" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -81971,6 +81986,13 @@ /obj/machinery/light, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) +"kQT" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/smartfridge/tradeshelf, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/commissary) "kQU" = ( /obj/structure/table/stone/marble, /obj/structure/window/reinforced, @@ -82329,6 +82351,22 @@ }, /turf/simulated/floor/carpet, /area/shuttle/skipjack) +"kTy" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/platform/ledge{ + dir = 4 + }, +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/structure/platform_deco/ledge{ + dir = 10 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) "kTA" = ( /obj/structure/railing/mapped, /obj/structure/platform/ledge{ @@ -82704,12 +82742,6 @@ /obj/item/clothing/shoes/magboots, /turf/simulated/floor/tiled/dark, /area/horizon/storage/eva) -"kVW" = ( -/obj/structure/sign/radiation{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/aft) "kWf" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -82807,18 +82839,6 @@ }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/maintenance/deck_2/wing/starboard/nacelle) -"kWP" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/structure/bed/stool/chair/folding{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hangar/operations) "kWS" = ( /obj/structure/bed/stool/padded/brown{ dir = 1 @@ -83114,6 +83134,13 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/auxatmos) +"kYC" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "kYD" = ( /obj/item/storage/bag/inflatable{ pixel_y = 9 @@ -85856,10 +85883,6 @@ }, /turf/simulated/floor, /area/horizon/maintenance/deck_2/wing/starboard/far) -"lqu" = ( -/obj/structure/bookcase/libraryspawn/nonfiction, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/library) "lqx" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 @@ -85945,6 +85968,21 @@ }, /turf/unsimulated/floor, /area/centcom/bar) +"lqR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) "lqW" = ( /obj/effect/floor_decal/corner_wide/green/full{ dir = 1 @@ -86092,6 +86130,45 @@ /obj/machinery/light, /turf/simulated/floor/wood, /area/horizon/repoffice/consular_one) +"lrG" = ( +/obj/effect/floor_decal/spline/plain/lime{ + dir = 4 + }, +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "horizon_commissary_door"; + name = "Commissary Door Bolts"; + pixel_x = 22; + specialfunctions = 4; + pixel_y = -2 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "horizon_commissary_desk"; + name = "Desk Shutters"; + pixel_x = 22; + pixel_y = 10 + }, +/obj/machinery/button/switch/holosign{ + id = "commissary"; + dir = 4; + pixel_y = 1; + pixel_x = 29 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/light_switch/east{ + pixel_x = 29; + pixel_y = 12 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/commissary) "lrP" = ( /obj/effect/floor_decal/corner/brown/diagonal, /obj/random/pottedplant, @@ -86423,6 +86500,19 @@ }, /turf/simulated/floor/lino, /area/merchant_station) +"ltX" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/toy/desk/officetoy{ + pixel_x = -9; + pixel_y = 5 + }, +/obj/machinery/power/outlet, +/turf/simulated/floor/carpet/red, +/area/horizon/service/library) "ltZ" = ( /obj/structure/tank_wall{ icon_state = "m-7" @@ -86612,16 +86702,6 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"lvy" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/industrial/hatch/operations, -/obj/machinery/conveyor{ - id = "cargo_1"; - color = "#CCCCCC" - }, -/turf/simulated/floor/tiled/dark/full, -/area/supply/dock) "lvz" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/random/dirt_75, @@ -86728,18 +86808,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/supermatter/mainchamber) -"lwn" = ( -/obj/machinery/conveyor{ - dir = 9; - id = "QMLoad"; - reversed = 1 - }, -/obj/machinery/status_display/supply_display{ - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/hatch/operations, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/loading) "lwq" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -87297,6 +87365,17 @@ opacity = 1 }, /area/horizon/shuttle/canary) +"lAk" = ( +/obj/effect/landmark/start{ + name = "Librarian" + }, +/obj/structure/bed/stool/chair/office/light, +/obj/item/device/radio/intercom/north, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/library) "lAp" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -87484,6 +87563,25 @@ }, /turf/simulated/floor/tiled, /area/horizon/operations/office) +"lBJ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/pill_bottle/dice{ + pixel_y = -4; + pixel_x = 7 + }, +/obj/item/deck/cards{ + pixel_y = -1; + pixel_x = -7 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = -18; + pixel_x = -4 + }, +/obj/machinery/power/outlet{ + pixel_y = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/brig) "lBL" = ( /obj/machinery/porta_turret, /obj/effect/floor_decal/industrial/warning/full, @@ -87526,6 +87624,12 @@ }, /turf/unsimulated/floor/rubber_carpet, /area/centcom/control) +"lCd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/exoplanet/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "lCj" = ( /obj/structure/railing/mapped{ dir = 4 @@ -88079,22 +88183,6 @@ }, /turf/simulated/floor/plating, /area/horizon/engineering/reactor/supermatter/mainchamber) -"lFN" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/door/window/westright{ - req_one_access = list(26,29,31,48,67,35,25,28,37) - }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "horizon_commissary_desk" - }, -/obj/structure/cash_register/commissary{ - dir = 4; - pixel_y = 10; - pixel_x = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/commissary) "lFQ" = ( /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) @@ -88161,6 +88249,11 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/full, /area/horizon/crew/resdeck/living_quarters_lift) +"lGs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/fore) "lGt" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -88355,15 +88448,6 @@ /obj/structure/platform/ledge, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/starboard/far) -"lHX" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/structure/bed/stool/chair/padded/beige{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "lHY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -88635,15 +88719,6 @@ /obj/structure/platform_stairs, /turf/simulated/floor, /area/horizon/maintenance/deck_2/wing/port/far) -"lJs" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hangar/operations) "lJu" = ( /obj/effect/floor_decal/corner/dark_blue/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -89898,6 +89973,12 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_boxingcourt) +"lTv" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) "lTw" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -90328,6 +90409,15 @@ icon_state = "dark_preview" }, /area/centcom/holding) +"lXa" = ( +/obj/structure/platform, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/upperdeck) "lXb" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 6 @@ -90674,20 +90764,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_2/starboard) -"lZj" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/fabricator/autolathe, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/light_switch/north{ - pixel_x = -6 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/office) "lZk" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -90776,18 +90852,12 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/rnd/xenoarch/storage) -"lZR" = ( -/obj/structure/sign/emergency/evacuation/pods{ - pixel_x = -32 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/machinery/light{ +"lZX" = ( +/obj/effect/floor_decal/corner/red/full{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/horizon/hangar/operations) +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "lZY" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -91084,6 +91154,13 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/engineering/hallway/fore) +"mbX" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/sign/drop{ + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/operations) "mbY" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -91856,6 +91933,21 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/auxatmos) +"mhc" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "mhg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -92311,6 +92403,12 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/open, /area/horizon/maintenance/deck_2/wing/starboard) +"mjO" = ( +/obj/structure/platform/ledge{ + dir = 1 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) "mjS" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -92455,6 +92553,14 @@ }, /turf/simulated/floor/tiled, /area/horizon/maintenance/deck_2/wing/port/nacelle) +"mli" = ( +/obj/effect/floor_decal/corner/dark_green/full, +/obj/machinery/vending/wallpharm/commissary{ + pixel_x = -28; + pixel_y = 3 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/commissary) "mlm" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_command{ @@ -92496,17 +92602,6 @@ "mlJ" = ( /turf/simulated/wall/r_wall, /area/horizon/rnd/xenobiology/foyer) -"mlP" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/vending/snack, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "mlV" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -92717,11 +92812,6 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_wildlife) -"mmS" = ( -/obj/machinery/vending/snack, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/cafeteria) "mmT" = ( /obj/effect/floor_decal/corner_wide/paleblue/full{ dir = 8 @@ -92889,14 +92979,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/operations/starboard/far) -"mok" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/small/east, -/turf/simulated/floor/tiled, -/area/horizon/operations/commissary) "moz" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8; @@ -93054,6 +93136,16 @@ /obj/structure/bed/stool/chair/padded/beige, /turf/simulated/floor/wood, /area/horizon/command/bridge/minibar) +"mpL" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/machinery/conveyor{ + id = "cargo_1"; + color = "#CCCCCC" + }, +/turf/simulated/floor/tiled/dark/full, +/area/supply/dock) "mpM" = ( /obj/effect/floor_decal/spline/plain/corner, /obj/effect/floor_decal/corner/red/diagonal, @@ -93100,6 +93192,18 @@ }, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_theatre) +"mqs" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) "mqu" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -94230,16 +94334,6 @@ /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_wildlife) -"mxX" = ( -/obj/structure/lattice/catwalk/indoor/grate, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/horizon/engineering/hallway/fore) "mxY" = ( /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/nacelle) @@ -94336,13 +94430,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"myP" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/horizon/holodeck/source_combat_training) "myR" = ( /obj/structure/table/standard, /obj/structure/closet/crate/plastic{ @@ -94472,6 +94559,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/engineering/hallway/interior) +"mzM" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/horizon/operations/commissary) "mzO" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/orange/diagonal, @@ -94804,6 +94898,10 @@ }, /turf/simulated/floor/wood, /area/horizon/service/chapel/office) +"mCM" = ( +/obj/machinery/smartfridge/tradeshelf/toy, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/commissary) "mCO" = ( /obj/machinery/light/small/emergency{ dir = 1 @@ -95409,6 +95507,26 @@ }, /turf/simulated/wall/r_wall, /area/horizon/rnd/xenobiology/xenoflora) +"mGH" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/main/starboard) "mGV" = ( /obj/effect/landmark/entry_point/port{ name = "port, rear" @@ -95441,6 +95559,12 @@ /obj/structure/table/steel, /turf/unsimulated/floor/monotile, /area/antag/raider) +"mHb" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/commissary) "mHc" = ( /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/bluespace_drive) @@ -95684,6 +95808,11 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/shuttle/intrepid/port_compartment) +"mIH" = ( +/obj/random/junk, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/exoplanet/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "mIQ" = ( /obj/effect/floor_decal/corner/dark_blue/full, /obj/machinery/firealarm/south, @@ -97780,6 +97909,18 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_2/central) +"mYI" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/light/floor{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/conference) "mYJ" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -97792,6 +97933,15 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) +"mYL" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/obj/structure/engineer_maintenance/electric{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) "mYP" = ( /obj/machinery/light{ dir = 4 @@ -97864,16 +98014,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_1/medical/cryo) -"mZd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/hangar/operations) "mZg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -98012,15 +98152,6 @@ }, /turf/unsimulated/floor/wood, /area/centcom/bar) -"mZW" = ( -/obj/structure/table/wood, -/obj/item/toy/desk/newtoncradle{ - pixel_x = 3; - pixel_y = 10 - }, -/obj/machinery/power/outlet, -/turf/simulated/floor/carpet/red, -/area/horizon/service/library) "mZY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/yellow{ @@ -98710,14 +98841,6 @@ }, /turf/simulated/floor/reinforced, /area/horizon/command/bridge/controlroom) -"nek" = ( -/obj/effect/floor_decal/corner_wide/yellow/full, -/obj/structure/extinguisher_cabinet/south, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/engineering/hallway/interior) "nem" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -98962,6 +99085,17 @@ /obj/structure/platform, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/port/far) +"nfy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/obj/machinery/vending/cigarette/horizon, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/starboard) "nfD" = ( /obj/machinery/door/airlock/maintenance{ dir = 4; @@ -99267,6 +99401,12 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/tcommsat/entrance) +"nil" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "nin" = ( /obj/machinery/light/floor{ dir = 8 @@ -99804,6 +99944,15 @@ /obj/effect/map_effect/marker_helper/airlock/exterior, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/propulsion) +"nmz" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/sign/air_station{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/hallway/aft) "nmC" = ( /obj/structure/platform/ledge, /obj/structure/platform/ledge{ @@ -99908,17 +100057,6 @@ icon_state = "white" }, /area/centcom/legion) -"nod" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/obj/machinery/vending/cigarette, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/service/starboard) "nog" = ( /obj/random/pottedplant, /obj/effect/floor_decal/corner_wide/lime{ @@ -100052,36 +100190,27 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/command/bridge/aibunker) +"noS" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/commissary) "noV" = ( /obj/structure/bed/stool/padded/beige{ dir = 8 }, /turf/unsimulated/floor/wood, /area/centcom/bar) -"npd" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_service{ - dir = 8; - name = "Library" - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/turf/simulated/floor/tiled/full, -/area/horizon/service/library) "npe" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ @@ -100359,16 +100488,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/engineering/hallway/interior) -"nrp" = ( -/obj/effect/floor_decal/corner/black{ - dir = 10 - }, -/obj/structure/platform_stairs, -/obj/structure/platform{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/hangar/operations) "nrt" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/plating, @@ -100876,23 +100995,6 @@ /obj/item/material/folding_table, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/port/nacelle) -"nuD" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "nuK" = ( /obj/effect/floor_decal/corner/dark_green/full{ dir = 4 @@ -101460,24 +101562,21 @@ }, /turf/simulated/floor/tiled, /area/horizon/crew/fitness/changing) -"nzd" = ( -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/engineering/hallway/interior) "nzg" = ( /obj/structure/cable/green{ icon_state = "2-4" }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/command/bridge/controlroom) +"nzh" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/exoplanet/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "nzj" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -101564,6 +101663,18 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/hallway/fore) +"nzT" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "QMLoad"; + reversed = 1 + }, +/obj/machinery/status_display/supply_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/loading) "nzV" = ( /obj/structure/railing/mapped{ dir = 1 @@ -101910,15 +102021,6 @@ }, /turf/unsimulated/floor/freezer, /area/antag/mercenary) -"nCe" = ( -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/camera/network/service{ - c_tag = "Service - Library"; - dir = 1 - }, -/obj/machinery/vending/battlemonsters, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/library) "nCg" = ( /obj/machinery/gravity_generator/main/station, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -102082,15 +102184,6 @@ /obj/item/stack/material/steel/full, /turf/simulated/floor/tiled, /area/horizon/engineering/storage_eva) -"nDo" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/snack, -/obj/structure/sign/securearea{ - name = "\improper WARNING: MUNITIONS BAY sign"; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hallway/primary/deck_3/port) "nDp" = ( /obj/effect/floor_decal/corner/mauve{ dir = 10 @@ -102585,6 +102678,15 @@ }, /turf/unsimulated/floor, /area/antag/raider) +"nGg" = ( +/obj/effect/floor_decal/corner_wide/grey/diagonal, +/obj/machinery/vending/snack/horizon, +/obj/effect/floor_decal/spline/plain/brown{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/break_room) "nGp" = ( /obj/structure/tank_wall/air{ density = 0; @@ -102878,6 +102980,24 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway/upper) +"nIa" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "nIf" = ( /obj/structure/railing/mapped{ dir = 4 @@ -103026,6 +103146,14 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/operations/machinist) +"nJi" = ( +/obj/effect/floor_decal/corner_wide/grey/diagonal, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/break_room) "nJt" = ( /obj/structure/shuttle_part/ccia{ icon_state = "12,2" @@ -103070,6 +103198,15 @@ icon_state = "dark_preview" }, /area/centcom/specops) +"nJA" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) "nJK" = ( /obj/structure/table/rack, /obj/item/clothing/shoes/magboots, @@ -103367,6 +103504,10 @@ /obj/structure/foamedmetal, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/auxatmos) +"nLp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) "nLs" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -103629,17 +103770,6 @@ /obj/machinery/alarm/north, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/nacelle) -"nNb" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/structure/closet/crate, -/obj/random/loot, -/obj/random/loot, -/obj/random/loot, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/service/port) "nNd" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -103662,24 +103792,6 @@ }, /turf/simulated/floor/plating, /area/horizon/hangar/intrepid) -"nNj" = ( -/obj/machinery/conveyor{ - id = "cargo_1" - }, -/obj/machinery/door/firedoor, -/obj/structure/plasticflaps, -/obj/machinery/door/airlock/external{ - dir = 1; - frequency = 1380; - icon_state = "door_locked"; - id_tag = "cargo_shuttle_dock_airlock"; - locked = 1; - name = "Cargo Shuttle"; - req_access = list(13,31) - }, -/obj/effect/floor_decal/industrial/hatch/operations, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/loading) "nNk" = ( /obj/machinery/power/terminal, /obj/machinery/power/sensor{ @@ -103873,6 +103985,15 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/operations/starboard/far) +"nOR" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/papershredder, +/obj/machinery/disposal/small/west, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/wood, +/area/horizon/service/library) "nOT" = ( /turf/simulated/floor/exoplanet/water/shallow, /area/horizon/holodeck/source_beach) @@ -104095,6 +104216,30 @@ }, /turf/simulated/floor/plating, /area/horizon/service/bar) +"nQH" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/horizon/command/bridge/meeting_room) "nQJ" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -104463,21 +104608,6 @@ "nTu" = ( /turf/simulated/wall/r_wall, /area/horizon/service/kitchen/freezer) -"nTD" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hangar/operations) "nTE" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/effect/floor_decal/industrial/warning, @@ -104963,11 +105093,6 @@ /obj/structure/stairs/north, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/service/starboard) -"nXw" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/engineering/hallway/fore) "nXx" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light/small{ @@ -105297,6 +105422,14 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/kitchen) +"oat" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/vending/snack/horizon, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "oau" = ( /obj/effect/floor_decal/spline/plain/lime{ dir = 6 @@ -105367,10 +105500,6 @@ /obj/machinery/light/floor, /turf/simulated/floor/carpet/rubber, /area/horizon/rnd/telesci) -"oaM" = ( -/obj/structure/bookcase/libraryspawn/reference, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/service/library) "oaP" = ( /obj/machinery/light{ dir = 8; @@ -105625,6 +105754,15 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/shuttle/intrepid/medical) +"ocj" = ( +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/structure/railing/retractable, +/obj/machinery/conveyor{ + id = "cargo_1"; + color = "#CCCCCC" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hangar/operations) "ocl" = ( /obj/effect/floor_decal/industrial/outline/service, /obj/machinery/vending/hydronutrients/hydroponics, @@ -105679,6 +105817,16 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/legion) +"ocO" = ( +/obj/machinery/alarm/east, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 10 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -5 + }, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/library) "odf" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 8 @@ -105738,10 +105886,6 @@ /obj/machinery/power/apc/shuttle/east, /turf/simulated/floor/tiled/dark/full, /area/horizon/shuttle/intrepid/starboard_compartment) -"odq" = ( -/obj/effect/decal/fake_object/light_source/invisible, -/turf/simulated/floor/holofloor/tiled, -/area/horizon/holodeck/source_combat_training) "odx" = ( /obj/machinery/door/blast/shutters{ dir = 2; @@ -105962,21 +106106,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"oex" = ( -/obj/machinery/computer/general_air_control/large_tank_control/wall{ - input_tag = "o2_in"; - name = "Oxygen Supply Monitor"; - output_tag = "o2_out"; - pixel_x = -32; - sensors = list("o2_sensor"="Tank") - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/horizon/engineering/atmos/air) "oey" = ( /obj/machinery/light/small/emergency, /obj/structure/table/rack, @@ -106262,6 +106391,22 @@ }, /turf/simulated/floor/tiled, /area/horizon/command/bridge/upperdeck) +"oge" = ( +/obj/machinery/door/window/westright{ + req_one_access = list(26,29,31,48,67,35,25,28,37) + }, +/obj/structure/cash_register/commissary{ + dir = 4; + pixel_y = 10; + pixel_x = 4 + }, +/obj/structure/table/reinforced/steel, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "horizon_commissary_desk" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/commissary) "ogg" = ( /obj/structure/ship_weapon_dummy, /turf/simulated/open/airless, @@ -106448,18 +106593,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway) -"ohn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/undies_wardrobe{ - anchored = 1; - icon = 'icons/obj/containers/crate.dmi'; - icon_state = "drop_crate-grey"; - name = "underwear crate" - }, -/turf/unsimulated/floor, -/area/antag/ninja) "ohs" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 @@ -106892,17 +107025,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/checkpoint) -"oks" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad"; - color = "#CCCCCC" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/industrial/hatch/operations, -/turf/simulated/floor/tiled/dark/full, -/area/supply/dock) "okw" = ( /turf/simulated/wall, /area/horizon/maintenance/substation/wing_port) @@ -107057,10 +107179,6 @@ icon_state = "wood" }, /area/centcom/bar) -"olH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/primary/deck_2/central) "olJ" = ( /obj/item/reagent_containers/food/condiment/flour{ pixel_x = -4; @@ -107095,18 +107213,6 @@ icon_state = "carpet" }, /area/centcom/specops) -"olP" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/obj/structure/railing/retractable{ - dir = 4 - }, -/obj/structure/platform_deco{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hangar/operations) "olR" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -107295,25 +107401,6 @@ }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/hallway/primary/deck_3/port/docks) -"onr" = ( -/obj/structure/table/reinforced, -/obj/item/storage/pill_bottle/dice{ - pixel_y = -4; - pixel_x = 7 - }, -/obj/item/deck/cards{ - pixel_y = -1; - pixel_x = -7 - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_y = -18; - pixel_x = -4 - }, -/obj/machinery/power/outlet{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/brig) "onB" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -107776,15 +107863,6 @@ density = 1 }, /area/antag/ninja) -"oqp" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/engineering/hallway/interior) "oqq" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor{ @@ -108105,16 +108183,6 @@ /obj/structure/table/rack/retail_shelf, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/hydroponics) -"orZ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow, -/turf/simulated/floor/tiled/dark, -/area/horizon/engineering/atmos) "osc" = ( /obj/structure/cable{ icon_state = "4-8" @@ -108894,6 +108962,18 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/port/docks) +"oxy" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) "oxB" = ( /obj/machinery/cryopod{ dir = 1 @@ -108906,6 +108986,10 @@ icon_state = "dark_preview" }, /area/centcom/holding) +"oxD" = ( +/obj/machinery/fabricator/autolathe, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/lab) "oxI" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 7 @@ -108979,6 +109063,10 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/storage_hard/upper) +"oyp" = ( +/obj/machinery/vending/cigarette/horizon, +/turf/simulated/floor/wood/walnut, +/area/horizon/medical/smoking) "oyq" = ( /obj/effect/floor_decal/corner_wide/paleblue{ dir = 6 @@ -109061,24 +109149,6 @@ }, /turf/unsimulated/floor/dark_monotile, /area/antag/actor) -"oyY" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/horizon/service/library) "oza" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -109117,6 +109187,24 @@ }, /turf/simulated/floor/wood, /area/horizon/command/heads/xo) +"ozj" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) "ozq" = ( /obj/machinery/light/small/emergency, /turf/simulated/floor/tiled/dark/full, @@ -109395,12 +109483,6 @@ dir = 8 }, /area/antag/burglar) -"oAH" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/exoplanet/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "oAJ" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/engineering/bluespace_drive) @@ -109516,12 +109598,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/atmos/storage) -"oCa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/primary/deck_2/central) "oCb" = ( /obj/effect/map_effect/perma_light/starlight, /turf/space, @@ -109719,6 +109795,16 @@ "oDt" = ( /turf/simulated/wall, /area/horizon/maintenance/substation/xenoarchaeology) +"oDv" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/item/gun/energy/mousegun/xenofauna/holo{ + pixel_x = 16 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "oDw" = ( /obj/item/device/flashlight/lamp{ pixel_x = 6 @@ -111257,6 +111343,9 @@ }, /turf/simulated/floor/plating, /area/horizon/command/heads/captain) +"oNm" = ( +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) "oNr" = ( /obj/machinery/door/airlock/centcom{ name = "Security Checkpoint"; @@ -111395,6 +111484,22 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/meeting_room) +"oOk" = ( +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Connectors to BSD Storage" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/sign/nosmoking_1{ + pixel_y = -32 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) "oOn" = ( /obj/machinery/firealarm/west, /obj/effect/floor_decal/spline/fancy/wood{ @@ -111517,12 +111622,6 @@ icon_state = "white" }, /area/centcom/legion) -"oPk" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "library" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/commissary) "oPo" = ( /obj/effect/floor_decal/corner/teal{ dir = 1 @@ -111916,6 +112015,18 @@ }, /turf/simulated/floor/tiled, /area/horizon/hangar/intrepid) +"oRW" = ( +/obj/effect/floor_decal/corner_wide/yellow/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) "oSd" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -112086,6 +112197,15 @@ }, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) +"oST" = ( +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "oSX" = ( /obj/machinery/light{ dir = 4 @@ -112155,12 +112275,6 @@ }, /turf/simulated/floor/plating, /area/horizon/shuttle/intrepid/buffet) -"oTj" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/holofloor/tiled, -/area/horizon/holodeck/source_combat_training) "oTk" = ( /obj/structure/table/standard{ no_cargo = 1 @@ -113268,6 +113382,18 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/rnd/xenobiology/xenoflora) +"pbt" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/westleft{ + req_one_access = list(26,29,31,48,67,35,25,28,37) + }, +/obj/item/toy/desk/fan, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "horizon_commissary_desk" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/commissary) "pbC" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -113664,12 +113790,6 @@ /obj/effect/floor_decal/industrial/outline/emergency_closet, /turf/simulated/floor/tiled, /area/horizon/operations/office) -"peH" = ( -/obj/structure/bed/stool/chair/sofa/right/red{ - dir = 4 - }, -/turf/simulated/floor/carpet/red, -/area/horizon/service/library) "peI" = ( /obj/effect/floor_decal/corner_wide/lime/diagonal, /obj/structure/disposalpipe/segment, @@ -114242,6 +114362,15 @@ /obj/effect/spider/stickyweb, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) +"pik" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hangar/operations) "pin" = ( /obj/item/banhammer, /obj/structure/table/rack, @@ -114722,14 +114851,6 @@ /obj/structure/engineer_maintenance/electric/wall, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/supermatter/mainchamber) -"plF" = ( -/obj/machinery/alarm/south, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/smartfridge/tradeshelf/toy, -/turf/simulated/floor/tiled/full, -/area/horizon/operations/commissary) "plL" = ( /obj/machinery/disposal/small/north, /obj/structure/disposalpipe/trunk{ @@ -115004,15 +115125,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard) -"pnB" = ( -/obj/structure/window/reinforced/holowindow{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/holofloor/tiled, -/area/horizon/holodeck/source_combat_training) "pnD" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -115273,29 +115385,6 @@ /obj/effect/step_trigger/thrower/shuttle/southeast, /turf/template_noop, /area/template_noop) -"ppn" = ( -/obj/structure/table/wood, -/obj/random/pottedplant_small{ - pixel_x = -3; - pixel_y = 12 - }, -/obj/machinery/button/switch/windowtint{ - id = "library"; - pixel_x = 7; - pixel_y = -1; - dir = 10 - }, -/obj/item/material/ashtray/bronze{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/machinery/light_switch{ - dir = 10; - pixel_y = -1; - pixel_x = -2 - }, -/turf/simulated/floor/carpet/red, -/area/horizon/service/library) "ppx" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -115681,6 +115770,18 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/mainchamber) +"psv" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hangar/operations) "psx" = ( /obj/structure/lattice/catwalk/indoor, /obj/machinery/light{ @@ -116444,19 +116545,6 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"pyc" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Commissary Maintenance"; - req_one_access = list(25,26,28,29,31,35,37,48,67) - }, -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/commissary) "pym" = ( /obj/structure/shuttle/engine/propulsion/burst, /turf/unsimulated/floor/plating, @@ -116720,11 +116808,6 @@ /obj/machinery/portable_atmospherics/hydroponics, /turf/simulated/floor/tiled/dark/full, /area/horizon/rnd/xenobiology/xenoflora) -"pAo" = ( -/obj/machinery/vending/coffee, -/obj/effect/floor_decal/industrial/hatch/grey, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/primary/deck_3/starboard) "pAq" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 9 @@ -118216,6 +118299,21 @@ /obj/random/dirt_75, /turf/simulated/floor, /area/horizon/maintenance/deck_3/security/port) +"pKI" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/structure/railing/retractable{ + dir = 4 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/machinery/light/floor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hangar/operations) "pKO" = ( /obj/effect/floor_decal/corner_wide/green{ dir = 6 @@ -118520,6 +118618,15 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/atmos/storage_maintenance) +"pNE" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "pNG" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/weapons/longbow) @@ -119067,6 +119174,15 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/rnd/xenoarch/isolation_c) +"pRk" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/commissary) "pRv" = ( /obj/structure/table/steel, /obj/effect/floor_decal/corner/dark_blue{ @@ -119348,18 +119464,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/stairwell/engineering/deck_1) -"pTl" = ( -/obj/structure/table/wood, -/obj/item/folder/purple{ - pixel_x = -3 - }, -/obj/item/folder/red{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/device/radio/intercom/west, -/turf/simulated/floor/carpet/red, -/area/horizon/service/library) "pTo" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -119926,6 +120030,15 @@ }, /turf/simulated/floor/plating, /area/horizon/shuttle/quark/cargo_hold) +"pXi" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) "pXm" = ( /obj/structure/closet/gimmick{ name = "emergency response team wardrobe" @@ -120061,19 +120174,6 @@ /obj/random/dirt_75, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/nacelle) -"pXS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "pYd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/steel, @@ -121037,12 +121137,6 @@ /obj/structure/window/reinforced/holowindow, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_gym) -"qfz" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/exoplanet/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "qfB" = ( /obj/machinery/light/colored/red, /turf/simulated/floor/shuttle/dark_red, @@ -121450,6 +121544,23 @@ }, /turf/simulated/floor/tiled, /area/horizon/command/bridge/controlroom) +"qiq" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/machinery/light_switch{ + dir = 5; + pixel_x = -26 + }, +/obj/machinery/button/remote/blast_door{ + dir = 9; + id = "shutters_deck3_bridgesafety"; + name = "Bridge Safety Shutters"; + pixel_x = -26; + pixel_y = 8 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/bridge/meeting_room) "qix" = ( /obj/structure/platform_deco{ dir = 1 @@ -121680,16 +121791,6 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"qkP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/hangar/operations) "qkQ" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -121823,6 +121924,24 @@ icon_state = "dark_preview" }, /area/centcom/specops) +"qlv" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/commissary) "qlz" = ( /obj/effect/floor_decal/corner/yellow{ dir = 10 @@ -121948,16 +122067,6 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) -"qlY" = ( -/obj/effect/floor_decal/industrial/hatch/operations, -/obj/structure/railing/retractable, -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad"; - color = "#CCCCCC" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hangar/operations) "qmb" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 4 @@ -122112,13 +122221,6 @@ /obj/effect/floor_decal/industrial/outline/service, /turf/simulated/floor/lino, /area/horizon/service/bar) -"qmO" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/fabricator/autolathe, -/turf/simulated/floor/carpet/rubber, -/area/horizon/operations/machinist) "qmR" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -122153,15 +122255,6 @@ icon_state = "wood" }, /area/centcom/control) -"qmX" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/vending/cola, -/obj/machinery/alarm/west, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "qna" = ( /obj/effect/floor_decal/corner/beige{ dir = 10 @@ -122178,6 +122271,18 @@ /obj/item/device/hand_labeler, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) +"qne" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/lime{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/commissary) "qnj" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -122436,19 +122541,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/ai/upload_foyer) -"qoO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "qoS" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 @@ -122494,14 +122586,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_3/security/port) -"qpq" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/machinery/bookbinder, -/obj/structure/engineer_maintenance/electric/wall, -/turf/simulated/floor/wood, -/area/horizon/service/library) "qpr" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Heavy Asset Protection"; @@ -122552,6 +122636,13 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/service/kitchen) +"qpL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 5 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "qpS" = ( /obj/structure/foamedmetal, /turf/simulated/floor/plating, @@ -122671,23 +122762,6 @@ }, /turf/unsimulated/floor/plating, /area/antag/burglar) -"qqG" = ( -/obj/effect/floor_decal/spline/plain/lime{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/operations/commissary) "qqI" = ( /obj/effect/floor_decal/corner/mauve{ dir = 6 @@ -122896,6 +122970,16 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/mainchamber) +"qsp" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/appliance/cooker/microwave{ + pixel_y = 6 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/commissary) "qsq" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/blue{ dir = 1 @@ -122908,6 +122992,11 @@ }, /turf/simulated/floor/tiled, /area/horizon/engineering/hallway/aft) +"qsr" = ( +/obj/machinery/vending/battlemonsters, +/obj/effect/floor_decal/industrial/outline/service, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/library) "qst" = ( /obj/effect/floor_decal/spline/plain, /obj/structure/ore_box{ @@ -123090,21 +123179,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hallway/primary/deck_3/central) -"qub" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/interrogation) "qud" = ( /obj/structure/cable{ icon_state = "4-8" @@ -123118,18 +123192,6 @@ }, /turf/unsimulated/floor, /area/antag/loner) -"qug" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/obj/structure/railing/retractable{ - dir = 8 - }, -/obj/machinery/light/floor{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hangar/operations) "quj" = ( /obj/machinery/door/blast/regular{ id = "thunderdomegen"; @@ -123951,6 +124013,15 @@ }, /turf/simulated/floor/airless, /area/horizon/engineering/atmos) +"qAt" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/commissary) "qAB" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -123962,11 +124033,6 @@ "qAF" = ( /turf/unsimulated/wall/darkshuttlewall, /area/centcom/holding) -"qAG" = ( -/obj/machinery/vending/snack, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/horizon/command/bridge/cciaroom) "qAH" = ( /obj/structure/table/rack, /obj/item/pinpointer/nukeop{ @@ -124535,6 +124601,13 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled/dark/full, /area/horizon/rnd/xenoarch/hallway/hangar) +"qEv" = ( +/obj/effect/floor_decal/spline/plain/lime{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/commissary) "qEE" = ( /obj/structure/cable/orange{ icon_state = "4-8" @@ -124656,14 +124729,6 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/tcommsat/chamber) -"qFE" = ( -/obj/effect/floor_decal/industrial/hatch/operations, -/obj/machinery/conveyor{ - id = "cargo_1"; - color = "#CCCCCC" - }, -/turf/simulated/floor/tiled/dark/full, -/area/supply/dock) "qFG" = ( /obj/effect/floor_decal/corner/brown{ dir = 10 @@ -124902,12 +124967,6 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"qGR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/engineering/hallway/fore) "qGX" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -125340,10 +125399,36 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/rnd/test_range) +"qJQ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/engineering/hallway/fore) "qJU" = ( /obj/effect/floor_decal/industrial/outline/service, /turf/simulated/floor/tiled/gunmetal/full, /area/horizon/operations/warehouse) +"qJX" = ( +/obj/structure/table/wood, +/obj/machinery/power/outlet, +/obj/item/material/ashtray/bronze{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/random/pottedplant_small{ + pixel_x = -3; + pixel_y = 12 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/library) "qKg" = ( /obj/machinery/door/airlock/maintenance{ dir = 4; @@ -125476,12 +125561,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/port/far) -"qKH" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/commissary) "qKM" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/structure/closet/crate/plastic{ @@ -125753,6 +125832,24 @@ }, /turf/unsimulated/floor/rubber_carpet, /area/centcom/control) +"qMi" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/commissary) "qMl" = ( /mob/living/heavy_vehicle/premade/random/boring, /obj/machinery/mech_recharger, @@ -125981,6 +126078,13 @@ }, /turf/simulated/open, /area/horizon/hallway/primary/deck_3/starboard) +"qNs" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack/retail_shelf, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/commissary) "qNx" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -126053,6 +126157,21 @@ /obj/effect/floor_decal/industrial/outline/emergency_closet, /turf/simulated/floor/tiled/dark, /area/horizon/service/custodial/disposals/deck_1) +"qOc" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/door/airlock/glass{ + dir = 4; + name = "Cafe Storage" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/cafeteria) "qOd" = ( /obj/structure/sink{ pixel_y = 16 @@ -126062,13 +126181,6 @@ }, /turf/unsimulated/floor/freezer, /area/antag/mercenary) -"qOh" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/bed/stool/bar/padded/red{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/service/library) "qOm" = ( /obj/structure/railing/mapped{ dir = 1 @@ -126602,6 +126714,10 @@ "qSj" = ( /turf/simulated/floor/plating, /area/horizon/engineering/bluespace_drive) +"qSk" = ( +/obj/machinery/fabricator/autolathe/hacked, +/turf/unsimulated/floor, +/area/centcom/legion/hangar5) "qSq" = ( /obj/structure/cable{ icon_state = "1-2" @@ -126894,6 +127010,22 @@ /obj/structure/lattice/catwalk, /turf/simulated/open/airless, /area/horizon/exterior) +"qUY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/commissary) "qUZ" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -127208,22 +127340,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/service/custodial/auxiliary) -"qWU" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "qWX" = ( /obj/effect/floor_decal/corner/red{ dir = 5 @@ -127353,6 +127469,18 @@ }, /turf/simulated/floor/tiled, /area/horizon/rnd/hallway) +"qXG" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/structure/bed/stool/chair/folding{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "qXH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -127621,13 +127749,6 @@ /obj/structure/closet/secure_closet/freezer/meat, /turf/unsimulated/floor, /area/centcom/bar) -"qZt" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/vending/cola, -/turf/simulated/floor/tiled, -/area/horizon/hangar/intrepid) "qZy" = ( /obj/structure/cable{ icon_state = "1-2" @@ -127832,16 +127953,6 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"raV" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain/lime{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/horizon/operations/commissary) "raY" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 6 @@ -128141,13 +128252,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/supermatter/mainchamber) -"rde" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/turf/simulated/floor/holofloor/tiled, -/area/horizon/holodeck/source_combat_training) "rdf" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plating, @@ -128547,22 +128651,11 @@ "rfC" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/maintenance/deck_1/wing/starboard/far) -"rfM" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"rfH" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/cafe) "rgd" = ( /obj/effect/floor_decal/corner/dark_green/diagonal, /obj/structure/disposalpipe/segment{ @@ -129225,22 +129318,6 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/gravity_gen) -"rkp" = ( -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Connectors to BSD Storage" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/sign/nosmoking_1{ - pixel_y = -32 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/horizon/engineering/atmos) "rks" = ( /obj/structure/table/standard, /obj/item/device/binoculars, @@ -129279,12 +129356,6 @@ "rkE" = ( /turf/simulated/wall, /area/horizon/maintenance/deck_3/aft/holodeck) -"rkG" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/horizon/holodeck/source_combat_training) "rkL" = ( /obj/effect/floor_decal/corner/white{ dir = 5 @@ -129700,14 +129771,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/engineering/hallway/interior) -"rmH" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/obj/machinery/vending/snack, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/central) "rmI" = ( /obj/item/flag/scc/l{ pixel_y = 4 @@ -131047,6 +131110,11 @@ }, /turf/simulated/floor/tiled, /area/horizon/hangar/airstation) +"rvR" = ( +/obj/machinery/vending/snack/horizon, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/cciaroom) "rvX" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -131063,6 +131131,24 @@ /obj/machinery/power/apc/north, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/starboard/docks) +"rvZ" = ( +/obj/machinery/conveyor{ + id = "cargo_1" + }, +/obj/machinery/door/firedoor, +/obj/structure/plasticflaps, +/obj/machinery/door/airlock/external{ + dir = 1; + frequency = 1380; + icon_state = "door_locked"; + id_tag = "cargo_shuttle_dock_airlock"; + locked = 1; + name = "Cargo Shuttle"; + req_access = list(13,31) + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/loading) "rwi" = ( /obj/structure/cable{ icon_state = "1-2" @@ -131088,41 +131174,6 @@ /obj/structure/table/reinforced, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"rwl" = ( -/obj/effect/floor_decal/spline/plain/lime{ - dir = 4 - }, -/obj/machinery/button/remote/airlock{ - dir = 4; - id = "horizon_commissary_door"; - name = "Commissary Door Bolts"; - pixel_x = 22; - specialfunctions = 4; - pixel_y = -2 - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "horizon_commissary_desk"; - name = "Desk Shutters"; - pixel_x = 22; - pixel_y = 10 - }, -/obj/machinery/button/switch/holosign{ - id = "commissary"; - dir = 4; - pixel_y = 1; - pixel_x = 29 - }, -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light_switch/east{ - pixel_x = 29; - pixel_y = 12 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/operations/commissary) "rwn" = ( /obj/effect/floor_decal/corner_wide/lime/diagonal, /obj/effect/floor_decal/industrial/warning/corner{ @@ -131356,15 +131407,6 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/horizon/engineering/reactor/indra/mainchamber) -"rya" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/engineering/hallway/fore) "ryc" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -131659,6 +131701,22 @@ /obj/machinery/meter, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/hydroponics) +"rzM" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "rzO" = ( /obj/random/junk, /obj/effect/floor_decal/industrial/outline/grey, @@ -131912,11 +131970,6 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"rBF" = ( -/obj/machinery/vending/frontiervend, -/obj/effect/floor_decal/industrial/hatch/grey, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/primary/deck_3/starboard) "rBJ" = ( /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/indra/smes) @@ -132107,6 +132160,22 @@ /obj/item/storage/slide_projector, /turf/simulated/floor/carpet, /area/horizon/command/heads/captain) +"rDG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "rDL" = ( /obj/effect/floor_decal/spline/plain/corner, /turf/simulated/floor/exoplanet/barren/raskara, @@ -132130,23 +132199,6 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/storage_hard/upper) -"rDV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/operations, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/vending/cigarette, -/turf/simulated/floor/tiled/full, -/area/horizon/operations/commissary) "rDZ" = ( /obj/machinery/camera/network/third_deck{ c_tag = "Third Deck - Starboard Dock Starboard"; @@ -133117,6 +133169,35 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/horizon/medical/hallway) +"rKQ" = ( +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/window/shuttle/scc_space_ship, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/horizon/command/bridge/meeting_room) "rKR" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -133226,15 +133307,6 @@ /obj/machinery/power/apc/east, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/security_port) -"rLA" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/obj/structure/bed/stool/chair/padded/beige{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "rLE" = ( /obj/machinery/light/floor{ dir = 1 @@ -133681,6 +133753,29 @@ }, /turf/simulated/floor/plating, /area/horizon/rnd/xenoarch/atrium) +"rOf" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/device/toner{ + pixel_y = 5 + }, +/obj/item/device/toner{ + pixel_y = -1 + }, +/obj/item/paper_scanner, +/obj/item/stack/packageWrap, +/obj/item/storage/box/fancy/candle_box, +/obj/item/device/destTagger, +/obj/structure/closet/walllocker{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/library) "rOh" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -133781,11 +133876,6 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_2/central) -"rOK" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/cola, -/turf/simulated/floor/tiled/dark, -/area/horizon/operations/lobby) "rOO" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 4 @@ -133928,11 +134018,6 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_1/hangar/port) -"rPz" = ( -/obj/machinery/vending/snack, -/obj/effect/floor_decal/industrial/hatch/grey, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/primary/deck_3/starboard) "rPB" = ( /obj/machinery/atmospherics/valve{ dir = 4; @@ -134351,6 +134436,21 @@ /obj/structure/table/reinforced/wood, /turf/unsimulated/floor, /area/antag/raider) +"rSi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/service/library) "rSl" = ( /obj/machinery/power/apc/critical/north, /obj/structure/cable/green{ @@ -134481,6 +134581,11 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) +"rST" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/west, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) "rSV" = ( /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/far) @@ -134895,6 +135000,16 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/central) +"rVr" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) "rVy" = ( /obj/structure/stairs_railing{ dir = 8 @@ -135070,6 +135185,15 @@ }, /turf/simulated/open, /area/horizon/maintenance/deck_2/main/starboard) +"rWO" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "rWP" = ( /obj/effect/floor_decal/corner/mauve/full{ dir = 8 @@ -135533,13 +135657,6 @@ /obj/effect/floor_decal/industrial/outline_door/medical, /turf/simulated/floor/lino, /area/horizon/service/bar) -"rZZ" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/horizon/operations/commissary) "sae" = ( /obj/structure/closet/crate/bin, /obj/random/loot, @@ -135767,6 +135884,19 @@ name = "coast" }, /area/horizon/holodeck/source_konyang) +"scw" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Commissary Maintenance"; + req_one_access = list(25,26,28,29,31,35,37,48,67) + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/commissary) "scz" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 10 @@ -135917,10 +136047,6 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/full, /area/horizon/maintenance/deck_2/wing/starboard/near) -"sdq" = ( -/obj/machinery/fabricator/autolathe/hacked, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) "sdr" = ( /obj/machinery/door/firedoor{ req_one_access = list(24,11,67,73) @@ -136117,20 +136243,25 @@ }, /turf/unsimulated/floor/wood, /area/antag/actor) -"seX" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 1 +"seV" = ( +/obj/structure/table/wood, +/obj/item/storage/box/fancy/matches{ + pixel_x = 6; + pixel_y = 11 }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 +/obj/machinery/light/small{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/random/pottedplant_small{ + pixel_x = -7; + pixel_y = 10 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_3/port) +/obj/machinery/power/outlet, +/obj/structure/window/reinforced{ + name = "adjusted window" + }, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/library) "sfa" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -136344,13 +136475,6 @@ /obj/structure/lattice, /turf/space, /area/horizon/exterior) -"sgv" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled, -/area/horizon/holodeck/source_combat_training) "sgw" = ( /obj/structure/table/standard, /obj/machinery/firealarm/east, @@ -136446,10 +136570,6 @@ /obj/random/voidsuit, /turf/simulated/floor/tiled, /area/shuttle/skipjack) -"sgD" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/horizon/service/library) "sgF" = ( /obj/item/stack/rods, /turf/simulated/floor/plating, @@ -136625,6 +136745,20 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/engineering/reactor/indra/mainchamber) +"shz" = ( +/obj/structure/table/wood, +/obj/machinery/librarycomp{ + pixel_y = 4 + }, +/obj/machinery/light_switch/west, +/obj/machinery/button/switch/windowtint{ + id = "library"; + pixel_x = -22; + pixel_y = -5; + dir = 8 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/library) "shA" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8 @@ -137391,6 +137525,12 @@ }, /turf/simulated/open, /area/horizon/maintenance/deck_3/aft/port) +"smd" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "smg" = ( /turf/simulated/wall/elevator, /area/centcom/spawning) @@ -137420,6 +137560,17 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/wing/starboard/far) +"smx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/random/loot, +/obj/random/loot, +/obj/random/loot, +/obj/random/loot, +/obj/structure/closet/crate, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/port) "smA" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -137776,15 +137927,6 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"spu" = ( -/obj/structure/platform, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/vending/cola, -/turf/simulated/floor/tiled/full, -/area/horizon/command/bridge/upperdeck) "spx" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -137823,6 +137965,20 @@ "spE" = ( /turf/simulated/wall, /area/horizon/hallway/primary/deck_3/starboard/docks) +"spJ" = ( +/obj/machinery/door/window{ + req_access = list(37); + name = "Library Desk" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/library) "spP" = ( /obj/machinery/computer/message_monitor, /turf/simulated/floor/carpet/rubber, @@ -138399,6 +138555,21 @@ /obj/effect/floor_decal/spline/plain, /turf/unsimulated/floor/plating, /area/centcom/bar) +"sug" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/computer/general_air_control/large_tank_control/wall{ + input_tag = "mixed_2_in"; + name = "Exhaust Gas Tank Monitor"; + output_tag = "mixed_2_out"; + sensors = list("mixed_2_sensor"="Tank"); + pixel_x = 32 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "suh" = ( /obj/structure/cart/storage/janitorialcart{ dir = 4 @@ -138479,30 +138650,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"suW" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/horizon/command/bridge/meeting_room) "suX" = ( /obj/structure/bed/stool/chair/office/dark, /turf/simulated/floor/tiled/gunmetal, @@ -138569,6 +138716,13 @@ }, /turf/simulated/floor/wood, /area/horizon/service/chapel/main) +"svK" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/commissary) "svL" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 8 @@ -139585,6 +139739,16 @@ /obj/structure/girder, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/far) +"sBh" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) "sBi" = ( /obj/machinery/atmospherics/pipe/tank/air, /obj/effect/floor_decal/industrial/outline/yellow, @@ -139738,13 +139902,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard) -"sBW" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/horizon/service/library) "sBZ" = ( /obj/machinery/stargazer, /obj/effect/floor_decal/spline/plain/corner{ @@ -140207,14 +140364,6 @@ "sEA" = ( /turf/unsimulated/wall/steel, /area/antag/burglar) -"sEF" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/vending/coffee, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/horizon/security/checkpoint2) "sEL" = ( /obj/effect/decal/cleanable/dirt, /obj/random/junk, @@ -140355,6 +140504,16 @@ }, /turf/simulated/floor/tiled, /area/horizon/storage/primary) +"sFM" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/platform, +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/vending/snack/horizon, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/upperdeck) "sFP" = ( /obj/structure/closet/wardrobe/orange, /turf/unsimulated/floor, @@ -140570,6 +140729,22 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/supermatter/mainchamber) +"sHo" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced/steel, +/obj/item/device/quikpay{ + destinationact = "Operations"; + pixel_y = 3 + }, +/obj/machinery/power/outlet, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "horizon_commissary_desk" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/commissary) "sHp" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -141174,14 +141349,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/meeting_room) -"sLK" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/obj/machinery/vending/coffee, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/starboard) "sLO" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 @@ -141681,24 +141848,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/near) -"sOP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/horizon/service/library) "sOQ" = ( /obj/structure/lattice/catwalk/indoor, /obj/effect/floor_decal/industrial/outline/red, @@ -141831,14 +141980,6 @@ }, /turf/simulated/floor/carpet/rubber, /area/horizon/engineering/reactor/indra/monitoring) -"sPP" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/vending/games, -/turf/simulated/floor/lino/diamond, -/area/horizon/service/library) "sQb" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/service/chapel/office) @@ -142565,18 +142706,6 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"sVD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/operations, -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad"; - color = "#CCCCCC" - }, -/turf/simulated/floor/tiled/dark/full, -/area/supply/dock) "sVE" = ( /obj/structure/table/reinforced/steel, /obj/item/gun/custom_ka/frame01/illegal{ @@ -142727,6 +142856,31 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/horizon/rnd/xenobiology/xenoflora) +"sWE" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" + }, +/turf/simulated/floor/plating, +/area/horizon/command/bridge/meeting_room) "sWJ" = ( /obj/structure/stairs_railing{ dir = 8 @@ -143675,6 +143829,13 @@ icon_state = "dark_preview" }, /area/centcom/spawning) +"tdO" = ( +/obj/machinery/photocopier, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/service/library) "tdP" = ( /obj/effect/floor_decal/corner/lime/full{ dir = 8 @@ -144154,6 +144315,35 @@ /obj/structure/table/wood, /turf/unsimulated/floor/wood, /area/centcom/specops) +"tgX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "hangarlockdown"; + name = "Hangar Lockdown" + }, +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access = list(12,63) + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/door/blast/regular/open{ + id = "hangarlockdown"; + name = "Hangar Lockdown" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_1/wing/port/far) "tgZ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -144724,17 +144914,6 @@ /obj/machinery/power/apc/low/east, /turf/simulated/floor/carpet/rubber, /area/horizon/rnd/xenoarch/spectrometry) -"tlr" = ( -/obj/effect/decal/fake_object{ - density = 1; - desc = "A wooden crate containing spare parts."; - icon = 'icons/obj/containers/crate.dmi'; - icon_state = "densecrate"; - name = "mechanical supply crate"; - pixel_x = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) "tly" = ( /obj/structure/cable{ icon_state = "1-2" @@ -145358,19 +145537,6 @@ /obj/structure/table/wood, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_meetinghall) -"tpF" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/engineering/hallway/fore) "tpK" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -145417,18 +145583,6 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/far) -"tpV" = ( -/obj/machinery/door/window{ - req_access = list(37); - name = "Library Desk" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/lino/diamond, -/area/horizon/service/library) "tpX" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -145731,6 +145885,15 @@ /obj/effect/floor_decal/spline/fancy/wood/cee, /turf/simulated/floor/wood, /area/horizon/operations/machinist/surgicalbay) +"tru" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/horizon/operations/commissary) "trv" = ( /obj/effect/floor_decal/corner_wide/paleblue/full{ dir = 4 @@ -145819,21 +145982,6 @@ /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/research) -"trP" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/machinery/computer/general_air_control/large_tank_control/wall{ - input_tag = "mixed_2_in"; - name = "Exhaust Gas Tank Monitor"; - output_tag = "mixed_2_out"; - sensors = list("mixed_2_sensor"="Tank"); - pixel_x = 32 - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/horizon/engineering/atmos/air) "trQ" = ( /obj/machinery/light/small{ dir = 8 @@ -146635,6 +146783,34 @@ /obj/machinery/power/apc/super/south, /turf/simulated/floor/tiled, /area/horizon/hangar/intrepid) +"txx" = ( +/obj/structure/table/wood, +/obj/item/folder/purple{ + pixel_x = -3 + }, +/obj/item/folder/red{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/paper/crumpled{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 13 + }, +/obj/item/device/radio/intercom/west, +/obj/machinery/light{ + name = "adjusted light fixture"; + pixel_x = 16 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/library) "txy" = ( /obj/machinery/light/small, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -146898,21 +147074,6 @@ /obj/structure/disposalpipe/junction/yjunction, /turf/simulated/floor/tiled, /area/horizon/service/hydroponics) -"tyN" = ( -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/horizon/holodeck/source_combat_training) -"tyQ" = ( -/obj/structure/bed/stool/chair/sofa/red{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet/red, -/area/horizon/service/library) "tyT" = ( /obj/machinery/light{ dir = 4 @@ -147892,6 +148053,18 @@ /obj/effect/floor_decal/industrial/outline/emergency_closet, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/port) +"tFQ" = ( +/obj/structure/bed/stool/chair/sofa/corner/convex/red{ + dir = 8 + }, +/obj/structure/window/reinforced{ + anchored = 0; + desc = "On further inspection, this window seems to have been loosened."; + dir = 4; + name = "loose window" + }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/library) "tFR" = ( /obj/structure/table/standard, /obj/item/paper_bin, @@ -148535,8 +148708,8 @@ /turf/simulated/floor/shuttle/black, /area/shuttle/distress) "tKb" = ( -/obj/machinery/vending/quick_e_meals, /obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/secure_closet/refrigerator/cafe, /turf/simulated/floor, /area/horizon/maintenance/deck_3/cafe) "tKc" = ( @@ -148984,6 +149157,20 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) +"tNC" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/fabricator/autolathe, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/light_switch/north{ + pixel_x = -6 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) "tNI" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -149120,13 +149307,6 @@ /obj/structure/sign/flag/scc, /turf/simulated/floor/wood, /area/horizon/security/meeting_room) -"tOR" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/platform_deco{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/horizon/hangar/operations) "tOS" = ( /obj/structure/trash_pile, /obj/effect/floor_decal/industrial/warning{ @@ -149387,14 +149567,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/stairwell/engineering/deck_2) -"tRg" = ( -/obj/structure/table/wood, -/obj/machinery/recharger{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/simulated/floor/wood, -/area/horizon/service/library) "tRj" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ dir = 4 @@ -149729,13 +149901,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/full, /area/horizon/hallway/primary/deck_2/central) -"tTx" = ( -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 8 - }, -/obj/machinery/newscaster/west, -/turf/simulated/floor/tiled, -/area/horizon/engineering/hallway/fore) "tTE" = ( /obj/structure/table/reinforced/steel, /obj/item/toy/desk/fan{ @@ -150267,18 +150432,6 @@ }, /turf/simulated/floor, /area/horizon/maintenance/deck_3/security/port) -"tXC" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain/lime{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/operations/commissary) "tXJ" = ( /obj/structure/bed/stool/chair/padded/brown{ dir = 1 @@ -150353,17 +150506,6 @@ }, /turf/simulated/floor/exoplanet/plating, /area/horizon/maintenance/deck_2/wing/starboard/far) -"tYd" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/vending/cola, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/horizon/security/checkpoint2) "tYe" = ( /obj/effect/map_effect/marker/airlock/shuttle{ cycle_to_external_air = 1; @@ -150851,6 +150993,12 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_2/wing/port/nacelle) +"ubX" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) "ubZ" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/camera/network/reactor{ @@ -150906,14 +151054,6 @@ /obj/structure/closet, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/far) -"ucA" = ( -/obj/machinery/smartfridge/secure, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "horizon_commissary_desk" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/commissary) "ucC" = ( /obj/machinery/hologram/holopad, /obj/structure/cable/green{ @@ -151117,15 +151257,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/service/custodial/auxiliary) -"udO" = ( -/obj/effect/floor_decal/industrial/hatch/operations, -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad"; - color = "#CCCCCC" - }, -/turf/simulated/floor/tiled/dark/full, -/area/supply/dock) "udQ" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/closet, @@ -151151,18 +151282,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/rnd/hallway/secondary) -"udW" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/loading) "uee" = ( /obj/effect/decal/fake_object/light_source/invisible{ light_color = "#64C864"; @@ -151230,17 +151349,13 @@ }, /turf/simulated/floor, /area/horizon/maintenance/deck_3/aft/holodeck) -"ufb" = ( -/obj/structure/sign/emergency/evacuation{ - dir = 8 +"ufj" = ( +/obj/machinery/conveyor{ + id = "cargo_1"; + color = "#CCCCCC" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/full, +/obj/effect/floor_decal/industrial/hatch/operations, +/turf/simulated/floor/tiled/dark/full, /area/horizon/hangar/operations) "ufk" = ( /obj/structure/sign/directions/civ{ @@ -151280,6 +151395,13 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/shuttle/merchant) +"ufs" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/aft) "ufu" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/cable/green{ @@ -151927,6 +152049,15 @@ /obj/structure/window/shuttle/scc_space_ship/cardinal, /turf/simulated/floor/plating, /area/shuttle/merchant) +"ujA" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/engineering{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/hallway/fore) "ujB" = ( /obj/structure/bed/stool/chair/office/light{ dir = 4 @@ -151967,6 +152098,15 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/turbine) +"ujM" = ( +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad"; + color = "#CCCCCC" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hangar/operations) "ujO" = ( /turf/simulated/wall, /area/horizon/engineering/atmos/storage) @@ -152219,6 +152359,25 @@ "ulv" = ( /turf/simulated/floor/tiled, /area/horizon/engineering/hallway/interior) +"ulB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/obj/structure/plasticflaps, +/obj/machinery/door/airlock/external{ + dir = 1; + frequency = 1380; + icon_state = "door_locked"; + id_tag = "cargo_shuttle_dock_airlock"; + locked = 1; + name = "Cargo Shuttle"; + req_access = list(13,31) + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/loading) "ulC" = ( /obj/structure/lattice/catwalk/indoor, /obj/structure/cable/green{ @@ -152725,6 +152884,18 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/cargo_compartment) +"upF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad"; + color = "#CCCCCC" + }, +/turf/simulated/floor/tiled/dark/full, +/area/supply/dock) "upG" = ( /obj/machinery/chemical_dispenser/full{ req_access = list(7) @@ -152775,6 +152946,16 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/central) +"upO" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/hallway/fore) "upV" = ( /obj/effect/floor_decal/spline/plain, /turf/unsimulated/floor/monotile, @@ -153494,13 +153675,6 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/full, /area/horizon/medical/main_storage) -"uup" = ( -/obj/machinery/vending/cigarette, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/crew/lounge) "uuq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -154107,22 +154281,6 @@ }, /turf/unsimulated/floor, /area/centcom/distress_prep) -"uzg" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "uzl" = ( /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor{ @@ -154861,17 +155019,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/horizon/medical/pharmacy) -"uDR" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/structure/sign/waste_station{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/engineering/hallway/aft) "uDT" = ( /turf/simulated/floor/plating, /area/horizon/engineering/drone_fabrication) @@ -155196,13 +155343,6 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/horizon/engineering/atmos/air) -"uFR" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/platform_deco{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/horizon/hangar/operations) "uFT" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -155417,6 +155557,33 @@ }, /turf/simulated/floor/tiled, /area/horizon/command/bridge/supply) +"uHr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/fake_object{ + density = 1; + desc = "A secure supply crate, It carries the insignia of the Tau Ceti Foreign Legion. It appears quite scuffed."; + icon = 'icons/obj/containers/crate.dmi'; + icon_state = "tcfl_crate_preview"; + name = "foreign legion supply crate"; + pixel_x = 3; + pixel_y = 8 + }, +/obj/effect/decal/fake_object{ + desc = "A secure supply crate, It carries the insignia of the Tau Ceti Foreign Legion. It appears quite scuffed."; + icon = 'icons/obj/containers/crate.dmi'; + icon_state = "tcfl_crate_preview"; + name = "foreign legion supply crate" + }, +/obj/effect/decal/fake_object{ + desc = "A secure supply crate, It carries the insignia of the Tau Ceti Foreign Legion. It appears quite scuffed."; + icon = 'icons/obj/containers/crate.dmi'; + icon_state = "tcfl_crate_preview"; + name = "foreign legion supply crate"; + pixel_x = 2; + pixel_y = 19 + }, +/turf/unsimulated/floor, +/area/centcom/legion/hangar5) "uHu" = ( /obj/effect/floor_decal/corner/black{ dir = 8 @@ -155824,6 +155991,13 @@ /obj/machinery/smartfridge/drying_rack, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/hydroponics) +"uKb" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "uKc" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 @@ -155841,6 +156015,29 @@ }, /turf/simulated/floor/tiled/dark/full/airless, /area/horizon/command/bridge/controlroom) +"uKf" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/random/lavalamp{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/structure/table/reinforced/steel, +/obj/item/paper_bin{ + pixel_y = 5; + pixel_x = -3 + }, +/obj/item/pen/black{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "horizon_commissary_desk" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/commissary) "uKo" = ( /obj/effect/decal/cleanable/spiderling_remains, /turf/simulated/floor/exoplanet/barren/raskara, @@ -156167,35 +156364,6 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) -"uMw" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "engineering_storage_d2"; - name = "Engineering Hard Storage"; - req_one_access = list(11,24); - pixel_x = -21; - pixel_y = 34 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/engineering/hallway/interior) "uMz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -156447,6 +156615,13 @@ /obj/machinery/atmospherics/unary/freezer, /turf/simulated/floor/tiled/dark/full, /area/horizon/service/hydroponics) +"uOM" = ( +/obj/effect/floor_decal/corner/red, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "uOT" = ( /turf/simulated/floor/plating, /area/horizon/medical/morgue) @@ -157008,13 +157183,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"uSs" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/wood, -/area/horizon/service/library) "uSv" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -157762,26 +157930,6 @@ }, /turf/simulated/floor/plating, /area/horizon/shuttle/quark/cockpit) -"uXh" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/main/starboard) "uXi" = ( /obj/machinery/door/airlock/multi_tile/glass{ name = "Server Hall"; @@ -158249,6 +158397,18 @@ icon_state = "dark_preview" }, /area/centcom/holding) +"vaJ" = ( +/obj/effect/floor_decal/spline/plain/lime{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/commissary) "vaL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -158263,15 +158423,6 @@ dir = 8 }, /area/horizon/maintenance/deck_2/wing/starboard/near) -"vaT" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/mining_main/refinery) "vaU" = ( /obj/structure/cable{ icon_state = "4-8" @@ -158477,11 +158628,6 @@ }, /turf/unsimulated/floor/wood, /area/antag/raider) -"vcg" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/platform, -/turf/simulated/floor/plating, -/area/horizon/hangar/operations) "vcj" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 1 @@ -158706,11 +158852,6 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/horizon/engineering/reactor/indra/mainchamber) -"vdw" = ( -/obj/machinery/vending/cola, -/obj/effect/floor_decal/industrial/hatch/grey, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/primary/deck_3/starboard) "vdy" = ( /obj/structure/table/rack, /obj/machinery/light{ @@ -159213,24 +159354,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/starboard) -"vhF" = ( -/obj/item/device/destTagger, -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/operations, -/obj/item/storage/box/fancy/candle_box, -/obj/item/stack/packageWrap, -/obj/item/paper_scanner, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/device/toner{ - pixel_y = 5 - }, -/obj/item/device/toner{ - pixel_y = -1 - }, -/turf/simulated/floor/lino/diamond, -/area/horizon/service/library) "vhH" = ( /obj/structure/cable/green{ icon_state = "0-2" @@ -159280,24 +159403,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/shuttle/intrepid/flight_deck) -"vie" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/horizon/service/library) "vih" = ( /obj/structure/bed/stool/padded/beige{ dir = 1 @@ -159343,30 +159448,6 @@ /obj/structure/railing/mapped, /turf/simulated/open, /area/horizon/service/custodial/disposals/deck_2) -"viA" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/horizon/command/bridge/meeting_room) "viI" = ( /obj/machinery/light_switch/east{ pixel_y = -4 @@ -159718,12 +159799,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/horizon/operations/mail_room) -"vkV" = ( -/obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hangar/operations) "vkY" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/crate{ @@ -160299,11 +160374,6 @@ /obj/machinery/light/floor, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_2/central) -"vpe" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled/dark, -/area/horizon/operations/lobby) "vpk" = ( /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, @@ -160369,11 +160439,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hallway/primary/deck_2/central) -"vpK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/alarm/west, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_2/aft) "vpT" = ( /obj/effect/floor_decal/spline/plain/corner/black{ dir = 4 @@ -160696,17 +160761,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor, /area/antag/mercenary) -"vsm" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/tiled, -/area/horizon/hangar/operations) "vsr" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -161834,13 +161888,6 @@ /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/propulsion/starboard) -"vBg" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/obj/machinery/vending/cola, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled, -/area/horizon/hallway/primary/deck_2/central) "vBh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -162125,6 +162172,13 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/medical/pharmacy) +"vDb" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/aft) "vDc" = ( /obj/structure/flora/grass/jungle{ density = 1 @@ -162903,6 +162957,12 @@ icon_state = "6,5" }, /area/horizon/shuttle/canary) +"vJe" = ( +/obj/structure/platform, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/vending/cigarette/horizon, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/upperdeck) "vJq" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 8 @@ -163082,6 +163142,16 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/maintenance/deck_3/aft/starboard/far) +"vKz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/engineering/hallway/fore) "vKA" = ( /obj/item/storage/photo_album, /obj/item/device/camera_film, @@ -164001,6 +164071,14 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) +"vSs" = ( +/obj/structure/engineer_maintenance/electric/wall, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/bookcase/libraryspawn/reference, +/turf/simulated/floor/wood, +/area/horizon/service/library) "vSE" = ( /obj/structure/table/standard, /obj/machinery/chemical_dispenser/bar_soft/full{ @@ -164232,13 +164310,7 @@ }, /turf/simulated/floor/plating, /area/horizon/service/chapel/office) -"vTR" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, +"vTT" = ( /turf/simulated/floor/wood, /area/horizon/service/library) "vUc" = ( @@ -164416,6 +164488,13 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hangar/intrepid) +"vUU" = ( +/obj/machinery/vending/cigarette/horizon, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) "vUX" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -164970,18 +165049,6 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"vXK" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/light/floor{ - dir = 1 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/rnd/conference) "vXM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/platform_stairs/full{ @@ -165218,15 +165285,6 @@ }, /turf/unsimulated/floor, /area/antag/ninja) -"vZN" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/exoplanet/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "vZQ" = ( /obj/machinery/door/blast/odin/open{ _wifi_id = "merc_droppod_2"; @@ -165381,6 +165439,12 @@ /obj/effect/floor_decal/industrial/loading/yellow, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/starboard/far) +"waY" = ( +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hangar/operations) "wba" = ( /obj/effect/floor_decal/corner/white{ dir = 5 @@ -166417,14 +166481,6 @@ }, /turf/unsimulated/floor/plating, /area/antag/mercenary) -"wgU" = ( -/obj/machinery/fabricator/autolathe/hacked, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/shuttle/merchant) "wgZ" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 6 @@ -166760,25 +166816,6 @@ /obj/effect/floor_decal/industrial/outline/security, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) -"wjp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad" - }, -/obj/structure/plasticflaps, -/obj/machinery/door/airlock/external{ - dir = 1; - frequency = 1380; - icon_state = "door_locked"; - id_tag = "cargo_shuttle_dock_airlock"; - locked = 1; - name = "Cargo Shuttle"; - req_access = list(13,31) - }, -/obj/effect/floor_decal/industrial/hatch/operations, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/loading) "wju" = ( /obj/effect/floor_decal/corner/yellow{ dir = 9 @@ -166960,17 +166997,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/hallway/primary/deck_3/central) -"wky" = ( -/obj/machinery/conveyor{ - id = "cargo_1" - }, -/obj/effect/floor_decal/industrial/hatch/operations, -/obj/structure/plasticflaps, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hangar/operations) "wkz" = ( /turf/unsimulated/floor, /area/centcom/holding) @@ -167016,12 +167042,6 @@ }, /turf/unsimulated/floor/wood, /area/centcom/bar) -"wkT" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/horizon/holodeck/source_combat_training) "wkW" = ( /turf/simulated/wall/r_wall, /area/horizon/service/hydroponics) @@ -167082,6 +167102,18 @@ name = "staircase" }, /area/centcom/spawning) +"wlq" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "wlr" = ( /turf/simulated/wall, /area/horizon/operations/warehouse) @@ -167607,6 +167639,21 @@ /obj/item/screwdriver, /turf/simulated/floor/tiled/white, /area/horizon/medical/pharmacy) +"woq" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/structure/railing/retractable{ + dir = 4 + }, +/obj/machinery/light/floor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hangar/operations) "wov" = ( /obj/structure/disposalpipe/segment{ icon_state = "pipe-c" @@ -167798,6 +167845,10 @@ /obj/effect/decal/fake_object/light_source/invisible, /turf/unsimulated/floor/plating, /area/centcom/specops) +"wpK" = ( +/obj/effect/landmark/holodeck/holocarp_spawn_pain, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "wpL" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 6 @@ -168104,19 +168155,6 @@ /obj/structure/table/wood, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_dininghall) -"wqR" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/engineering/hallway/fore) "wqS" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 8 @@ -168840,6 +168878,30 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/engineering/reactor/supermatter/mainchamber) +"wvw" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/horizon/command/bridge/meeting_room) "wvx" = ( /turf/simulated/floor/tiled, /area/horizon/security/custodial) @@ -168869,6 +168931,13 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/main/starboard) +"wwl" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/optable/robotics, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) "wwm" = ( /obj/machinery/door/airlock/glass_command{ dir = 4; @@ -169256,6 +169325,11 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/rnd/xenobiology/xenoflora) +"wyn" = ( +/obj/effect/floor_decal/corner/dark_green/full, +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "wyq" = ( /turf/simulated/floor/tiled/dark/full, /area/horizon/stairwell/engineering/deck_1) @@ -169329,15 +169403,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"wyT" = ( -/obj/structure/table/rack/retail_shelf, -/obj/machinery/vending/wallpharm{ - pixel_x = 28; - pixel_y = 3 - }, -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/tiled/full, -/area/horizon/operations/commissary) "wyV" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -169973,6 +170038,18 @@ }, /turf/simulated/wall, /area/horizon/engineering/bluespace_drive) +"wEa" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/horizon/service/library) "wEf" = ( /obj/machinery/chemical_dispenser/ert{ dir = 4 @@ -170341,26 +170418,14 @@ /turf/unsimulated/floor/dark_monotile, /area/antag/actor) "wGM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 +/obj/structure/railing/mapped{ + dir = 4 }, /obj/machinery/light/small/emergency{ dir = 4 }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack/folding_table, -/obj/item/material/stool/chair/folding{ - pixel_y = 19 - }, -/obj/item/material/stool/chair/folding{ - pixel_y = 22 - }, -/obj/item/deck/cards{ - pixel_x = 6 - }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/horizon/maintenance/deck_3/cafe) "wGN" = ( @@ -170580,33 +170645,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/dark/full, /area/horizon/shuttle/intrepid/main_compartment) -"wHQ" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/camera/network/service{ - c_tag = "Second Deck - Commissary Backroom"; - dir = 1 - }, -/obj/item/paper_bin{ - pixel_y = 5; - pixel_x = -3 - }, -/obj/item/pen/black{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/random/lavalamp{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/device/quikpay{ - destinationact = "Operations"; - pixel_y = 3 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/operations/commissary) "wHS" = ( /obj/structure/table/standard, /obj/structure/window/reinforced, @@ -171204,19 +171242,16 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/weapons/longbow) +"wMM" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "wMP" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/horizon/rnd/xenoarch/atrium) -"wMR" = ( -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled, -/area/horizon/holodeck/source_combat_training) "wMW" = ( /obj/machinery/light{ dir = 4 @@ -171312,6 +171347,16 @@ }, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) +"wNA" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/libraryscanner, +/turf/simulated/floor/wood, +/area/horizon/service/library) "wNB" = ( /obj/effect/floor_decal/corner/yellow{ dir = 10 @@ -171599,6 +171644,15 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/operations/office) +"wPd" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) "wPe" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -171620,6 +171674,15 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/research) +"wPr" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "wPw" = ( /turf/simulated/wall, /area/horizon/crew/fitness/showers) @@ -171984,18 +172047,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/reinforced/airless, /area/horizon/engineering/atmos/turbine) -"wRC" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/toy/desk/officetoy{ - pixel_x = -9; - pixel_y = 5 - }, -/turf/simulated/floor/carpet/red, -/area/horizon/service/library) "wRR" = ( /obj/machinery/button/remote/airlock{ dir = 4; @@ -172165,10 +172216,6 @@ }, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_2/wing/port/far) -"wSG" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/exoplanet/plating, -/area/horizon/maintenance/deck_2/wing/starboard/near) "wSI" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -172485,6 +172532,24 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/warden) +"wUy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/service/library) "wUB" = ( /obj/machinery/light/colored/red{ dir = 1 @@ -173049,13 +173114,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/operations/lobby) -"wYc" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/smartfridge/tradeshelf/clothing, -/turf/simulated/floor/tiled/full, -/area/horizon/operations/commissary) "wYd" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple, /turf/simulated/floor/plating, @@ -173632,11 +173690,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control) -"xbf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/full, -/area/horizon/engineering/hallway/fore) "xbj" = ( /obj/effect/floor_decal/corner/mauve/diagonal, /obj/structure/disposalpipe/segment, @@ -174274,6 +174327,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/medical/paramedic) +"xfw" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/obj/structure/bed/stool/chair/padded/beige, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "xfy" = ( /obj/structure/curtain/black{ icon_state = "open"; @@ -174609,6 +174669,18 @@ /obj/machinery/disposal/small/north, /turf/simulated/floor/tiled, /area/horizon/medical/paramedic) +"xhN" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/structure/railing/retractable{ + dir = 8 + }, +/obj/machinery/light/floor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hangar/operations) "xhS" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 @@ -175105,23 +175177,6 @@ }, /turf/simulated/floor/wood, /area/horizon/service/chapel/office) -"xmf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/fake_object{ - density = 1; - desc = "A wooden crate containing spare parts."; - icon = 'icons/obj/containers/crate.dmi'; - icon_state = "densecrate"; - name = "mechanical supply crate"; - pixel_x = 1 - }, -/obj/structure/sign/emergency/exit/ladder{ - dir = 1; - pixel_x = -9; - pixel_y = 30 - }, -/turf/unsimulated/floor/plating, -/area/centcom/legion) "xmj" = ( /obj/machinery/r_n_d/circuit_imprinter, /obj/item/reagent_containers/glass/beaker{ @@ -175323,40 +175378,22 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/horizon/operations/mining_main/refinery) -"xnx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id = "hangarlockdown"; - name = "Hangar Lockdown" - }, -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_one_access = list(12,63) - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/obj/machinery/door/blast/regular/open{ - id = "hangarlockdown"; - name = "Hangar Lockdown" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_1/wing/port/far) "xnE" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/operations/starboard) +"xnI" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "xnL" = ( /obj/machinery/light/small/emergency{ dir = 8 @@ -175411,24 +175448,6 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/horizon/medical/gen_treatment) -"xoe" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/southleft{ - req_access = list(37) - }, -/obj/item/paper_bin{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/pen/fountain/black{ - pixel_x = -1; - pixel_y = 6 - }, -/turf/simulated/floor/lino/diamond, -/area/horizon/service/library) "xok" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/railing/mapped{ @@ -175835,6 +175854,16 @@ "xrw" = ( /turf/simulated/wall, /area/horizon/maintenance/substation/civ_d3) +"xrE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hangar/operations) "xrI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 1 @@ -176535,6 +176564,14 @@ /obj/item/material/shard, /turf/simulated/floor/tiled/dark, /area/horizon/maintenance/deck_3/security/port) +"xvY" = ( +/obj/machinery/camera/network/service{ + c_tag = "Service - Library"; + dir = 1 + }, +/obj/structure/bookcase/libraryspawn/religion, +/turf/simulated/floor/carpet/red, +/area/horizon/service/library) "xwd" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /obj/random/junk, @@ -177050,6 +177087,18 @@ /obj/random/contraband, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/auxatmos) +"xzv" = ( +/obj/structure/table/wood, +/obj/item/toy/desk/newtoncradle{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/machinery/recharger{ + pixel_y = 12; + pixel_x = -8 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/library) "xzD" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 @@ -177477,22 +177526,6 @@ /obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled/dark, /area/horizon/operations/mining_main/eva) -"xCX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/primary/deck_3/starboard) "xDa" = ( /obj/structure/table/rack, /obj/item/trap/animal/medium, @@ -177971,22 +178004,6 @@ icon_state = "wood" }, /area/centcom/control) -"xFY" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/horizon/service/library) "xGb" = ( /obj/machinery/door/airlock/multi_tile/glass{ name = "Hangar" @@ -178341,8 +178358,17 @@ /turf/simulated/floor/plating, /area/horizon/maintenance/deck_1/main/interstitial) "xIF" = ( -/obj/structure/closet/secure_closet/refrigerator/cafe, /obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/table/rack/folding_table, +/obj/item/material/stool/chair/folding{ + pixel_y = 22 + }, +/obj/item/material/stool/chair/folding{ + pixel_y = 19 + }, +/obj/item/deck/cards{ + pixel_x = 6 + }, /turf/simulated/floor, /area/horizon/maintenance/deck_3/cafe) "xIH" = ( @@ -178829,18 +178855,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/storage) -"xLN" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/horizon/operations/commissary) "xLR" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -179561,13 +179575,6 @@ }, /turf/simulated/floor/plating, /area/horizon/shuttle/quark/cockpit) -"xQF" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/turf/simulated/floor/holofloor/tiled, -/area/horizon/holodeck/source_combat_training) "xQI" = ( /turf/simulated/wall/shuttle/space_ship, /area/shuttle/distress) @@ -180291,6 +180298,18 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/full, /area/horizon/stairwell/port/deck_2) +"xWc" = ( +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) "xWf" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -180493,6 +180512,30 @@ }, /turf/simulated/floor/shuttle/dark_red, /area/shuttle/hapt) +"xXP" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/command/bridge/meeting_room) "xXY" = ( /obj/machinery/firealarm/east, /obj/effect/floor_decal/corner/dark_green{ @@ -180751,16 +180794,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/primary/deck_3/starboard) -"yaa" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/alarm/east, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/small/west, -/turf/simulated/floor/lino/diamond, -/area/horizon/service/library) "yad" = ( /obj/effect/floor_decal/corner/brown{ dir = 5 @@ -180872,13 +180905,6 @@ /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"yaL" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_2/aft) "yaQ" = ( /obj/structure/railing/mapped{ name = "adjusted railing" @@ -180976,6 +181002,16 @@ /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/tiled/white, /area/horizon/service/kitchen) +"ybF" = ( +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/obj/structure/platform_stairs, +/obj/structure/platform{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/operations) "ybI" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -181746,6 +181782,15 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/engineering/atmos/propulsion) +"ygp" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_combat_training) "ygr" = ( /obj/structure/closet/crate, /obj/item/circuitboard/autolathe, @@ -182258,42 +182303,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/shuttle/intrepid/junction_compartment) -"yjY" = ( -/obj/effect/floor_decal/spline/plain/lime{ - dir = 5 - }, -/obj/item/device/radio/intercom/east, -/obj/machinery/disposal/small/west, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/closet/crate, -/obj/item/storage/box/plasticbag, -/obj/item/storage/box/unique/papersack, -/obj/item/storage/box/unique/papersack, -/obj/item/storage/box/unique/papersack, -/obj/item/storage/box/unique/papersack, -/obj/item/storage/box/unique/papersack, -/obj/item/storage/box/unique/papersack, -/obj/item/storage/box/unique/papersack, -/obj/item/storage/box/unique/papersack, -/obj/item/storage/box/plasticbag, -/obj/item/storage/bag/plasticbag, -/obj/item/storage/bag/plasticbag, -/obj/item/storage/bag/plasticbag, -/obj/item/storage/bag/plasticbag, -/obj/item/storage/bag/plasticbag, -/obj/item/storage/bag/plasticbag, -/obj/item/storage/bag/plasticbag, -/obj/item/storage/bag/plasticbag, -/turf/simulated/floor/tiled/dark, -/area/horizon/operations/commissary) "ykc" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille/diagonal{ @@ -205564,13 +205573,13 @@ jvu lUt bdU qtD -lZR +fqH lup pOq lUt mEZ dFe -kWP +qXG uXC bgo hCu @@ -205816,7 +205825,7 @@ kYn ner qqd jgx -lJs +wPr snq jIw cgv @@ -206080,10 +206089,10 @@ sWR kDB hHY eze -cIj -olP +pKI +eDW qix -hRv +woq eze hHY xcw @@ -206590,8 +206599,8 @@ jgx hiV xuh vyG -gFD -tOR +ybF +foE arH rdV rdV @@ -206600,7 +206609,7 @@ rdV rdV rdV rwv -hLy +mbX hCu hCu hCu @@ -206843,13 +206852,13 @@ rmK vPf fxe sDe -nNj +rvZ sAU dYm sAU -wky -gPC -jBt +hhC +ufj +ocj rdV rdV rdV @@ -207097,15 +207106,15 @@ jgx dQp cBJ cve -eyb +dSj oSt uSb bzE aeW ofT -vkV +waY vof -vcg +frl wmb rdV rdV @@ -207114,7 +207123,7 @@ rdV rdV rdV rwv -kcu +hTv hCu hCu hCu @@ -207351,19 +207360,19 @@ hWT vyT hMc jgx -lwn +nzT rlY rlY -gAA +hGv rlY rlY -wjp +ulB ikg rxS ikg -eJf -jeP -qlY +isf +ujM +bDF rdV rdV rdV @@ -207609,7 +207618,7 @@ krH krH krH krH -udW +oxy mLM gJO xgB @@ -207618,8 +207627,8 @@ jgx oSy ssE uln -nrp -uFR +aGr +bmW arH rdV rdV @@ -208136,10 +208145,10 @@ sWR cUJ tqK ncx -qug +xhN ncx ncx -qug +xhN ncx lIU dzc @@ -208644,7 +208653,7 @@ aRo vdU krH wAl -jzk +fJq oKm sWR sWR @@ -208900,8 +208909,8 @@ urj pOj gCq nZx -foM -mZd +knx +xrE cUv wjB mTr @@ -209158,7 +209167,7 @@ rTP tUo nZx cxm -qkP +cHm osN sWR osL @@ -209415,7 +209424,7 @@ rTP tky krH iSe -fUm +pik cUv pOe mho @@ -209665,14 +209674,14 @@ nZx bix xnr xnr -vaT +hqj guR mAW rTP xne krH ucW -ius +psv eUo wwx hLX @@ -209884,7 +209893,7 @@ rBt xTA tJJ ldw -bKF +euQ vIo pQu rbM @@ -209929,8 +209938,8 @@ ieE chK odx cxm -ufb -fIG +axm +bfB sWR ndh dJi @@ -210186,7 +210195,7 @@ rTP kaG odx ieq -mZd +xrE cUv sxn ajQ @@ -210443,7 +210452,7 @@ rTP vBY krH pex -mZd +xrE mGB sxn hnL @@ -210700,8 +210709,8 @@ lAW nFL hhu cxm -fUm -vsm +pik +xnI sWR jyc nFO @@ -210957,7 +210966,7 @@ aIq ngM krH muO -nTD +mhc brG sWR qDa @@ -213234,7 +213243,7 @@ bnW msD qDt iRv -gtk +sBh ajh lKo lKo @@ -213259,7 +213268,7 @@ aty gZf lVR ovv -aUZ +ahA qud kLk txq @@ -213516,7 +213525,7 @@ ovv ovv ovv ovv -qZt +bfN qud iMp nMs @@ -214519,7 +214528,7 @@ jyh gmU dPk rHS -iVQ +xWc ajh jsx aYz @@ -214776,7 +214785,7 @@ lmI hnJ fbf qoJ -rkp +oOk ajh hUC lKo @@ -216322,7 +216331,7 @@ hNW oCT jzT dRx -orZ +rVr iLR rHK rHK @@ -219142,7 +219151,7 @@ rgt kpW rFC cUG -oex +jxU bSu auC ylF @@ -219652,12 +219661,12 @@ iHh akf nSJ qUw -trP +sug stq oPJ owJ -gKP -ifc +cLL +qpL fQO nSJ nSJ @@ -226631,7 +226640,7 @@ fzI fVa mAB wIE -xnx +tgX wIE wIE wIE @@ -267761,7 +267770,7 @@ dEI uwC gxN mSR -rOK +fXl ngp jfF fZx @@ -268018,7 +268027,7 @@ vCq bDD mQn mSR -vpe +cUb ngp tmR luc @@ -270563,7 +270572,7 @@ rPd rPd avd nwj -iVF +nGg vdC lhf pwv @@ -270818,9 +270827,9 @@ sXT quy eSM ouT -nuD +eJJ oCr -bsU +nJi aWU qTK iam @@ -271075,7 +271084,7 @@ sON ltE dUV khW -rfM +krp nwj vwY eTz @@ -271332,7 +271341,7 @@ mFo vWh sEW kNI -qoO +ebm nwj nwj nwj @@ -271351,7 +271360,7 @@ jdq aFJ chu tWP -lZj +tNC bji xJm plL @@ -271589,7 +271598,7 @@ yfv aTB bhv hwC -qWU +rDG mNr pvj cgw @@ -271836,7 +271845,7 @@ fov fov fov fov -oAH +gun eNf oGM sWx @@ -272093,15 +272102,15 @@ rDU eHx eba fov -jkV +mIH eNf rPd lYi -iAA +awl lYi lYi lYi -uXh +mGH rmS rmS rmS @@ -272350,7 +272359,7 @@ bvb sdS dGC fov -wSG +dBq hEO rPd hZQ @@ -272607,7 +272616,7 @@ jvF qvu aWs fov -vZN +nzh hEO rPd fRB @@ -272865,8 +272874,8 @@ ycu eYg nAm cMj -pXS -uzg +kiq +rzM rwi nES mnW @@ -273122,7 +273131,7 @@ wLP put fov aAD -qfz +lCd rPd bpS pCP @@ -273379,7 +273388,7 @@ wLP gES fov oJM -cep +aUW rPd oJC qiC @@ -273882,11 +273891,11 @@ lLF toJ tVm xZQ -nzd -uMw -oqp -aMA -nek +oRW +gwC +wPd +eJM +hTG oVr mxM rxF @@ -273915,9 +273924,9 @@ tKu dZq fXI dyC -sLK -qmX -mlP +xfw +frz +cBG uPi lho aEz @@ -273932,10 +273941,10 @@ hgz jyn nHl xJO -ehj -tYd -sEF +hbC +cKq oei +lTv tad lDl uVj @@ -274429,8 +274438,8 @@ une fzq jGD dyC -rLA -lHX +dBa +oat wgZ nvy cUx @@ -277491,7 +277500,7 @@ oTK aDT sor bsY -tTx +eeI sEa pPE stI @@ -277530,7 +277539,7 @@ jAT fji bhL gao -nod +nfy gCD tDo aqc @@ -280574,15 +280583,15 @@ jTY djD lXl pIO -wqR +qJQ rMj -tpF +gBD cap kYa uFY xUS kYa -rya +pXi jmo fwY stI @@ -280592,8 +280601,8 @@ pWU yix yix wad -rmH -vBg +dKf +jqI nfp xTB vfA @@ -280609,8 +280618,8 @@ xSg hQF cJj hqK -erg -aip +cqu +cOH cNu aip qOG @@ -280833,13 +280842,13 @@ nKi mbW nlw nKi -doX -qGR -xbf -hvY -xbf -qGR -mxX +vKz +dwE +lGs +ujA +lGs +dwE +upO bSB gvf stI @@ -280866,8 +280875,8 @@ bbi iGf bOS gLY -hxx sfZ +lqR gzZ sfZ nZT @@ -281096,9 +281105,9 @@ utO uFY lql lql -idA +nJA nVR -nXw +drr stI jkX jRz @@ -281122,9 +281131,9 @@ iWE bxX sGz odk -erE -kFF +mYL aTY +ozj aTY bxX lla @@ -281337,7 +281346,7 @@ qGE wIl hlu vWw -uDR +dMF wVZ wVZ whQ @@ -281377,14 +281386,14 @@ ciR vGI qZz qZz +qZz xZE xZE adB -npd +ayu adB xZE xZE -xZE jXA nsR lAd @@ -281628,19 +281637,19 @@ iKu ccb pdg mSK -wYc -rZZ +jWp +kgE kuV -mok -plF -qZz -iTN -tyQ -peH -dAi -fuN -bel -pTl +hgh +qAt +mli +agU +xZE +bLY +tdO +wUy +shz +txx xZE nwx sZA @@ -281848,7 +281857,7 @@ tBC cyY elJ tqD -gTW +nmz neq qsq fXf @@ -281867,8 +281876,8 @@ bLv bLv ecg rkL -olH -oCa +nLp +ikp gst kBx ucf @@ -281886,18 +281895,18 @@ hOg mQb vGI mrm -qKH -aCH -exs -pfa -oPk -hHf -mZW -ppn +mzM +noS +tru +tru +bdI +mCM +adB +atl +vTT ggO lPo -lPo -wRC +ltX adB ayt xNo @@ -282142,19 +282151,19 @@ gHE qVF gst vGI -iAu -qKH -rDV -exs +mrm +jbs +qNs +kQT +icx +qMi ltG -oPk -kDb -sgD -cGM -xFY -bsD -dTh -nCe +adB +fHe +vTT +eKv +bpr +xvY adB ayt xNo @@ -282399,19 +282408,19 @@ dvo ewE gst qZz -jWq -xLN -fAd -fNI -wyT -qZz -qpq -uSs -fBB -vie -tRg -qOh -jDE +qsp +mHb +svK +fbS +svK +qlv +aii +xZE +vSs +vTT +rSi +xzv +hDK xZE ayt rEw @@ -282656,19 +282665,19 @@ fNg hkQ voU qZz -kgl -ucA -lFN -cwS +uKf +sHo +oge +pbt qZz -qZz -ieF -gmA -xoe -oyY -cNe -qOh -lqu +aeC +auR +xZE +wNA +nOR +eFY +qJX +cTw xZE jIM jTV @@ -282913,19 +282922,19 @@ fNg hkQ gst vGI -ceC -qqG -raV -tXC -wHQ -qZz -gAW -efc -iKQ -sOP -hHH -cga -oaM +agL +qEv +qne +pRk +kep +dJl +pfa +xZE +rOf +spJ +jYI +iGv +tFQ xZE llr naF @@ -283171,18 +283180,18 @@ hkQ gst vGI tTn -yjY -rwl -fXC -arb -qZz -vhF -yaa -tpV -dYT -sBW -vTR -gXl +jXw +lrG +vaJ +ibK +qUY +pfa +xZE +lAk +iXZ +wEa +cLT +qsr xZE hcB naF @@ -283430,14 +283439,14 @@ qZz qZz qZz qZz -pyc +dZA qZz +scw qZz xZE -xZE -xZE -xZE -sPP +ocO +seV +kLW lEE xNh xZE @@ -283689,10 +283698,10 @@ bFt hPw dWE twp -rJN -rJN -rJN gOI +ftp +xZE +xZE xZE xZE uiI @@ -283946,11 +283955,11 @@ icP icP icP icP -hCx -nNb -hXn iSm rJN +feo +rJN +rJN rJN rJN wxG @@ -284691,7 +284700,7 @@ vwP vwP vwP vwP -qmO +gFr qVu kgJ jLj @@ -284945,7 +284954,7 @@ uLt tha cpq cHw -kxW +wwl axy fSg aVN @@ -284986,7 +284995,7 @@ trW qGC aoE yfn -hgy +smx nBM uOE rzL @@ -285961,9 +285970,9 @@ ovm epn uOD jOO -yaL +vDb xzK -vpK +rST xzK faM vnP @@ -286218,7 +286227,7 @@ ovm jiy dzv jOO -cnP +ufs rTp vnP dYY @@ -286476,7 +286485,7 @@ iOp uOD jOO pRY -ivQ +ubX rTp dYY oOR @@ -286986,7 +286995,7 @@ xxO ffn bqw ovm -kVW +cqF jOO qec pRY @@ -287243,7 +287252,7 @@ oUm dOx qJs ovm -ivQ +ubX jOO yak pRY @@ -288018,7 +288027,7 @@ gLd tAI jOO afY -vXK +mYI tlo ehs ujB @@ -288290,7 +288299,7 @@ aoX isB ntL boq -hFQ +oxD ehy qgY jlN @@ -292433,7 +292442,7 @@ nTc fFV nTc hoX -onr +lBJ eDm kuv xII @@ -336886,9 +336895,9 @@ fjL gCf nGD ict -rPz +gQi bVi -vdw +kpl spE rvX qgF @@ -337127,7 +337136,7 @@ cKu cKu cKu wlQ -dwp +oyp iLs wcw koz @@ -337145,7 +337154,7 @@ qym ict xGd hMf -pAo +foH bQm qGt fTr @@ -337401,11 +337410,11 @@ lvV ueQ azT dwA -xCX -rBF -bQm -hFW +ktp fXo +qXV +ehd +qXV rzI tnl rht @@ -337659,10 +337668,10 @@ fpI gMq yad iPC -fXo -qXV -gKy -jAE +oNm +oNm +mqs +oNm ehC tnl sZr @@ -339210,7 +339219,7 @@ fMk eGq eGq tnl -uup +vUU pnM pcY kRT @@ -342822,12 +342831,12 @@ uhj uhj bOF xDY -bjm +rKQ vUX -viA -suW +nQH +wvw eFO -avO +xXP vUX iEa cKu @@ -343344,7 +343353,7 @@ xtz bwK skb sTA -cxD +sWE iEa uYQ wWR @@ -344368,7 +344377,7 @@ hAz iIN wso gjA -cHO +qiq chn cuq gBt @@ -346408,7 +346417,7 @@ aqt ixo gYo klK -hDU +sFM kPl inb irf @@ -346665,7 +346674,7 @@ aBW vVD oSi wJp -spu +lXa vog cJV vtW @@ -347179,7 +347188,7 @@ oEu iFY pNY yeC -iBC +vJe vQy fmp dNm @@ -348480,7 +348489,7 @@ mtx jOs ncP mMu -hPs +dJy uDJ glJ nen @@ -349978,9 +349987,9 @@ nLb jAq npq bBU -jFy -mmS -cEI +cGE +kTy +gaq dXy oQo oQo @@ -350235,8 +350244,8 @@ rnJ sBz kcM dFd -gKT -hIz +tHN +mjO oVn xsB uuv @@ -351522,7 +351531,7 @@ jSq oVn oVn oVn -eZE +qOc oVn oVn oVn @@ -352059,7 +352068,7 @@ xiE cGG bbG vSE -qAG +rvR upn cKu xBh @@ -352295,7 +352304,7 @@ qfv tKb xIF wGM -ann +rfH xMK xMK xMK @@ -353579,7 +353588,7 @@ qEm ixW rQp loQ -qub +aoj lyq oRv cAV @@ -354111,8 +354120,8 @@ mqU tdp iTG lNN -jiV -hKE +wyn +dBf eIe yez faD @@ -354368,8 +354377,8 @@ yer qUJ qUJ foa -iyh -seX +wlq +nIa ojg aHd uMz @@ -354626,7 +354635,7 @@ lUn nTW vgV hWB -nDo +hdR eIe slZ hga @@ -354883,7 +354892,7 @@ lkD dug gpA pKn -apo +fpz eIe pCp csH @@ -387581,7 +387590,7 @@ rxo rIi isl hrn -hWx +hns tto iPV tHw @@ -388638,12 +388647,12 @@ ahy aLf sJv dFx -kzi -qFE -qFE -qFE -qFE -lvy +fEj +hZi +hZi +hZi +hZi +mpL dFx sJv eSV @@ -389152,12 +389161,12 @@ vvt aLf sJv dFx -sVD -udO -udO -udO -udO -oks +upF +cNc +cNc +cNc +cNc +fzv dFx sJv eSV @@ -423451,13 +423460,13 @@ paV paV uGA oeZ -fif -eVZ -jNV -jNV -jNV -jNV -eXx +lZX +oST +nil +nil +nil +nil +gBW oeZ eSV eSV @@ -423708,13 +423717,13 @@ paV paV paV oeZ -rkG -dat -dat -cAf -dat -dat -tyN +smd +bjz +bjz +wpK +bjz +bjz +wMM oeZ eSV eSV @@ -423965,13 +423974,13 @@ paV paV paV oeZ -rkG -dat -dat -dat -dat -dat -tyN +smd +bjz +bjz +bjz +bjz +bjz +wMM oeZ eSV eSV @@ -424222,13 +424231,13 @@ paV paV paV oeZ -rkG -dat -dat -dat -dat -odq -tyN +smd +bjz +bjz +bjz +bjz +fgX +wMM oeZ eSV eSV @@ -424479,13 +424488,13 @@ paV paV paV oeZ -rkG -dat -gLs -jNV -gLs -dat -tyN +smd +bjz +ygp +nil +ygp +bjz +wMM oeZ eSV eSV @@ -424736,13 +424745,13 @@ paV paV paV oeZ -rde -iVC -dat -dat -dat -iVC -bYz +uKb +oDv +bjz +bjz +bjz +oDv +aPv oeZ eSV eSV @@ -424993,13 +425002,13 @@ paV paV paV oeZ -myP -sgv -dat -dat -dat -sgv -xQF +cJm +kxc +bjz +bjz +bjz +kxc +kYC oeZ eSV eSV @@ -425250,13 +425259,13 @@ paV paV paV oeZ -rkG -dat -pnB -oTj -pnB -dat -tyN +smd +bjz +rWO +fIj +rWO +bjz +wMM oeZ eSV eSV @@ -425507,13 +425516,13 @@ paV paV paV oeZ -rkG -dat -dat -dat -dat -odq -tyN +smd +bjz +bjz +bjz +bjz +fgX +wMM oeZ eSV eSV @@ -425764,13 +425773,13 @@ paV paV paV oeZ -rkG -dat -dat -dat -dat -dat -tyN +smd +bjz +bjz +bjz +bjz +bjz +wMM oeZ eSV eSV @@ -426021,13 +426030,13 @@ paV paV paV oeZ -rkG -dat -dat -cAf -dat -dat -tyN +smd +bjz +bjz +wpK +bjz +bjz +wMM oeZ eSV eSV @@ -426278,13 +426287,13 @@ paV paV paV oeZ -wkT -dYl -oTj -oTj -oTj -oTj -wMR +jRp +uOM +fIj +fIj +fIj +fIj +pNE oeZ eSV eSV @@ -429498,7 +429507,7 @@ jqW hst dyQ iLe -aXF +ecn quV sFC klg @@ -429755,7 +429764,7 @@ gZA pTZ xPt iLe -hJR +gvE mba kYk quV @@ -430012,7 +430021,7 @@ iLe iLe aHq iLe -xmf +czk quV quV ygK @@ -430273,7 +430282,7 @@ quV quV opo ygK -ftI +gfj iLe ahf oeV @@ -432292,7 +432301,7 @@ oJA qTe qTe qTe -ohn +fHF tRO fTU onB @@ -436582,7 +436591,7 @@ hpz eSV tcP bjb -wgU +dzJ oNd uzt uMP @@ -436826,7 +436835,7 @@ wkJ oKD lnL wiU -aoD +iGc hpz wdW tfC @@ -438225,11 +438234,11 @@ eSV eSV vZj unn -fNG +uHr raR raR unn -tlr +cWC shp nsq unn @@ -440026,7 +440035,7 @@ vZj unn fMY pBv -sdq +qSk cnf bFr wMl