mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 13:05:44 +01:00
ZTA -> ZAT Spellcheck (#19043)
For the longest time the Leviathan ZAT has been incorrectly labeled as ZTA. This sweeps through all instances and renames it back to ZAT.  --------- Co-authored-by: Ben10083 <Ben10083@users.noreply.github.com>
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
#define SHIP_CALIBER_406MM "406mm"
|
||||
#define SHIP_CALIBER_40MM "40mm"
|
||||
#define SHIP_CALIBER_90MM "90mm"
|
||||
#define SHIP_CALIBER_ZTA "zero-point warp beam"
|
||||
#define SHIP_CALIBER_ZAT "zero-point warp beam"
|
||||
#define SHIP_CALIBER_178MM "178mm"
|
||||
#define SHIP_CALIBER_COILGUN "tungsten rod"
|
||||
#define SHIP_CALIBER_200MM "200mm"
|
||||
@@ -25,7 +25,7 @@
|
||||
#define SHIP_AMMO_IMPACT_LASER "laser"
|
||||
#define SHIP_AMMO_IMPACT_BUNKERBUSTER "bunker-buster"
|
||||
#define SHIP_AMMO_IMPACT_PLASMA "plasma"
|
||||
#define SHIP_AMMO_IMPACT_ZTA "zero-point warp beam"
|
||||
#define SHIP_AMMO_IMPACT_ZAT "zero-point warp beam"
|
||||
#define SHIP_AMMO_IMPACT_BLASTER "blaster charge"
|
||||
|
||||
#define FIRING_EFFECT_FLAG_THROW_MOBS 1
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
projectile_type = /obj/item/projectile/ship_ammo/leviathan
|
||||
use_ammunition = FALSE
|
||||
heavy_firing_sound = 'sound/weapons/gunshot/ship_weapons/leviathan_fire.ogg'
|
||||
caliber = SHIP_CALIBER_ZTA
|
||||
caliber = SHIP_CALIBER_ZAT
|
||||
firing_effects = FIRING_EFFECT_FLAG_THROW_MOBS|FIRING_EFFECT_FLAG_EXTREMELY_LOUD
|
||||
screenshake_type = SHIP_GUN_SCREENSHAKE_ALL_MOBS
|
||||
layer = ABOVE_HUMAN_LAYER
|
||||
@@ -125,8 +125,8 @@
|
||||
name = "zero-point artillery beam"
|
||||
desc = "A beam of pure energy."
|
||||
range = OVERMAP_PROJECTILE_RANGE_ULTRAHIGH
|
||||
caliber = SHIP_CALIBER_ZTA
|
||||
impact_type = SHIP_AMMO_IMPACT_ZTA
|
||||
caliber = SHIP_CALIBER_ZAT
|
||||
impact_type = SHIP_AMMO_IMPACT_ZAT
|
||||
overmap_icon_state = "heavy_pulse"
|
||||
|
||||
/obj/item/ship_ammunition/leviathan/Initialize()
|
||||
@@ -166,29 +166,29 @@
|
||||
on_hit(A)
|
||||
return TRUE
|
||||
|
||||
/obj/machinery/zta_lever
|
||||
/obj/machinery/zat_lever
|
||||
name = "activation lever"
|
||||
desc = "An old-style lever that couples the Leviathan's capacitors. <span class='danger'>Flicking this will result in extreme power usage!</span>"
|
||||
icon = 'icons/obj/power.dmi'
|
||||
icon_state = "lever1"
|
||||
var/obj/machinery/ship_weapon/leviathan/ZTA
|
||||
var/obj/machinery/ship_weapon/leviathan/ZAT
|
||||
var/toggled = FALSE
|
||||
var/cooldown = 0
|
||||
|
||||
/obj/machinery/zta_lever/Initialize(mapload, d, populate_components, is_internal)
|
||||
/obj/machinery/zat_lever/Initialize(mapload, d, populate_components, is_internal)
|
||||
..()
|
||||
return INITIALIZE_HINT_LATELOAD
|
||||
|
||||
/obj/machinery/zta_lever/LateInitialize()
|
||||
/obj/machinery/zat_lever/LateInitialize()
|
||||
for(var/obj/machinery/ship_weapon/leviathan/cannon in get_area(src))
|
||||
ZTA = cannon
|
||||
ZAT = cannon
|
||||
break
|
||||
|
||||
/obj/machinery/zta_lever/Destroy()
|
||||
ZTA = null
|
||||
/obj/machinery/zat_lever/Destroy()
|
||||
ZAT = null
|
||||
return..()
|
||||
|
||||
/obj/machinery/zta_lever/attack_hand(mob/user)
|
||||
/obj/machinery/zat_lever/attack_hand(mob/user)
|
||||
if(!use_check_and_message(user, USE_DISALLOW_SILICONS) && !stat && (cooldown + 10 SECONDS < world.time))
|
||||
if(do_after(user, 1 SECOND))
|
||||
visible_message(SPAN_DANGER("[user] pulls \the [src] [toggled ? "up" : "down"]!"))
|
||||
@@ -196,12 +196,12 @@
|
||||
switch(toggled)
|
||||
if(FALSE)
|
||||
flick("lever3", src)
|
||||
ZTA.disable()
|
||||
ZAT.disable()
|
||||
sleep(2)
|
||||
icon_state = "lever1"
|
||||
if(TRUE)
|
||||
flick("lever2", src)
|
||||
ZTA.enable()
|
||||
ZAT.enable()
|
||||
sleep(2)
|
||||
icon_state = "lever_down"
|
||||
playsound(src, 'sound/effects/spring.ogg', 100)
|
||||
|
||||
@@ -191,11 +191,11 @@
|
||||
else
|
||||
..()
|
||||
|
||||
/obj/item/folder/envelope/zta
|
||||
/obj/item/folder/envelope/zat
|
||||
name = "leviathan zero-point artillery instructions"
|
||||
desc = "A small envelope with \"SCC CONFIDENTIAL\" written in bold text on the front."
|
||||
|
||||
/obj/item/folder/envelope/zta/Initialize()
|
||||
/obj/item/folder/envelope/zat/Initialize()
|
||||
. = ..()
|
||||
var/obj/item/paper/R = new(src)
|
||||
R.set_content("leviathan zero-point artillery instructions", "<table><cell><hr><small><center><img src=scclogo.png><br><b>Stellar Corporate Conglomerate<br> \
|
||||
|
||||
@@ -0,0 +1,58 @@
|
||||
################################
|
||||
# Example Changelog File
|
||||
#
|
||||
# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
|
||||
#
|
||||
# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
|
||||
# When it is, any changes listed below will disappear.
|
||||
#
|
||||
# Valid Prefixes:
|
||||
# bugfix
|
||||
# - (fixes bugs)
|
||||
# wip
|
||||
# - (work in progress)
|
||||
# qol
|
||||
# - (quality of life)
|
||||
# soundadd
|
||||
# - (adds a sound)
|
||||
# sounddel
|
||||
# - (removes a sound)
|
||||
# rscadd
|
||||
# - (adds a feature)
|
||||
# rscdel
|
||||
# - (removes a feature)
|
||||
# imageadd
|
||||
# - (adds an image or sprite)
|
||||
# imagedel
|
||||
# - (removes an image or sprite)
|
||||
# spellcheck
|
||||
# - (fixes spelling or grammar)
|
||||
# experiment
|
||||
# - (experimental change)
|
||||
# balance
|
||||
# - (balance changes)
|
||||
# code_imp
|
||||
# - (misc internal code change)
|
||||
# refactor
|
||||
# - (refactors code)
|
||||
# config
|
||||
# - (makes a change to the config files)
|
||||
# admin
|
||||
# - (makes changes to administrator tools)
|
||||
# server
|
||||
# - (miscellaneous changes to server)
|
||||
#################################
|
||||
|
||||
# Your name.
|
||||
author: Ben10083
|
||||
|
||||
# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
|
||||
delete-after: True
|
||||
|
||||
# Any changes you've made. See valid prefix list above.
|
||||
# INDENT WITH TWO SPACES. NOT TABS. SPACES.
|
||||
# SCREW THIS UP AND IT WON'T WORK.
|
||||
# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit.
|
||||
# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog.
|
||||
changes:
|
||||
- spellcheck: "The Conglomerate has discovered that the ZAT was incorrectly labeled as ZTA in various documents and markings. The issue has been resolved and those responsible have been let go."
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 36 KiB |
@@ -21,7 +21,7 @@
|
||||
|
||||
/area/hailstorm_ship/gun_deck/second
|
||||
name = "Hailstorm Ship Secondary Gun Deck"
|
||||
icon_state = "zta"
|
||||
icon_state = "zat"
|
||||
|
||||
/area/hailstorm_ship/eva
|
||||
name = "Hailstorm Ship EVA Storage"
|
||||
|
||||
@@ -848,10 +848,10 @@
|
||||
ambience = AMBIENCE_FOREBODING
|
||||
holomap_color = HOLOMAP_AREACOLOR_OPERATIONS
|
||||
|
||||
// ZTA
|
||||
/area/horizon/zta
|
||||
name = "Horizon - ZTA Weapon System"
|
||||
icon_state = "zta"
|
||||
// ZAT
|
||||
/area/horizon/zat
|
||||
name = "Horizon - ZAT Weapon System"
|
||||
icon_state = "zat"
|
||||
sound_environment = SOUND_AREA_LARGE_ENCLOSED
|
||||
ambience = AMBIENCE_SINGULARITY
|
||||
area_blurb = "A gargantuan machine dominates the room, covered in components and moving parts. Its name is befitting of its size."
|
||||
|
||||
@@ -534,7 +534,7 @@
|
||||
pixel_y = 32
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"aob" = (
|
||||
/obj/structure/railing/mapped{
|
||||
dir = 4
|
||||
@@ -844,7 +844,7 @@
|
||||
RCon_tag = "Leviathan"
|
||||
},
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"atu" = (
|
||||
/obj/effect/floor_decal/corner_wide/yellow{
|
||||
dir = 9
|
||||
@@ -1258,7 +1258,7 @@
|
||||
dir = 5
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"azB" = (
|
||||
/obj/effect/floor_decal/corner/dark_green{
|
||||
dir = 10
|
||||
@@ -1777,7 +1777,7 @@
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark/full,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"aNp" = (
|
||||
/obj/effect/floor_decal/corner/dark_green/full,
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
|
||||
@@ -1871,7 +1871,7 @@
|
||||
/area/engineering/engine_room)
|
||||
"aPN" = (
|
||||
/turf/simulated/wall/r_wall,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"aQb" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden{
|
||||
dir = 4
|
||||
@@ -3352,7 +3352,7 @@
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"bvf" = (
|
||||
/obj/structure/cable{
|
||||
icon_state = "1-2"
|
||||
@@ -3793,7 +3793,7 @@
|
||||
/area/rnd/hallway)
|
||||
"bDO" = (
|
||||
/turf/simulated/floor/carpet/rubber,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"bDV" = (
|
||||
/obj/structure/window/reinforced{
|
||||
dir = 8
|
||||
@@ -3817,7 +3817,7 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
|
||||
/obj/structure/lattice/catwalk/indoor/grate,
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"bFA" = (
|
||||
/obj/effect/floor_decal/spline/fancy/wood,
|
||||
/obj/item/device/radio/intercom/south,
|
||||
@@ -4047,7 +4047,7 @@
|
||||
dir = 10
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"bKu" = (
|
||||
/obj/structure/lattice/catwalk/indoor/grate/damaged,
|
||||
/obj/structure/cable{
|
||||
@@ -4465,7 +4465,7 @@
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/carpet/rubber,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"bTo" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
|
||||
dir = 10
|
||||
@@ -4523,7 +4523,7 @@
|
||||
},
|
||||
/obj/structure/ship_weapon_dummy,
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"bUd" = (
|
||||
/obj/structure/foamedmetal,
|
||||
/obj/structure/shuttle_part/scc_space_ship{
|
||||
@@ -5020,7 +5020,7 @@
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"cgI" = (
|
||||
/obj/effect/floor_decal/industrial/warning{
|
||||
dir = 6
|
||||
@@ -6578,7 +6578,7 @@
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/hatch/red,
|
||||
/turf/simulated/floor/tiled/dark/full,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"cXU" = (
|
||||
/obj/structure/cable{
|
||||
icon_state = "4-8"
|
||||
@@ -7076,7 +7076,7 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
|
||||
/obj/structure/lattice/catwalk/indoor/grate,
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"dkR" = (
|
||||
/obj/structure/railing/mapped{
|
||||
dir = 8
|
||||
@@ -7617,7 +7617,7 @@
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"dyU" = (
|
||||
/obj/machinery/door/firedoor,
|
||||
/obj/machinery/door/airlock/maintenance{
|
||||
@@ -7831,7 +7831,7 @@
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark/full,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"dDS" = (
|
||||
/obj/effect/floor_decal/corner/dark_blue{
|
||||
dir = 5
|
||||
@@ -8134,7 +8134,7 @@
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"dLO" = (
|
||||
/obj/machinery/door/window/westright,
|
||||
/obj/structure/platform_stairs/full/east_west_cap,
|
||||
@@ -8388,7 +8388,7 @@
|
||||
/obj/effect/floor_decal/industrial/hatch/yellow,
|
||||
/obj/structure/reagent_dispensers/watertank,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"dSH" = (
|
||||
/obj/machinery/atmospherics/unary/vent_scrubber/on,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
@@ -8427,7 +8427,7 @@
|
||||
pixel_x = -32
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"dVc" = (
|
||||
/obj/structure/window/shuttle/scc_space_ship,
|
||||
/obj/structure/grille,
|
||||
@@ -8658,7 +8658,7 @@
|
||||
},
|
||||
/obj/structure/ship_weapon_dummy,
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"dYr" = (
|
||||
/obj/structure/table/steel,
|
||||
/turf/simulated/floor/plating,
|
||||
@@ -8708,7 +8708,7 @@
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"dZL" = (
|
||||
/obj/structure/window/reinforced{
|
||||
dir = 8
|
||||
@@ -8764,7 +8764,7 @@
|
||||
/obj/item/device/flashlight/lamp,
|
||||
/obj/machinery/firealarm/north,
|
||||
/turf/simulated/floor/reinforced,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"ebq" = (
|
||||
/obj/structure/foamedmetal,
|
||||
/obj/structure/shuttle_part/scc_space_ship{
|
||||
@@ -9407,7 +9407,7 @@
|
||||
/obj/effect/floor_decal/industrial/outline/yellow,
|
||||
/obj/structure/ship_weapon_dummy,
|
||||
/turf/simulated/floor/reinforced,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"erY" = (
|
||||
/obj/random/junk,
|
||||
/turf/simulated/floor/tiled/dark/full,
|
||||
@@ -9552,7 +9552,7 @@
|
||||
"ewx" = (
|
||||
/obj/item/modular_computer/console/preset/command,
|
||||
/turf/simulated/floor/reinforced,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"ewD" = (
|
||||
/obj/machinery/alarm/east,
|
||||
/obj/effect/floor_decal/spline/plain{
|
||||
@@ -10337,7 +10337,7 @@
|
||||
name = "Primary Armament Shielding"
|
||||
},
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"eQx" = (
|
||||
/obj/structure/railing/mapped{
|
||||
dir = 4
|
||||
@@ -10487,7 +10487,7 @@
|
||||
"eUs" = (
|
||||
/obj/structure/ship_weapon_dummy,
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"eUB" = (
|
||||
/obj/machinery/flasher{
|
||||
id = "permflash"
|
||||
@@ -11257,15 +11257,15 @@
|
||||
/obj/effect/floor_decal/industrial/hatch/yellow,
|
||||
/obj/structure/reagent_dispensers/fueltank,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"fhw" = (
|
||||
/obj/machinery/camera/motion{
|
||||
c_tag = "ZTA Aft Port";
|
||||
c_tag = "ZAT Aft Port";
|
||||
dir = 8;
|
||||
network = list("Command","Security")
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"fhD" = (
|
||||
/obj/machinery/door/airlock/multi_tile/glass{
|
||||
dir = 2;
|
||||
@@ -11434,7 +11434,7 @@
|
||||
/area/engineering/engine_room)
|
||||
"fmk" = (
|
||||
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"fmz" = (
|
||||
/obj/structure/railing/mapped{
|
||||
dir = 8
|
||||
@@ -11541,7 +11541,7 @@
|
||||
pixel_x = 32
|
||||
},
|
||||
/turf/simulated/floor/reinforced,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"fpb" = (
|
||||
/obj/machinery/portable_atmospherics/hydroponics,
|
||||
/obj/machinery/light{
|
||||
@@ -12024,7 +12024,7 @@
|
||||
/obj/effect/floor_decal/industrial/outline/yellow,
|
||||
/obj/item/ladder_mobile,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"fAK" = (
|
||||
/obj/machinery/button/remote/airlock{
|
||||
dir = 4;
|
||||
@@ -12805,7 +12805,7 @@
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"fSm" = (
|
||||
/obj/effect/floor_decal/corner/mauve/diagonal,
|
||||
/obj/effect/floor_decal/industrial/warning/corner{
|
||||
@@ -13080,7 +13080,7 @@
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"fZB" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
|
||||
dir = 4
|
||||
@@ -13869,7 +13869,7 @@
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/reinforced,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"goQ" = (
|
||||
/obj/effect/floor_decal/corner/mauve/full{
|
||||
dir = 8
|
||||
@@ -14238,7 +14238,7 @@
|
||||
/obj/machinery/door/window/eastright,
|
||||
/obj/effect/floor_decal/industrial/outline/yellow,
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"gwe" = (
|
||||
/obj/structure/bed/stool/chair{
|
||||
dir = 4
|
||||
@@ -14827,7 +14827,7 @@
|
||||
"gHk" = (
|
||||
/obj/effect/floor_decal/corner/pink/diagonal,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"gHn" = (
|
||||
/obj/structure/cable/green{
|
||||
icon_state = "1-8"
|
||||
@@ -15919,7 +15919,7 @@
|
||||
layer = 3.3
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"hkA" = (
|
||||
/obj/effect/floor_decal/corner/dark_green/full{
|
||||
dir = 8
|
||||
@@ -16171,7 +16171,7 @@
|
||||
/obj/machinery/door/window/eastright,
|
||||
/obj/effect/floor_decal/industrial/outline/yellow,
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"hpX" = (
|
||||
/obj/structure/disposalpipe/segment,
|
||||
/obj/machinery/hologram/holopad,
|
||||
@@ -16274,7 +16274,7 @@
|
||||
},
|
||||
/obj/structure/ship_weapon_dummy,
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"hrP" = (
|
||||
/obj/effect/floor_decal/corner/dark_blue{
|
||||
dir = 6
|
||||
@@ -16488,7 +16488,7 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"hym" = (
|
||||
/obj/structure/cable/green{
|
||||
icon_state = "1-2"
|
||||
@@ -17283,12 +17283,12 @@
|
||||
/obj/effect/floor_decal/corner/pink/diagonal,
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden,
|
||||
/obj/machinery/camera/motion{
|
||||
c_tag = "ZTA Fore Starboard";
|
||||
c_tag = "ZAT Fore Starboard";
|
||||
dir = 4;
|
||||
network = list("Command","Security")
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"hRY" = (
|
||||
/obj/structure/cable/green{
|
||||
icon_state = "4-8"
|
||||
@@ -17431,7 +17431,7 @@
|
||||
icon_state = "1-2"
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"hUW" = (
|
||||
/obj/machinery/door/airlock/glass_service{
|
||||
dir = 4;
|
||||
@@ -18447,7 +18447,7 @@
|
||||
/obj/machinery/porta_turret/sniper,
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"itW" = (
|
||||
/obj/structure/railing/mapped{
|
||||
dir = 8
|
||||
@@ -18771,7 +18771,7 @@
|
||||
dir = 1
|
||||
},
|
||||
/turf/simulated/floor/reinforced,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"iCx" = (
|
||||
/obj/structure/disposalpipe/segment{
|
||||
dir = 4
|
||||
@@ -19775,7 +19775,7 @@
|
||||
},
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"iZg" = (
|
||||
/obj/structure/cable{
|
||||
icon_state = "1-2"
|
||||
@@ -19886,7 +19886,7 @@
|
||||
},
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"jcc" = (
|
||||
/obj/structure/cable/green{
|
||||
icon_state = "4-8"
|
||||
@@ -20065,11 +20065,11 @@
|
||||
dir = 4
|
||||
},
|
||||
/obj/machinery/camera/motion{
|
||||
c_tag = "ZTA Access Fore";
|
||||
c_tag = "ZAT Access Fore";
|
||||
network = list("Command","Security")
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark/full,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"jgm" = (
|
||||
/obj/machinery/door/window/eastright,
|
||||
/obj/structure/platform_stairs/full/east_west_cap,
|
||||
@@ -20674,7 +20674,7 @@
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/hatch/red,
|
||||
/turf/simulated/floor/tiled/dark/full,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"jsS" = (
|
||||
/obj/machinery/recharger{
|
||||
pixel_y = 1
|
||||
@@ -21247,7 +21247,7 @@
|
||||
dir = 5
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"jFS" = (
|
||||
/obj/effect/floor_decal/spline/fancy/wood{
|
||||
dir = 1
|
||||
@@ -21749,7 +21749,7 @@
|
||||
},
|
||||
/obj/structure/window/reinforced,
|
||||
/turf/simulated/floor/carpet/rubber,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"jTA" = (
|
||||
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
|
||||
/area/engineering/engine_monitoring/rust)
|
||||
@@ -22095,7 +22095,7 @@
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/carpet/rubber,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"kbF" = (
|
||||
/obj/effect/floor_decal/corner/mauve/full{
|
||||
dir = 1
|
||||
@@ -22442,7 +22442,7 @@
|
||||
dir = 1
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"kkW" = (
|
||||
/obj/effect/floor_decal/corner/dark_blue/full,
|
||||
/obj/effect/floor_decal/industrial/outline/security,
|
||||
@@ -22589,7 +22589,7 @@
|
||||
},
|
||||
/obj/structure/ship_weapon_dummy,
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"kpR" = (
|
||||
/obj/random/junk,
|
||||
/obj/effect/decal/cleanable/dirt,
|
||||
@@ -22881,7 +22881,7 @@
|
||||
/obj/effect/floor_decal/corner/pink/diagonal,
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"kwS" = (
|
||||
/obj/effect/floor_decal/corner/mauve{
|
||||
dir = 10
|
||||
@@ -23813,7 +23813,7 @@
|
||||
/obj/item/clothing/ears/earmuffs,
|
||||
/obj/item/clothing/ears/earmuffs,
|
||||
/turf/simulated/floor/reinforced,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"kVO" = (
|
||||
/obj/effect/floor_decal/industrial/warning{
|
||||
dir = 1
|
||||
@@ -24525,7 +24525,7 @@
|
||||
dir = 1
|
||||
},
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"lnr" = (
|
||||
/obj/structure/coatrack{
|
||||
pixel_x = -10;
|
||||
@@ -24608,7 +24608,7 @@
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"lqa" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
|
||||
dir = 8
|
||||
@@ -25249,7 +25249,7 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"lIc" = (
|
||||
/obj/structure/lattice,
|
||||
/obj/structure/platform/ledge{
|
||||
@@ -26149,7 +26149,7 @@
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark/full,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"mcC" = (
|
||||
/obj/structure/lattice/catwalk/indoor/grate,
|
||||
/obj/structure/platform{
|
||||
@@ -27223,7 +27223,7 @@
|
||||
name = "port, leviathan"
|
||||
},
|
||||
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"mCV" = (
|
||||
/obj/structure/cable/green{
|
||||
icon_state = "1-8"
|
||||
@@ -27255,7 +27255,7 @@
|
||||
"mDh" = (
|
||||
/obj/machinery/computer/ship/navigation,
|
||||
/turf/simulated/floor/reinforced,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"mDD" = (
|
||||
/obj/machinery/door/airlock/glass{
|
||||
dir = 1;
|
||||
@@ -27624,7 +27624,7 @@
|
||||
/obj/structure/railing/mapped,
|
||||
/obj/effect/floor_decal/corner/pink/diagonal,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"mLL" = (
|
||||
/obj/structure/disposalpipe/segment,
|
||||
/obj/effect/floor_decal/spline/fancy/wood{
|
||||
@@ -27696,7 +27696,7 @@
|
||||
dir = 1
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"mMi" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
|
||||
dir = 4
|
||||
@@ -28684,12 +28684,12 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
|
||||
/obj/structure/lattice/catwalk/indoor/grate,
|
||||
/obj/machinery/camera/motion{
|
||||
c_tag = "ZTA Access Aft";
|
||||
c_tag = "ZAT Access Aft";
|
||||
dir = 4;
|
||||
network = list("Command","Security")
|
||||
},
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"nge" = (
|
||||
/turf/simulated/wall/r_wall,
|
||||
/area/engineering/lobby)
|
||||
@@ -29045,7 +29045,7 @@
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"nnr" = (
|
||||
/obj/structure/cable/green{
|
||||
icon_state = "4-8"
|
||||
@@ -29903,7 +29903,7 @@
|
||||
},
|
||||
/obj/effect/floor_decal/industrial/warning/full,
|
||||
/turf/simulated/floor/tiled/dark/full,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"nLC" = (
|
||||
/obj/machinery/hologram/holopad,
|
||||
/obj/effect/floor_decal/corner/dark_blue/diagonal,
|
||||
@@ -29967,7 +29967,7 @@
|
||||
/obj/item/storage/toolbox/mechanical,
|
||||
/obj/effect/floor_decal/industrial/outline/yellow,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"nMY" = (
|
||||
/obj/machinery/light{
|
||||
dir = 8
|
||||
@@ -30009,11 +30009,11 @@
|
||||
/obj/structure/bed/stool/chair/office/bridge/generic{
|
||||
dir = 8
|
||||
},
|
||||
/obj/machinery/zta_lever{
|
||||
/obj/machinery/zat_lever{
|
||||
pixel_x = 28
|
||||
},
|
||||
/turf/simulated/floor/reinforced,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"nOu" = (
|
||||
/obj/effect/floor_decal/corner_wide/lime{
|
||||
dir = 4
|
||||
@@ -30320,7 +30320,7 @@
|
||||
name = "WARNING: RADIOACTIVE HIGH-YIELD ENERGETIC WEAPONS WITHIN"
|
||||
},
|
||||
/turf/simulated/wall/shuttle/scc_space_ship/cardinal,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"nZf" = (
|
||||
/obj/effect/floor_decal/corner/dark_blue{
|
||||
dir = 5
|
||||
@@ -30624,14 +30624,14 @@
|
||||
/area/maintenance/wing/starboard)
|
||||
"ofb" = (
|
||||
/obj/structure/table/standard,
|
||||
/obj/item/folder/envelope/zta,
|
||||
/obj/item/folder/envelope/zat,
|
||||
/obj/machinery/camera/motion{
|
||||
c_tag = "ZTA Fore Port";
|
||||
c_tag = "ZAT Fore Port";
|
||||
dir = 8;
|
||||
network = list("Command","Security")
|
||||
},
|
||||
/turf/simulated/floor/reinforced,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"off" = (
|
||||
/obj/structure/table/wood,
|
||||
/obj/item/device/flashlight/lamp{
|
||||
@@ -30813,7 +30813,7 @@
|
||||
RCon_tag = "Leviathan Substation"
|
||||
},
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"oiL" = (
|
||||
/obj/structure/shuttle_part/scc_space_ship{
|
||||
icon_state = "d3-4-f"
|
||||
@@ -30901,7 +30901,7 @@
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"okq" = (
|
||||
/obj/machinery/door/blast/shutters{
|
||||
density = 0;
|
||||
@@ -31319,7 +31319,7 @@
|
||||
/obj/effect/floor_decal/industrial/warning,
|
||||
/obj/structure/ship_weapon_dummy,
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"ovz" = (
|
||||
/obj/structure/cable{
|
||||
icon_state = "4-8"
|
||||
@@ -31431,7 +31431,7 @@
|
||||
},
|
||||
/obj/structure/ship_weapon_dummy,
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"oyf" = (
|
||||
/obj/effect/floor_decal/corner_wide/grey/diagonal,
|
||||
/obj/structure/noticeboard{
|
||||
@@ -31464,7 +31464,7 @@
|
||||
/obj/effect/floor_decal/industrial/hatch/red,
|
||||
/obj/machinery/power/apc/critical/east,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"ozs" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
|
||||
dir = 4
|
||||
@@ -32450,7 +32450,7 @@
|
||||
/area/engineering/lobby)
|
||||
"oXF" = (
|
||||
/turf/simulated/floor/reinforced,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"oXY" = (
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/maintenance/wing/starboard)
|
||||
@@ -32687,7 +32687,7 @@
|
||||
name = "viewing blast doors"
|
||||
},
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"pcG" = (
|
||||
/obj/structure/cable/green,
|
||||
/obj/machinery/power/apc/low/south,
|
||||
@@ -33299,7 +33299,7 @@
|
||||
/obj/machinery/door/firedoor,
|
||||
/obj/structure/window/shuttle/scc_space_ship/cardinal,
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"ptJ" = (
|
||||
/obj/effect/floor_decal/corner_wide/grey/diagonal,
|
||||
/obj/effect/floor_decal/spline/plain{
|
||||
@@ -34767,7 +34767,7 @@
|
||||
pixel_x = 32
|
||||
},
|
||||
/turf/simulated/floor/carpet/rubber,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"qgz" = (
|
||||
/obj/effect/floor_decal/industrial/warning/corner,
|
||||
/obj/structure/sign/radiation{
|
||||
@@ -34958,7 +34958,7 @@
|
||||
/obj/effect/floor_decal/industrial/outline/yellow,
|
||||
/obj/item/clothing/gloves/yellow,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"qlm" = (
|
||||
/obj/machinery/door/firedoor,
|
||||
/obj/structure/cable/green{
|
||||
@@ -35302,7 +35302,7 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"qtB" = (
|
||||
/obj/machinery/alarm/east,
|
||||
/obj/effect/floor_decal/corner/grey/diagonal,
|
||||
@@ -35652,7 +35652,7 @@
|
||||
},
|
||||
/obj/effect/map_effect/marker_helper/airlock/interior,
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"qzF" = (
|
||||
/obj/effect/floor_decal/spline/plain{
|
||||
dir = 5
|
||||
@@ -35867,7 +35867,7 @@
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"qEL" = (
|
||||
/obj/machinery/hologram/holopad,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
@@ -36237,7 +36237,7 @@
|
||||
name = "WARNING: RADIOACTIVE HIGH-YIELD ENERGETIC WEAPONS WITHIN"
|
||||
},
|
||||
/turf/simulated/wall/r_wall,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"qNd" = (
|
||||
/obj/structure/lattice/catwalk/indoor/grate,
|
||||
/obj/effect/floor_decal/industrial/loading/yellow{
|
||||
@@ -36326,7 +36326,7 @@
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"qPP" = (
|
||||
/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor,
|
||||
/obj/structure/cable/green{
|
||||
@@ -36504,7 +36504,7 @@
|
||||
/area/horizon/security/brig)
|
||||
"qSN" = (
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"qSO" = (
|
||||
/obj/structure/cable/green{
|
||||
icon_state = "2-4"
|
||||
@@ -36941,7 +36941,7 @@
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"rcH" = (
|
||||
/obj/structure/cable{
|
||||
icon_state = "1-2"
|
||||
@@ -36997,7 +36997,7 @@
|
||||
"rdZ" = (
|
||||
/obj/machinery/alarm/east,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"rec" = (
|
||||
/obj/structure/closet/secure_closet/security,
|
||||
/obj/effect/floor_decal/corner/dark_blue{
|
||||
@@ -37043,7 +37043,7 @@
|
||||
icon_state = "4-8"
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"rfb" = (
|
||||
/obj/machinery/atmospherics/pipe/manifold/visible/black,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
@@ -37952,7 +37952,7 @@
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/carpet/rubber,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"rCH" = (
|
||||
/obj/effect/floor_decal/corner/dark_green/diagonal,
|
||||
/obj/machinery/newscaster/north,
|
||||
@@ -38135,7 +38135,7 @@
|
||||
},
|
||||
/obj/effect/map_effect/marker_helper/airlock/exterior,
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"rIK" = (
|
||||
/obj/structure/coatrack{
|
||||
pixel_x = 10;
|
||||
@@ -38167,7 +38167,7 @@
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/reinforced,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"rIP" = (
|
||||
/obj/machinery/firealarm/south,
|
||||
/obj/structure/disposalpipe/segment{
|
||||
@@ -38255,7 +38255,7 @@
|
||||
},
|
||||
/obj/structure/ship_weapon_dummy,
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"rLm" = (
|
||||
/obj/effect/floor_decal/industrial/warning/corner{
|
||||
dir = 1
|
||||
@@ -39286,7 +39286,7 @@
|
||||
/obj/machinery/alarm/north,
|
||||
/obj/item/device/multitool,
|
||||
/turf/simulated/floor/reinforced,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"sjO" = (
|
||||
/obj/structure/cable/green{
|
||||
icon_state = "1-4"
|
||||
@@ -40693,12 +40693,12 @@
|
||||
},
|
||||
/obj/item/hoist_kit,
|
||||
/obj/machinery/camera/motion{
|
||||
c_tag = "ZTA Aft Starboard";
|
||||
c_tag = "ZAT Aft Starboard";
|
||||
dir = 4;
|
||||
network = list("Command","Security")
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"sYU" = (
|
||||
/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor,
|
||||
/obj/structure/cable/orange{
|
||||
@@ -40979,7 +40979,7 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"tfl" = (
|
||||
/obj/structure/table/stone/marble,
|
||||
/obj/machinery/door/firedoor,
|
||||
@@ -42095,7 +42095,7 @@
|
||||
pixel_x = 32
|
||||
},
|
||||
/turf/simulated/floor/reinforced,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"tFL" = (
|
||||
/obj/effect/floor_decal/corner_wide/blue{
|
||||
dir = 5
|
||||
@@ -42257,7 +42257,7 @@
|
||||
icon_state = "1-4"
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"tIa" = (
|
||||
/obj/structure/cable/green{
|
||||
icon_state = "1-2"
|
||||
@@ -42635,7 +42635,7 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"tQQ" = (
|
||||
/obj/effect/floor_decal/corner/dark_green{
|
||||
dir = 6
|
||||
@@ -42956,7 +42956,7 @@
|
||||
"uaC" = (
|
||||
/obj/machinery/firealarm/west,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"uaM" = (
|
||||
/obj/effect/floor_decal/corner/yellow{
|
||||
dir = 5
|
||||
@@ -42973,7 +42973,7 @@
|
||||
/obj/machinery/light,
|
||||
/obj/structure/window/reinforced,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"ubq" = (
|
||||
/turf/simulated/wall/r_wall,
|
||||
/area/horizon/security/hallway)
|
||||
@@ -43976,7 +43976,7 @@
|
||||
},
|
||||
/obj/structure/window/reinforced,
|
||||
/turf/simulated/floor/carpet/rubber,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"usP" = (
|
||||
/obj/machinery/door/airlock{
|
||||
dir = 4;
|
||||
@@ -44228,7 +44228,7 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
|
||||
/obj/structure/lattice/catwalk/indoor/grate,
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"uzy" = (
|
||||
/obj/machinery/firealarm/south,
|
||||
/obj/effect/floor_decal/corner_wide/yellow{
|
||||
@@ -44322,14 +44322,14 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"uCX" = (
|
||||
/turf/simulated/floor/tiled,
|
||||
/area/horizon/hallway/deck_two/fore)
|
||||
"uDr" = (
|
||||
/obj/structure/closet/toolcloset,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"uDs" = (
|
||||
/obj/effect/landmark/start{
|
||||
name = "Cyborg"
|
||||
@@ -44828,7 +44828,7 @@
|
||||
pixel_y = 7
|
||||
},
|
||||
/turf/simulated/floor/carpet/rubber,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"uOj" = (
|
||||
/obj/structure/cable/green{
|
||||
icon_state = "4-8"
|
||||
@@ -45661,7 +45661,7 @@
|
||||
/obj/machinery/cell_charger,
|
||||
/obj/structure/table/standard,
|
||||
/turf/simulated/floor/reinforced,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"vkq" = (
|
||||
/obj/structure/table/wood,
|
||||
/obj/item/modular_computer/laptop/preset/security/hos,
|
||||
@@ -46418,7 +46418,7 @@
|
||||
icon_state = "0-8"
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"vFw" = (
|
||||
/obj/machinery/light,
|
||||
/obj/effect/floor_decal/corner/mauve{
|
||||
@@ -46738,7 +46738,7 @@
|
||||
dir = 1
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"vMl" = (
|
||||
/obj/structure/cable/green{
|
||||
icon_state = "1-2"
|
||||
@@ -48155,7 +48155,7 @@
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark/full,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"wmT" = (
|
||||
/obj/structure/railing/mapped,
|
||||
/obj/structure/platform/ledge{
|
||||
@@ -48195,7 +48195,7 @@
|
||||
},
|
||||
/obj/structure/ship_weapon_dummy,
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"wne" = (
|
||||
/obj/machinery/atmospherics/unary/vent_pump/on{
|
||||
dir = 8
|
||||
@@ -48231,7 +48231,7 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden,
|
||||
/obj/structure/extinguisher_cabinet/west,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"wok" = (
|
||||
/obj/structure/platform{
|
||||
dir = 1
|
||||
@@ -48540,7 +48540,7 @@
|
||||
name = "airlock_horizon_deck_2_levi"
|
||||
},
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"wuJ" = (
|
||||
/obj/machinery/light,
|
||||
/obj/effect/floor_decal/corner_wide/green{
|
||||
@@ -48663,7 +48663,7 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"wyb" = (
|
||||
/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{
|
||||
id = "surgery2"
|
||||
@@ -48915,7 +48915,7 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"wDX" = (
|
||||
/obj/machinery/door/firedoor,
|
||||
/obj/machinery/door/blast/shutters/open{
|
||||
@@ -49072,7 +49072,7 @@
|
||||
},
|
||||
/obj/structure/closet/toolcloset,
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"wIz" = (
|
||||
/obj/structure/railing/mapped{
|
||||
dir = 8
|
||||
@@ -49398,7 +49398,7 @@
|
||||
"wPb" = (
|
||||
/obj/machinery/hologram/holopad,
|
||||
/turf/simulated/floor/reinforced,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"wPj" = (
|
||||
/obj/structure/lattice,
|
||||
/obj/structure/railing/mapped{
|
||||
@@ -50970,7 +50970,7 @@
|
||||
/obj/structure/window/shuttle/scc_space_ship/cardinal,
|
||||
/obj/structure/grille,
|
||||
/turf/simulated/floor/plating,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"xzV" = (
|
||||
/obj/structure/reagent_dispensers/watertank,
|
||||
/obj/item/reagent_containers/glass/bucket,
|
||||
@@ -51060,7 +51060,7 @@
|
||||
"xDo" = (
|
||||
/obj/structure/bed/stool/chair/office/bridge/generic,
|
||||
/turf/simulated/floor/reinforced,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"xDv" = (
|
||||
/obj/structure/table/wood,
|
||||
/obj/item/reagent_containers/food/condiment/shaker/salt{
|
||||
@@ -52638,7 +52638,7 @@
|
||||
pixel_x = 32
|
||||
},
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/horizon/zta)
|
||||
/area/horizon/zat)
|
||||
"yjZ" = (
|
||||
/obj/effect/floor_decal/industrial/loading/yellow,
|
||||
/obj/structure/platform{
|
||||
|
||||
Reference in New Issue
Block a user