diff --git a/Content.Client/Commands/DebugCommands.cs b/Content.Client/Commands/DebugCommands.cs index 8dc1354b65..510e1e25a8 100644 --- a/Content.Client/Commands/DebugCommands.cs +++ b/Content.Client/Commands/DebugCommands.cs @@ -1,3 +1,4 @@ +using Content.Client.GameObjects.Components; using Content.Client.GameObjects.EntitySystems; using Content.Client.Interfaces; using Content.Shared.GameObjects.Components.Markers; @@ -8,6 +9,7 @@ using Robust.Shared.GameObjects; using Robust.Shared.GameObjects.Systems; using Robust.Shared.Interfaces.GameObjects; using Robust.Shared.IoC; +using DrawDepth = Content.Shared.GameObjects.DrawDepth; namespace Content.Client.Commands { @@ -27,12 +29,12 @@ namespace Content.Client.Commands } } - internal sealed class ShowWiresCommand : IConsoleCommand + internal sealed class ShowSubFloor : IConsoleCommand { // ReSharper disable once StringLiteralTypo - public string Command => "showwires"; - public string Description => "Makes wires always visible."; - public string Help => ""; + public string Command => "showsubfloor"; + public string Description => "Makes entities below the floor always visible."; + public string Help => $"Usage: {Command}"; public bool Execute(IDebugConsole console, params string[] args) { @@ -43,6 +45,32 @@ namespace Content.Client.Commands } } + internal sealed class ShowSubFloorForever : IConsoleCommand + { + // ReSharper disable once StringLiteralTypo + public string Command => "showsubfloorforever"; + public string Description => "Makes entities below the floor always visible until the client is restarted."; + public string Help => $"Usage: {Command}"; + + public bool Execute(IDebugConsole console, params string[] args) + { + EntitySystem.Get() + .EnableAll = true; + + var components = IoCManager.Resolve().ComponentManager + .EntityQuery(); + + foreach (var component in components) + { + if (component.Owner.TryGetComponent(out ISpriteComponent sprite)) + { + sprite.DrawDepth = (int) DrawDepth.Overlays; + } + } + + return false; + } + } internal sealed class NotifyCommand : IConsoleCommand { @@ -76,7 +104,7 @@ namespace Content.Client.Commands } console.Commands["togglelight"].Execute(console); - console.Commands["showwires"].Execute(console); + console.Commands["showsubfloorforever"].Execute(console); return true; } diff --git a/Content.Client/GameObjects/Components/Conveyor/ConveyorSwitchVisualizer.cs b/Content.Client/GameObjects/Components/Conveyor/ConveyorSwitchVisualizer.cs new file mode 100644 index 0000000000..77db02048b --- /dev/null +++ b/Content.Client/GameObjects/Components/Conveyor/ConveyorSwitchVisualizer.cs @@ -0,0 +1,72 @@ +using System; +using Content.Shared.GameObjects.Components.Conveyor; +using JetBrains.Annotations; +using Robust.Client.GameObjects; +using Robust.Client.Interfaces.GameObjects.Components; +using Robust.Shared.GameObjects; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Utility; +using YamlDotNet.RepresentationModel; + +namespace Content.Client.GameObjects.Components.Conveyor +{ + [UsedImplicitly] + public class ConveyorSwitchVisualizer : AppearanceVisualizer + { + private string _stateForward; + private string _stateOff; + private string _stateReversed; + private string _stateLoose; + + private void ChangeState(AppearanceComponent appearance) + { + if (!appearance.Owner.TryGetComponent(out ISpriteComponent sprite)) + { + return; + } + + appearance.TryGetData(ConveyorVisuals.State, out ConveyorState state); + + var texture = state switch + { + ConveyorState.Off => _stateOff, + ConveyorState.Forward => _stateForward, + ConveyorState.Reversed => _stateReversed, + ConveyorState.Loose => _stateLoose, + _ => throw new ArgumentOutOfRangeException() + }; + + sprite.LayerSetState(0, texture); + } + + public override void LoadData(YamlMappingNode node) + { + base.LoadData(node); + + _stateForward = node.GetNode("state_forward").AsString(); + _stateOff = node.GetNode("state_off").AsString(); + _stateReversed = node.GetNode("state_reversed").AsString(); + _stateLoose = node.GetNode("state_loose").AsString(); + } + + public override void InitializeEntity(IEntity entity) + { + base.InitializeEntity(entity); + + var appearance = entity.EnsureComponent(); + ChangeState(appearance); + } + + public override void OnChangeData(AppearanceComponent component) + { + base.OnChangeData(component); + + if (component.Owner.Deleted) + { + return; + } + + ChangeState(component); + } + } +} diff --git a/Content.Client/GameObjects/Components/Conveyor/ConveyorVisualizer.cs b/Content.Client/GameObjects/Components/Conveyor/ConveyorVisualizer.cs new file mode 100644 index 0000000000..d34a88a12a --- /dev/null +++ b/Content.Client/GameObjects/Components/Conveyor/ConveyorVisualizer.cs @@ -0,0 +1,72 @@ +using System; +using Content.Shared.GameObjects.Components.Conveyor; +using JetBrains.Annotations; +using Robust.Client.GameObjects; +using Robust.Client.Interfaces.GameObjects.Components; +using Robust.Shared.GameObjects; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Utility; +using YamlDotNet.RepresentationModel; + +namespace Content.Client.GameObjects.Components.Conveyor +{ + [UsedImplicitly] + public class ConveyorVisualizer : AppearanceVisualizer + { + private string _stateRunning; + private string _stateStopped; + private string _stateReversed; + private string _stateLoose; + + private void ChangeState(AppearanceComponent appearance) + { + if (!appearance.Owner.TryGetComponent(out ISpriteComponent sprite)) + { + return; + } + + appearance.TryGetData(ConveyorVisuals.State, out ConveyorState state); + + var texture = state switch + { + ConveyorState.Off => _stateStopped, + ConveyorState.Forward => _stateRunning, + ConveyorState.Reversed => _stateReversed, + ConveyorState.Loose => _stateLoose, + _ => throw new ArgumentOutOfRangeException() + }; + + sprite.LayerSetState(0, texture); + } + + public override void LoadData(YamlMappingNode node) + { + base.LoadData(node); + + _stateRunning = node.GetNode("state_running").AsString(); + _stateStopped = node.GetNode("state_stopped").AsString(); + _stateReversed = node.GetNode("state_reversed").AsString(); + _stateLoose = node.GetNode("state_loose").AsString(); + } + + public override void InitializeEntity(IEntity entity) + { + base.InitializeEntity(entity); + + var appearance = entity.EnsureComponent(); + ChangeState(appearance); + } + + public override void OnChangeData(AppearanceComponent component) + { + base.OnChangeData(component); + + if (component.Owner.Deleted) + { + return; + } + + ChangeState(component); + } + } +} diff --git a/Content.Client/GameObjects/Components/Disposal/DisposalUnitBoundUserInterface.cs b/Content.Client/GameObjects/Components/Disposal/DisposalUnitBoundUserInterface.cs new file mode 100644 index 0000000000..3815fce8ba --- /dev/null +++ b/Content.Client/GameObjects/Components/Disposal/DisposalUnitBoundUserInterface.cs @@ -0,0 +1,63 @@ +#nullable enable +using JetBrains.Annotations; +using Robust.Client.GameObjects.Components.UserInterface; +using Robust.Shared.GameObjects.Components.UserInterface; +using Robust.Shared.Localization; +using static Content.Shared.GameObjects.Components.Disposal.SharedDisposalUnitComponent; + +namespace Content.Client.GameObjects.Components.Disposal +{ + /// + /// Initializes a and updates it when new server messages are received. + /// + [UsedImplicitly] + public class DisposalUnitBoundUserInterface : BoundUserInterface + { + private DisposalUnitWindow? _window; + + public DisposalUnitBoundUserInterface(ClientUserInterfaceComponent owner, object uiKey) : base(owner, uiKey) + { + } + + private void ButtonPressed(UiButton button) + { + SendMessage(new UiButtonPressedMessage(button)); + } + + protected override void Open() + { + base.Open(); + + _window = new DisposalUnitWindow(); + + _window.OpenCenteredMinSize(); + _window.OnClose += Close; + + _window.Eject.OnPressed += _ => ButtonPressed(UiButton.Eject); + _window.Engage.OnPressed += _ => ButtonPressed(UiButton.Engage); + _window.Power.OnPressed += _ => ButtonPressed(UiButton.Power); + } + + protected override void UpdateState(BoundUserInterfaceState state) + { + base.UpdateState(state); + + if (!(state is DisposalUnitBoundUserInterfaceState cast)) + { + return; + } + + _window?.UpdateState(cast); + } + + protected override void Dispose(bool disposing) + { + base.Dispose(disposing); + + if (disposing) + { + _window?.Dispose(); + } + } + } +} diff --git a/Content.Client/GameObjects/Components/Disposal/DisposalUnitComponent.cs b/Content.Client/GameObjects/Components/Disposal/DisposalUnitComponent.cs new file mode 100644 index 0000000000..1058b3044a --- /dev/null +++ b/Content.Client/GameObjects/Components/Disposal/DisposalUnitComponent.cs @@ -0,0 +1,10 @@ +using Content.Shared.GameObjects.Components.Disposal; +using Robust.Shared.GameObjects; + +namespace Content.Client.GameObjects.Components.Disposal +{ + [RegisterComponent] + public class DisposalUnitComponent : SharedDisposalUnitComponent + { + } +} diff --git a/Content.Client/GameObjects/Components/Disposal/DisposalUnitVisualizer.cs b/Content.Client/GameObjects/Components/Disposal/DisposalUnitVisualizer.cs new file mode 100644 index 0000000000..084efbb71c --- /dev/null +++ b/Content.Client/GameObjects/Components/Disposal/DisposalUnitVisualizer.cs @@ -0,0 +1,164 @@ +using System; +using JetBrains.Annotations; +using Robust.Client.Animations; +using Robust.Client.GameObjects; +using Robust.Client.GameObjects.Components.Animations; +using Robust.Client.Interfaces.GameObjects.Components; +using Robust.Shared.GameObjects; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Utility; +using YamlDotNet.RepresentationModel; +using static Content.Shared.GameObjects.Components.Disposal.SharedDisposalUnitComponent; + +namespace Content.Client.GameObjects.Components.Disposal +{ + [UsedImplicitly] + public class DisposalUnitVisualizer : AppearanceVisualizer + { + private const string AnimationKey = "disposal_unit_animation"; + + private string _stateAnchored; + private string _stateUnAnchored; + private string _overlayCharging; + private string _overlayReady; + private string _overlayFull; + private string _overlayEngaged; + private string _stateFlush; + + private Animation _flushAnimation; + + private void ChangeState(AppearanceComponent appearance) + { + if (!appearance.TryGetData(Visuals.VisualState, out VisualState state)) + { + return; + } + + if (!appearance.Owner.TryGetComponent(out ISpriteComponent sprite)) + { + return; + } + + switch (state) + { + case VisualState.UnAnchored: + sprite.LayerSetState(DisposalUnitVisualLayers.Base, _stateUnAnchored); + break; + case VisualState.Anchored: + sprite.LayerSetState(DisposalUnitVisualLayers.Base, _stateAnchored); + break; + case VisualState.Flushing: + sprite.LayerSetState(DisposalUnitVisualLayers.Base, _stateAnchored); + + var animPlayer = appearance.Owner.GetComponent(); + + if (!animPlayer.HasRunningAnimation(AnimationKey)) + { + animPlayer.Play(_flushAnimation, AnimationKey); + } + + break; + default: + throw new ArgumentOutOfRangeException(); + } + + if (!appearance.TryGetData(Visuals.Handle, out HandleState handleState)) + { + handleState = HandleState.Normal; + } + + sprite.LayerSetVisible(DisposalUnitVisualLayers.Handle, handleState != HandleState.Normal); + + switch (handleState) + { + case HandleState.Normal: + break; + case HandleState.Engaged: + sprite.LayerSetState(DisposalUnitVisualLayers.Handle, _overlayEngaged); + break; + default: + throw new ArgumentOutOfRangeException(); + } + + if (!appearance.TryGetData(Visuals.Light, out LightState lightState)) + { + lightState = LightState.Off; + } + + sprite.LayerSetVisible(DisposalUnitVisualLayers.Light, lightState != LightState.Off); + + switch (lightState) + { + case LightState.Off: + break; + case LightState.Charging: + sprite.LayerSetState(DisposalUnitVisualLayers.Light, _overlayCharging); + break; + case LightState.Full: + sprite.LayerSetState(DisposalUnitVisualLayers.Light, _overlayFull); + break; + case LightState.Ready: + sprite.LayerSetState(DisposalUnitVisualLayers.Light, _overlayReady); + break; + default: + throw new ArgumentOutOfRangeException(); + } + } + + public override void LoadData(YamlMappingNode node) + { + base.LoadData(node); + + _stateAnchored = node.GetNode("state_anchored").AsString(); + _stateUnAnchored = node.GetNode("state_unanchored").AsString(); + _overlayCharging = node.GetNode("overlay_charging").AsString(); + _overlayReady = node.GetNode("overlay_ready").AsString(); + _overlayFull = node.GetNode("overlay_full").AsString(); + _overlayEngaged = node.GetNode("overlay_engaged").AsString(); + _stateFlush = node.GetNode("state_flush").AsString(); + + var flushSound = node.GetNode("flush_sound").AsString(); + var flushTime = node.GetNode("flush_time").AsFloat(); + + _flushAnimation = new Animation {Length = TimeSpan.FromSeconds(flushTime)}; + + var flick = new AnimationTrackSpriteFlick(); + _flushAnimation.AnimationTracks.Add(flick); + flick.LayerKey = DisposalUnitVisualLayers.Base; + flick.KeyFrames.Add(new AnimationTrackSpriteFlick.KeyFrame(_stateFlush, 0)); + + var sound = new AnimationTrackPlaySound(); + _flushAnimation.AnimationTracks.Add(sound); + sound.KeyFrames.Add(new AnimationTrackPlaySound.KeyFrame(flushSound, 0)); + } + + public override void InitializeEntity(IEntity entity) + { + base.InitializeEntity(entity); + + entity.EnsureComponent(); + var appearance = entity.EnsureComponent(); + + ChangeState(appearance); + } + + public override void OnChangeData(AppearanceComponent component) + { + base.OnChangeData(component); + + if (component.Owner.Deleted) + { + return; + } + + ChangeState(component); + } + } + + public enum DisposalUnitVisualLayers + { + Base, + Handle, + Light + } +} diff --git a/Content.Client/GameObjects/Components/Disposal/DisposalUnitWindow.cs b/Content.Client/GameObjects/Components/Disposal/DisposalUnitWindow.cs new file mode 100644 index 0000000000..e5e36af038 --- /dev/null +++ b/Content.Client/GameObjects/Components/Disposal/DisposalUnitWindow.cs @@ -0,0 +1,140 @@ +using System.Runtime.CompilerServices; +using Content.Shared.GameObjects.Components.Disposal; +using Robust.Client.Graphics.Drawing; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.CustomControls; +using Robust.Shared.Localization; +using Robust.Shared.Maths; +using static Content.Shared.GameObjects.Components.Disposal.SharedDisposalUnitComponent; + +namespace Content.Client.GameObjects.Components.Disposal +{ + /// + /// Client-side UI used to control a + /// + public class DisposalUnitWindow : SS14Window + { + private readonly Label _unitState; + private readonly ProgressBar _pressureBar; + private readonly Label _pressurePercentage; + public readonly Button Engage; + public readonly Button Eject; + public readonly Button Power; + + protected override Vector2? CustomSize => (300, 200); + + public DisposalUnitWindow() + { + Contents.AddChild(new VBoxContainer + { + Children = + { + new HBoxContainer + { + Children = + { + new Label {Text = Loc.GetString("State: ")}, + (_unitState = new Label {Text = Loc.GetString("Ready")}) + } + }, + new Control {CustomMinimumSize = (0, 10)}, + new HBoxContainer + { + Children = + { + new Label {Text = Loc.GetString("Pressure:")}, + (_pressureBar = new ProgressBar + { + CustomMinimumSize = (200, 20), + SizeFlagsHorizontal = SizeFlags.ShrinkEnd, + MinValue = 0, + MaxValue = 1, + Page = 0, + Value = 0.5f, + Children = + { + (_pressurePercentage = new Label()) + } + }) + } + }, + new Control {CustomMinimumSize = (0, 10)}, + new HBoxContainer + { + Children = + { + new Label {Text = Loc.GetString("Handle:")}, + (Engage = new Button {Text = Loc.GetString("Engage")}) + } + }, + new Control {CustomMinimumSize = (0, 10)}, + new HBoxContainer + { + Children = + { + new Label {Text = Loc.GetString("Eject:")}, + (Eject = new Button {Text = Loc.GetString("Eject Contents")}) + } + }, + new Control {CustomMinimumSize = (0, 10)}, + new HBoxContainer + { + Children = + { + (Power = new CheckButton {Text = Loc.GetString("Power")}), + } + } + } + }); + } + + private void UpdatePressureBar(float pressure) + { + _pressureBar.Value = pressure; + + var normalized = pressure / _pressureBar.MaxValue; + + const float leftHue = 0.0f; // Red + const float middleHue = 0.066f; // Orange + const float rightHue = 0.33f; // Green + const float saturation = 1.0f; // Uniform saturation + const float value = 0.8f; // Uniform value / brightness + const float alpha = 1.0f; // Uniform alpha + + // These should add up to 1.0 or your transition won't be smooth + const float leftSideSize = 0.5f; // Fraction of _chargeBar lerped from leftHue to middleHue + const float rightSideSize = 0.5f; // Fraction of _chargeBar lerped from middleHue to rightHue + + float finalHue; + if (normalized <= leftSideSize) + { + normalized /= leftSideSize; // Adjust range to 0.0 to 1.0 + finalHue = FloatMath.Lerp(leftHue, middleHue, normalized); + } + else + { + normalized = (normalized - leftSideSize) / rightSideSize; // Adjust range to 0.0 to 1.0. + finalHue = FloatMath.Lerp(middleHue, rightHue, normalized); + } + + // Check if null first to avoid repeatedly creating this. + _pressureBar.ForegroundStyleBoxOverride ??= new StyleBoxFlat(); + + var foregroundStyleBoxOverride = (StyleBoxFlat) _pressureBar.ForegroundStyleBoxOverride; + foregroundStyleBoxOverride.BackgroundColor = + Color.FromHsv(new Vector4(finalHue, saturation, value, alpha)); + + var percentage = pressure / _pressureBar.MaxValue * 100; + _pressurePercentage.Text = $" {percentage:0}%"; + } + + public void UpdateState(DisposalUnitBoundUserInterfaceState state) + { + Title = state.UnitName; + _unitState.Text = state.UnitState; + UpdatePressureBar(state.Pressure); + Power.Pressed = state.Powered; + } + } +} diff --git a/Content.Client/GameObjects/Components/Disposal/DisposalVisualizer.cs b/Content.Client/GameObjects/Components/Disposal/DisposalVisualizer.cs new file mode 100644 index 0000000000..d433c9dfff --- /dev/null +++ b/Content.Client/GameObjects/Components/Disposal/DisposalVisualizer.cs @@ -0,0 +1,81 @@ +using System; +using Content.Shared.GameObjects.Components.Disposal; +using JetBrains.Annotations; +using Robust.Client.GameObjects; +using Robust.Client.Interfaces.GameObjects.Components; +using Robust.Shared.GameObjects; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Utility; +using YamlDotNet.RepresentationModel; + +namespace Content.Client.GameObjects.Components.Disposal +{ + [UsedImplicitly] + public class DisposalVisualizer : AppearanceVisualizer + { + private string _stateFree; + private string _stateAnchored; + private string _stateBroken; + + private void ChangeState(AppearanceComponent appearance) + { + if (!appearance.Owner.TryGetComponent(out ISpriteComponent sprite)) + { + return; + } + + if (!appearance.TryGetData(DisposalTubeVisuals.VisualState, out DisposalTubeVisualState state)) + { + return; + } + + var texture = state switch + { + DisposalTubeVisualState.Free => _stateFree, + DisposalTubeVisualState.Anchored => _stateAnchored, + DisposalTubeVisualState.Broken => _stateBroken, + _ => throw new ArgumentOutOfRangeException() + }; + + sprite.LayerSetState(0, texture); + + if (state == DisposalTubeVisualState.Anchored) + { + appearance.Owner.EnsureComponent(); + } + else if (appearance.Owner.HasComponent()) + { + appearance.Owner.RemoveComponent(); + } + } + + public override void LoadData(YamlMappingNode node) + { + base.LoadData(node); + + _stateFree = node.GetNode("state_free").AsString(); + _stateAnchored = node.GetNode("state_anchored").AsString(); + _stateBroken = node.GetNode("state_broken").AsString(); + } + + public override void InitializeEntity(IEntity entity) + { + base.InitializeEntity(entity); + + var appearance = entity.EnsureComponent(); + ChangeState(appearance); + } + + public override void OnChangeData(AppearanceComponent component) + { + base.OnChangeData(component); + + if (component.Owner.Deleted) + { + return; + } + + ChangeState(component); + } + } +} diff --git a/Content.Client/GameObjects/Components/Items/ItemComponent.cs b/Content.Client/GameObjects/Components/Items/ItemComponent.cs index 5434449458..812c5223d0 100644 --- a/Content.Client/GameObjects/Components/Items/ItemComponent.cs +++ b/Content.Client/GameObjects/Components/Items/ItemComponent.cs @@ -1,4 +1,4 @@ -using Content.Client.GameObjects.Components.Storage; +using Content.Client.GameObjects.Components.Disposal; using Content.Client.Interfaces.GameObjects.Components.Interaction; using Content.Shared.GameObjects; using Content.Shared.GameObjects.Components.Items; @@ -18,7 +18,7 @@ namespace Content.Client.GameObjects.Components.Items { [RegisterComponent] [ComponentReference(typeof(IItemComponent))] - public class ItemComponent : Component, IItemComponent + public class ItemComponent : Component, IItemComponent, IClientDraggable { public override string Name => "Item"; public override uint? NetID => ContentNetIDs.ITEM; @@ -80,5 +80,15 @@ namespace Content.Client.GameObjects.Components.Items var itemComponentState = (ItemComponentState)curState; EquippedPrefix = itemComponentState.EquippedPrefix; } + + bool IClientDraggable.ClientCanDropOn(CanDropEventArgs eventArgs) + { + return eventArgs.Target.HasComponent(); + } + + bool IClientDraggable.ClientCanDrag(CanDragEventArgs eventArgs) + { + return true; + } } } diff --git a/Content.Client/GameObjects/Components/Mobs/SpeciesComponent.cs b/Content.Client/GameObjects/Components/Mobs/SpeciesComponent.cs index 92d3c9b422..6500134159 100644 --- a/Content.Client/GameObjects/Components/Mobs/SpeciesComponent.cs +++ b/Content.Client/GameObjects/Components/Mobs/SpeciesComponent.cs @@ -1,3 +1,5 @@ +using Content.Client.GameObjects.Components.Disposal; +using Content.Client.Interfaces.GameObjects.Components.Interaction; using Content.Shared.GameObjects.Components.Mobs; using Robust.Shared.GameObjects; @@ -5,8 +7,16 @@ namespace Content.Client.GameObjects.Components.Mobs { [RegisterComponent] [ComponentReference(typeof(SharedSpeciesComponent))] - public class SpeciesComponent : SharedSpeciesComponent + public class SpeciesComponent : SharedSpeciesComponent, IClientDraggable { + bool IClientDraggable.ClientCanDropOn(CanDropEventArgs eventArgs) + { + return eventArgs.Target.HasComponent(); + } + bool IClientDraggable.ClientCanDrag(CanDragEventArgs eventArgs) + { + return true; + } } } diff --git a/Content.Client/GameObjects/Components/Recycling/RecyclerVisualizer.cs b/Content.Client/GameObjects/Components/Recycling/RecyclerVisualizer.cs new file mode 100644 index 0000000000..37ba018968 --- /dev/null +++ b/Content.Client/GameObjects/Components/Recycling/RecyclerVisualizer.cs @@ -0,0 +1,68 @@ +using Content.Shared.GameObjects.Components.Recycling; +using JetBrains.Annotations; +using Robust.Client.GameObjects; +using Robust.Client.Interfaces.GameObjects.Components; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Utility; +using YamlDotNet.RepresentationModel; + +namespace Content.Client.GameObjects.Components.Recycling +{ + [UsedImplicitly] + public class RecyclerVisualizer : AppearanceVisualizer + { + private string _stateClean; + private string _stateBloody; + + public override void LoadData(YamlMappingNode node) + { + base.LoadData(node); + + if (node.TryGetNode("state_clean", out var child)) + { + _stateClean = child.AsString(); + } + + if (node.TryGetNode("state_bloody", out child)) + { + _stateBloody = child.AsString(); + } + } + + public override void InitializeEntity(IEntity entity) + { + base.InitializeEntity(entity); + + if (!entity.TryGetComponent(out ISpriteComponent sprite) || + !entity.TryGetComponent(out AppearanceComponent appearance)) + { + return; + } + + appearance.TryGetData(RecyclerVisuals.Bloody, out bool bloody); + sprite.LayerSetState(RecyclerVisualLayers.Bloody, bloody + ? _stateBloody + : _stateClean); + } + + public override void OnChangeData(AppearanceComponent component) + { + base.OnChangeData(component); + + if (!component.Owner.TryGetComponent(out ISpriteComponent sprite)) + { + return; + } + + component.TryGetData(RecyclerVisuals.Bloody, out bool bloody); + sprite.LayerSetState(RecyclerVisualLayers.Bloody, bloody + ? _stateBloody + : _stateClean); + } + } + + public enum RecyclerVisualLayers + { + Bloody + } +} diff --git a/Content.Client/GameObjects/EntitySystems/AI/ClientAiDebugSystem.cs b/Content.Client/GameObjects/EntitySystems/AI/ClientAiDebugSystem.cs index eb2fa68567..e40ae0740f 100644 --- a/Content.Client/GameObjects/EntitySystems/AI/ClientAiDebugSystem.cs +++ b/Content.Client/GameObjects/EntitySystems/AI/ClientAiDebugSystem.cs @@ -17,8 +17,8 @@ namespace Content.Client.GameObjects.EntitySystems.AI { #pragma warning disable 649 [Dependency] private IEyeManager _eyeManager; -#pragma restore disable 649 - +#pragma warning restore 649 + private AiDebugMode _tooltips = AiDebugMode.None; private readonly Dictionary _aiBoxes = new Dictionary(); @@ -33,7 +33,7 @@ namespace Content.Client.GameObjects.EntitySystems.AI { panel.Dispose(); } - + _aiBoxes.Clear(); } return; diff --git a/Content.Client/GameObjects/EntitySystems/DragDropSystem.cs b/Content.Client/GameObjects/EntitySystems/DragDropSystem.cs index feb97342a2..fe8eae8959 100644 --- a/Content.Client/GameObjects/EntitySystems/DragDropSystem.cs +++ b/Content.Client/GameObjects/EntitySystems/DragDropSystem.cs @@ -1,4 +1,5 @@ using System.Collections.Generic; +using System.Linq; using Content.Client.Interfaces.GameObjects.Components.Interaction; using Content.Client.State; using Content.Shared.GameObjects; @@ -55,7 +56,7 @@ namespace Content.Client.GameObjects.EntitySystems // entity performing the drag action private IEntity _dragger; private IEntity _draggedEntity; - private IClientDraggable _draggable; + private readonly List _draggables = new List(); private IEntity _dragShadow; private DragState _state; // time since mouse down over the dragged entity @@ -146,10 +147,10 @@ namespace Content.Client.GameObjects.EntitySystems if (_interactionSystem.InRangeUnobstructed(dragger.Transform.MapPosition, entity.Transform.MapPosition, ignoredEnt: dragger) == false) { - { - return false; - } + return false; } + + var canDrag = false; foreach (var draggable in entity.GetAllComponents()) { var dragEventArgs = new CanDragEventArgs(args.Session.AttachedEntity, entity); @@ -158,7 +159,7 @@ namespace Content.Client.GameObjects.EntitySystems // wait to initiate a drag _dragger = dragger; _draggedEntity = entity; - _draggable = draggable; + _draggables.Add(draggable); _mouseDownTime = 0; _state = DragState.MouseDown; _mouseDownScreenPos = _inputManager.MouseScreenPosition; @@ -166,9 +167,11 @@ namespace Content.Client.GameObjects.EntitySystems // but we will save the event so we can "re-play" it if this drag does // not turn into an actual drag so the click can be handled normally _savedMouseDown = args; - return true; + canDrag = true; } } + + return canDrag; } return false; @@ -193,19 +196,21 @@ namespace Content.Client.GameObjects.EntitySystems // We don't use args.EntityUid here because drag interactions generally should // work even if there's something "on top" of the drop target if (_interactionSystem.InRangeUnobstructed(_dragger.Transform.MapPosition, - args.Coordinates.ToMap(_mapManager), ignoredEnt: _dragger) == false) + args.Coordinates.ToMap(_mapManager), ignoredEnt: _dragger, ignoreInsideBlocker: true) == false) { - { - CancelDrag(false, null); - return false; - } + CancelDrag(false, null); + return false; } var entities = GameScreenBase.GetEntitiesUnderPosition(_stateManager, args.Coordinates); + foreach (var entity in entities) { // check if it's able to be dropped on by current dragged entity - if (_draggable.ClientCanDropOn(new CanDropEventArgs(_dragger, _draggedEntity, entity))) + var canDropArgs = new CanDropEventArgs(_dragger, _draggedEntity, entity); + var anyValidDraggable = _draggables.Any(draggable => draggable.ClientCanDropOn(canDropArgs)); + + if (anyValidDraggable) { // tell the server about the drop attempt RaiseNetworkEvent(new DragDropMessage(args.Coordinates, _draggedEntity.Uid, @@ -279,7 +284,10 @@ namespace Content.Client.GameObjects.EntitySystems if (inRangeSprite.Visible == false) continue; // check if it's able to be dropped on by current dragged entity - if (_draggable.ClientCanDropOn(new CanDropEventArgs(_dragger, _draggedEntity, pvsEntity))) + var canDropArgs = new CanDropEventArgs(_dragger, _draggedEntity, pvsEntity); + var anyValidDraggable = _draggables.Any(draggable => draggable.ClientCanDropOn(canDropArgs)); + + if (anyValidDraggable) { // highlight depending on whether its in or out of range var inRange = _interactionSystem.InRangeUnobstructed(_dragger.Transform.MapPosition, @@ -320,7 +328,7 @@ namespace Content.Client.GameObjects.EntitySystems _dragShadow = null; _draggedEntity = null; - _draggable = null; + _draggables.Clear(); _dragger = null; _state = DragState.NotDragging; diff --git a/Content.Client/IgnoredComponents.cs b/Content.Client/IgnoredComponents.cs index 919667338d..ed9b52f05f 100644 --- a/Content.Client/IgnoredComponents.cs +++ b/Content.Client/IgnoredComponents.cs @@ -139,7 +139,16 @@ "Pullable", "CursedEntityStorage", "Listening", - "Radio" + "Radio", + "DisposalHolder", + "DisposalTransit", + "DisposalEntry", + "DisposalJunction", + "DisposalBend", + "Recycler", + "Conveyor", + "ConveyorSwitch", + "Flippable", }; } } diff --git a/Content.Client/Interfaces/GameObjects/Components/Interaction/IClientDraggable.cs b/Content.Client/Interfaces/GameObjects/Components/Interaction/IClientDraggable.cs index 26c36d878c..8e28b297c9 100644 --- a/Content.Client/Interfaces/GameObjects/Components/Interaction/IClientDraggable.cs +++ b/Content.Client/Interfaces/GameObjects/Components/Interaction/IClientDraggable.cs @@ -33,6 +33,12 @@ namespace Content.Client.Interfaces.GameObjects.Components.Interaction public class CanDropEventArgs : EventArgs { + /// + /// Creates a new instance of . + /// + /// The entity doing the drag and drop. + /// The entity that is being dragged and dropped. + /// The entity that is being dropped onto. public CanDropEventArgs(IEntity user, IEntity dragged, IEntity target) { User = user; @@ -40,20 +46,43 @@ namespace Content.Client.Interfaces.GameObjects.Components.Interaction Target = target; } + /// + /// The entity doing the drag and drop. + /// public IEntity User { get; } + + /// + /// The entity that is being dragged and dropped. + /// public IEntity Dragged { get; } + + /// + /// The entity that is being dropped onto. + /// public IEntity Target { get; } } public class CanDragEventArgs : EventArgs { + /// + /// Creates a new instance of . + /// + /// The entity doing the drag and drop. + /// The entity that is being dragged and dropped. public CanDragEventArgs(IEntity user, IEntity dragged) { User = user; Dragged = dragged; } + /// + /// The entity doing the drag and drop. + /// public IEntity User { get; } + + /// + /// The entity that is being dragged and dropped. + /// public IEntity Dragged { get; } } } diff --git a/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs b/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs new file mode 100644 index 0000000000..8692d17c70 --- /dev/null +++ b/Content.IntegrationTests/Tests/Disposal/DisposalUnitTest.cs @@ -0,0 +1,130 @@ +#nullable enable +using System.Linq; +using System.Threading.Tasks; +using Content.Server.GameObjects.Components; +using Content.Server.GameObjects.Components.Disposal; +using Content.Server.GameObjects.Components.Power.ApcNetComponents; +using NUnit.Framework; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Interfaces.Map; +using Robust.Shared.IoC; +using Robust.Shared.Map; + +namespace Content.IntegrationTests.Tests.Disposal +{ + [TestFixture] + [TestOf(typeof(DisposalHolderComponent))] + [TestOf(typeof(DisposalEntryComponent))] + [TestOf(typeof(DisposalUnitComponent))] + public class DisposalUnitTest : ContentIntegrationTest + { + private void UnitInsert(DisposalUnitComponent unit, bool result, params IEntity[] entities) + { + foreach (var entity in entities) + { + Assert.That(unit.CanInsert(entity), Is.EqualTo(result)); + Assert.That(unit.TryInsert(entity), Is.EqualTo(result)); + + if (result) + { + // Not in a tube yet + Assert.That(entity.Transform.Parent == unit.Owner.Transform); + } + } + } + + private void UnitContains(DisposalUnitComponent unit, bool result, params IEntity[] entities) + { + foreach (var entity in entities) + { + Assert.That(unit.ContainedEntities.Contains(entity), Is.EqualTo(result)); + } + } + + private void UnitInsertContains(DisposalUnitComponent unit, bool result, params IEntity[] entities) + { + UnitInsert(unit, result, entities); + UnitContains(unit, result, entities); + } + + private void Flush(DisposalUnitComponent unit, bool result, DisposalEntryComponent? entry = null, IDisposalTubeComponent? next = null, params IEntity[] entities) + { + Assert.That(unit.ContainedEntities, Is.SupersetOf(entities)); + Assert.AreEqual(unit.ContainedEntities.Count, entities.Length); + + Assert.AreEqual(unit.TryFlush(), result); + Assert.AreEqual(unit.ContainedEntities.Count == 0, entry != null || entities.Length == 0); + } + + [Test] + public async Task Test() + { + var server = StartServerDummyTicker(); + + IEntity human = null!; + IEntity wrench = null!; + DisposalUnitComponent unit = null!; + DisposalEntryComponent entry = null!; + + server.Assert(() => + { + var mapManager = IoCManager.Resolve(); + + mapManager.CreateNewMapEntity(MapId.Nullspace); + + var entityManager = IoCManager.Resolve(); + + // Spawn the entities + human = entityManager.SpawnEntity("HumanMob_Content", MapCoordinates.Nullspace); + wrench = entityManager.SpawnEntity("Wrench", MapCoordinates.Nullspace); + var disposalUnit = entityManager.SpawnEntity("DisposalUnit", MapCoordinates.Nullspace); + var disposalTrunk = entityManager.SpawnEntity("DisposalTrunk", disposalUnit.Transform.MapPosition); + + // Test for components existing + Assert.True(disposalUnit.TryGetComponent(out unit)); + Assert.True(disposalTrunk.TryGetComponent(out entry)); + + // Can't insert, unanchored and unpowered + UnitInsertContains(unit, false, human, wrench, disposalUnit, disposalTrunk); + Assert.False(unit.Anchored); + + // Anchor the disposal unit + Assert.True(disposalUnit.TryGetComponent(out AnchorableComponent anchorableUnit)); + Assert.True(anchorableUnit.TryAnchor(human, wrench)); + Assert.True(unit.Anchored); + + // Can't insert, unpowered + UnitInsertContains(unit, false, human, wrench, disposalUnit, disposalTrunk); + Assert.False(unit.Powered); + + // Remove power need + Assert.True(disposalUnit.TryGetComponent(out PowerReceiverComponent power)); + power.NeedsPower = false; + Assert.True(unit.Powered); + + // Can't insert the trunk or the unit into itself + UnitInsertContains(unit, false, disposalUnit, disposalTrunk); + + // Can insert mobs and items + UnitInsertContains(unit, true, human, wrench); + + // Move the disposal trunk away + disposalTrunk.Transform.WorldPosition += (1, 0); + + // Fail to flush with a mob and an item + Flush(unit, false, null, null, human, wrench); + + // Move the disposal trunk back + disposalTrunk.Transform.WorldPosition -= (1, 0); + + // Flush with a mob and an item + Flush(unit, true, entry, null, human, wrench); + + // Re-pressurizing + Flush(unit, false, entry); + }); + + await server.WaitIdleAsync(); + } + } +} diff --git a/Content.Server/GameObjects/Components/AnchorableComponent.cs b/Content.Server/GameObjects/Components/AnchorableComponent.cs index ed0ace652e..5e38acaf8c 100644 --- a/Content.Server/GameObjects/Components/AnchorableComponent.cs +++ b/Content.Server/GameObjects/Components/AnchorableComponent.cs @@ -1,8 +1,11 @@ -using Content.Server.GameObjects.Components.Interactable; +#nullable enable +using System.Diagnostics.CodeAnalysis; +using Content.Server.GameObjects.Components.Interactable; using Content.Shared.GameObjects.Components.Interactable; using Content.Shared.Interfaces.GameObjects.Components; using Robust.Shared.GameObjects; using Robust.Shared.GameObjects.Components; +using Robust.Shared.Interfaces.GameObjects; namespace Content.Server.GameObjects.Components { @@ -11,24 +14,100 @@ namespace Content.Server.GameObjects.Components { public override string Name => "Anchorable"; + /// + /// Checks if a tool can change the anchored status. + /// + /// The user doing the action + /// The tool being used, can be null if forcing it + /// The physics component of the owning entity + /// Whether or not to check if the tool is valid + /// true if it is valid, false otherwise + private bool Valid(IEntity user, IEntity? utilizing, [MaybeNullWhen(false)] out ICollidableComponent collidable, bool force = false) + { + if (!Owner.TryGetComponent(out collidable)) + { + return false; + } + + if (!force) + { + if (utilizing == null || + !utilizing.TryGetComponent(out ToolComponent tool) || + !tool.UseTool(user, Owner, ToolQuality.Anchoring)) + { + return false; + } + } + + return true; + } + + /// + /// Tries to anchor the owner of this component. + /// + /// The entity doing the anchoring + /// The tool being used, if any + /// Whether or not to ignore valid tool checks + /// true if anchored, false otherwise + public bool TryAnchor(IEntity user, IEntity? utilizing = null, bool force = false) + { + if (!Valid(user, utilizing, out var physics, force)) + { + return false; + } + + physics.Anchored = true; + + return true; + } + + /// + /// Tries to unanchor the owner of this component. + /// + /// The entity doing the unanchoring + /// The tool being used, if any + /// Whether or not to ignore valid tool checks + /// true if unanchored, false otherwise + public bool TryUnAnchor(IEntity user, IEntity? utilizing = null, bool force = false) + { + if (!Valid(user, utilizing, out var physics, force)) + { + return false; + } + + physics.Anchored = false; + + return true; + } + + /// + /// Tries to toggle the anchored status of this component's owner. + /// + /// The entity doing the unanchoring + /// The tool being used, if any + /// Whether or not to ignore valid tool checks + /// true if toggled, false otherwise + private bool TryToggleAnchor(IEntity user, IEntity? utilizing = null, bool force = false) + { + if (!Owner.TryGetComponent(out ICollidableComponent collidable)) + { + return false; + } + + return collidable.Anchored ? + TryUnAnchor(user, utilizing, force) : + TryAnchor(user, utilizing, force); + } + public override void Initialize() { base.Initialize(); Owner.EnsureComponent(); } - public bool InteractUsing(InteractUsingEventArgs eventArgs) + bool IInteractUsing.InteractUsing(InteractUsingEventArgs eventArgs) { - if (!Owner.TryGetComponent(out IPhysicsComponent physics) - || !eventArgs.Using.TryGetComponent(out ToolComponent tool)) - return false; - - if (!tool.UseTool(eventArgs.User, Owner, ToolQuality.Anchoring)) - return false; - - physics.Anchored = !physics.Anchored; - - return true; + return TryToggleAnchor(eventArgs.User, eventArgs.Using); } } } diff --git a/Content.Server/GameObjects/Components/Buckle/BuckleComponent.cs b/Content.Server/GameObjects/Components/Buckle/BuckleComponent.cs index 61f5db1fe5..87bf2ca6ab 100644 --- a/Content.Server/GameObjects/Components/Buckle/BuckleComponent.cs +++ b/Content.Server/GameObjects/Components/Buckle/BuckleComponent.cs @@ -1,5 +1,6 @@ #nullable enable using System; +using System.Diagnostics.CodeAnalysis; using Content.Server.GameObjects.Components.GUI; using Content.Server.GameObjects.Components.Mobs; using Content.Server.GameObjects.Components.Strap; @@ -159,19 +160,10 @@ namespace Content.Server.GameObjects.Components.Buckle } } - /// - /// Tries to make an entity buckle the owner of this component to another. - /// - /// - /// The entity buckling the owner of this component, can be the owner itself. - /// - /// The entity to buckle the owner of this component to. - /// - /// true if the owner was buckled, otherwise false even if the owner was - /// previously already buckled. - /// - public bool TryBuckle(IEntity user, IEntity to) + private bool CanBuckle(IEntity user, IEntity to, [MaybeNullWhen(false)] out StrapComponent strap) { + strap = null; + if (user == null || user == to) { return false; @@ -181,22 +173,25 @@ namespace Content.Server.GameObjects.Components.Buckle { _notifyManager.PopupMessage(user, user, Loc.GetString("You can't do that!")); + return false; } - if (!to.TryGetComponent(out StrapComponent strap)) + if (!to.TryGetComponent(out strap)) { _notifyManager.PopupMessage(Owner, user, Loc.GetString(Owner == user ? "You can't buckle yourself there!" : "You can't buckle {0:them} there!", Owner)); + return false; } var ownerPosition = Owner.Transform.MapPosition; var strapPosition = strap.Owner.Transform.MapPosition; var interaction = EntitySystem.Get(); - bool Ignored(IEntity entity) => entity == Owner || entity == user || entity == strap.Owner; + var component = strap; + bool Ignored(IEntity entity) => entity == Owner || entity == user || entity == component.Owner; if (!interaction.InRangeUnobstructed(ownerPosition, strapPosition, _range, predicate: Ignored)) { @@ -213,8 +208,8 @@ namespace Content.Server.GameObjects.Components.Buckle if (!ContainerHelpers.TryGetContainer(strap.Owner, out var strapContainer) || ownerContainer != strapContainer) { - _notifyManager.PopupMessage(strap.Owner, user, - Loc.GetString("You can't reach there!")); + _notifyManager.PopupMessage(strap.Owner, user, Loc.GetString("You can't reach there!")); + return false; } } @@ -223,6 +218,7 @@ namespace Content.Server.GameObjects.Components.Buckle { _notifyManager.PopupMessage(user, user, Loc.GetString("You don't have hands!")); + return false; } @@ -232,6 +228,7 @@ namespace Content.Server.GameObjects.Components.Buckle Loc.GetString(Owner == user ? "You are already buckled in!" : "{0:They} are already buckled in!", Owner)); + return false; } @@ -244,6 +241,7 @@ namespace Content.Server.GameObjects.Components.Buckle Loc.GetString(Owner == user ? "You can't buckle yourself there!" : "You can't buckle {0:them} there!", Owner)); + return false; } @@ -256,6 +254,28 @@ namespace Content.Server.GameObjects.Components.Buckle Loc.GetString(Owner == user ? "You can't fit there!" : "{0:They} can't fit there!", Owner)); + + return false; + } + + return true; + } + + /// + /// Tries to make an entity buckle the owner of this component to another. + /// + /// + /// The entity buckling the owner of this component, can be the owner itself. + /// + /// The entity to buckle the owner of this component to. + /// + /// true if the owner was buckled, otherwise false even if the owner was + /// previously already buckled. + /// + public bool TryBuckle(IEntity user, IEntity to) + { + if (!CanBuckle(user, to, out var strap)) + { return false; } @@ -545,6 +565,11 @@ namespace Content.Server.GameObjects.Components.Buckle return TryUnbuckle(eventArgs.User); } + bool IDragDrop.CanDragDrop(DragDropEventArgs eventArgs) + { + return eventArgs.Target.HasComponent(); + } + bool IDragDrop.DragDrop(DragDropEventArgs eventArgs) { return TryBuckle(eventArgs.User, eventArgs.Target); diff --git a/Content.Server/GameObjects/Components/Conveyor/ConveyorComponent.cs b/Content.Server/GameObjects/Components/Conveyor/ConveyorComponent.cs new file mode 100644 index 0000000000..bb988930d0 --- /dev/null +++ b/Content.Server/GameObjects/Components/Conveyor/ConveyorComponent.cs @@ -0,0 +1,257 @@ +#nullable enable +using System.Collections.Generic; +using System.Linq; +using Content.Server.GameObjects.Components.Interactable; +using Content.Server.GameObjects.Components.Power.ApcNetComponents; +using Content.Server.GameObjects.EntitySystems; +using Content.Shared.GameObjects.Components.Conveyor; +using Content.Shared.GameObjects.Components.Interactable; +using Content.Shared.Interfaces.GameObjects.Components; +using Content.Shared.Physics; +using Robust.Server.GameObjects; +using Robust.Shared.Containers; +using Robust.Shared.GameObjects; +using Robust.Shared.GameObjects.Components; +using Robust.Shared.GameObjects.Components.Map; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Interfaces.Random; +using Robust.Shared.IoC; +using Robust.Shared.Maths; +using Robust.Shared.Random; +using Robust.Shared.Serialization; +using Robust.Shared.ViewVariables; + +namespace Content.Server.GameObjects.Components.Conveyor +{ + [RegisterComponent] + public class ConveyorComponent : Component, IInteractUsing + { +#pragma warning disable 649 + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly IRobustRandom _random = default!; +#pragma warning restore 649 + + public override string Name => "Conveyor"; + + /// + /// The angle to move entities by in relation to the owner's rotation. + /// + [ViewVariables] + private Angle _angle; + + /// + /// The amount of units to move the entity by per second. + /// + [ViewVariables(VVAccess.ReadWrite)] + private float _speed; + + private ConveyorState _state; + + /// + /// The current state of this conveyor + /// + [ViewVariables(VVAccess.ReadWrite)] + private ConveyorState State + { + get => _state; + set + { + _state = value; + + if (!Owner.TryGetComponent(out AppearanceComponent appearance)) + { + return; + } + + appearance.SetData(ConveyorVisuals.State, value); + } + } + + private ConveyorGroup? _group = new ConveyorGroup(); + + /// + /// Calculates the angle in which entities on top of this conveyor + /// belt are pushed in + /// + /// + /// The angle when taking into account if the conveyor is reversed + /// + private Angle GetAngle() + { + var adjustment = _state == ConveyorState.Reversed ? MathHelper.Pi : 0; + var radians = MathHelper.DegreesToRadians(_angle); + + return new Angle(Owner.Transform.LocalRotation.Theta + radians + adjustment); + } + + private bool CanRun() + { + if (State == ConveyorState.Off) + { + return false; + } + + if (Owner.TryGetComponent(out PowerReceiverComponent receiver) && + !receiver.Powered) + { + return false; + } + + if (Owner.HasComponent()) + { + return false; + } + + return true; + } + + private bool CanMove(IEntity entity) + { + if (entity == Owner) + { + return false; + } + + if (!entity.TryGetComponent(out ICollidableComponent collidable) || + collidable.Anchored) + { + return false; + } + + if (entity.HasComponent()) + { + return false; + } + + if (entity.HasComponent()) + { + return false; + } + + if (ContainerHelpers.IsInContainer(entity)) + { + return false; + } + + return true; + } + + public void Update() + { + if (!CanRun()) + { + return; + } + + var intersecting = _entityManager.GetEntitiesIntersecting(Owner, true); + var direction = GetAngle().ToVec(); + + foreach (var entity in intersecting) + { + if (!CanMove(entity)) + { + continue; + } + + if (entity.TryGetComponent(out ICollidableComponent collidable)) + { + var controller = collidable.EnsureController(); + controller.Move(direction, _speed); + } + } + } + + private bool ToolUsed(IEntity user, ToolComponent tool) + { + if (!Owner.HasComponent() && + tool.UseTool(user, Owner, ToolQuality.Prying)) + { + State = ConveyorState.Loose; + + Owner.AddComponent(); + _group?.RemoveConveyor(this); + Owner.Transform.WorldPosition += (_random.NextFloat() * 0.4f - 0.2f, _random.NextFloat() * 0.4f - 0.2f); + + return true; + } + + return false; + } + + public void Sync(ConveyorGroup group) + { + _group = group; + + if (State == ConveyorState.Loose) + { + return; + } + + State = group.State == ConveyorState.Loose + ? ConveyorState.Off + : group.State; + } + + /// + /// Disconnects this conveyor from any switch. + /// + private void Disconnect() + { + _group?.RemoveConveyor(this); + _group = null; + State = ConveyorState.Off; + } + + public override void ExposeData(ObjectSerializer serializer) + { + base.ExposeData(serializer); + + serializer.DataReadWriteFunction( + "switches", + new List(), + switches => + { + if (switches == null) + { + return; + } + + foreach (var @switch in switches) + { + if (!@switch.TryGetComponent(out ConveyorSwitchComponent component)) + { + continue; + } + + component.Connect(this); + } + }, + () => _group?.Switches.Select(@switch => @switch.Owner)); + + serializer.DataField(ref _angle, "angle", 0); + serializer.DataField(ref _speed, "speed", 2); + } + + public override void OnRemove() + { + base.OnRemove(); + Disconnect(); + } + + bool IInteractUsing.InteractUsing(InteractUsingEventArgs eventArgs) + { + if (eventArgs.Using.TryGetComponent(out ConveyorSwitchComponent conveyorSwitch)) + { + conveyorSwitch.Connect(this, eventArgs.User); + return true; + } + + if (eventArgs.Using.TryGetComponent(out ToolComponent tool)) + { + return ToolUsed(eventArgs.User, tool); + } + + return false; + } + } +} diff --git a/Content.Server/GameObjects/Components/Conveyor/ConveyorSwitchComponent.cs b/Content.Server/GameObjects/Components/Conveyor/ConveyorSwitchComponent.cs new file mode 100644 index 0000000000..951b8d9a9e --- /dev/null +++ b/Content.Server/GameObjects/Components/Conveyor/ConveyorSwitchComponent.cs @@ -0,0 +1,208 @@ +#nullable enable +using System; +using System.Collections.Generic; +using System.Linq; +using Content.Server.GameObjects.EntitySystems; +using Content.Shared.GameObjects.Components.Conveyor; +using Content.Shared.Interfaces; +using Content.Shared.Interfaces.GameObjects.Components; +using Robust.Server.GameObjects; +using Robust.Shared.GameObjects; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Localization; +using Robust.Shared.Serialization; +using Robust.Shared.ViewVariables; + +namespace Content.Server.GameObjects.Components.Conveyor +{ + [RegisterComponent] + public class ConveyorSwitchComponent : Component, IInteractHand, IInteractUsing, IActivate + { + public override string Name => "ConveyorSwitch"; + + private ConveyorState _state; + + /// + /// The current state of this switch + /// + [ViewVariables] + public ConveyorState State + { + get => _state; + private set + { + _state = value; + + if (Owner.TryGetComponent(out AppearanceComponent appearance)) + { + appearance.SetData(ConveyorVisuals.State, value); + } + } + } + + private ConveyorGroup? _group; + + public void Sync(ConveyorGroup group) + { + _group = group; + + if (State == ConveyorState.Loose) + { + return; + } + + State = group.State == ConveyorState.Loose + ? ConveyorState.Off + : group.State; + } + + /// + /// Disconnects this switch from any conveyors and other switches. + /// + private void Disconnect() + { + _group?.RemoveSwitch(this); + _group = null; + State = ConveyorState.Off; + } + + /// + /// Connects a conveyor to this switch. + /// + /// The conveyor to be connected. + /// The user doing the connecting, if any. + public void Connect(ConveyorComponent conveyor, IEntity? user = null) + { + if (_group == null) + { + _group = new ConveyorGroup(); + _group.AddSwitch(this); + } + + _group.AddConveyor(conveyor); + user?.PopupMessage(user, Loc.GetString("Conveyor linked.")); + } + + /// + /// Cycles this conveyor switch to its next valid state + /// + /// + /// true if the switch can be operated and the state could be cycled, + /// false otherwise + /// + private bool NextState() + { + State = State switch + { + ConveyorState.Off => ConveyorState.Forward, + ConveyorState.Forward => ConveyorState.Reversed, + ConveyorState.Reversed => ConveyorState.Off, + ConveyorState.Loose => ConveyorState.Off, + _ => throw new ArgumentOutOfRangeException() + }; + + _group?.SetState(this); + + return true; + } + + /// + /// Moves this switch to the group of another. + /// + /// The conveyor switch to synchronize with. + /// The user doing the syncing, if any. + private void SyncWith(ConveyorSwitchComponent other, IEntity? user = null) + { + other._group?.AddSwitch(this); + + if (user == null) + { + return; + } + + Owner.PopupMessage(user, Loc.GetString("Switches synchronized.")); + } + + public override void ExposeData(ObjectSerializer serializer) + { + base.ExposeData(serializer); + + serializer.DataReadWriteFunction( + "conveyors", + new List(), + conveyors => + { + if (conveyors == null) + { + return; + } + + foreach (var conveyor in conveyors) + { + if (!conveyor.TryGetComponent(out ConveyorComponent component)) + { + continue; + } + + Connect(component); + } + }, + () => _group?.Conveyors.Select(conveyor => conveyor.Owner)); + + serializer.DataReadWriteFunction( + "switches", + new List(), + switches => + { + if (switches == null) + { + return; + } + + foreach (var @switch in switches) + { + if (!@switch.TryGetComponent(out ConveyorSwitchComponent component)) + { + continue; + } + + component.SyncWith(this); + } + }, + () => _group?.Switches.Select(@switch => @switch.Owner)); + } + + public override void OnRemove() + { + base.OnRemove(); + Disconnect(); + } + + bool IInteractHand.InteractHand(InteractHandEventArgs eventArgs) + { + return NextState(); + } + + bool IInteractUsing.InteractUsing(InteractUsingEventArgs eventArgs) + { + if (eventArgs.Using.TryGetComponent(out ConveyorComponent conveyor)) + { + Connect(conveyor, eventArgs.User); + return true; + } + + if (eventArgs.Using.TryGetComponent(out ConveyorSwitchComponent otherSwitch)) + { + SyncWith(otherSwitch, eventArgs.User); + return true; + } + + return true; + } + + void IActivate.Activate(ActivateEventArgs eventArgs) + { + NextState(); + } + } +} diff --git a/Content.Server/GameObjects/Components/Disposal/DisposalBendComponent.cs b/Content.Server/GameObjects/Components/Disposal/DisposalBendComponent.cs new file mode 100644 index 0000000000..fbf3ecc73d --- /dev/null +++ b/Content.Server/GameObjects/Components/Disposal/DisposalBendComponent.cs @@ -0,0 +1,44 @@ +using System.Collections.Generic; +using Robust.Shared.GameObjects; +using Robust.Shared.Maths; +using Robust.Shared.Serialization; + +namespace Content.Server.GameObjects.Components.Disposal +{ + [RegisterComponent] + [ComponentReference(typeof(IDisposalTubeComponent))] + public class DisposalBendComponent : DisposalTubeComponent + { + private int _sideDegrees; + + public override string Name => "DisposalBend"; + + protected override Direction[] ConnectableDirections() + { + var direction = Owner.Transform.LocalRotation; + var side = new Angle(MathHelper.DegreesToRadians(direction.Degrees + _sideDegrees)); + + return new[] {direction.GetDir(), side.GetDir()}; + } + + public override Direction NextDirection(DisposalHolderComponent holder) + { + var directions = ConnectableDirections(); + var previousTube = holder.PreviousTube; + + if (previousTube == null || !Connected.ContainsValue(previousTube)) + { + return directions[0]; + } + + var first = Connected.GetValueOrDefault(directions[0]); + return previousTube == first ? directions[1] : directions[0]; + } + + public override void ExposeData(ObjectSerializer serializer) + { + base.ExposeData(serializer); + serializer.DataField(ref _sideDegrees, "sideDegrees", -90); + } + } +} diff --git a/Content.Server/GameObjects/Components/Disposal/DisposalCommands.cs b/Content.Server/GameObjects/Components/Disposal/DisposalCommands.cs new file mode 100644 index 0000000000..51020360a7 --- /dev/null +++ b/Content.Server/GameObjects/Components/Disposal/DisposalCommands.cs @@ -0,0 +1,54 @@ +#nullable enable +using Content.Server.Interfaces; +using Robust.Server.Interfaces.Console; +using Robust.Server.Interfaces.Player; +using Robust.Shared.GameObjects; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.IoC; +using Robust.Shared.Localization; + +namespace Content.Server.GameObjects.Components.Disposal +{ + public class TubeConnectionsCommand : IClientCommand + { + public string Command => "tubeconnections"; + public string Description => Loc.GetString("Shows all the directions that a tube can connect in."); + public string Help => $"Usage: {Command} "; + + public void Execute(IConsoleShell shell, IPlayerSession? player, string[] args) + { + if (player?.AttachedEntity == null) + { + shell.SendText(player, Loc.GetString("Only players can use this command")); + return; + } + + if (args.Length < 1) + { + shell.SendText(player, Help); + return; + } + + if (!EntityUid.TryParse(args[0], out var id)) + { + shell.SendText(player, Loc.GetString("{0} isn't a valid entity uid", args[0])); + return; + } + + var entityManager = IoCManager.Resolve(); + if (!entityManager.TryGetEntity(id, out var entity)) + { + shell.SendText(player, Loc.GetString("No entity exists with uid {0}", id)); + return; + } + + if (!entity.TryGetComponent(out IDisposalTubeComponent tube)) + { + shell.SendText(player, Loc.GetString("Entity with uid {0} doesn't have a {1} component", id, nameof(IDisposalTubeComponent))); + return; + } + + tube.PopupDirections(player.AttachedEntity); + } + } +} diff --git a/Content.Server/GameObjects/Components/Disposal/DisposalEntryComponent.cs b/Content.Server/GameObjects/Components/Disposal/DisposalEntryComponent.cs new file mode 100644 index 0000000000..9835f339d3 --- /dev/null +++ b/Content.Server/GameObjects/Components/Disposal/DisposalEntryComponent.cs @@ -0,0 +1,51 @@ +using System.Collections.Generic; +using Robust.Shared.GameObjects; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Maths; + +namespace Content.Server.GameObjects.Components.Disposal +{ + [RegisterComponent] + [ComponentReference(typeof(IDisposalTubeComponent))] + public class DisposalEntryComponent : DisposalTubeComponent + { + private const string HolderPrototypeId = "DisposalHolder"; + + public override string Name => "DisposalEntry"; + + public bool TryInsert(IReadOnlyCollection entities) + { + var holder = Owner.EntityManager.SpawnEntity(HolderPrototypeId, Owner.Transform.MapPosition); + var holderComponent = holder.GetComponent(); + + foreach (var entity in entities) + { + holderComponent.TryInsert(entity); + } + + return TryInsert(holderComponent); + } + + public bool TryInsert(DisposalHolderComponent holder) + { + if (!Contents.Insert(holder.Owner)) + { + return false; + } + + holder.EnterTube(this); + + return true; + } + + protected override Direction[] ConnectableDirections() + { + return new[] {Owner.Transform.LocalRotation.GetDir()}; + } + + public override Direction NextDirection(DisposalHolderComponent holder) + { + return ConnectableDirections()[0]; + } + } +} diff --git a/Content.Server/GameObjects/Components/Disposal/DisposalHolderComponent.cs b/Content.Server/GameObjects/Components/Disposal/DisposalHolderComponent.cs new file mode 100644 index 0000000000..8099c291a0 --- /dev/null +++ b/Content.Server/GameObjects/Components/Disposal/DisposalHolderComponent.cs @@ -0,0 +1,150 @@ +#nullable enable +using System.Linq; +using Robust.Server.GameObjects.Components.Container; +using Robust.Shared.Containers; +using Robust.Shared.GameObjects; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Maths; +using Robust.Shared.ViewVariables; + +namespace Content.Server.GameObjects.Components.Disposal +{ + // TODO: Add gas + [RegisterComponent] + public class DisposalHolderComponent : Component + { + public override string Name => "DisposalHolder"; + + private Container _contents = null!; + + /// + /// The total amount of time that it will take for this entity to + /// be pushed to the next tube + /// + [ViewVariables] + private float StartingTime { get; set; } + + /// + /// Time left until the entity is pushed to the next tube + /// + [ViewVariables] + private float TimeLeft { get; set; } + + [ViewVariables] + public IDisposalTubeComponent? PreviousTube { get; set; } + + [ViewVariables] + public IDisposalTubeComponent? CurrentTube { get; private set; } + + [ViewVariables] + public IDisposalTubeComponent? NextTube { get; set; } + + private bool CanInsert(IEntity entity) + { + if (!_contents.CanInsert(entity)) + { + return false; + } + + return entity.HasComponent() || + entity.HasComponent(); + } + + public bool TryInsert(IEntity entity) + { + if (!CanInsert(entity) || !_contents.Insert(entity)) + { + return false; + } + + return true; + } + + public void EnterTube(IDisposalTubeComponent tube) + { + if (CurrentTube != null) + { + PreviousTube = CurrentTube; + } + + Owner.Transform.GridPosition = tube.Owner.Transform.GridPosition; + CurrentTube = tube; + NextTube = tube.NextTube(this); + StartingTime = 0.1f; + TimeLeft = 0.1f; + } + + public void ExitDisposals() + { + PreviousTube = null; + CurrentTube = null; + NextTube = null; + StartingTime = 0; + TimeLeft = 0; + + foreach (var entity in _contents.ContainedEntities.ToArray()) + { + _contents.ForceRemove(entity); + + if (entity.Transform.Parent == Owner.Transform) + { + ContainerHelpers.AttachParentToContainerOrGrid(entity.Transform); + } + } + + Owner.Delete(); + } + + public void Update(float frameTime) + { + while (frameTime > 0) + { + var time = frameTime; + if (time > TimeLeft) + { + time = TimeLeft; + } + + TimeLeft -= time; + frameTime -= time; + + if (CurrentTube == null) + { + ExitDisposals(); + break; + } + + if (TimeLeft > 0) + { + var progress = 1 - TimeLeft / StartingTime; + var origin = CurrentTube.Owner.Transform.WorldPosition; + var destination = CurrentTube.NextDirection(this).ToVec(); + var newPosition = destination * progress; + + Owner.Transform.WorldPosition = origin + newPosition; + + continue; + } + + if (NextTube == null || !CurrentTube.TransferTo(this, NextTube)) + { + CurrentTube.Remove(this); + break; + } + } + } + + public override void OnRemove() + { + base.OnRemove(); + ExitDisposals(); + } + + public override void Initialize() + { + base.Initialize(); + + _contents = ContainerManagerComponent.Ensure(nameof(DisposalHolderComponent), Owner); + } + } +} diff --git a/Content.Server/GameObjects/Components/Disposal/DisposalJunctionComponent.cs b/Content.Server/GameObjects/Components/Disposal/DisposalJunctionComponent.cs new file mode 100644 index 0000000000..ecb818abfd --- /dev/null +++ b/Content.Server/GameObjects/Components/Disposal/DisposalJunctionComponent.cs @@ -0,0 +1,57 @@ +using System.Collections.Generic; +using System.Linq; +using Robust.Shared.GameObjects; +using Robust.Shared.Interfaces.Random; +using Robust.Shared.IoC; +using Robust.Shared.Maths; +using Robust.Shared.Random; +using Robust.Shared.Serialization; +using Robust.Shared.ViewVariables; + +namespace Content.Server.GameObjects.Components.Disposal +{ + [RegisterComponent] + [ComponentReference(typeof(IDisposalTubeComponent))] + public class DisposalJunctionComponent : DisposalTubeComponent + { +#pragma warning disable 649 + [Dependency] private readonly IRobustRandom _random; +#pragma warning restore 649 + + /// + /// The angles to connect to. + /// + [ViewVariables] + private List _degrees; + + public override string Name => "DisposalJunction"; + + protected override Direction[] ConnectableDirections() + { + var direction = Owner.Transform.LocalRotation; + + return _degrees.Select(degree => new Angle(degree.Theta + direction.Theta).GetDir()).ToArray(); + } + + public override Direction NextDirection(DisposalHolderComponent holder) + { + var next = Owner.Transform.LocalRotation; + var directions = ConnectableDirections().Skip(1).ToArray(); + + if (Connected.TryGetValue(next.GetDir(), out var forwardTube) && + holder.PreviousTube == forwardTube) + { + return _random.Pick(directions); + } + + return next.GetDir(); + } + + public override void ExposeData(ObjectSerializer serializer) + { + base.ExposeData(serializer); + + serializer.DataField(ref _degrees, "degrees", null); + } + } +} diff --git a/Content.Server/GameObjects/Components/Disposal/DisposalTransitComponent.cs b/Content.Server/GameObjects/Components/Disposal/DisposalTransitComponent.cs new file mode 100644 index 0000000000..e25610c28a --- /dev/null +++ b/Content.Server/GameObjects/Components/Disposal/DisposalTransitComponent.cs @@ -0,0 +1,38 @@ +using System; +using System.Collections.Generic; +using Robust.Shared.GameObjects; +using Robust.Shared.Maths; + +namespace Content.Server.GameObjects.Components.Disposal +{ + // TODO: Different types of tubes eject in random direction with no exit point + [RegisterComponent] + [ComponentReference(typeof(IDisposalTubeComponent))] + public class DisposalTransitComponent : DisposalTubeComponent + { + public override string Name => "DisposalTransit"; + + protected override Direction[] ConnectableDirections() + { + var rotation = Owner.Transform.LocalRotation; + var opposite = new Angle(rotation.Theta + Math.PI); + + return new[] {rotation.GetDir(), opposite.GetDir()}; + } + + public override Direction NextDirection(DisposalHolderComponent holder) + { + var directions = ConnectableDirections(); + var previousTube = holder.PreviousTube; + var forward = directions[0]; + if (previousTube == null || !Connected.ContainsValue(previousTube)) + { + return forward; + } + + var forwardTube = Connected.GetValueOrDefault(forward); + var backward = directions[1]; + return previousTube == forwardTube ? backward : forward; + } + } +} diff --git a/Content.Server/GameObjects/Components/Disposal/DisposalTubeComponent.cs b/Content.Server/GameObjects/Components/Disposal/DisposalTubeComponent.cs new file mode 100644 index 0000000000..048692b5f2 --- /dev/null +++ b/Content.Server/GameObjects/Components/Disposal/DisposalTubeComponent.cs @@ -0,0 +1,380 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using Content.Server.Interfaces.GameObjects.Components.Interaction; +using Content.Shared.GameObjects; +using Content.Shared.GameObjects.Components.Disposal; +using Content.Shared.Interfaces; +using Robust.Server.Console; +using Robust.Server.GameObjects; +using Robust.Server.GameObjects.Components.Container; +using Robust.Server.GameObjects.EntitySystems; +using Robust.Server.Interfaces.GameObjects; +using Robust.Shared.GameObjects; +using Robust.Shared.GameObjects.Components; +using Robust.Shared.GameObjects.Components.Transform; +using Robust.Shared.GameObjects.Systems; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Interfaces.Timing; +using Robust.Shared.IoC; +using Robust.Shared.Localization; +using Robust.Shared.Maths; +using Robust.Shared.Serialization; +using Robust.Shared.ViewVariables; + +namespace Content.Server.GameObjects.Components.Disposal +{ + // TODO: Make unanchored pipes pullable + public abstract class DisposalTubeComponent : Component, IDisposalTubeComponent, IBreakAct + { + [Dependency] private readonly IGameTiming _gameTiming = default!; + + private static readonly TimeSpan ClangDelay = TimeSpan.FromSeconds(0.5); + private TimeSpan _lastClang; + + private bool _connected; + private bool _broken; + private string _clangSound; + + /// + /// Container of entities that are currently inside this tube + /// + [ViewVariables] + public Container Contents { get; private set; } + + /// + /// Dictionary of tubes connecting to this one mapped by their direction + /// + [ViewVariables] + protected Dictionary Connected { get; } = + new Dictionary(); + + [ViewVariables] + private bool Anchored => + !Owner.TryGetComponent(out CollidableComponent collidable) || + collidable.Anchored; + + /// + /// The directions that this tube can connect to others from + /// + /// a new array of the directions + protected abstract Direction[] ConnectableDirections(); + + public abstract Direction NextDirection(DisposalHolderComponent holder); + + public virtual Vector2 ExitVector(DisposalHolderComponent holder) + { + return NextDirection(holder).ToVec(); + } + + public IDisposalTubeComponent NextTube(DisposalHolderComponent holder) + { + var nextDirection = NextDirection(holder); + return Connected.GetValueOrDefault(nextDirection); + } + + public bool Remove(DisposalHolderComponent holder) + { + var removed = Contents.Remove(holder.Owner); + holder.ExitDisposals(); + return removed; + } + + public bool TransferTo(DisposalHolderComponent holder, IDisposalTubeComponent to) + { + var position = holder.Owner.Transform.LocalPosition; + if (!to.Contents.Insert(holder.Owner)) + { + return false; + } + + holder.Owner.Transform.LocalPosition = position; + + Contents.Remove(holder.Owner); + holder.EnterTube(to); + + return true; + } + + // TODO: Make disposal pipes extend the grid + private void Connect() + { + if (_connected || _broken) + { + return; + } + + _connected = true; + + var snapGrid = Owner.GetComponent(); + + foreach (var direction in ConnectableDirections()) + { + var tube = snapGrid + .GetInDir(direction) + .Select(x => x.TryGetComponent(out IDisposalTubeComponent c) ? c : null) + .FirstOrDefault(x => x != null && x != this); + + if (tube == null) + { + continue; + } + + var oppositeDirection = new Angle(direction.ToAngle().Theta + Math.PI).GetDir(); + if (!tube.AdjacentConnected(oppositeDirection, this)) + { + continue; + } + + Connected.Add(direction, tube); + } + } + + public bool AdjacentConnected(Direction direction, IDisposalTubeComponent tube) + { + if (_broken) + { + return false; + } + + if (Connected.ContainsKey(direction) || + !ConnectableDirections().Contains(direction)) + { + return false; + } + + Connected.Add(direction, tube); + return true; + } + + private void Disconnect() + { + if (!_connected) + { + return; + } + + _connected = false; + + foreach (var entity in Contents.ContainedEntities) + { + if (!entity.TryGetComponent(out DisposalHolderComponent holder)) + { + continue; + } + + holder.ExitDisposals(); + } + + foreach (var connected in Connected.Values) + { + connected.AdjacentDisconnected(this); + } + + Connected.Clear(); + } + + public void AdjacentDisconnected(IDisposalTubeComponent adjacent) + { + foreach (var pair in Connected) + { + foreach (var entity in Contents.ContainedEntities) + { + if (!entity.TryGetComponent(out DisposalHolderComponent holder)) + { + continue; + } + + if (holder.PreviousTube == adjacent) + { + holder.PreviousTube = null; + } + + if (holder.NextTube == adjacent) + { + holder.NextTube = null; + } + } + + if (pair.Value == adjacent) + { + Connected.Remove(pair.Key); + } + } + } + + public void MoveEvent(MoveEvent moveEvent) + { + if (!_connected) + { + return; + } + + foreach (var tube in Connected.Values) + { + var distance = (tube.Owner.Transform.WorldPosition - Owner.Transform.WorldPosition).Length; + + // Disconnect distance threshold + if (distance < 1.25) + { + continue; + } + + AdjacentDisconnected(tube); + tube.AdjacentDisconnected(this); + } + } + + public void PopupDirections(IEntity entity) + { + var directions = string.Join(", ", ConnectableDirections()); + + Owner.PopupMessage(entity, Loc.GetString("{0}", directions)); + } + + private void UpdateVisualState() + { + if (!Owner.TryGetComponent(out AppearanceComponent appearance)) + { + return; + } + + var state = _broken + ? DisposalTubeVisualState.Broken + : Anchored + ? DisposalTubeVisualState.Anchored + : DisposalTubeVisualState.Free; + + appearance.SetData(DisposalTubeVisuals.VisualState, state); + } + + private void AnchoredChanged() + { + if (!Owner.TryGetComponent(out CollidableComponent collidable)) + { + return; + } + + if (collidable.Anchored) + { + OnAnchor(); + } + else + { + OnUnAnchor(); + } + } + + private void OnAnchor() + { + Connect(); + UpdateVisualState(); + } + + private void OnUnAnchor() + { + Disconnect(); + UpdateVisualState(); + } + + public override void ExposeData(ObjectSerializer serializer) + { + base.ExposeData(serializer); + serializer.DataField(ref _clangSound, "clangSound", "/Audio/effects/clang.ogg"); + } + + public override void Initialize() + { + base.Initialize(); + + Contents = ContainerManagerComponent.Ensure(Name, Owner); + Owner.EnsureComponent(); + + var collidable = Owner.EnsureComponent(); + + collidable.AnchoredChanged += AnchoredChanged; + } + + protected override void Startup() + { + base.Startup(); + + if (!Owner.GetComponent().Anchored) + { + return; + } + + Connect(); + UpdateVisualState(); + } + + public override void OnRemove() + { + base.OnRemove(); + + var collidable = Owner.EnsureComponent(); + collidable.AnchoredChanged -= AnchoredChanged; + + Disconnect(); + } + + public override void HandleMessage(ComponentMessage message, IComponent component) + { + base.HandleMessage(message, component); + + switch (message) + { + case RelayMovementEntityMessage _: + if (_gameTiming.CurTime < _lastClang + ClangDelay) + { + break; + } + + _lastClang = _gameTiming.CurTime; + EntitySystem.Get().PlayAtCoords(_clangSound, Owner.Transform.GridPosition); + break; + } + } + + void IBreakAct.OnBreak(BreakageEventArgs eventArgs) + { + _broken = true; // TODO: Repair + Disconnect(); + UpdateVisualState(); + } + + [Verb] + private sealed class TubeDirectionsVerb : Verb + { + protected override void GetData(IEntity user, IDisposalTubeComponent component, VerbData data) + { + data.Text = "Tube Directions"; + data.CategoryData = VerbCategories.Debug; + data.Visibility = VerbVisibility.Invisible; + + var groupController = IoCManager.Resolve(); + + if (user.TryGetComponent(out var player)) + { + if (groupController.CanCommand(player.playerSession, "tubeconnections")) + { + data.Visibility = VerbVisibility.Visible; + } + } + } + + protected override void Activate(IEntity user, IDisposalTubeComponent component) + { + var groupController = IoCManager.Resolve(); + + if (user.TryGetComponent(out var player)) + { + if (groupController.CanCommand(player.playerSession, "tubeconnections")) + { + component.PopupDirections(user); + } + } + } + } + } +} diff --git a/Content.Server/GameObjects/Components/Disposal/DisposalUnitComponent.cs b/Content.Server/GameObjects/Components/Disposal/DisposalUnitComponent.cs new file mode 100644 index 0000000000..7e82224a34 --- /dev/null +++ b/Content.Server/GameObjects/Components/Disposal/DisposalUnitComponent.cs @@ -0,0 +1,563 @@ +#nullable enable +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading; +using Content.Server.GameObjects.Components.GUI; +using Content.Server.GameObjects.Components.Power.ApcNetComponents; +using Content.Server.Interfaces; +using Content.Server.Interfaces.GameObjects.Components.Items; +using Content.Shared.GameObjects; +using Content.Shared.GameObjects.Components.Disposal; +using Content.Shared.GameObjects.EntitySystems; +using Content.Shared.Interfaces.GameObjects.Components; +using Robust.Server.GameObjects; +using Robust.Server.GameObjects.Components.Container; +using Robust.Server.GameObjects.Components.UserInterface; +using Robust.Server.GameObjects.EntitySystems; +using Robust.Server.Interfaces.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Containers; +using Robust.Shared.GameObjects; +using Robust.Shared.GameObjects.Components; +using Robust.Shared.GameObjects.Components.Transform; +using Robust.Shared.GameObjects.Systems; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Interfaces.Timing; +using Robust.Shared.IoC; +using Robust.Shared.Localization; +using Robust.Shared.Serialization; +using Robust.Shared.ViewVariables; +using Timer = Robust.Shared.Timers.Timer; + +namespace Content.Server.GameObjects.Components.Disposal +{ + [RegisterComponent] + [ComponentReference(typeof(IInteractUsing))] + public class DisposalUnitComponent : SharedDisposalUnitComponent, IInteractHand, IInteractUsing, IDragDropOn + { +#pragma warning disable 649 + [Dependency] private readonly IServerNotifyManager _notifyManager = default!; +#pragma warning restore 649 + + public override string Name => "DisposalUnit"; + + /// + /// The delay for an entity trying to move out of this unit. + /// + private static readonly TimeSpan ExitAttemptDelay = TimeSpan.FromSeconds(0.5); + + /// + /// Last time that an entity tried to exit this disposal unit. + /// + private TimeSpan _lastExitAttempt; + + /// + /// The current pressure of this disposal unit. + /// Prevents it from flushing if it is not equal to or bigger than 1. + /// + private float _pressure; + + private bool _engaged; + + [ViewVariables] + private TimeSpan _engageTime; + + [ViewVariables] + private TimeSpan _automaticEngageTime; + + /// + /// Token used to cancel the automatic engage of a disposal unit + /// after an entity enters it. + /// + private CancellationTokenSource? _automaticEngageToken; + + /// + /// Container of entities inside this disposal unit. + /// + [ViewVariables] + private Container _container = default!; + + [ViewVariables] public IReadOnlyList ContainedEntities => _container.ContainedEntities; + + [ViewVariables] + private BoundUserInterface _userInterface = default!; + + [ViewVariables] + public bool Powered => + !Owner.TryGetComponent(out PowerReceiverComponent receiver) || + receiver.Powered; + + [ViewVariables] + public bool Anchored => + !Owner.TryGetComponent(out CollidableComponent collidable) || + collidable.Anchored; + + [ViewVariables] + private State State => _pressure >= 1 ? State.Ready : State.Pressurizing; + + [ViewVariables] + private bool Engaged + { + get => _engaged; + set + { + var oldEngaged = _engaged; + _engaged = value; + + if (oldEngaged == value) + { + return; + } + + UpdateVisualState(); + } + } + + public bool CanInsert(IEntity entity) + { + if (!Powered || !Anchored) + { + return false; + } + + if (!entity.HasComponent() && + !entity.HasComponent()) + { + return false; + } + + return _container.CanInsert(entity); + } + + private void AfterInsert(IEntity entity) + { + _automaticEngageToken = new CancellationTokenSource(); + + Timer.Spawn(_automaticEngageTime, () => TryFlush(), _automaticEngageToken.Token); + + if (entity.TryGetComponent(out IActorComponent actor)) + { + _userInterface.Close(actor.playerSession); + } + + UpdateVisualState(); + } + + public bool TryInsert(IEntity entity) + { + if (!CanInsert(entity) || !_container.Insert(entity)) + { + return false; + } + + AfterInsert(entity); + + return true; + } + + private bool TryDrop(IEntity user, IEntity entity) + { + if (!user.TryGetComponent(out HandsComponent hands)) + { + return false; + } + + if (!CanInsert(entity) || !hands.Drop(entity, _container)) + { + return false; + } + + AfterInsert(entity); + + return true; + } + + private void Remove(IEntity entity) + { + _container.Remove(entity); + + if (ContainedEntities.Count == 0) + { + _automaticEngageToken?.Cancel(); + _automaticEngageToken = null; + } + + UpdateVisualState(); + } + + private bool CanFlush() + { + return _pressure >= 1 && Powered && Anchored; + } + + public bool TryFlush() + { + if (!CanFlush()) + { + Engaged = true; + return false; + } + + var snapGrid = Owner.GetComponent(); + var entry = snapGrid + .GetLocal() + .FirstOrDefault(entity => entity.HasComponent()); + + if (entry == null) + { + return false; + } + + var entryComponent = entry.GetComponent(); + var entities = _container.ContainedEntities.ToList(); + foreach (var entity in _container.ContainedEntities.ToList()) + { + _container.Remove(entity); + } + + entryComponent.TryInsert(entities); + + _automaticEngageToken?.Cancel(); + _automaticEngageToken = null; + + _pressure = 0; + + Engaged = false; + + UpdateVisualState(true); + UpdateInterface(); + + return true; + } + + private void TryEjectContents() + { + foreach (var entity in _container.ContainedEntities.ToArray()) + { + Remove(entity); + } + } + + private void TogglePower() + { + if (!Owner.TryGetComponent(out PowerReceiverComponent receiver)) + { + return; + } + + receiver.PowerDisabled = !receiver.PowerDisabled; + UpdateInterface(); + } + + private DisposalUnitBoundUserInterfaceState GetInterfaceState() + { + return new DisposalUnitBoundUserInterfaceState(Owner.Name, Loc.GetString($"{State}"), _pressure, Powered); + } + + private void UpdateInterface() + { + var state = GetInterfaceState(); + _userInterface.SetState(state); + } + + private bool PlayerCanUse(IEntity player) + { + if (player == null) + { + return false; + } + + if (!ActionBlockerSystem.CanInteract(player) || + !ActionBlockerSystem.CanUse(player)) + { + return false; + } + + return true; + } + + private void OnUiReceiveMessage(ServerBoundUserInterfaceMessage obj) + { + if (obj.Session.AttachedEntity == null) + { + return; + } + + if (!PlayerCanUse(obj.Session.AttachedEntity)) + { + return; + } + + if (!(obj.Message is UiButtonPressedMessage message)) + { + return; + } + + switch (message.Button) + { + case UiButton.Eject: + TryEjectContents(); + break; + case UiButton.Engage: + TryFlush(); + break; + case UiButton.Power: + TogglePower(); + EntitySystem.Get().PlayFromEntity("/Audio/Machines/machine_switch.ogg", Owner, AudioParams.Default.WithVolume(-2f)); + + break; + default: + throw new ArgumentOutOfRangeException(); + } + } + + private void UpdateVisualState() + { + UpdateVisualState(false); + } + + private void UpdateVisualState(bool flush) + { + if (!Owner.TryGetComponent(out AppearanceComponent appearance)) + { + return; + } + + appearance.SetData(Visuals.Handle, Engaged + ? HandleState.Engaged + : HandleState.Normal); + + if (!Anchored) + { + appearance.SetData(Visuals.VisualState, VisualState.UnAnchored); + appearance.SetData(Visuals.Handle, HandleState.Normal); + appearance.SetData(Visuals.Light, LightState.Off); + return; + } + + if (flush) + { + appearance.SetData(Visuals.VisualState, VisualState.Flushing); + appearance.SetData(Visuals.Light, LightState.Off); + } + else + { + appearance.SetData(Visuals.VisualState, VisualState.Anchored); + + if (ContainedEntities.Count > 0) + { + appearance.SetData(Visuals.Light, LightState.Full); + return; + } + + appearance.SetData(Visuals.Light, _pressure < 1 + ? LightState.Charging + : LightState.Ready); + } + } + + public void Update(float frameTime) + { + if (!Powered) + { + return; + } + + var oldPressure = _pressure; + + _pressure = _pressure + frameTime > 1 + ? 1 + : _pressure + 0.05f * frameTime; + + if (oldPressure < 1 && _pressure >= 1) + { + UpdateVisualState(); + + if (Engaged) + { + TryFlush(); + } + } + + UpdateInterface(); + } + + public override void ExposeData(ObjectSerializer serializer) + { + base.ExposeData(serializer); + + serializer.DataReadWriteFunction( + "pressure", + 1.0f, + pressure => _pressure = pressure, + () => _pressure); + + serializer.DataReadWriteFunction( + "engageTime", + 2, + seconds => _engageTime = TimeSpan.FromSeconds(seconds), + () => (int) _engageTime.TotalSeconds); + + serializer.DataReadWriteFunction( + "automaticEngageTime", + 30, + seconds => _automaticEngageTime = TimeSpan.FromSeconds(seconds), + () => (int) _automaticEngageTime.TotalSeconds); + } + + public override void Initialize() + { + base.Initialize(); + + _container = ContainerManagerComponent.Ensure(Name, Owner); + _userInterface = Owner.GetComponent() + .GetBoundUserInterface(DisposalUnitUiKey.Key); + _userInterface.OnReceiveMessage += OnUiReceiveMessage; + + UpdateInterface(); + } + + protected override void Startup() + { + base.Startup(); + + Owner.EnsureComponent(); + var collidable = Owner.EnsureComponent(); + + collidable.AnchoredChanged += UpdateVisualState; + UpdateVisualState(); + } + + public override void OnRemove() + { + foreach (var entity in _container.ContainedEntities.ToArray()) + { + _container.ForceRemove(entity); + } + + _userInterface.CloseAll(); + + _automaticEngageToken?.Cancel(); + _automaticEngageToken = null; + + _container = null!; + + base.OnRemove(); + } + + public override void HandleMessage(ComponentMessage message, IComponent? component) + { + base.HandleMessage(message, component); + + switch (message) + { + case RelayMovementEntityMessage msg: + var timing = IoCManager.Resolve(); + if (Engaged || + !msg.Entity.HasComponent() || + timing.CurTime < _lastExitAttempt + ExitAttemptDelay) + { + break; + } + + _lastExitAttempt = timing.CurTime; + Remove(msg.Entity); + break; + } + } + + bool IInteractHand.InteractHand(InteractHandEventArgs eventArgs) + { + if (!ActionBlockerSystem.CanInteract(eventArgs.User)) + { + _notifyManager.PopupMessage(Owner.Transform.GridPosition, eventArgs.User, + Loc.GetString("You can't do that!")); + return false; + } + + if (ContainerHelpers.IsInContainer(eventArgs.User)) + { + _notifyManager.PopupMessage(Owner.Transform.GridPosition, eventArgs.User, + Loc.GetString("You can't reach there!")); + return false; + } + + if (!eventArgs.User.TryGetComponent(out IActorComponent actor)) + { + return false; + } + + if (!eventArgs.User.HasComponent()) + { + _notifyManager.PopupMessage(Owner.Transform.GridPosition, eventArgs.User, + Loc.GetString("You have no hands!")); + return false; + } + + _userInterface.Open(actor.playerSession); + return true; + } + + bool IInteractUsing.InteractUsing(InteractUsingEventArgs eventArgs) + { + return TryDrop(eventArgs.User, eventArgs.Using); + } + + bool IDragDropOn.CanDragDropOn(DragDropEventArgs eventArgs) + { + return CanInsert(eventArgs.Dropped); + } + + bool IDragDropOn.DragDropOn(DragDropEventArgs eventArgs) + { + return TryInsert(eventArgs.Dropped); + } + + [Verb] + private sealed class SelfInsertVerb : Verb + { + protected override void GetData(IEntity user, DisposalUnitComponent component, VerbData data) + { + data.Visibility = VerbVisibility.Invisible; + + if (!ActionBlockerSystem.CanInteract(user) || + component.ContainedEntities.Contains(user)) + { + return; + } + + data.Visibility = VerbVisibility.Visible; + data.Text = Loc.GetString("Jump inside"); + } + + protected override void Activate(IEntity user, DisposalUnitComponent component) + { + component.TryInsert(user); + } + } + + [Verb] + private sealed class FlushVerb : Verb + { + protected override void GetData(IEntity user, DisposalUnitComponent component, VerbData data) + { + data.Visibility = VerbVisibility.Invisible; + + if (!ActionBlockerSystem.CanInteract(user) || + component.ContainedEntities.Contains(user)) + { + return; + } + + data.Visibility = VerbVisibility.Visible; + data.Text = Loc.GetString("Flush"); + } + + protected override void Activate(IEntity user, DisposalUnitComponent component) + { + component.TryFlush(); + } + } + } +} diff --git a/Content.Server/GameObjects/Components/Disposal/IDisposalTubeComponent.cs b/Content.Server/GameObjects/Components/Disposal/IDisposalTubeComponent.cs new file mode 100644 index 0000000000..ee6c8787e4 --- /dev/null +++ b/Content.Server/GameObjects/Components/Disposal/IDisposalTubeComponent.cs @@ -0,0 +1,23 @@ +#nullable enable +using Robust.Server.GameObjects.Components.Container; +using Robust.Shared.GameObjects.Components.Transform; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Maths; + +namespace Content.Server.GameObjects.Components.Disposal +{ + public interface IDisposalTubeComponent : IComponent + { + Container Contents { get; } + + Direction NextDirection(DisposalHolderComponent holder); + Vector2 ExitVector(DisposalHolderComponent holder); + IDisposalTubeComponent? NextTube(DisposalHolderComponent holder); + bool Remove(DisposalHolderComponent holder); + bool TransferTo(DisposalHolderComponent holder, IDisposalTubeComponent to); + bool AdjacentConnected(Direction direction, IDisposalTubeComponent tube); + void AdjacentDisconnected(IDisposalTubeComponent adjacent); + void MoveEvent(MoveEvent moveEvent); + void PopupDirections(IEntity entity); + } +} diff --git a/Content.Server/GameObjects/Components/Interactable/ToolCommands.cs b/Content.Server/GameObjects/Components/Interactable/ToolCommands.cs new file mode 100644 index 0000000000..3008f11d44 --- /dev/null +++ b/Content.Server/GameObjects/Components/Interactable/ToolCommands.cs @@ -0,0 +1,161 @@ +#nullable enable +using System.Linq; +using Content.Shared.Maps; +using JetBrains.Annotations; +using Robust.Server.Interfaces.Console; +using Robust.Server.Interfaces.GameObjects; +using Robust.Server.Interfaces.Player; +using Robust.Shared.Interfaces.Map; +using Robust.Shared.IoC; +using Robust.Shared.Map; + +namespace Content.Server.GameObjects.Components.Interactable +{ + /// + /// + /// + [UsedImplicitly] + class TilePryCommand : IClientCommand + { + public string Command => "tilepry"; + public string Description => "Pries up all tiles in a radius around the user."; + public string Help => $"Usage: {Command} "; + + public void Execute(IConsoleShell shell, IPlayerSession? player, string[] args) + { + if (player?.AttachedEntity == null) + { + return; + } + + if (args.Length != 1) + { + shell.SendText(player, Help); + return; + } + + if (!int.TryParse(args[0], out var radius)) + { + shell.SendText(player, $"{args[0]} isn't a valid integer."); + return; + } + + if (radius < 0) + { + shell.SendText(player, "Radius must be positive."); + return; + } + + var mapManager = IoCManager.Resolve(); + var playerGrid = player.AttachedEntity.Transform.GridID; + var mapGrid = mapManager.GetGrid(playerGrid); + var playerPosition = player.AttachedEntity.Transform.GridPosition; + var tileDefinitionManager = IoCManager.Resolve(); + + for (var i = -radius; i <= radius; i++) + { + for (var j = -radius; j <= radius; j++) + { + var tile = mapGrid.GetTileRef(playerPosition.Offset((i, j))); + var coordinates = mapGrid.GridTileToLocal(tile.GridIndices); + var tileDef = (ContentTileDefinition) tileDefinitionManager[tile.Tile.TypeId]; + + if (!tileDef.CanCrowbar) continue; + + var underplating = tileDefinitionManager["underplating"]; + mapGrid.SetTile(coordinates, new Tile(underplating.TileId)); + } + } + } + } + + [UsedImplicitly] + class AnchorCommand : IClientCommand + { + public string Command => "anchor"; + public string Description => "Anchors all entities in a radius around the user"; + public string Help => $"Usage: {Command} "; + + public void Execute(IConsoleShell shell, IPlayerSession? player, string[] args) + { + if (player?.AttachedEntity == null) + { + return; + } + + if (args.Length != 1) + { + shell.SendText(player, Help); + return; + } + + if (!int.TryParse(args[0], out var radius)) + { + shell.SendText(player, $"{args[0]} isn't a valid integer."); + return; + } + + if (radius < 0) + { + shell.SendText(player, "Radius must be positive."); + return; + } + + var serverEntityManager = IoCManager.Resolve(); + var entities = serverEntityManager.GetEntitiesInRange(player.AttachedEntity, radius).ToList(); + + foreach (var entity in entities) + { + if (entity.TryGetComponent(out AnchorableComponent anchorable)) + { + anchorable.TryAnchor(player.AttachedEntity, force: true); + } + } + } + } + + [UsedImplicitly] + class UnAnchorCommand : IClientCommand + { + public string Command => "unanchor"; + public string Description => "Unanchors all anchorable entities in a radius around the user"; + public string Help => $"Usage: {Command} "; + + public void Execute(IConsoleShell shell, IPlayerSession? player, string[] args) + { + if (player?.AttachedEntity == null) + { + return; + } + + if (args.Length != 1) + { + shell.SendText(player, Help); + return; + } + + if (!int.TryParse(args[0], out var radius)) + { + shell.SendText(player, $"{args[0]} isn't a valid integer."); + return; + } + + if (radius < 0) + { + shell.SendText(player, "Radius must be positive."); + return; + } + + var serverEntityManager = IoCManager.Resolve(); + var entities = serverEntityManager.GetEntitiesInRange(player.AttachedEntity, radius).ToList(); + + foreach (var entity in entities) + { + if (entity.TryGetComponent(out AnchorableComponent anchorable)) + { + anchorable.TryUnAnchor(player.AttachedEntity, force: true); + } + } + } + } +} diff --git a/Content.Server/GameObjects/Components/Items/Storage/ItemComponent.cs b/Content.Server/GameObjects/Components/Items/Storage/ItemComponent.cs index ea6b5d93c1..a9ca9e4c78 100644 --- a/Content.Server/GameObjects/Components/Items/Storage/ItemComponent.cs +++ b/Content.Server/GameObjects/Components/Items/Storage/ItemComponent.cs @@ -1,7 +1,6 @@ using Content.Server.GameObjects.Components.GUI; using Content.Server.GameObjects.Components.Items.Storage; using Content.Server.Interfaces.GameObjects.Components.Interaction; -using Content.Server.Interfaces.GameObjects; using Content.Server.Interfaces.GameObjects.Components.Items; using Content.Server.Throw; using Content.Server.Utility; @@ -17,8 +16,6 @@ using Robust.Shared.Interfaces.GameObjects; using Robust.Shared.Interfaces.Map; using Robust.Shared.Interfaces.Random; using Robust.Shared.IoC; -using Robust.Shared.Maths; -using Robust.Shared.Random; using Robust.Shared.Serialization; namespace Content.Server.GameObjects.Components @@ -86,12 +83,22 @@ namespace Content.Server.GameObjects.Components public bool CanPickup(IEntity user) { - if (!ActionBlockerSystem.CanPickup(user)) return false; + if (!ActionBlockerSystem.CanPickup(user)) + { + return false; + } if (user.Transform.MapID != Owner.Transform.MapID) + { return false; + } + + if (Owner.TryGetComponent(out PhysicsComponent physics) && + physics.Anchored) + { + return false; + } - var userPos = user.Transform.MapPosition; var itemPos = Owner.Transform.MapPosition; return InteractionChecks.InRangeUnobstructed(user, itemPos, ignoredEnt: Owner, ignoreInsideBlocker:true); diff --git a/Content.Server/GameObjects/Components/Items/Storage/ServerStorageComponent.cs b/Content.Server/GameObjects/Components/Items/Storage/ServerStorageComponent.cs index 6a98fb715e..dc0c325a25 100644 --- a/Content.Server/GameObjects/Components/Items/Storage/ServerStorageComponent.cs +++ b/Content.Server/GameObjects/Components/Items/Storage/ServerStorageComponent.cs @@ -503,6 +503,12 @@ namespace Content.Server.GameObjects.Components.Items.Storage } } + bool IDragDrop.CanDragDrop(DragDropEventArgs eventArgs) + { + return eventArgs.Target.TryGetComponent(out PlaceableSurfaceComponent placeable) && + placeable.IsPlaceable; + } + bool IDragDrop.DragDrop(DragDropEventArgs eventArgs) { if (!ActionBlockerSystem.CanInteract(eventArgs.User)) @@ -523,7 +529,8 @@ namespace Content.Server.GameObjects.Components.Items.Storage return false; } - foreach (var storedEntity in storedEntities) + // empty everything out + foreach (var storedEntity in StoredEntities.ToList()) { if (Remove(storedEntity)) { diff --git a/Content.Server/GameObjects/Components/Recycling/RecyclerComponent.cs b/Content.Server/GameObjects/Components/Recycling/RecyclerComponent.cs new file mode 100644 index 0000000000..45b428d216 --- /dev/null +++ b/Content.Server/GameObjects/Components/Recycling/RecyclerComponent.cs @@ -0,0 +1,202 @@ +using System.Diagnostics.CodeAnalysis; +using Content.Server.GameObjects.Components.Conveyor; +using Content.Server.GameObjects.Components.Power.ApcNetComponents; +using Content.Server.GameObjects.EntitySystems; +using Content.Shared.Construction; +using Content.Shared.GameObjects.Components.Recycling; +using Content.Shared.Physics; +using Robust.Server.GameObjects; +using Robust.Shared.Containers; +using Robust.Shared.GameObjects; +using Robust.Shared.GameObjects.Components; +using Robust.Shared.GameObjects.Components.Map; +using Robust.Shared.GameObjects.Systems; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.IoC; +using Robust.Shared.Maths; +using Robust.Shared.Serialization; +using Robust.Shared.ViewVariables; + +namespace Content.Server.GameObjects.Components.Recycling +{ + // TODO: Add sound and safe beep + [RegisterComponent] + public class RecyclerComponent : Component, ICollideBehavior + { +#pragma warning disable 649 + [Dependency] private readonly IEntityManager _entityManager = default!; +#pragma warning restore 649 + + public override string Name => "Recycler"; + + /// + /// Whether or not sentient beings will be recycled + /// + [ViewVariables] + private bool _safe; + + /// + /// The percentage of material that will be recovered + /// + [ViewVariables] + private int _efficiency; // TODO + + private bool Powered => + !Owner.TryGetComponent(out PowerReceiverComponent receiver) || + receiver.Powered; + + private void Bloodstain() + { + if (Owner.TryGetComponent(out AppearanceComponent appearance)) + { + appearance.SetData(RecyclerVisuals.Bloody, true); + } + } + + private void Clean() + { + if (Owner.TryGetComponent(out AppearanceComponent appearance)) + { + appearance.SetData(RecyclerVisuals.Bloody, false); + } + } + + private bool CanGib(IEntity entity) + { + return entity.HasComponent() && + !_safe && + Powered; + } + + private bool CanRecycle(IEntity entity, [MaybeNullWhen(false)] out ConstructionPrototype prototype) + { + prototype = null; + + var constructionSystem = EntitySystem.Get(); + var entityId = entity.MetaData.EntityPrototype?.ID; + + if (entityId == null || + !constructionSystem.CraftRecipes.TryGetValue(entityId, out prototype)) + { + return false; + } + + return Powered; + } + + private void Recycle(IEntity entity) + { + // TODO: Prevent collision with recycled items + if (CanGib(entity)) + { + entity.Delete(); // TODO: Gib + Bloodstain(); + return; + } + + if (!CanRecycle(entity, out var prototype)) + { + return; + } + + var constructionSystem = EntitySystem.Get(); + var recyclerPosition = Owner.Transform.MapPosition; + foreach (var stage in prototype.Stages) + { + if (!(stage.Forward is ConstructionStepMaterial step)) + { + continue; + } + + constructionSystem.SpawnIngredient(recyclerPosition, step); + } + + entity.Delete(); + } + + private bool CanRun() + { + if (Owner.TryGetComponent(out PowerReceiverComponent receiver) && + !receiver.Powered) + { + return false; + } + + if (Owner.HasComponent()) + { + return false; + } + + return true; + } + + private bool CanMove(IEntity entity) + { + if (entity == Owner) + { + return false; + } + + if (!entity.TryGetComponent(out ICollidableComponent collidable) || + collidable.Anchored) + { + return false; + } + + if (entity.HasComponent()) + { + return false; + } + + if (entity.HasComponent()) + { + return false; + } + + if (ContainerHelpers.IsInContainer(entity)) + { + return false; + } + + return true; + } + + public void Update(float frameTime) + { + if (!CanRun()) + { + return; + } + + var intersecting = _entityManager.GetEntitiesIntersecting(Owner, true); + var direction = Vector2.UnitX; + + foreach (var entity in intersecting) + { + if (!CanMove(entity)) + { + continue; + } + + if (entity.TryGetComponent(out ICollidableComponent collidable)) + { + var controller = collidable.EnsureController(); + controller.Move(direction, frameTime); + } + } + } + + public override void ExposeData(ObjectSerializer serializer) + { + base.ExposeData(serializer); + + serializer.DataField(ref _safe, "safe", true); + serializer.DataField(ref _efficiency, "efficiency", 25); + } + + void ICollideBehavior.CollideWith(IEntity collidedWith) + { + Recycle(collidedWith); + } + } +} diff --git a/Content.Server/GameObjects/Components/Rotatable/FlippableComponent.cs b/Content.Server/GameObjects/Components/Rotatable/FlippableComponent.cs new file mode 100644 index 0000000000..6ee4765153 --- /dev/null +++ b/Content.Server/GameObjects/Components/Rotatable/FlippableComponent.cs @@ -0,0 +1,70 @@ +#nullable enable +using Content.Server.Interfaces; +using Content.Shared.GameObjects; +using Content.Shared.GameObjects.EntitySystems; +using Robust.Shared.GameObjects; +using Robust.Shared.GameObjects.Components; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.IoC; +using Robust.Shared.Localization; +using Robust.Shared.Serialization; + +namespace Content.Server.GameObjects.Components.Rotatable +{ + [RegisterComponent] + public class FlippableComponent : Component + { +#pragma warning disable 649 + [Dependency] private readonly IServerNotifyManager _notifyManager = default!; +#pragma warning restore 649 + + public override string Name => "Flippable"; + + private string? _entity; + + private void TryFlip(IEntity user) + { + if (Owner.TryGetComponent(out ICollidableComponent collidable) && + collidable.Anchored) + { + _notifyManager.PopupMessage(Owner.Transform.GridPosition, user, Loc.GetString("It's stuck.")); + return; + } + + if (_entity == null) + { + return; + } + + Owner.EntityManager.SpawnEntity(_entity, Owner.Transform.GridPosition); + Owner.Delete(); + } + + public override void ExposeData(ObjectSerializer serializer) + { + base.ExposeData(serializer); + + serializer.DataField(ref _entity, "entity", Owner.Prototype?.ID); + } + + [Verb] + private sealed class FlippableVerb : Verb + { + protected override void GetData(IEntity user, FlippableComponent component, VerbData data) + { + if (!ActionBlockerSystem.CanInteract(user)) + { + data.Visibility = VerbVisibility.Invisible; + return; + } + + data.Text = Loc.GetString("Flip"); + } + + protected override void Activate(IEntity user, FlippableComponent component) + { + component.TryFlip(user); + } + } + } +} diff --git a/Content.Server/GameObjects/Components/RotatableComponent.cs b/Content.Server/GameObjects/Components/Rotatable/RotatableComponent.cs similarity index 97% rename from Content.Server/GameObjects/Components/RotatableComponent.cs rename to Content.Server/GameObjects/Components/Rotatable/RotatableComponent.cs index dc575eb1b7..074da1aecb 100644 --- a/Content.Server/GameObjects/Components/RotatableComponent.cs +++ b/Content.Server/GameObjects/Components/Rotatable/RotatableComponent.cs @@ -8,7 +8,7 @@ using Robust.Shared.IoC; using Robust.Shared.Localization; using Robust.Shared.Maths; -namespace Content.Server.GameObjects.Components +namespace Content.Server.GameObjects.Components.Rotatable { [RegisterComponent] public class RotatableComponent : Component diff --git a/Content.Server/GameObjects/EntitySystems/Click/InteractionSystem.cs b/Content.Server/GameObjects/EntitySystems/Click/InteractionSystem.cs index 17c811dc0c..478f0123d2 100644 --- a/Content.Server/GameObjects/EntitySystems/Click/InteractionSystem.cs +++ b/Content.Server/GameObjects/EntitySystems/Click/InteractionSystem.cs @@ -76,13 +76,21 @@ namespace Content.Server.GameObjects.EntitySystems.Click // trigger dragdrops on the dropped entity foreach (var dragDrop in dropped.GetAllComponents()) { - if (dragDrop.DragDrop(interactionArgs)) return; + if (dragDrop.CanDragDrop(interactionArgs) && + dragDrop.DragDrop(interactionArgs)) + { + return; + } } // trigger dragdropons on the targeted entity foreach (var dragDropOn in target.GetAllComponents()) { - if (dragDropOn.DragDropOn(interactionArgs)) return; + if (dragDropOn.CanDragDropOn(interactionArgs) && + dragDropOn.DragDropOn(interactionArgs)) + { + return; + } } } diff --git a/Content.Server/GameObjects/EntitySystems/ConstructionSystem.cs b/Content.Server/GameObjects/EntitySystems/ConstructionSystem.cs index e0ba180bc0..971a8bf58a 100644 --- a/Content.Server/GameObjects/EntitySystems/ConstructionSystem.cs +++ b/Content.Server/GameObjects/EntitySystems/ConstructionSystem.cs @@ -41,6 +41,8 @@ namespace Content.Server.GameObjects.EntitySystems private readonly Dictionary _craftRecipes = new Dictionary(); + public IReadOnlyDictionary CraftRecipes => _craftRecipes; + /// public override void Initialize() { @@ -207,7 +209,7 @@ namespace Content.Server.GameObjects.EntitySystems spriteComp.AddLayerWithSprite(prototype.Icon); } - private void SpawnIngredient(MapCoordinates position, ConstructionStepMaterial lastStep) + public void SpawnIngredient(MapCoordinates position, ConstructionStepMaterial lastStep) { if(lastStep is null) return; diff --git a/Content.Server/GameObjects/EntitySystems/ConveyorSystem.cs b/Content.Server/GameObjects/EntitySystems/ConveyorSystem.cs new file mode 100644 index 0000000000..4b8b6facd4 --- /dev/null +++ b/Content.Server/GameObjects/EntitySystems/ConveyorSystem.cs @@ -0,0 +1,108 @@ +using System; +using System.Collections.Generic; +using Content.Server.GameObjects.Components.Conveyor; +using Content.Shared.GameObjects.Components.Conveyor; +using JetBrains.Annotations; +using Robust.Shared.GameObjects; +using Robust.Shared.GameObjects.Systems; + +namespace Content.Server.GameObjects.EntitySystems +{ + [UsedImplicitly] + public class ConveyorSystem : EntitySystem + { + public override void Initialize() + { + base.Initialize(); + + EntityQuery = new TypeEntityQuery(typeof(ConveyorComponent)); + } + + public override void Update(float frameTime) + { + foreach (var entity in RelevantEntities) + { + if (!entity.TryGetComponent(out ConveyorComponent conveyor)) + { + continue; + } + + conveyor.Update(); + } + } + } + + public class ConveyorGroup + { + private readonly HashSet _conveyors; + private readonly HashSet _switches; + + public ConveyorGroup() + { + _conveyors = new HashSet(0); + _switches = new HashSet(0); + State = ConveyorState.Off; + } + + public IReadOnlyCollection Conveyors => _conveyors; + + public IReadOnlyCollection Switches => _switches; + + public ConveyorState State { get; private set; } + + public void AddConveyor(ConveyorComponent conveyor) + { + _conveyors.Add(conveyor); + conveyor.Sync(this); + } + + public void RemoveConveyor(ConveyorComponent conveyor) + { + _conveyors.Remove(conveyor); + } + + public void AddSwitch(ConveyorSwitchComponent conveyorSwitch) + { + _switches.Add(conveyorSwitch); + + if (_switches.Count == 1) + { + SetState(conveyorSwitch); + } + + conveyorSwitch.Sync(this); + } + + public void RemoveSwitch(ConveyorSwitchComponent conveyorSwitch) + { + _switches.Remove(conveyorSwitch); + } + + public void SetState(ConveyorSwitchComponent conveyorSwitch) + { + var state = conveyorSwitch.State; + + if (state == ConveyorState.Loose) + { + if (_switches.Count > 0) + { + return; + } + + state = ConveyorState.Off; + } + + State = state; + + foreach (var conveyor in Conveyors) + { + conveyor.Sync(this); + } + + foreach (var connectedSwitch in _switches) + { + connectedSwitch.Sync(this); + } + } + } +} diff --git a/Content.Server/GameObjects/EntitySystems/DisposableSystem.cs b/Content.Server/GameObjects/EntitySystems/DisposableSystem.cs new file mode 100644 index 0000000000..fd2bef87bf --- /dev/null +++ b/Content.Server/GameObjects/EntitySystems/DisposableSystem.cs @@ -0,0 +1,26 @@ +using Content.Server.GameObjects.Components.Disposal; +using JetBrains.Annotations; +using Robust.Shared.GameObjects; +using Robust.Shared.GameObjects.Systems; + +namespace Content.Server.GameObjects.EntitySystems +{ + [UsedImplicitly] + public class DisposableSystem : EntitySystem + { + public override void Initialize() + { + base.Initialize(); + + EntityQuery = new TypeEntityQuery(typeof(DisposalHolderComponent)); + } + + public override void Update(float frameTime) + { + foreach (var disposable in RelevantEntities) + { + disposable.GetComponent().Update(frameTime); + } + } + } +} diff --git a/Content.Server/GameObjects/EntitySystems/DisposalTubeSystem.cs b/Content.Server/GameObjects/EntitySystems/DisposalTubeSystem.cs new file mode 100644 index 0000000000..4a8a108867 --- /dev/null +++ b/Content.Server/GameObjects/EntitySystems/DisposalTubeSystem.cs @@ -0,0 +1,33 @@ +using Content.Server.GameObjects.Components.Disposal; +using JetBrains.Annotations; +using Robust.Shared.GameObjects.Components.Transform; +using Robust.Shared.GameObjects.Systems; + +namespace Content.Server.GameObjects.EntitySystems +{ + [UsedImplicitly] + public class DisposalTubeSystem : EntitySystem + { + private void MoveEvent(MoveEvent moveEvent) + { + if (moveEvent.Sender.TryGetComponent(out IDisposalTubeComponent tube)) + { + tube.MoveEvent(moveEvent); + } + } + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(MoveEvent); + } + + public override void Shutdown() + { + base.Shutdown(); + + UnsubscribeLocalEvent(); + } + } +} diff --git a/Content.Server/GameObjects/EntitySystems/DisposalUnitSystem.cs b/Content.Server/GameObjects/EntitySystems/DisposalUnitSystem.cs new file mode 100644 index 0000000000..cf668534bb --- /dev/null +++ b/Content.Server/GameObjects/EntitySystems/DisposalUnitSystem.cs @@ -0,0 +1,26 @@ +using Content.Server.GameObjects.Components.Disposal; +using JetBrains.Annotations; +using Robust.Shared.GameObjects; +using Robust.Shared.GameObjects.Systems; + +namespace Content.Server.GameObjects.EntitySystems +{ + [UsedImplicitly] + public class DisposalUnitSystem : EntitySystem + { + public override void Initialize() + { + base.Initialize(); + + EntityQuery = new TypeEntityQuery(typeof(DisposalUnitComponent)); + } + + public override void Update(float frameTime) + { + foreach (var entity in RelevantEntities) + { + entity.GetComponent().Update(frameTime); + } + } + } +} diff --git a/Content.Server/GameObjects/EntitySystems/RecyclerSystem.cs b/Content.Server/GameObjects/EntitySystems/RecyclerSystem.cs new file mode 100644 index 0000000000..82029d4f08 --- /dev/null +++ b/Content.Server/GameObjects/EntitySystems/RecyclerSystem.cs @@ -0,0 +1,26 @@ +using Content.Server.GameObjects.Components.Recycling; +using JetBrains.Annotations; +using Robust.Shared.GameObjects; +using Robust.Shared.GameObjects.Systems; + +namespace Content.Server.GameObjects.EntitySystems +{ + [UsedImplicitly] + public class RecyclerSystem : EntitySystem + { + public override void Initialize() + { + base.Initialize(); + + EntityQuery = new TypeEntityQuery(typeof(RecyclerComponent)); + } + + public override void Update(float frameTime) + { + foreach (var entity in RelevantEntities) + { + entity.GetComponent().Update(frameTime); + } + } + } +} diff --git a/Content.Server/Utility/InteractionChecks.cs b/Content.Server/Utility/InteractionChecks.cs index eb8dcf6f47..1f5a452b74 100644 --- a/Content.Server/Utility/InteractionChecks.cs +++ b/Content.Server/Utility/InteractionChecks.cs @@ -105,8 +105,7 @@ namespace Content.Server.Utility /// public static bool InRangeUnobstructed(IEntity user, MapCoordinates otherCoords, float range = SharedInteractionSystem.InteractionRange, - int collisionMask = (int) CollisionGroup.Impassable, IEntity ignoredEnt = null, - bool ignoreInsideBlocker = false) + int collisionMask = (int) CollisionGroup.Impassable, IEntity ignoredEnt = null, bool ignoreInsideBlocker = false) { var mapManager = IoCManager.Resolve(); var interactionSystem = EntitySystem.Get(); @@ -115,13 +114,11 @@ namespace Content.Server.Utility { var localizationManager = IoCManager.Resolve(); user.PopupMessage(user, localizationManager.GetString("You can't reach there!")); + return false; } return true; } - - - } } diff --git a/Content.Shared/GameObjects/Components/Conveyor/SharedConveyorComponent.cs b/Content.Shared/GameObjects/Components/Conveyor/SharedConveyorComponent.cs new file mode 100644 index 0000000000..bdc9167757 --- /dev/null +++ b/Content.Shared/GameObjects/Components/Conveyor/SharedConveyorComponent.cs @@ -0,0 +1,20 @@ +using System; +using Robust.Shared.Serialization; + +namespace Content.Shared.GameObjects.Components.Conveyor +{ + [Serializable, NetSerializable] + public enum ConveyorVisuals + { + State + } + + [Serializable, NetSerializable] + public enum ConveyorState + { + Off = 0, + Forward, + Reversed, + Loose + } +} diff --git a/Content.Shared/GameObjects/Components/Disposal/SharedDisposalTubeComponent.cs b/Content.Shared/GameObjects/Components/Disposal/SharedDisposalTubeComponent.cs new file mode 100644 index 0000000000..835b0dc62d --- /dev/null +++ b/Content.Shared/GameObjects/Components/Disposal/SharedDisposalTubeComponent.cs @@ -0,0 +1,19 @@ +using System; +using Robust.Shared.Serialization; + +namespace Content.Shared.GameObjects.Components.Disposal +{ + [Serializable, NetSerializable] + public enum DisposalTubeVisuals + { + VisualState + } + + [Serializable, NetSerializable] + public enum DisposalTubeVisualState + { + Free = 0, + Anchored, + Broken, + } +} diff --git a/Content.Shared/GameObjects/Components/Disposal/SharedDisposalUnitComponent.cs b/Content.Shared/GameObjects/Components/Disposal/SharedDisposalUnitComponent.cs new file mode 100644 index 0000000000..3914979123 --- /dev/null +++ b/Content.Shared/GameObjects/Components/Disposal/SharedDisposalUnitComponent.cs @@ -0,0 +1,96 @@ +using System; +using Robust.Shared.GameObjects; +using Robust.Shared.GameObjects.Components.UserInterface; +using Robust.Shared.Serialization; + +namespace Content.Shared.GameObjects.Components.Disposal +{ + public abstract class SharedDisposalUnitComponent : Component + { + public override string Name => "DisposalUnit"; + + [Serializable, NetSerializable] + public enum Visuals + { + VisualState, + Handle, + Light + } + + [Serializable, NetSerializable] + public enum VisualState + { + UnAnchored, + Anchored, + Flushing + } + + [Serializable, NetSerializable] + public enum HandleState + { + Normal, + Engaged + } + + [Serializable, NetSerializable] + public enum LightState + { + Off, + Charging, + Full, + Ready + } + + [Serializable, NetSerializable] + public enum UiButton + { + Eject, + Engage, + Power + } + + [Serializable, NetSerializable] + public enum State + { + Ready, + Pressurizing + } + + [Serializable, NetSerializable] + public class DisposalUnitBoundUserInterfaceState : BoundUserInterfaceState + { + public readonly string UnitName; + public readonly string UnitState; + public readonly float Pressure; + public readonly bool Powered; + + public DisposalUnitBoundUserInterfaceState(string unitName, string unitState, float pressure, bool powered) + { + UnitName = unitName; + UnitState = unitState; + Pressure = pressure; + Powered = powered; + } + } + + /// + /// Message data sent from client to server when a disposal unit ui button is pressed. + /// + [Serializable, NetSerializable] + public class UiButtonPressedMessage : BoundUserInterfaceMessage + { + public readonly UiButton Button; + + public UiButtonPressedMessage(UiButton button) + { + Button = button; + } + } + + [Serializable, NetSerializable] + public enum DisposalUnitUiKey + { + Key + } + } +} diff --git a/Content.Shared/GameObjects/Components/Recycling/SharedRecyclerComponent.cs b/Content.Shared/GameObjects/Components/Recycling/SharedRecyclerComponent.cs new file mode 100644 index 0000000000..3920dbc327 --- /dev/null +++ b/Content.Shared/GameObjects/Components/Recycling/SharedRecyclerComponent.cs @@ -0,0 +1,11 @@ +using System; +using Robust.Shared.Serialization; + +namespace Content.Shared.GameObjects.Components.Recycling +{ + [NetSerializable, Serializable] + public enum RecyclerVisuals + { + Bloody + } +} diff --git a/Content.Shared/GameObjects/ContentNetIDs.cs b/Content.Shared/GameObjects/ContentNetIDs.cs index 3d2dc7e9b3..625aeb0fd5 100644 --- a/Content.Shared/GameObjects/ContentNetIDs.cs +++ b/Content.Shared/GameObjects/ContentNetIDs.cs @@ -60,6 +60,7 @@ public const uint PROJECTILE = 1053; public const uint THROWN_ITEM = 1054; public const uint STRAP = 1055; + public const uint DISPOSABLE = 1056; // Net IDs for integration tests. public const uint PREDICTION_TEST = 10001; diff --git a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IDragDrop.cs b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IDragDrop.cs index 004bba19be..e93db0b9c1 100644 --- a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IDragDrop.cs +++ b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IDragDrop.cs @@ -1,28 +1,47 @@ -using System; +using System; using Robust.Shared.Interfaces.GameObjects; using Robust.Shared.Map; namespace Content.Shared.Interfaces.GameObjects.Components { /// - /// This interface allows the component's entity to be dragged and dropped by mouse onto another entity and gives it - /// behavior when that occurs. + /// This interface allows the component's entity to be dragged and dropped + /// by mouse onto another entity and gives it behavior when that occurs. /// public interface IDragDrop { /// - /// Invoked server-side when this component's entity is being dragged and dropped on another. - /// - /// There is no other server-side drag and drop check other than a range check, so make sure to validate - /// if this object can be dropped on the target object! + /// Invoked server-side when this component's entity is being dragged + /// and dropped on another before invoking . + /// Note that other drag and drop interactions may be attempted if + /// this one fails. /// - /// true iff an interaction occurred and no further interaction should - /// be processed for this drop. + /// + /// true if is valid, false otherwise. + bool CanDragDrop(DragDropEventArgs eventArgs); + + /// + /// Invoked server-side when this component's entity is being dragged + /// and dropped on another. + /// Note that other drag and drop interactions may be attempted if + /// this one fails. + /// + /// + /// true if an interaction occurred and no further interaction should + /// be processed for this drop. + /// bool DragDrop(DragDropEventArgs eventArgs); } public class DragDropEventArgs : EventArgs { + /// + /// Creates a new instance of . + /// + /// The entity doing the drag and drop. + /// The location where is being dropped. + /// The entity that is being dragged and dropped. + /// The entity that is being dropped onto. public DragDropEventArgs(IEntity user, GridCoordinates dropLocation, IEntity dropped, IEntity target) { User = user; @@ -31,9 +50,24 @@ namespace Content.Shared.Interfaces.GameObjects.Components Target = target; } + /// + /// The entity doing the drag and drop. + /// public IEntity User { get; } + + /// + /// The location where is being dropped. + /// public GridCoordinates DropLocation { get; } + + /// + /// The entity that is being dragged and dropped. + /// public IEntity Dropped { get; } + + /// + /// The entity that is being dropped onto. + /// public IEntity Target { get; } } } diff --git a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IDragDropOn.cs b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IDragDropOn.cs index 6175884eb2..1100bdb3d3 100644 --- a/Content.Shared/Interfaces/GameObjects/Components/Interaction/IDragDropOn.cs +++ b/Content.Shared/Interfaces/GameObjects/Components/Interaction/IDragDropOn.cs @@ -1,19 +1,31 @@ -namespace Content.Shared.Interfaces.GameObjects.Components +namespace Content.Shared.Interfaces.GameObjects.Components { /// - /// This interface allows the component's entity to be dragged and dropped onto by another entity and gives it - /// behavior when that occurs. + /// This interface allows the component's entity to be dragged and dropped + /// onto by another entity and gives it behavior when that occurs. /// public interface IDragDropOn { /// - /// Invoked server-side when another entity is being dragged and dropped onto this one - /// - /// There is no other server-side drag and drop check other than a range check, so make sure to validate - /// if this object can be dropped on the dropped object! + /// Invoked server-side when another entity is being dragged and dropped + /// onto this one before invoking . + /// Note that other drag and drop interactions may be attempted if + /// this one fails. /// - /// true iff an interaction occurred and no further interaction should - /// be processed for this drop. + /// + /// true if is valid, false otherwise. + bool CanDragDropOn(DragDropEventArgs eventArgs); + + /// + /// Invoked server-side when another entity is being dragged and dropped + /// onto this one before invoking + /// Note that other drag and drop interactions may be attempted if + /// this one fails. + /// + /// + /// true if an interaction occurred and no further interaction should + /// be processed for this drop. + /// bool DragDropOn(DragDropEventArgs eventArgs); } } diff --git a/Content.Shared/Physics/ConveyedController.cs b/Content.Shared/Physics/ConveyedController.cs new file mode 100644 index 0000000000..ae03951174 --- /dev/null +++ b/Content.Shared/Physics/ConveyedController.cs @@ -0,0 +1,38 @@ +#nullable enable +using Content.Shared.GameObjects.Components.Movement; +using Robust.Shared.GameObjects.Components; +using Robust.Shared.Interfaces.Physics; +using Robust.Shared.IoC; +using Robust.Shared.Maths; +using Robust.Shared.Physics; + +namespace Content.Shared.Physics +{ + public class ConveyedController : VirtualController + { + public override ICollidableComponent? ControlledComponent { protected get; set; } + + public void Move(Vector2 velocityDirection, float speed) + { + if (ControlledComponent?.Owner.HasComponent() == false && + IoCManager.Resolve().IsWeightless(ControlledComponent.Owner.Transform.GridPosition)) + { + return; + } + + if (ControlledComponent?.Status == BodyStatus.InAir) + { + return; + } + + LinearVelocity = velocityDirection * speed * 100; + } + + public override void UpdateAfterProcessing() + { + base.UpdateAfterProcessing(); + + LinearVelocity = Vector2.Zero; + } + } +} diff --git a/Resources/Audio/Effects/clang.ogg b/Resources/Audio/Effects/clang.ogg new file mode 100644 index 0000000000..11090f4ce3 Binary files /dev/null and b/Resources/Audio/Effects/clang.ogg differ diff --git a/Resources/Audio/Machines/disposalflush.ogg b/Resources/Audio/Machines/disposalflush.ogg new file mode 100644 index 0000000000..33818256ad Binary files /dev/null and b/Resources/Audio/Machines/disposalflush.ogg differ diff --git a/Resources/Groups/groups.yml b/Resources/Groups/groups.yml index 6ff7550a31..bdfa5ec6c0 100644 --- a/Resources/Groups/groups.yml +++ b/Resources/Groups/groups.yml @@ -88,6 +88,10 @@ - mapping - addhand - removehand + - tilepry + - anchor + - unanchor + - tubeconnections CanViewVar: true CanAdminPlace: true @@ -163,6 +167,10 @@ - mapping - addhand - removehand + - tilepry + - anchor + - unanchor + - tubeconnections CanViewVar: true CanAdminPlace: true CanScript: true diff --git a/Resources/Maps/saltern.yml b/Resources/Maps/saltern.yml index 57dd0128ad..48b8189d2e 100644 --- a/Resources/Maps/saltern.yml +++ b/Resources/Maps/saltern.yml @@ -114,7 +114,7 @@ grids: - ind: "-2,-2" tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAADQAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA0AAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAANAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA7AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAOwAAADsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAADsAAAA7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA7AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAOwAAADsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAADsAAAA7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAOgAAAA== - ind: "-2,-1" - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD0AAAA6AAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA9AAAAPQAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPQAAADoAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA6AAAAPgAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAD4AAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAD0AAAA6AAAAOgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA6AAAAPgAAAD4AAAA+AAAAOAAAADgAAAA4AAAAPgAAAD4AAAA4AAAAOAAAADgAAAA4AAAAPgAAADgAAAA4AAAAOAAAADgAAAA4AAAAPgAAADgAAAA4AAAAOAAAAD4AAAA+AAAAOAAAADgAAAA4AAAAOAAAAD4AAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA6AAAAOgAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA4AAAAOAAAADgAAAA4AAAAPgAAADgAAAA4AAAAOAAAADgAAAA+AAAAOAAAADgAAAA4AAAAPgAAAD0AAAA+AAAAOAAAADgAAAA4AAAAOAAAAD4AAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAAD4AAAA9AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAOAAAADgAAAA4AAAAOAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAOAAAAD4AAAA4AAAAOAAAADgAAAA4AAAAPgAAADgAAAA4AAAAOAAAADgAAAA+AAAAOAAAADgAAAA4AAAAOAAAADgAAAA+AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAPgAAADgAAAA4AAAAOAAAADgAAAA4AAAAPgAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAAD4AAAA4AAAAOAAAADgAAAA4AAAAOAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAA4AAAAOAAAADgAAAA4AAAAPgAAAD0AAAA6AAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAOAAAADgAAAA4AAAAOAAAAD4AAAA9AAAAPQAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAADgAAAA4AAAAOAAAADgAAAA+AAAAPQAAADoAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD0AAAA6AAAAPgAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAOgAAAD4AAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAD0AAAA6AAAAOgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA6AAAAPgAAAD4AAAA+AAAAOAAAADgAAAA4AAAAPgAAAD4AAAA4AAAAOAAAADgAAAA4AAAAPgAAADgAAAA4AAAAOAAAADgAAAA4AAAAPgAAADgAAAA4AAAAOAAAAD4AAAA+AAAAOAAAADgAAAA4AAAAOAAAAD4AAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA6AAAAOgAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA4AAAAOAAAADgAAAA4AAAAPgAAADgAAAA4AAAAOAAAADgAAAA+AAAAOAAAADgAAAA4AAAAPgAAAD0AAAA+AAAAOAAAADgAAAA4AAAAOAAAAD4AAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAAD4AAAA9AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAOAAAADgAAAA4AAAAOAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAOAAAAD4AAAA4AAAAOAAAADgAAAA4AAAAPgAAADgAAAA4AAAAOAAAADgAAAA+AAAAOAAAADgAAAA4AAAAOAAAADgAAAA+AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAPgAAADgAAAA4AAAAOAAAADgAAAA4AAAAPgAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAAD4AAAA4AAAAOAAAADgAAAA4AAAAOAAAAA== - ind: "-3,0" tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAADgAAAA4AAAAOAAAAD4AAAA9AAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA4AAAAOAAAADgAAAA+AAAAPgAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAAD4AAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAAA6AAAAOgAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAADgAAAA4AAAAOAAAADgAAAA4AAAAPgAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA4AAAAOAAAADgAAAA4AAAAOAAAADoAAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAOAAAADgAAAA4AAAAOAAAADgAAAA+AAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAPgAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAA== - ind: "-4,0" @@ -125,6 +125,195 @@ grids: tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAD0AAAA9AAAAPQAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAAA6AAAAOgAAAD0AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA9AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAPQAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD0AAAA9AAAAPQAAAD0AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAOgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAADgAAAA4AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== entities: - uid: 0 + type: DisposalTrunk + components: + - parent: 15 + pos: -29.5,11.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 1 + type: DisposalBend + components: + - parent: 15 + pos: -29.5,10.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalBend: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 2 + type: DisposalBend + components: + - parent: 15 + pos: -28.5,10.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalBend: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3 + type: DisposalBend + components: + - parent: 15 + pos: -8.5,-14.5 + type: Transform + - containers: + DisposalBend: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 4 + type: DisposalPipe + components: + - parent: 15 + pos: -7.5,-14.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 5 + type: DisposalPipe + components: + - parent: 15 + pos: -6.5,-14.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 6 + type: DisposalTrunk + components: + - parent: 15 + pos: -5.5,-14.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 7 + type: DisposalUnit + components: + - parent: 15 + pos: -5.5,-14.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 8 + type: DisposalPipe + components: + - parent: 15 + pos: -9.5,-15.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 9 + type: DisposalPipe + components: + - parent: 15 + pos: -15.5,-15.5 + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 10 + type: DisposalPipe + components: + - parent: 15 + pos: -13.5,-15.5 + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 11 + type: DisposalPipe + components: + - parent: 15 + pos: -14.5,-15.5 + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 12 + type: DisposalPipe + components: + - parent: 15 + pos: -12.5,-15.5 + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 13 + type: DisposalPipe + components: + - parent: 15 + pos: -11.5,-15.5 + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 14 + type: DisposalPipe + components: + - parent: 15 + pos: -10.5,-16.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 15 components: - parent: null type: Transform @@ -134,206 +323,11 @@ entities: - !type:PhysShapeGrid grid: 0 type: Collidable -- uid: 1 - type: Wire - components: - - parent: 0 - pos: 28.5,4.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2 - type: Wire - components: - - parent: 0 - pos: 27.5,4.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3 - type: Wire - components: - - parent: 0 - pos: 26.5,4.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 4 - type: Wire - components: - - parent: 0 - pos: 25.5,4.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 5 - type: Wire - components: - - parent: 0 - pos: 24.5,4.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 6 - type: Wire - components: - - parent: 0 - pos: 23.5,4.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 7 - type: Wire - components: - - parent: 0 - pos: 22.5,4.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 8 - type: Wire - components: - - parent: 0 - pos: 21.5,4.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 9 - type: Wire - components: - - parent: 0 - pos: 20.5,4.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 10 - type: Wire - components: - - parent: 0 - pos: 19.5,4.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 11 - type: Wire - components: - - parent: 0 - pos: 18.5,4.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 12 - type: Wire - components: - - parent: 0 - pos: 17.5,4.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 13 - type: Wire - components: - - parent: 0 - pos: 16.5,4.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 14 - type: Wire - components: - - parent: 0 - pos: 15.5,4.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 15 - type: Wire - components: - - parent: 0 - pos: 14.5,4.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 16 type: Wire components: - - parent: 0 - pos: 13.5,4.5 + - parent: 15 + pos: 28.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -345,8 +339,8 @@ entities: - uid: 17 type: Wire components: - - parent: 0 - pos: 12.5,4.5 + - parent: 15 + pos: 27.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -358,8 +352,8 @@ entities: - uid: 18 type: Wire components: - - parent: 0 - pos: 11.5,4.5 + - parent: 15 + pos: 26.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -371,8 +365,8 @@ entities: - uid: 19 type: Wire components: - - parent: 0 - pos: 10.5,4.5 + - parent: 15 + pos: 25.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -384,8 +378,8 @@ entities: - uid: 20 type: Wire components: - - parent: 0 - pos: 9.5,4.5 + - parent: 15 + pos: 24.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -397,8 +391,8 @@ entities: - uid: 21 type: Wire components: - - parent: 0 - pos: 8.5,4.5 + - parent: 15 + pos: 23.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -410,8 +404,8 @@ entities: - uid: 22 type: Wire components: - - parent: 0 - pos: 7.5,4.5 + - parent: 15 + pos: 22.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -423,8 +417,8 @@ entities: - uid: 23 type: Wire components: - - parent: 0 - pos: 6.5,4.5 + - parent: 15 + pos: 21.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -436,8 +430,8 @@ entities: - uid: 24 type: Wire components: - - parent: 0 - pos: 5.5,4.5 + - parent: 15 + pos: 20.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -449,8 +443,8 @@ entities: - uid: 25 type: Wire components: - - parent: 0 - pos: 4.5,4.5 + - parent: 15 + pos: 19.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -462,8 +456,8 @@ entities: - uid: 26 type: Wire components: - - parent: 0 - pos: 3.5,4.5 + - parent: 15 + pos: 18.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -475,8 +469,8 @@ entities: - uid: 27 type: Wire components: - - parent: 0 - pos: 2.5,4.5 + - parent: 15 + pos: 17.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -488,8 +482,8 @@ entities: - uid: 28 type: Wire components: - - parent: 0 - pos: 1.5,4.5 + - parent: 15 + pos: 16.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -501,8 +495,8 @@ entities: - uid: 29 type: Wire components: - - parent: 0 - pos: 0.5,4.5 + - parent: 15 + pos: 15.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -514,8 +508,8 @@ entities: - uid: 30 type: Wire components: - - parent: 0 - pos: -0.5,4.5 + - parent: 15 + pos: 14.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -527,8 +521,8 @@ entities: - uid: 31 type: Wire components: - - parent: 0 - pos: -1.5,4.5 + - parent: 15 + pos: 13.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -540,8 +534,8 @@ entities: - uid: 32 type: Wire components: - - parent: 0 - pos: -2.5,4.5 + - parent: 15 + pos: 12.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -553,8 +547,8 @@ entities: - uid: 33 type: Wire components: - - parent: 0 - pos: -3.5,4.5 + - parent: 15 + pos: 11.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -566,8 +560,8 @@ entities: - uid: 34 type: Wire components: - - parent: 0 - pos: -4.5,4.5 + - parent: 15 + pos: 10.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -579,8 +573,8 @@ entities: - uid: 35 type: Wire components: - - parent: 0 - pos: -5.5,4.5 + - parent: 15 + pos: 9.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -592,8 +586,8 @@ entities: - uid: 36 type: Wire components: - - parent: 0 - pos: -6.5,4.5 + - parent: 15 + pos: 8.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -605,8 +599,8 @@ entities: - uid: 37 type: Wire components: - - parent: 0 - pos: -7.5,4.5 + - parent: 15 + pos: 7.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -618,8 +612,8 @@ entities: - uid: 38 type: Wire components: - - parent: 0 - pos: -8.5,4.5 + - parent: 15 + pos: 6.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -631,8 +625,8 @@ entities: - uid: 39 type: Wire components: - - parent: 0 - pos: -9.5,4.5 + - parent: 15 + pos: 5.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -644,8 +638,8 @@ entities: - uid: 40 type: Wire components: - - parent: 0 - pos: -10.5,4.5 + - parent: 15 + pos: 4.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -657,8 +651,8 @@ entities: - uid: 41 type: Wire components: - - parent: 0 - pos: -11.5,4.5 + - parent: 15 + pos: 3.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -670,8 +664,8 @@ entities: - uid: 42 type: Wire components: - - parent: 0 - pos: -12.5,4.5 + - parent: 15 + pos: 2.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -683,8 +677,8 @@ entities: - uid: 43 type: Wire components: - - parent: 0 - pos: -13.5,4.5 + - parent: 15 + pos: 1.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -696,8 +690,8 @@ entities: - uid: 44 type: Wire components: - - parent: 0 - pos: -14.5,4.5 + - parent: 15 + pos: 0.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -709,8 +703,8 @@ entities: - uid: 45 type: Wire components: - - parent: 0 - pos: -15.5,4.5 + - parent: 15 + pos: -0.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -722,8 +716,8 @@ entities: - uid: 46 type: Wire components: - - parent: 0 - pos: -16.5,4.5 + - parent: 15 + pos: -1.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -735,8 +729,8 @@ entities: - uid: 47 type: Wire components: - - parent: 0 - pos: -17.5,4.5 + - parent: 15 + pos: -2.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -748,8 +742,8 @@ entities: - uid: 48 type: Wire components: - - parent: 0 - pos: -18.5,4.5 + - parent: 15 + pos: -3.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -761,8 +755,8 @@ entities: - uid: 49 type: Wire components: - - parent: 0 - pos: -19.5,4.5 + - parent: 15 + pos: -4.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -774,8 +768,8 @@ entities: - uid: 50 type: Wire components: - - parent: 0 - pos: -20.5,4.5 + - parent: 15 + pos: -5.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -787,8 +781,8 @@ entities: - uid: 51 type: Wire components: - - parent: 0 - pos: -21.5,4.5 + - parent: 15 + pos: -6.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -800,8 +794,8 @@ entities: - uid: 52 type: Wire components: - - parent: 0 - pos: -22.5,4.5 + - parent: 15 + pos: -7.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -813,8 +807,8 @@ entities: - uid: 53 type: Wire components: - - parent: 0 - pos: -23.5,4.5 + - parent: 15 + pos: -8.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -826,8 +820,8 @@ entities: - uid: 54 type: Wire components: - - parent: 0 - pos: -24.5,4.5 + - parent: 15 + pos: -9.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -839,8 +833,8 @@ entities: - uid: 55 type: Wire components: - - parent: 0 - pos: -25.5,4.5 + - parent: 15 + pos: -10.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -852,8 +846,8 @@ entities: - uid: 56 type: Wire components: - - parent: 0 - pos: -26.5,4.5 + - parent: 15 + pos: -11.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -865,8 +859,8 @@ entities: - uid: 57 type: Wire components: - - parent: 0 - pos: -27.5,4.5 + - parent: 15 + pos: -12.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -878,8 +872,8 @@ entities: - uid: 58 type: Wire components: - - parent: 0 - pos: -28.5,4.5 + - parent: 15 + pos: -13.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -891,8 +885,8 @@ entities: - uid: 59 type: Wire components: - - parent: 0 - pos: -29.5,4.5 + - parent: 15 + pos: -14.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -904,8 +898,8 @@ entities: - uid: 60 type: Wire components: - - parent: 0 - pos: -30.5,4.5 + - parent: 15 + pos: -15.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -917,8 +911,8 @@ entities: - uid: 61 type: Wire components: - - parent: 0 - pos: -31.5,4.5 + - parent: 15 + pos: -16.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -930,8 +924,8 @@ entities: - uid: 62 type: Wire components: - - parent: 0 - pos: -32.5,4.5 + - parent: 15 + pos: -17.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -943,8 +937,8 @@ entities: - uid: 63 type: Wire components: - - parent: 0 - pos: -33.5,4.5 + - parent: 15 + pos: -18.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -956,8 +950,8 @@ entities: - uid: 64 type: Wire components: - - parent: 0 - pos: -34.5,4.5 + - parent: 15 + pos: -19.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -969,8 +963,8 @@ entities: - uid: 65 type: Wire components: - - parent: 0 - pos: -35.5,4.5 + - parent: 15 + pos: -20.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -982,8 +976,8 @@ entities: - uid: 66 type: Wire components: - - parent: 0 - pos: -36.5,4.5 + - parent: 15 + pos: -21.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -995,8 +989,8 @@ entities: - uid: 67 type: Wire components: - - parent: 0 - pos: 3.5,5.5 + - parent: 15 + pos: -22.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1008,8 +1002,8 @@ entities: - uid: 68 type: Wire components: - - parent: 0 - pos: 3.5,6.5 + - parent: 15 + pos: -23.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1021,8 +1015,8 @@ entities: - uid: 69 type: Wire components: - - parent: 0 - pos: 3.5,7.5 + - parent: 15 + pos: -24.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1034,8 +1028,8 @@ entities: - uid: 70 type: Wire components: - - parent: 0 - pos: 3.5,8.5 + - parent: 15 + pos: -25.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1047,8 +1041,8 @@ entities: - uid: 71 type: Wire components: - - parent: 0 - pos: 3.5,9.5 + - parent: 15 + pos: -26.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1060,8 +1054,8 @@ entities: - uid: 72 type: Wire components: - - parent: 0 - pos: 3.5,10.5 + - parent: 15 + pos: -27.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1073,8 +1067,8 @@ entities: - uid: 73 type: Wire components: - - parent: 0 - pos: 3.5,11.5 + - parent: 15 + pos: -28.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1086,8 +1080,8 @@ entities: - uid: 74 type: Wire components: - - parent: 0 - pos: 3.5,12.5 + - parent: 15 + pos: -29.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1099,8 +1093,8 @@ entities: - uid: 75 type: Wire components: - - parent: 0 - pos: 3.5,13.5 + - parent: 15 + pos: -30.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1112,8 +1106,8 @@ entities: - uid: 76 type: Wire components: - - parent: 0 - pos: 3.5,14.5 + - parent: 15 + pos: -31.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1125,8 +1119,8 @@ entities: - uid: 77 type: Wire components: - - parent: 0 - pos: 3.5,15.5 + - parent: 15 + pos: -32.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1138,8 +1132,8 @@ entities: - uid: 78 type: Wire components: - - parent: 0 - pos: 3.5,16.5 + - parent: 15 + pos: -33.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1151,8 +1145,8 @@ entities: - uid: 79 type: Wire components: - - parent: 0 - pos: 3.5,17.5 + - parent: 15 + pos: -34.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1164,8 +1158,8 @@ entities: - uid: 80 type: Wire components: - - parent: 0 - pos: 3.5,18.5 + - parent: 15 + pos: -35.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1177,8 +1171,8 @@ entities: - uid: 81 type: Wire components: - - parent: 0 - pos: 3.5,19.5 + - parent: 15 + pos: -36.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1190,8 +1184,8 @@ entities: - uid: 82 type: Wire components: - - parent: 0 - pos: 3.5,20.5 + - parent: 15 + pos: 3.5,5.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1203,8 +1197,8 @@ entities: - uid: 83 type: Wire components: - - parent: 0 - pos: 3.5,3.5 + - parent: 15 + pos: 3.5,6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1216,8 +1210,8 @@ entities: - uid: 84 type: Wire components: - - parent: 0 - pos: 3.5,2.5 + - parent: 15 + pos: 3.5,7.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1229,8 +1223,8 @@ entities: - uid: 85 type: Wire components: - - parent: 0 - pos: 3.5,1.5 + - parent: 15 + pos: 3.5,8.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1242,8 +1236,8 @@ entities: - uid: 86 type: Wire components: - - parent: 0 - pos: 3.5,0.5 + - parent: 15 + pos: 3.5,9.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1255,8 +1249,8 @@ entities: - uid: 87 type: Wire components: - - parent: 0 - pos: 3.5,-0.5 + - parent: 15 + pos: 3.5,10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1268,8 +1262,8 @@ entities: - uid: 88 type: Wire components: - - parent: 0 - pos: 3.5,-1.5 + - parent: 15 + pos: 3.5,11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1281,8 +1275,8 @@ entities: - uid: 89 type: Wire components: - - parent: 0 - pos: 3.5,-2.5 + - parent: 15 + pos: 3.5,12.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1294,8 +1288,8 @@ entities: - uid: 90 type: Wire components: - - parent: 0 - pos: 3.5,-3.5 + - parent: 15 + pos: 3.5,13.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1307,8 +1301,8 @@ entities: - uid: 91 type: Wire components: - - parent: 0 - pos: 3.5,-4.5 + - parent: 15 + pos: 3.5,14.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1320,8 +1314,8 @@ entities: - uid: 92 type: Wire components: - - parent: 0 - pos: 3.5,-5.5 + - parent: 15 + pos: 3.5,15.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1333,8 +1327,8 @@ entities: - uid: 93 type: Wire components: - - parent: 0 - pos: 3.5,-6.5 + - parent: 15 + pos: 3.5,16.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1346,8 +1340,8 @@ entities: - uid: 94 type: Wire components: - - parent: 0 - pos: 3.5,-7.5 + - parent: 15 + pos: 3.5,17.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1359,8 +1353,8 @@ entities: - uid: 95 type: Wire components: - - parent: 0 - pos: 3.5,-8.5 + - parent: 15 + pos: 3.5,18.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1372,8 +1366,8 @@ entities: - uid: 96 type: Wire components: - - parent: 0 - pos: 3.5,-9.5 + - parent: 15 + pos: 3.5,19.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1385,8 +1379,8 @@ entities: - uid: 97 type: Wire components: - - parent: 0 - pos: 3.5,-10.5 + - parent: 15 + pos: 3.5,20.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1398,8 +1392,8 @@ entities: - uid: 98 type: Wire components: - - parent: 0 - pos: 3.5,-11.5 + - parent: 15 + pos: 3.5,3.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1411,8 +1405,8 @@ entities: - uid: 99 type: Wire components: - - parent: 0 - pos: 3.5,-12.5 + - parent: 15 + pos: 3.5,2.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1424,8 +1418,8 @@ entities: - uid: 100 type: Wire components: - - parent: 0 - pos: 3.5,-13.5 + - parent: 15 + pos: 3.5,1.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1437,8 +1431,8 @@ entities: - uid: 101 type: Wire components: - - parent: 0 - pos: 3.5,-14.5 + - parent: 15 + pos: 3.5,0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1450,8 +1444,8 @@ entities: - uid: 102 type: Wire components: - - parent: 0 - pos: 3.5,-15.5 + - parent: 15 + pos: 3.5,-0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1463,8 +1457,8 @@ entities: - uid: 103 type: Wire components: - - parent: 0 - pos: 3.5,-16.5 + - parent: 15 + pos: 3.5,-1.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1476,8 +1470,8 @@ entities: - uid: 104 type: Wire components: - - parent: 0 - pos: 3.5,-17.5 + - parent: 15 + pos: 3.5,-2.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1489,8 +1483,8 @@ entities: - uid: 105 type: Wire components: - - parent: 0 - pos: 3.5,-18.5 + - parent: 15 + pos: 3.5,-3.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1502,8 +1496,8 @@ entities: - uid: 106 type: Wire components: - - parent: 0 - pos: 3.5,-19.5 + - parent: 15 + pos: 3.5,-4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1515,8 +1509,8 @@ entities: - uid: 107 type: Wire components: - - parent: 0 - pos: 3.5,-20.5 + - parent: 15 + pos: 3.5,-5.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1528,8 +1522,8 @@ entities: - uid: 108 type: Wire components: - - parent: 0 - pos: 3.5,-21.5 + - parent: 15 + pos: 3.5,-6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1541,8 +1535,8 @@ entities: - uid: 109 type: Wire components: - - parent: 0 - pos: 3.5,-22.5 + - parent: 15 + pos: 3.5,-7.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1554,8 +1548,8 @@ entities: - uid: 110 type: Wire components: - - parent: 0 - pos: 3.5,-23.5 + - parent: 15 + pos: 3.5,-8.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1567,8 +1561,8 @@ entities: - uid: 111 type: Wire components: - - parent: 0 - pos: 7.5,-19.5 + - parent: 15 + pos: 3.5,-9.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1580,8 +1574,8 @@ entities: - uid: 112 type: Wire components: - - parent: 0 - pos: 5.5,-19.5 + - parent: 15 + pos: 3.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1593,8 +1587,8 @@ entities: - uid: 113 type: Wire components: - - parent: 0 - pos: 4.5,-19.5 + - parent: 15 + pos: 3.5,-11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1606,8 +1600,8 @@ entities: - uid: 114 type: Wire components: - - parent: 0 - pos: 6.5,-19.5 + - parent: 15 + pos: 3.5,-12.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1619,8 +1613,8 @@ entities: - uid: 115 type: Wire components: - - parent: 0 - pos: 7.5,-20.5 + - parent: 15 + pos: 3.5,-13.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1632,8 +1626,8 @@ entities: - uid: 116 type: Wire components: - - parent: 0 - pos: 8.5,-20.5 + - parent: 15 + pos: 3.5,-14.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1645,8 +1639,8 @@ entities: - uid: 117 type: Wire components: - - parent: 0 - pos: 9.5,-20.5 + - parent: 15 + pos: 3.5,-15.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1658,8 +1652,8 @@ entities: - uid: 118 type: Wire components: - - parent: 0 - pos: 10.5,-20.5 + - parent: 15 + pos: 3.5,-16.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1671,8 +1665,8 @@ entities: - uid: 119 type: Wire components: - - parent: 0 - pos: 11.5,-20.5 + - parent: 15 + pos: 3.5,-17.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1684,8 +1678,8 @@ entities: - uid: 120 type: Wire components: - - parent: 0 - pos: 12.5,-20.5 + - parent: 15 + pos: 3.5,-18.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1697,8 +1691,8 @@ entities: - uid: 121 type: Wire components: - - parent: 0 - pos: 13.5,-20.5 + - parent: 15 + pos: 3.5,-19.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1710,8 +1704,8 @@ entities: - uid: 122 type: Wire components: - - parent: 0 - pos: 14.5,-20.5 + - parent: 15 + pos: 3.5,-20.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1723,8 +1717,8 @@ entities: - uid: 123 type: Wire components: - - parent: 0 - pos: 18.5,-25.5 + - parent: 15 + pos: 3.5,-21.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1736,8 +1730,8 @@ entities: - uid: 124 type: Wire components: - - parent: 0 - pos: 17.5,-25.5 + - parent: 15 + pos: 3.5,-22.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1749,8 +1743,8 @@ entities: - uid: 125 type: Wire components: - - parent: 0 - pos: 16.5,-25.5 + - parent: 15 + pos: 3.5,-23.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1762,8 +1756,8 @@ entities: - uid: 126 type: Wire components: - - parent: 0 - pos: 15.5,-25.5 + - parent: 15 + pos: 7.5,-19.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1775,8 +1769,8 @@ entities: - uid: 127 type: Wire components: - - parent: 0 - pos: 14.5,-25.5 + - parent: 15 + pos: 5.5,-19.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1788,8 +1782,8 @@ entities: - uid: 128 type: Wire components: - - parent: 0 - pos: 14.5,-25.5 + - parent: 15 + pos: 4.5,-19.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1801,8 +1795,8 @@ entities: - uid: 129 type: Wire components: - - parent: 0 - pos: 14.5,-24.5 + - parent: 15 + pos: 6.5,-19.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1814,8 +1808,8 @@ entities: - uid: 130 type: Wire components: - - parent: 0 - pos: 22.5,-20.5 + - parent: 15 + pos: 7.5,-20.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1827,8 +1821,8 @@ entities: - uid: 131 type: Wire components: - - parent: 0 - pos: 22.5,-19.5 + - parent: 15 + pos: 8.5,-20.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1840,8 +1834,8 @@ entities: - uid: 132 type: Wire components: - - parent: 0 - pos: 22.5,-18.5 + - parent: 15 + pos: 9.5,-20.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1853,8 +1847,8 @@ entities: - uid: 133 type: Wire components: - - parent: 0 - pos: 22.5,-17.5 + - parent: 15 + pos: 10.5,-20.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1866,8 +1860,8 @@ entities: - uid: 134 type: Wire components: - - parent: 0 - pos: 23.5,-17.5 + - parent: 15 + pos: 11.5,-20.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1879,8 +1873,8 @@ entities: - uid: 135 type: Wire components: - - parent: 0 - pos: 24.5,-17.5 + - parent: 15 + pos: 12.5,-20.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1892,8 +1886,8 @@ entities: - uid: 136 type: Wire components: - - parent: 0 - pos: 25.5,-17.5 + - parent: 15 + pos: 13.5,-20.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1905,8 +1899,8 @@ entities: - uid: 137 type: Wire components: - - parent: 0 - pos: 26.5,-17.5 + - parent: 15 + pos: 14.5,-20.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1918,8 +1912,8 @@ entities: - uid: 138 type: Wire components: - - parent: 0 - pos: 26.5,-16.5 + - parent: 15 + pos: 18.5,-25.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1931,8 +1925,8 @@ entities: - uid: 139 type: Wire components: - - parent: 0 - pos: 26.5,-15.5 + - parent: 15 + pos: 17.5,-25.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1944,8 +1938,8 @@ entities: - uid: 140 type: Wire components: - - parent: 0 - pos: 26.5,-14.5 + - parent: 15 + pos: 16.5,-25.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1957,8 +1951,8 @@ entities: - uid: 141 type: Wire components: - - parent: 0 - pos: 26.5,-13.5 + - parent: 15 + pos: 15.5,-25.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1970,8 +1964,8 @@ entities: - uid: 142 type: Wire components: - - parent: 0 - pos: 26.5,-12.5 + - parent: 15 + pos: 14.5,-25.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1983,8 +1977,8 @@ entities: - uid: 143 type: Wire components: - - parent: 0 - pos: 26.5,-11.5 + - parent: 15 + pos: 14.5,-25.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -1994,17 +1988,23 @@ entities: - AdjacentNode type: NodeContainer - uid: 144 - type: Catwalk + type: Wire components: - - parent: 0 - pos: 22.5,-18.5 + - parent: 15 + pos: 14.5,-24.5 rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 145 type: Wire components: - - parent: 0 - pos: 26.5,-10.5 + - parent: 15 + pos: 22.5,-20.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2016,8 +2016,8 @@ entities: - uid: 146 type: Wire components: - - parent: 0 - pos: 26.5,-2.5 + - parent: 15 + pos: 22.5,-19.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2029,8 +2029,8 @@ entities: - uid: 147 type: Wire components: - - parent: 0 - pos: 26.5,-3.5 + - parent: 15 + pos: 22.5,-18.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2042,8 +2042,8 @@ entities: - uid: 148 type: Wire components: - - parent: 0 - pos: 26.5,-4.5 + - parent: 15 + pos: 22.5,-17.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2055,8 +2055,8 @@ entities: - uid: 149 type: Wire components: - - parent: 0 - pos: 26.5,-5.5 + - parent: 15 + pos: 23.5,-17.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2068,8 +2068,8 @@ entities: - uid: 150 type: Wire components: - - parent: 0 - pos: 26.5,-6.5 + - parent: 15 + pos: 24.5,-17.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2081,8 +2081,8 @@ entities: - uid: 151 type: Wire components: - - parent: 0 - pos: 26.5,-7.5 + - parent: 15 + pos: 25.5,-17.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2094,8 +2094,8 @@ entities: - uid: 152 type: Wire components: - - parent: 0 - pos: 26.5,-8.5 + - parent: 15 + pos: 26.5,-17.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2107,8 +2107,8 @@ entities: - uid: 153 type: Wire components: - - parent: 0 - pos: 26.5,-9.5 + - parent: 15 + pos: 26.5,-16.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2120,8 +2120,8 @@ entities: - uid: 154 type: Wire components: - - parent: 0 - pos: 25.5,-2.5 + - parent: 15 + pos: 26.5,-15.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2133,8 +2133,8 @@ entities: - uid: 155 type: Wire components: - - parent: 0 - pos: 24.5,-2.5 + - parent: 15 + pos: 26.5,-14.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2146,8 +2146,8 @@ entities: - uid: 156 type: Wire components: - - parent: 0 - pos: 23.5,-2.5 + - parent: 15 + pos: 26.5,-13.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2159,8 +2159,8 @@ entities: - uid: 157 type: Wire components: - - parent: 0 - pos: 22.5,-2.5 + - parent: 15 + pos: 26.5,-12.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2172,8 +2172,8 @@ entities: - uid: 158 type: Wire components: - - parent: 0 - pos: 21.5,-2.5 + - parent: 15 + pos: 26.5,-11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2183,23 +2183,17 @@ entities: - AdjacentNode type: NodeContainer - uid: 159 - type: Wire + type: Catwalk components: - - parent: 0 - pos: 20.5,-2.5 + - parent: 15 + pos: 22.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 160 type: Wire components: - - parent: 0 - pos: 20.5,-1.5 + - parent: 15 + pos: 26.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2211,8 +2205,8 @@ entities: - uid: 161 type: Wire components: - - parent: 0 - pos: 20.5,-0.5 + - parent: 15 + pos: 26.5,-2.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2224,8 +2218,8 @@ entities: - uid: 162 type: Wire components: - - parent: 0 - pos: 20.5,0.5 + - parent: 15 + pos: 26.5,-3.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2237,8 +2231,8 @@ entities: - uid: 163 type: Wire components: - - parent: 0 - pos: 20.5,1.5 + - parent: 15 + pos: 26.5,-4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2250,8 +2244,8 @@ entities: - uid: 164 type: Wire components: - - parent: 0 - pos: 21.5,1.5 + - parent: 15 + pos: 26.5,-5.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2263,8 +2257,8 @@ entities: - uid: 165 type: Wire components: - - parent: 0 - pos: 21.5,2.5 + - parent: 15 + pos: 26.5,-6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2276,8 +2270,8 @@ entities: - uid: 166 type: Wire components: - - parent: 0 - pos: 21.5,3.5 + - parent: 15 + pos: 26.5,-7.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2289,8 +2283,8 @@ entities: - uid: 167 type: Wire components: - - parent: 0 - pos: 27.5,5.5 + - parent: 15 + pos: 26.5,-8.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2302,8 +2296,8 @@ entities: - uid: 168 type: Wire components: - - parent: 0 - pos: 27.5,6.5 + - parent: 15 + pos: 26.5,-9.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2315,8 +2309,8 @@ entities: - uid: 169 type: Wire components: - - parent: 0 - pos: 27.5,7.5 + - parent: 15 + pos: 25.5,-2.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2326,31 +2320,49 @@ entities: - AdjacentNode type: NodeContainer - uid: 170 - type: Catwalk + type: Wire components: - - parent: 0 - pos: 10.5,14.5 + - parent: 15 + pos: 24.5,-2.5 rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 171 - type: Catwalk + type: Wire components: - - parent: 0 - pos: 12.5,14.5 + - parent: 15 + pos: 23.5,-2.5 rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 172 - type: Catwalk + type: Wire components: - - parent: 0 - pos: 11.5,14.5 + - parent: 15 + pos: 22.5,-2.5 rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 173 type: Wire components: - - parent: 0 - pos: 25.5,9.5 + - parent: 15 + pos: 21.5,-2.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2362,8 +2374,8 @@ entities: - uid: 174 type: Wire components: - - parent: 0 - pos: 24.5,9.5 + - parent: 15 + pos: 20.5,-2.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2375,8 +2387,8 @@ entities: - uid: 175 type: Wire components: - - parent: 0 - pos: 23.5,9.5 + - parent: 15 + pos: 20.5,-1.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2388,8 +2400,8 @@ entities: - uid: 176 type: Wire components: - - parent: 0 - pos: 22.5,9.5 + - parent: 15 + pos: 20.5,-0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2401,8 +2413,8 @@ entities: - uid: 177 type: Wire components: - - parent: 0 - pos: 21.5,9.5 + - parent: 15 + pos: 20.5,0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2414,8 +2426,8 @@ entities: - uid: 178 type: Wire components: - - parent: 0 - pos: 21.5,10.5 + - parent: 15 + pos: 20.5,1.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2427,8 +2439,8 @@ entities: - uid: 179 type: Wire components: - - parent: 0 - pos: 20.5,10.5 + - parent: 15 + pos: 21.5,1.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2440,8 +2452,8 @@ entities: - uid: 180 type: Wire components: - - parent: 0 - pos: 19.5,10.5 + - parent: 15 + pos: 21.5,2.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2453,8 +2465,8 @@ entities: - uid: 181 type: Wire components: - - parent: 0 - pos: 18.5,10.5 + - parent: 15 + pos: 21.5,3.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2466,8 +2478,8 @@ entities: - uid: 182 type: Wire components: - - parent: 0 - pos: 17.5,10.5 + - parent: 15 + pos: 27.5,5.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2479,8 +2491,8 @@ entities: - uid: 183 type: Wire components: - - parent: 0 - pos: 16.5,10.5 + - parent: 15 + pos: 27.5,6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2492,8 +2504,8 @@ entities: - uid: 184 type: Wire components: - - parent: 0 - pos: 15.5,10.5 + - parent: 15 + pos: 27.5,7.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2503,49 +2515,31 @@ entities: - AdjacentNode type: NodeContainer - uid: 185 - type: Wire + type: Catwalk components: - - parent: 0 - pos: 14.5,10.5 + - parent: 15 + pos: 10.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 186 - type: Wire + type: Catwalk components: - - parent: 0 - pos: 13.5,10.5 + - parent: 15 + pos: 12.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 187 - type: Wire + type: Catwalk components: - - parent: 0 - pos: 13.5,9.5 + - parent: 15 + pos: 11.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 188 type: Wire components: - - parent: 0 - pos: 13.5,8.5 + - parent: 15 + pos: 25.5,9.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2557,8 +2551,8 @@ entities: - uid: 189 type: Wire components: - - parent: 0 - pos: 13.5,7.5 + - parent: 15 + pos: 24.5,9.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2570,8 +2564,8 @@ entities: - uid: 190 type: Wire components: - - parent: 0 - pos: 13.5,6.5 + - parent: 15 + pos: 23.5,9.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2583,8 +2577,8 @@ entities: - uid: 191 type: Wire components: - - parent: 0 - pos: 13.5,5.5 + - parent: 15 + pos: 22.5,9.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2596,8 +2590,8 @@ entities: - uid: 192 type: Wire components: - - parent: 0 - pos: 4.5,14.5 + - parent: 15 + pos: 21.5,9.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2609,8 +2603,8 @@ entities: - uid: 193 type: Wire components: - - parent: 0 - pos: 6.5,14.5 + - parent: 15 + pos: 21.5,10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2622,8 +2616,8 @@ entities: - uid: 194 type: Wire components: - - parent: 0 - pos: 5.5,14.5 + - parent: 15 + pos: 20.5,10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2635,8 +2629,8 @@ entities: - uid: 195 type: Wire components: - - parent: 0 - pos: 6.5,13.5 + - parent: 15 + pos: 19.5,10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2648,8 +2642,8 @@ entities: - uid: 196 type: Wire components: - - parent: 0 - pos: 7.5,13.5 + - parent: 15 + pos: 18.5,10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2661,8 +2655,8 @@ entities: - uid: 197 type: Wire components: - - parent: 0 - pos: 8.5,13.5 + - parent: 15 + pos: 17.5,10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2674,8 +2668,8 @@ entities: - uid: 198 type: Wire components: - - parent: 0 - pos: 8.5,12.5 + - parent: 15 + pos: 16.5,10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2687,8 +2681,8 @@ entities: - uid: 199 type: Wire components: - - parent: 0 - pos: 8.5,11.5 + - parent: 15 + pos: 15.5,10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2700,8 +2694,8 @@ entities: - uid: 200 type: Wire components: - - parent: 0 - pos: 9.5,13.5 + - parent: 15 + pos: 14.5,10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2713,8 +2707,8 @@ entities: - uid: 201 type: Wire components: - - parent: 0 - pos: 10.5,13.5 + - parent: 15 + pos: 13.5,10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2726,8 +2720,8 @@ entities: - uid: 202 type: Wire components: - - parent: 0 - pos: 10.5,14.5 + - parent: 15 + pos: 13.5,9.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2739,8 +2733,8 @@ entities: - uid: 203 type: Wire components: - - parent: 0 - pos: 11.5,14.5 + - parent: 15 + pos: 13.5,8.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2752,8 +2746,8 @@ entities: - uid: 204 type: Wire components: - - parent: 0 - pos: 12.5,14.5 + - parent: 15 + pos: 13.5,7.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2765,8 +2759,8 @@ entities: - uid: 205 type: Wire components: - - parent: 0 - pos: 12.5,15.5 + - parent: 15 + pos: 13.5,6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2778,8 +2772,8 @@ entities: - uid: 206 type: Wire components: - - parent: 0 - pos: 12.5,16.5 + - parent: 15 + pos: 13.5,5.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2791,8 +2785,8 @@ entities: - uid: 207 type: Wire components: - - parent: 0 - pos: 12.5,17.5 + - parent: 15 + pos: 4.5,14.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2804,8 +2798,8 @@ entities: - uid: 208 type: Wire components: - - parent: 0 - pos: 12.5,18.5 + - parent: 15 + pos: 6.5,14.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2817,8 +2811,8 @@ entities: - uid: 209 type: Wire components: - - parent: 0 - pos: 12.5,19.5 + - parent: 15 + pos: 5.5,14.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2830,8 +2824,8 @@ entities: - uid: 210 type: Wire components: - - parent: 0 - pos: 12.5,20.5 + - parent: 15 + pos: 6.5,13.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2843,8 +2837,8 @@ entities: - uid: 211 type: Wire components: - - parent: 0 - pos: 11.5,20.5 + - parent: 15 + pos: 7.5,13.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2856,8 +2850,8 @@ entities: - uid: 212 type: Wire components: - - parent: 0 - pos: 10.5,20.5 + - parent: 15 + pos: 8.5,13.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2869,8 +2863,8 @@ entities: - uid: 213 type: Wire components: - - parent: 0 - pos: 26.5,9.5 + - parent: 15 + pos: 8.5,12.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2882,8 +2876,8 @@ entities: - uid: 214 type: Wire components: - - parent: 0 - pos: 26.5,8.5 + - parent: 15 + pos: 8.5,11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2895,8 +2889,8 @@ entities: - uid: 215 type: Wire components: - - parent: 0 - pos: 27.5,8.5 + - parent: 15 + pos: 9.5,13.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2908,8 +2902,8 @@ entities: - uid: 216 type: Wire components: - - parent: 0 - pos: 2.5,-23.5 + - parent: 15 + pos: 10.5,13.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2921,8 +2915,8 @@ entities: - uid: 217 type: Wire components: - - parent: 0 - pos: 1.5,-23.5 + - parent: 15 + pos: 10.5,14.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2934,8 +2928,8 @@ entities: - uid: 218 type: Wire components: - - parent: 0 - pos: 0.5,-23.5 + - parent: 15 + pos: 11.5,14.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2947,8 +2941,8 @@ entities: - uid: 219 type: Wire components: - - parent: 0 - pos: -0.5,-24.5 + - parent: 15 + pos: 12.5,14.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2960,8 +2954,8 @@ entities: - uid: 220 type: Wire components: - - parent: 0 - pos: 2.5,-19.5 + - parent: 15 + pos: 12.5,15.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2973,8 +2967,8 @@ entities: - uid: 221 type: Wire components: - - parent: 0 - pos: 1.5,-19.5 + - parent: 15 + pos: 12.5,16.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2986,8 +2980,8 @@ entities: - uid: 222 type: Wire components: - - parent: 0 - pos: 0.5,-19.5 + - parent: 15 + pos: 12.5,17.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -2999,8 +2993,8 @@ entities: - uid: 223 type: Wire components: - - parent: 0 - pos: -0.5,-19.5 + - parent: 15 + pos: 12.5,18.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3012,8 +3006,8 @@ entities: - uid: 224 type: Wire components: - - parent: 0 - pos: -1.5,-19.5 + - parent: 15 + pos: 12.5,19.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3025,8 +3019,8 @@ entities: - uid: 225 type: Wire components: - - parent: 0 - pos: -2.5,-19.5 + - parent: 15 + pos: 12.5,20.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3038,8 +3032,8 @@ entities: - uid: 226 type: Wire components: - - parent: 0 - pos: -3.5,-19.5 + - parent: 15 + pos: 11.5,20.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3051,8 +3045,8 @@ entities: - uid: 227 type: Wire components: - - parent: 0 - pos: -4.5,-19.5 + - parent: 15 + pos: 10.5,20.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3064,8 +3058,8 @@ entities: - uid: 228 type: Wire components: - - parent: 0 - pos: -5.5,-19.5 + - parent: 15 + pos: 26.5,9.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3077,8 +3071,8 @@ entities: - uid: 229 type: Wire components: - - parent: 0 - pos: -6.5,-19.5 + - parent: 15 + pos: 26.5,8.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3090,8 +3084,8 @@ entities: - uid: 230 type: Wire components: - - parent: 0 - pos: -7.5,-19.5 + - parent: 15 + pos: 27.5,8.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3103,8 +3097,8 @@ entities: - uid: 231 type: Wire components: - - parent: 0 - pos: -8.5,-19.5 + - parent: 15 + pos: 2.5,-23.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3116,8 +3110,8 @@ entities: - uid: 232 type: Wire components: - - parent: 0 - pos: -9.5,-19.5 + - parent: 15 + pos: 1.5,-23.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3129,8 +3123,8 @@ entities: - uid: 233 type: Wire components: - - parent: 0 - pos: -10.5,-19.5 + - parent: 15 + pos: 0.5,-23.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3142,8 +3136,8 @@ entities: - uid: 234 type: Wire components: - - parent: 0 - pos: -11.5,-19.5 + - parent: 15 + pos: -0.5,-24.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3155,8 +3149,8 @@ entities: - uid: 235 type: Wire components: - - parent: 0 - pos: -8.5,-20.5 + - parent: 15 + pos: 2.5,-19.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3168,8 +3162,8 @@ entities: - uid: 236 type: Wire components: - - parent: 0 - pos: -8.5,-21.5 + - parent: 15 + pos: 1.5,-19.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3181,8 +3175,8 @@ entities: - uid: 237 type: Wire components: - - parent: 0 - pos: -8.5,-22.5 + - parent: 15 + pos: 0.5,-19.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3194,8 +3188,8 @@ entities: - uid: 238 type: Wire components: - - parent: 0 - pos: -9.5,-22.5 + - parent: 15 + pos: -0.5,-19.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3207,8 +3201,8 @@ entities: - uid: 239 type: Wire components: - - parent: 0 - pos: -11.5,-20.5 + - parent: 15 + pos: -1.5,-19.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3220,8 +3214,8 @@ entities: - uid: 240 type: Wire components: - - parent: 0 - pos: -11.5,-21.5 + - parent: 15 + pos: -2.5,-19.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3233,8 +3227,8 @@ entities: - uid: 241 type: Wire components: - - parent: 0 - pos: -11.5,-22.5 + - parent: 15 + pos: -3.5,-19.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3246,8 +3240,8 @@ entities: - uid: 242 type: Wire components: - - parent: 0 - pos: -11.5,-23.5 + - parent: 15 + pos: -4.5,-19.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3259,8 +3253,8 @@ entities: - uid: 243 type: Wire components: - - parent: 0 - pos: -11.5,-24.5 + - parent: 15 + pos: -5.5,-19.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3272,8 +3266,8 @@ entities: - uid: 244 type: Wire components: - - parent: 0 - pos: -11.5,-25.5 + - parent: 15 + pos: -6.5,-19.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3285,8 +3279,8 @@ entities: - uid: 245 type: Wire components: - - parent: 0 - pos: -11.5,-26.5 + - parent: 15 + pos: -7.5,-19.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3298,8 +3292,8 @@ entities: - uid: 246 type: Wire components: - - parent: 0 - pos: -10.5,-26.5 + - parent: 15 + pos: -8.5,-19.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3311,8 +3305,8 @@ entities: - uid: 247 type: Wire components: - - parent: 0 - pos: -9.5,-26.5 + - parent: 15 + pos: -9.5,-19.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3324,8 +3318,8 @@ entities: - uid: 248 type: Wire components: - - parent: 0 - pos: -8.5,-26.5 + - parent: 15 + pos: -10.5,-19.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3337,8 +3331,8 @@ entities: - uid: 249 type: Wire components: - - parent: 0 - pos: -7.5,-26.5 + - parent: 15 + pos: -11.5,-19.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3350,8 +3344,8 @@ entities: - uid: 250 type: Wire components: - - parent: 0 - pos: -6.5,-26.5 + - parent: 15 + pos: -8.5,-20.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3363,8 +3357,8 @@ entities: - uid: 251 type: Wire components: - - parent: 0 - pos: -5.5,-26.5 + - parent: 15 + pos: -8.5,-21.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3376,8 +3370,8 @@ entities: - uid: 252 type: Wire components: - - parent: 0 - pos: -4.5,-26.5 + - parent: 15 + pos: -8.5,-22.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3389,8 +3383,8 @@ entities: - uid: 253 type: Wire components: - - parent: 0 - pos: -3.5,-26.5 + - parent: 15 + pos: -9.5,-22.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3402,8 +3396,8 @@ entities: - uid: 254 type: Wire components: - - parent: 0 - pos: -2.5,-26.5 + - parent: 15 + pos: -11.5,-20.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3415,8 +3409,8 @@ entities: - uid: 255 type: Wire components: - - parent: 0 - pos: -1.5,-26.5 + - parent: 15 + pos: -11.5,-21.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3428,8 +3422,8 @@ entities: - uid: 256 type: Wire components: - - parent: 0 - pos: -0.5,-26.5 + - parent: 15 + pos: -11.5,-22.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3441,8 +3435,8 @@ entities: - uid: 257 type: Wire components: - - parent: 0 - pos: -0.5,-23.5 + - parent: 15 + pos: -11.5,-23.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3454,8 +3448,8 @@ entities: - uid: 258 type: Wire components: - - parent: 0 - pos: -0.5,-25.5 + - parent: 15 + pos: -11.5,-24.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3465,101 +3459,179 @@ entities: - AdjacentNode type: NodeContainer - uid: 259 - type: Catwalk + type: Wire components: - - parent: 0 - pos: -11.5,-22.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 260 - type: Catwalk - components: - - parent: 0 - pos: -11.5,-23.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 261 - type: Catwalk - components: - - parent: 0 - pos: -11.5,-24.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 262 - type: Catwalk - components: - - parent: 0 + - parent: 15 pos: -11.5,-25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 263 - type: Catwalk + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 260 + type: Wire components: - - parent: 0 + - parent: 15 pos: -11.5,-26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 264 - type: Catwalk + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 261 + type: Wire components: - - parent: 0 - pos: -0.5,-26.5 + - parent: 15 + pos: -10.5,-26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 265 - type: Catwalk + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 262 + type: Wire components: - - parent: 0 - pos: -0.5,-25.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 266 - type: Catwalk - components: - - parent: 0 - pos: -0.5,-24.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 267 - type: Catwalk - components: - - parent: 0 - pos: -0.5,-23.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 268 - type: Catwalk - components: - - parent: 0 - pos: 0.5,-23.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 269 - type: Catwalk - components: - - parent: 0 + - parent: 15 pos: -9.5,-26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 270 - type: Catwalk + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 263 + type: Wire components: - - parent: 0 + - parent: 15 pos: -8.5,-26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 271 - type: Catwalk + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 264 + type: Wire components: - - parent: 0 + - parent: 15 pos: -7.5,-26.5 rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 265 + type: Wire + components: + - parent: 15 + pos: -6.5,-26.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 266 + type: Wire + components: + - parent: 15 + pos: -5.5,-26.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 267 + type: Wire + components: + - parent: 15 + pos: -4.5,-26.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 268 + type: Wire + components: + - parent: 15 + pos: -3.5,-26.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 269 + type: Wire + components: + - parent: 15 + pos: -2.5,-26.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 270 + type: Wire + components: + - parent: 15 + pos: -1.5,-26.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 271 + type: Wire + components: + - parent: 15 + pos: -0.5,-26.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 272 type: Wire components: - - parent: 0 - pos: -12.5,-19.5 + - parent: 15 + pos: -0.5,-23.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3571,8 +3643,8 @@ entities: - uid: 273 type: Wire components: - - parent: 0 - pos: -13.5,-19.5 + - parent: 15 + pos: -0.5,-25.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3582,9 +3654,126 @@ entities: - AdjacentNode type: NodeContainer - uid: 274 + type: Catwalk + components: + - parent: 15 + pos: -11.5,-22.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 275 + type: Catwalk + components: + - parent: 15 + pos: -11.5,-23.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 276 + type: Catwalk + components: + - parent: 15 + pos: -11.5,-24.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 277 + type: Catwalk + components: + - parent: 15 + pos: -11.5,-25.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 278 + type: Catwalk + components: + - parent: 15 + pos: -11.5,-26.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 279 + type: Catwalk + components: + - parent: 15 + pos: -0.5,-26.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 280 + type: Catwalk + components: + - parent: 15 + pos: -0.5,-25.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 281 + type: Catwalk + components: + - parent: 15 + pos: -0.5,-24.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 282 + type: Catwalk + components: + - parent: 15 + pos: -0.5,-23.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 283 + type: Catwalk + components: + - parent: 15 + pos: 0.5,-23.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 284 + type: Catwalk + components: + - parent: 15 + pos: -9.5,-26.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 285 + type: Catwalk + components: + - parent: 15 + pos: -8.5,-26.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 286 + type: Catwalk + components: + - parent: 15 + pos: -7.5,-26.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 287 type: Wire components: - - parent: 0 + - parent: 15 + pos: -12.5,-19.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 288 + type: Wire + components: + - parent: 15 + pos: -13.5,-19.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 289 + type: Wire + components: + - parent: 15 pos: -14.5,-19.5 rot: -1.5707963267948966 rad type: Transform @@ -3594,10 +3783,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 275 +- uid: 290 type: Wire components: - - parent: 0 + - parent: 15 pos: -15.5,-19.5 rot: -1.5707963267948966 rad type: Transform @@ -3607,10 +3796,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 276 +- uid: 291 type: Wire components: - - parent: 0 + - parent: 15 pos: -16.5,-19.5 rot: -1.5707963267948966 rad type: Transform @@ -3620,154 +3809,11 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 277 - type: Wire - components: - - parent: 0 - pos: -16.5,-18.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 278 - type: Wire - components: - - parent: 0 - pos: -16.5,-17.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 279 - type: Wire - components: - - parent: 0 - pos: -16.5,-16.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 280 - type: Wire - components: - - parent: 0 - pos: -16.5,-15.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 281 - type: Wire - components: - - parent: 0 - pos: -16.5,-14.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 282 - type: Wire - components: - - parent: 0 - pos: 2.5,-7.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 283 - type: Wire - components: - - parent: 0 - pos: 1.5,-7.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 284 - type: PowerCellSmallHyper - components: - - parent: 2621 - type: Transform - - startingCharge: 1000 - type: PowerCell -- uid: 285 - type: FoodChocolateBar - components: - - parent: 2387 - type: Transform -- uid: 286 - type: BreathMaskClothing - components: - - parent: 2783 - type: Transform -- uid: 287 - type: BreathMaskClothing - components: - - parent: 2783 - type: Transform -- uid: 288 - type: BreathMaskClothing - components: - - parent: 2784 - type: Transform -- uid: 289 - type: APC - components: - - parent: 0 - pos: -19.5,-3.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 290 - type: Table - components: - - parent: 0 - pos: 30.5,-4.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 291 - type: BreathMaskClothing - components: - - parent: 2791 - type: Transform - uid: 292 type: Wire components: - - parent: 0 - pos: -3.5,-0.5 + - parent: 15 + pos: -16.5,-18.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3779,8 +3825,8 @@ entities: - uid: 293 type: Wire components: - - parent: 0 - pos: -1.5,-0.5 + - parent: 15 + pos: -16.5,-17.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3792,8 +3838,8 @@ entities: - uid: 294 type: Wire components: - - parent: 0 - pos: -2.5,-0.5 + - parent: 15 + pos: -16.5,-16.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3803,17 +3849,23 @@ entities: - AdjacentNode type: NodeContainer - uid: 295 - type: Catwalk + type: Wire components: - - parent: 0 - pos: 29.5,-6.5 + - parent: 15 + pos: -16.5,-15.5 rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 296 type: Wire components: - - parent: 0 - pos: -7.5,-0.5 + - parent: 15 + pos: -16.5,-14.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3823,17 +3875,23 @@ entities: - AdjacentNode type: NodeContainer - uid: 297 - type: Catwalk + type: Wire components: - - parent: 0 - pos: 33.5,-6.5 + - parent: 15 + pos: 2.5,-7.5 rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 298 type: Wire components: - - parent: 0 - pos: -6.5,-0.5 + - parent: 15 + pos: 1.5,-7.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3843,69 +3901,37 @@ entities: - AdjacentNode type: NodeContainer - uid: 299 - type: Wire + type: PowerCellSmallHyper components: - - parent: 0 - pos: -5.5,-0.5 - rot: -1.5707963267948966 rad + - parent: 2633 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer + - startingCharge: 1000 + type: PowerCell - uid: 300 - type: Catwalk + type: FoodChocolateBar components: - - parent: 0 - pos: 28.5,-6.5 - rot: -1.5707963267948966 rad + - parent: 2400 type: Transform - uid: 301 - type: Wire + type: BreathMaskClothing components: - - parent: 0 - pos: -9.5,-14.5 - rot: -1.5707963267948966 rad + - parent: 2795 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 302 - type: Wire + type: BreathMaskClothing components: - - parent: 0 - pos: -10.5,-14.5 - rot: -1.5707963267948966 rad + - parent: 2795 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 303 - type: Wire + type: BreathMaskClothing components: - - parent: 0 - pos: -11.5,-14.5 - rot: -1.5707963267948966 rad + - parent: 2796 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 304 - type: Wire + type: APC components: - - parent: 0 - pos: -12.5,-14.5 + - parent: 15 + pos: -19.5,-3.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3915,36 +3941,22 @@ entities: - AdjacentNode type: NodeContainer - uid: 305 - type: Wire + type: Table components: - - parent: 0 - pos: -13.5,-14.5 + - parent: 15 + pos: 30.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 306 - type: Wire + type: BreathMaskClothing components: - - parent: 0 - pos: -14.5,-14.5 - rot: -1.5707963267948966 rad + - parent: 2803 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 307 type: Wire components: - - parent: 0 - pos: -15.5,-14.5 + - parent: 15 + pos: -3.5,-0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3956,8 +3968,8 @@ entities: - uid: 308 type: Wire components: - - parent: 0 - pos: -13.5,-13.5 + - parent: 15 + pos: -1.5,-0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3969,8 +3981,8 @@ entities: - uid: 309 type: Wire components: - - parent: 0 - pos: -13.5,-12.5 + - parent: 15 + pos: -2.5,-0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -3982,15 +3994,15 @@ entities: - uid: 310 type: Catwalk components: - - parent: 0 - pos: 27.5,-6.5 + - parent: 15 + pos: 29.5,-6.5 rot: -1.5707963267948966 rad type: Transform - uid: 311 type: Wire components: - - parent: 0 - pos: -9.5,-10.5 + - parent: 15 + pos: -7.5,-0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4000,23 +4012,17 @@ entities: - AdjacentNode type: NodeContainer - uid: 312 - type: Wire + type: Catwalk components: - - parent: 0 - pos: -9.5,-9.5 + - parent: 15 + pos: 33.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 313 type: Wire components: - - parent: 0 - pos: -9.5,-8.5 + - parent: 15 + pos: -6.5,-0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4028,8 +4034,8 @@ entities: - uid: 314 type: Wire components: - - parent: 0 - pos: -9.5,-7.5 + - parent: 15 + pos: -5.5,-0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4039,23 +4045,17 @@ entities: - AdjacentNode type: NodeContainer - uid: 315 - type: Wire + type: Catwalk components: - - parent: 0 - pos: -32.5,3.5 + - parent: 15 + pos: 28.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 316 type: Wire components: - - parent: 0 - pos: -32.5,2.5 + - parent: 15 + pos: -9.5,-14.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4067,8 +4067,8 @@ entities: - uid: 317 type: Wire components: - - parent: 0 - pos: -32.5,1.5 + - parent: 15 + pos: -10.5,-14.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4080,8 +4080,8 @@ entities: - uid: 318 type: Wire components: - - parent: 0 - pos: -32.5,0.5 + - parent: 15 + pos: -11.5,-14.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4091,51 +4091,75 @@ entities: - AdjacentNode type: NodeContainer - uid: 319 - type: LockerElectricalSupplies + type: Wire components: - - parent: 0 - pos: 39.5,9.5 + - parent: 15 + pos: -12.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 320 - type: Catwalk + type: Wire components: - - parent: 0 - pos: 47.5,-3.5 + - parent: 15 + pos: -13.5,-14.5 rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 321 - type: Table + type: Wire components: - - parent: 0 - pos: -12.5,8.5 + - parent: 15 + pos: -14.5,-14.5 rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 322 - type: Chair + type: Wire components: - - parent: 0 - pos: 28.5,1.5 + - parent: 15 + pos: -15.5,-14.5 rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 323 - type: Chair + type: Wire components: - - parent: 0 - pos: 26.5,1.5 + - parent: 15 + pos: -13.5,-13.5 rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 324 type: Wire components: - - parent: 0 - pos: -33.5,-5.5 + - parent: 15 + pos: -13.5,-12.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4145,23 +4169,17 @@ entities: - AdjacentNode type: NodeContainer - uid: 325 - type: Wire + type: Catwalk components: - - parent: 0 - pos: -33.5,-6.5 + - parent: 15 + pos: 27.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 326 type: Wire components: - - parent: 0 - pos: -34.5,-6.5 + - parent: 15 + pos: -9.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4173,8 +4191,8 @@ entities: - uid: 327 type: Wire components: - - parent: 0 - pos: -35.5,-6.5 + - parent: 15 + pos: -9.5,-9.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4186,8 +4204,8 @@ entities: - uid: 328 type: Wire components: - - parent: 0 - pos: -31.5,-6.5 + - parent: 15 + pos: -9.5,-8.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4199,8 +4217,8 @@ entities: - uid: 329 type: Wire components: - - parent: 0 - pos: -30.5,-6.5 + - parent: 15 + pos: -9.5,-7.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4212,8 +4230,8 @@ entities: - uid: 330 type: Wire components: - - parent: 0 - pos: -29.5,-6.5 + - parent: 15 + pos: -32.5,3.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4225,8 +4243,8 @@ entities: - uid: 331 type: Wire components: - - parent: 0 - pos: -28.5,-6.5 + - parent: 15 + pos: -32.5,2.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4238,8 +4256,8 @@ entities: - uid: 332 type: Wire components: - - parent: 0 - pos: -27.5,-6.5 + - parent: 15 + pos: -32.5,1.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4251,8 +4269,8 @@ entities: - uid: 333 type: Wire components: - - parent: 0 - pos: -26.5,-6.5 + - parent: 15 + pos: -32.5,0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4262,76 +4280,54 @@ entities: - AdjacentNode type: NodeContainer - uid: 334 - type: Wire + type: LockerElectricalSupplies components: - - parent: 0 - pos: -25.5,-6.5 + - parent: 15 + pos: 39.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer - uid: 335 - type: Wire + type: Catwalk components: - - parent: 0 - pos: -24.5,-6.5 + - parent: 15 + pos: 47.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 336 - type: Wire + type: Table components: - - parent: 0 - pos: -23.5,-6.5 + - parent: 15 + pos: -12.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 337 - type: Wire + type: Chair components: - - parent: 0 - pos: -23.5,-5.5 + - parent: 15 + pos: 28.5,1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 338 - type: Wire + type: Chair components: - - parent: 0 - pos: -23.5,-4.5 + - parent: 15 + pos: 26.5,1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 339 type: Wire components: - - parent: 0 - pos: -22.5,10.5 - rot: 3.141592653589793 rad + - parent: 15 + pos: -33.5,-5.5 + rot: -1.5707963267948966 rad type: Transform - nodeTypes: HVPower: @@ -4340,11 +4336,11 @@ entities: - AdjacentNode type: NodeContainer - uid: 340 - type: APC + type: Wire components: - - parent: 0 - pos: -30.5,8.5 - rot: 3.141592653589793 rad + - parent: 15 + pos: -33.5,-6.5 + rot: -1.5707963267948966 rad type: Transform - nodeTypes: HVPower: @@ -4353,11 +4349,11 @@ entities: - AdjacentNode type: NodeContainer - uid: 341 - type: APC + type: Wire components: - - parent: 0 - pos: -22.5,10.5 - rot: 3.141592653589793 rad + - parent: 15 + pos: -34.5,-6.5 + rot: -1.5707963267948966 rad type: Transform - nodeTypes: HVPower: @@ -4365,18 +4361,24 @@ entities: Apc: - AdjacentNode type: NodeContainer - - startingCharge: 9806.396 - type: Battery - uid: 342 - type: FoodChocolateBar + type: Wire components: - - parent: 3079 + - parent: 15 + pos: -35.5,-6.5 + rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 343 type: Wire components: - - parent: 0 - pos: -23.5,-3.5 + - parent: 15 + pos: -31.5,-6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4388,8 +4390,8 @@ entities: - uid: 344 type: Wire components: - - parent: 0 - pos: -23.5,-2.5 + - parent: 15 + pos: -30.5,-6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4401,8 +4403,8 @@ entities: - uid: 345 type: Wire components: - - parent: 0 - pos: -23.5,-1.5 + - parent: 15 + pos: -29.5,-6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4414,8 +4416,8 @@ entities: - uid: 346 type: Wire components: - - parent: 0 - pos: -24.5,-1.5 + - parent: 15 + pos: -28.5,-6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4427,8 +4429,8 @@ entities: - uid: 347 type: Wire components: - - parent: 0 - pos: -25.5,-1.5 + - parent: 15 + pos: -27.5,-6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4440,8 +4442,8 @@ entities: - uid: 348 type: Wire components: - - parent: 0 - pos: -26.5,-1.5 + - parent: 15 + pos: -26.5,-6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4453,8 +4455,8 @@ entities: - uid: 349 type: Wire components: - - parent: 0 - pos: -27.5,-1.5 + - parent: 15 + pos: -25.5,-6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4466,8 +4468,8 @@ entities: - uid: 350 type: Wire components: - - parent: 0 - pos: -28.5,-1.5 + - parent: 15 + pos: -24.5,-6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4477,38 +4479,10 @@ entities: - AdjacentNode type: NodeContainer - uid: 351 - type: Window - components: - - parent: 0 - pos: -18.5,2.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 352 - type: Window - components: - - parent: 0 - pos: -19.5,2.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 353 - type: LowWall - components: - - parent: 0 - pos: -19.5,2.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 354 - type: LowWall - components: - - parent: 0 - pos: -18.5,2.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 355 type: Wire components: - - parent: 0 - pos: -23.5,-0.5 + - parent: 15 + pos: -23.5,-6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4517,12 +4491,64 @@ entities: Apc: - AdjacentNode type: NodeContainer +- uid: 352 + type: Wire + components: + - parent: 15 + pos: -23.5,-5.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 353 + type: Wire + components: + - parent: 15 + pos: -23.5,-4.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 354 + type: Wire + components: + - parent: 15 + pos: -22.5,10.5 + rot: 3.141592653589793 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 355 + type: APC + components: + - parent: 15 + pos: -30.5,8.5 + rot: 3.141592653589793 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 356 - type: Wire + type: APC components: - - parent: 0 - pos: -23.5,0.5 - rot: -1.5707963267948966 rad + - parent: 15 + pos: -22.5,10.5 + rot: 3.141592653589793 rad type: Transform - nodeTypes: HVPower: @@ -4530,24 +4556,18 @@ entities: Apc: - AdjacentNode type: NodeContainer + - startingCharge: 9806.396 + type: Battery - uid: 357 - type: Wire + type: FoodChocolateBar components: - - parent: 0 - pos: -23.5,1.5 - rot: -1.5707963267948966 rad + - parent: 3091 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 358 type: Wire components: - - parent: 0 - pos: -23.5,2.5 + - parent: 15 + pos: -23.5,-3.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4559,8 +4579,8 @@ entities: - uid: 359 type: Wire components: - - parent: 0 - pos: -23.5,3.5 + - parent: 15 + pos: -23.5,-2.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4572,8 +4592,8 @@ entities: - uid: 360 type: Wire components: - - parent: 0 - pos: -23.5,-7.5 + - parent: 15 + pos: -23.5,-1.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4585,8 +4605,8 @@ entities: - uid: 361 type: Wire components: - - parent: 0 - pos: -22.5,-7.5 + - parent: 15 + pos: -24.5,-1.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4596,87 +4616,90 @@ entities: - AdjacentNode type: NodeContainer - uid: 362 - type: ChairOfficeDark + type: Wire components: - - parent: 0 - pos: -6.5,20.5 - rot: 3.141592653589793 rad + - parent: 15 + pos: -25.5,-1.5 + rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 363 - type: Poweredlight + type: Wire components: - - parent: 0 - pos: -1.5,15 + - parent: 15 + pos: -26.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 666 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 364 - type: Table + type: Wire components: - - parent: 0 - pos: 10.5,8.5 + - parent: 15 + pos: -27.5,-1.5 rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 365 - type: Table + type: Wire components: - - parent: 0 - pos: -7.5,21.5 + - parent: 15 + pos: -28.5,-1.5 rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 366 - type: ChairOfficeDark + type: Window components: - - parent: 0 - pos: -11.5,8.5 - rot: 3.141592653589793 rad + - parent: 15 + pos: -18.5,2.5 + rot: -1.5707963267948966 rad type: Transform - uid: 367 - type: Chair + type: Window components: - - parent: 0 - pos: -13.5,8.5 + - parent: 15 + pos: -19.5,2.5 + rot: -1.5707963267948966 rad type: Transform - uid: 368 - type: Wire + type: LowWall components: - - parent: 0 - pos: -23.5,5.5 + - parent: 15 + pos: -19.5,2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 369 - type: Wire + type: LowWall components: - - parent: 0 - pos: -23.5,6.5 + - parent: 15 + pos: -18.5,2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 370 type: Wire components: - - parent: 0 - pos: -23.5,7.5 + - parent: 15 + pos: -23.5,-0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4688,8 +4711,8 @@ entities: - uid: 371 type: Wire components: - - parent: 0 - pos: -23.5,8.5 + - parent: 15 + pos: -23.5,0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4701,8 +4724,8 @@ entities: - uid: 372 type: Wire components: - - parent: 0 - pos: -23.5,9.5 + - parent: 15 + pos: -23.5,1.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4714,8 +4737,8 @@ entities: - uid: 373 type: Wire components: - - parent: 0 - pos: -22.5,9.5 + - parent: 15 + pos: -23.5,2.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4727,8 +4750,8 @@ entities: - uid: 374 type: Wire components: - - parent: 0 - pos: -21.5,9.5 + - parent: 15 + pos: -23.5,3.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4740,8 +4763,8 @@ entities: - uid: 375 type: Wire components: - - parent: 0 - pos: -20.5,9.5 + - parent: 15 + pos: -23.5,-7.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4753,8 +4776,8 @@ entities: - uid: 376 type: Wire components: - - parent: 0 - pos: -19.5,9.5 + - parent: 15 + pos: -22.5,-7.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4764,119 +4787,87 @@ entities: - AdjacentNode type: NodeContainer - uid: 377 - type: Wire + type: ChairOfficeDark components: - - parent: 0 - pos: -20.5,10.5 - rot: -1.5707963267948966 rad + - parent: 15 + pos: -6.5,20.5 + rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 378 - type: Wire + type: Poweredlight components: - - parent: 0 - pos: -20.5,11.5 + - parent: 15 + pos: -1.5,15 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 681 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer - uid: 379 - type: Wire + type: Table components: - - parent: 0 - pos: -20.5,12.5 + - parent: 15 + pos: 10.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 380 - type: Wire + type: Table components: - - parent: 0 - pos: -20.5,13.5 + - parent: 15 + pos: -7.5,21.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 381 - type: ComputerPowerMonitoring + type: ChairOfficeDark components: - - parent: 0 - pos: 29.5,-1.5 + - parent: 15 + pos: -11.5,8.5 + rot: 3.141592653589793 rad type: Transform - uid: 382 - type: LockerToolFilled + type: Chair components: - - parent: 0 - pos: 35.5,-0.5 - rot: -1.5707963267948966 rad + - parent: 15 + pos: -13.5,8.5 type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - entities: - - 3013 - - 3014 - - 3016 - - 3017 - - 3018 - - 3019 - - 3020 - - 3021 - - 3022 - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer - uid: 383 - type: Multitool + type: Wire components: - - parent: 0 - pos: -29.340704,7.4573865 + - parent: 15 + pos: -23.5,5.5 rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 384 - type: LockerToolFilled + type: Wire components: - - parent: 0 - pos: 35.5,0.5 + - parent: 15 + pos: -23.5,6.5 rot: -1.5707963267948966 rad type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - entities: - - 3023 - - 3025 - - 3026 - - 3027 - - 3028 - - 3029 - - 3030 - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 385 type: Wire components: - - parent: 0 - pos: -33.5,0.5 + - parent: 15 + pos: -23.5,7.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4888,8 +4879,8 @@ entities: - uid: 386 type: Wire components: - - parent: 0 - pos: -33.5,-0.5 + - parent: 15 + pos: -23.5,8.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4901,8 +4892,8 @@ entities: - uid: 387 type: Wire components: - - parent: 0 - pos: -33.5,-1.5 + - parent: 15 + pos: -23.5,9.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4914,8 +4905,8 @@ entities: - uid: 388 type: Wire components: - - parent: 0 - pos: -33.5,-2.5 + - parent: 15 + pos: -22.5,9.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4927,8 +4918,8 @@ entities: - uid: 389 type: Wire components: - - parent: 0 - pos: -33.5,-3.5 + - parent: 15 + pos: -21.5,9.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4940,8 +4931,8 @@ entities: - uid: 390 type: Wire components: - - parent: 0 - pos: -33.5,-4.5 + - parent: 15 + pos: -20.5,9.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4953,8 +4944,8 @@ entities: - uid: 391 type: Wire components: - - parent: 0 - pos: -32.5,-6.5 + - parent: 15 + pos: -19.5,9.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4966,8 +4957,8 @@ entities: - uid: 392 type: Wire components: - - parent: 0 - pos: -32.5,13.5 + - parent: 15 + pos: -20.5,10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4979,8 +4970,8 @@ entities: - uid: 393 type: Wire components: - - parent: 0 - pos: -32.5,12.5 + - parent: 15 + pos: -20.5,11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -4992,8 +4983,8 @@ entities: - uid: 394 type: Wire components: - - parent: 0 - pos: -32.5,11.5 + - parent: 15 + pos: -20.5,12.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5005,8 +4996,8 @@ entities: - uid: 395 type: Wire components: - - parent: 0 - pos: -32.5,10.5 + - parent: 15 + pos: -20.5,13.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5016,62 +5007,71 @@ entities: - AdjacentNode type: NodeContainer - uid: 396 - type: Wire + type: ComputerPowerMonitoring components: - - parent: 0 - pos: -32.5,9.5 - rot: -1.5707963267948966 rad + - parent: 15 + pos: 29.5,-1.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 397 - type: Wire + type: LockerToolFilled components: - - parent: 0 - pos: -32.5,8.5 + - parent: 15 + pos: 35.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + entities: + - 3025 + - 3026 + - 3028 + - 3029 + - 3030 + - 3031 + - 3032 + - 3033 + - 3034 + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer - uid: 398 - type: Wire + type: Multitool components: - - parent: 0 - pos: -33.5,8.5 + - parent: 15 + pos: -29.340704,7.4573865 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 399 - type: Wire + type: LockerToolFilled components: - - parent: 0 - pos: -34.5,8.5 + - parent: 15 + pos: 35.5,0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + entities: + - 3035 + - 3037 + - 3038 + - 3039 + - 3040 + - 3041 + - 3042 + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer - uid: 400 type: Wire components: - - parent: 0 - pos: -35.5,8.5 + - parent: 15 + pos: -33.5,0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5083,8 +5083,8 @@ entities: - uid: 401 type: Wire components: - - parent: 0 - pos: -36.5,8.5 + - parent: 15 + pos: -33.5,-0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5096,8 +5096,8 @@ entities: - uid: 402 type: Wire components: - - parent: 0 - pos: -37.5,8.5 + - parent: 15 + pos: -33.5,-1.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5109,8 +5109,8 @@ entities: - uid: 403 type: Wire components: - - parent: 0 - pos: -37.5,7.5 + - parent: 15 + pos: -33.5,-2.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5122,8 +5122,8 @@ entities: - uid: 404 type: Wire components: - - parent: 0 - pos: -37.5,6.5 + - parent: 15 + pos: -33.5,-3.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5135,8 +5135,8 @@ entities: - uid: 405 type: Wire components: - - parent: 0 - pos: -37.5,5.5 + - parent: 15 + pos: -33.5,-4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5148,8 +5148,8 @@ entities: - uid: 406 type: Wire components: - - parent: 0 - pos: -37.5,4.5 + - parent: 15 + pos: -32.5,-6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5161,8 +5161,8 @@ entities: - uid: 407 type: Wire components: - - parent: 0 - pos: -19.5,13.5 + - parent: 15 + pos: -32.5,13.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5174,8 +5174,8 @@ entities: - uid: 408 type: Wire components: - - parent: 0 - pos: -18.5,13.5 + - parent: 15 + pos: -32.5,12.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5187,8 +5187,8 @@ entities: - uid: 409 type: Wire components: - - parent: 0 - pos: -17.5,13.5 + - parent: 15 + pos: -32.5,11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5200,8 +5200,8 @@ entities: - uid: 410 type: Wire components: - - parent: 0 - pos: -17.5,14.5 + - parent: 15 + pos: -32.5,10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5213,8 +5213,8 @@ entities: - uid: 411 type: Wire components: - - parent: 0 - pos: -17.5,15.5 + - parent: 15 + pos: -32.5,9.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5226,8 +5226,8 @@ entities: - uid: 412 type: Wire components: - - parent: 0 - pos: -18.5,15.5 + - parent: 15 + pos: -32.5,8.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5239,8 +5239,8 @@ entities: - uid: 413 type: Wire components: - - parent: 0 - pos: -18.5,16.5 + - parent: 15 + pos: -33.5,8.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5252,8 +5252,8 @@ entities: - uid: 414 type: Wire components: - - parent: 0 - pos: -18.5,17.5 + - parent: 15 + pos: -34.5,8.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5265,8 +5265,8 @@ entities: - uid: 415 type: Wire components: - - parent: 0 - pos: -18.5,18.5 + - parent: 15 + pos: -35.5,8.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5278,8 +5278,8 @@ entities: - uid: 416 type: Wire components: - - parent: 0 - pos: -18.5,19.5 + - parent: 15 + pos: -36.5,8.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5291,8 +5291,8 @@ entities: - uid: 417 type: Wire components: - - parent: 0 - pos: -18.5,20.5 + - parent: 15 + pos: -37.5,8.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5304,8 +5304,8 @@ entities: - uid: 418 type: Wire components: - - parent: 0 - pos: -18.5,21.5 + - parent: 15 + pos: -37.5,7.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5317,8 +5317,8 @@ entities: - uid: 419 type: Wire components: - - parent: 0 - pos: -18.5,22.5 + - parent: 15 + pos: -37.5,6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5330,8 +5330,8 @@ entities: - uid: 420 type: Wire components: - - parent: 0 - pos: -18.5,23.5 + - parent: 15 + pos: -37.5,5.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5343,8 +5343,8 @@ entities: - uid: 421 type: Wire components: - - parent: 0 - pos: -18.5,24.5 + - parent: 15 + pos: -37.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5356,8 +5356,8 @@ entities: - uid: 422 type: Wire components: - - parent: 0 - pos: -18.5,25.5 + - parent: 15 + pos: -19.5,13.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5369,8 +5369,8 @@ entities: - uid: 423 type: Wire components: - - parent: 0 - pos: -17.5,25.5 + - parent: 15 + pos: -18.5,13.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5382,8 +5382,8 @@ entities: - uid: 424 type: Wire components: - - parent: 0 - pos: -16.5,25.5 + - parent: 15 + pos: -17.5,13.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5395,8 +5395,8 @@ entities: - uid: 425 type: Wire components: - - parent: 0 - pos: -15.5,25.5 + - parent: 15 + pos: -17.5,14.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5408,8 +5408,8 @@ entities: - uid: 426 type: Wire components: - - parent: 0 - pos: -14.5,25.5 + - parent: 15 + pos: -17.5,15.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5421,8 +5421,8 @@ entities: - uid: 427 type: Wire components: - - parent: 0 - pos: -13.5,25.5 + - parent: 15 + pos: -18.5,15.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5434,8 +5434,8 @@ entities: - uid: 428 type: Wire components: - - parent: 0 - pos: -12.5,25.5 + - parent: 15 + pos: -18.5,16.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5447,8 +5447,8 @@ entities: - uid: 429 type: Wire components: - - parent: 0 - pos: -11.5,25.5 + - parent: 15 + pos: -18.5,17.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5460,8 +5460,8 @@ entities: - uid: 430 type: Wire components: - - parent: 0 - pos: -10.5,25.5 + - parent: 15 + pos: -18.5,18.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5473,8 +5473,8 @@ entities: - uid: 431 type: Wire components: - - parent: 0 - pos: -9.5,25.5 + - parent: 15 + pos: -18.5,19.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5486,8 +5486,8 @@ entities: - uid: 432 type: Wire components: - - parent: 0 - pos: -8.5,25.5 + - parent: 15 + pos: -18.5,20.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5499,8 +5499,8 @@ entities: - uid: 433 type: Wire components: - - parent: 0 - pos: -7.5,25.5 + - parent: 15 + pos: -18.5,21.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5512,8 +5512,8 @@ entities: - uid: 434 type: Wire components: - - parent: 0 - pos: -7.5,24.5 + - parent: 15 + pos: -18.5,22.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5525,8 +5525,8 @@ entities: - uid: 435 type: Wire components: - - parent: 0 - pos: -6.5,24.5 + - parent: 15 + pos: -18.5,23.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5538,8 +5538,8 @@ entities: - uid: 436 type: Wire components: - - parent: 0 - pos: -5.5,24.5 + - parent: 15 + pos: -18.5,24.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5551,8 +5551,8 @@ entities: - uid: 437 type: Wire components: - - parent: 0 - pos: -4.5,24.5 + - parent: 15 + pos: -18.5,25.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5564,8 +5564,8 @@ entities: - uid: 438 type: Wire components: - - parent: 0 - pos: -4.5,23.5 + - parent: 15 + pos: -17.5,25.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5577,8 +5577,8 @@ entities: - uid: 439 type: Wire components: - - parent: 0 - pos: -4.5,22.5 + - parent: 15 + pos: -16.5,25.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5590,8 +5590,8 @@ entities: - uid: 440 type: Wire components: - - parent: 0 - pos: -4.5,21.5 + - parent: 15 + pos: -15.5,25.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5603,8 +5603,8 @@ entities: - uid: 441 type: Wire components: - - parent: 0 - pos: -3.5,21.5 + - parent: 15 + pos: -14.5,25.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5616,8 +5616,8 @@ entities: - uid: 442 type: Wire components: - - parent: 0 - pos: -2.5,21.5 + - parent: 15 + pos: -13.5,25.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5629,8 +5629,8 @@ entities: - uid: 443 type: Wire components: - - parent: 0 - pos: -1.5,21.5 + - parent: 15 + pos: -12.5,25.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5642,8 +5642,8 @@ entities: - uid: 444 type: Wire components: - - parent: 0 - pos: -0.5,21.5 + - parent: 15 + pos: -11.5,25.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5655,8 +5655,8 @@ entities: - uid: 445 type: Wire components: - - parent: 0 - pos: -0.5,20.5 + - parent: 15 + pos: -10.5,25.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5668,8 +5668,8 @@ entities: - uid: 446 type: Wire components: - - parent: 0 - pos: 0.5,20.5 + - parent: 15 + pos: -9.5,25.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5681,8 +5681,8 @@ entities: - uid: 447 type: Wire components: - - parent: 0 - pos: 1.5,20.5 + - parent: 15 + pos: -8.5,25.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5694,8 +5694,8 @@ entities: - uid: 448 type: Wire components: - - parent: 0 - pos: 2.5,20.5 + - parent: 15 + pos: -7.5,25.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5707,8 +5707,8 @@ entities: - uid: 449 type: Wire components: - - parent: 0 - pos: 2.5,21.5 + - parent: 15 + pos: -7.5,24.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5720,8 +5720,8 @@ entities: - uid: 450 type: Wire components: - - parent: 0 - pos: 2.5,22.5 + - parent: 15 + pos: -6.5,24.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5733,8 +5733,8 @@ entities: - uid: 451 type: Wire components: - - parent: 0 - pos: 2.5,23.5 + - parent: 15 + pos: -5.5,24.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5746,8 +5746,8 @@ entities: - uid: 452 type: Wire components: - - parent: 0 - pos: 2.5,24.5 + - parent: 15 + pos: -4.5,24.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5759,8 +5759,8 @@ entities: - uid: 453 type: Wire components: - - parent: 0 - pos: 2.5,25.5 + - parent: 15 + pos: -4.5,23.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5772,8 +5772,8 @@ entities: - uid: 454 type: Wire components: - - parent: 0 - pos: 2.5,26.5 + - parent: 15 + pos: -4.5,22.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5785,8 +5785,8 @@ entities: - uid: 455 type: Wire components: - - parent: 0 - pos: 2.5,27.5 + - parent: 15 + pos: -4.5,21.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5798,8 +5798,8 @@ entities: - uid: 456 type: Wire components: - - parent: 0 - pos: 2.5,28.5 + - parent: 15 + pos: -3.5,21.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5811,8 +5811,8 @@ entities: - uid: 457 type: Wire components: - - parent: 0 - pos: 0.5,27.5 + - parent: 15 + pos: -2.5,21.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5824,8 +5824,8 @@ entities: - uid: 458 type: Wire components: - - parent: 0 - pos: 0.5,28.5 + - parent: 15 + pos: -1.5,21.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5835,10 +5835,10 @@ entities: - AdjacentNode type: NodeContainer - uid: 459 - type: APC + type: Wire components: - - parent: 0 - pos: 0.5,27.5 + - parent: 15 + pos: -0.5,21.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5848,10 +5848,10 @@ entities: - AdjacentNode type: NodeContainer - uid: 460 - type: APC + type: Wire components: - - parent: 0 - pos: 7.5,27.5 + - parent: 15 + pos: -0.5,20.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5863,8 +5863,8 @@ entities: - uid: 461 type: Wire components: - - parent: 0 - pos: 1.5,28.5 + - parent: 15 + pos: 0.5,20.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5876,8 +5876,8 @@ entities: - uid: 462 type: Wire components: - - parent: 0 - pos: 3.5,25.5 + - parent: 15 + pos: 1.5,20.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5889,8 +5889,8 @@ entities: - uid: 463 type: Wire components: - - parent: 0 - pos: 4.5,25.5 + - parent: 15 + pos: 2.5,20.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5902,8 +5902,8 @@ entities: - uid: 464 type: Wire components: - - parent: 0 - pos: 5.5,25.5 + - parent: 15 + pos: 2.5,21.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5915,8 +5915,8 @@ entities: - uid: 465 type: Wire components: - - parent: 0 - pos: 6.5,25.5 + - parent: 15 + pos: 2.5,22.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5928,8 +5928,8 @@ entities: - uid: 466 type: Wire components: - - parent: 0 - pos: 7.5,25.5 + - parent: 15 + pos: 2.5,23.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5941,8 +5941,8 @@ entities: - uid: 467 type: Wire components: - - parent: 0 - pos: -6.5,5.5 + - parent: 15 + pos: 2.5,24.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5954,8 +5954,8 @@ entities: - uid: 468 type: Wire components: - - parent: 0 - pos: -6.5,6.5 + - parent: 15 + pos: 2.5,25.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5967,8 +5967,8 @@ entities: - uid: 469 type: Wire components: - - parent: 0 - pos: -6.5,7.5 + - parent: 15 + pos: 2.5,26.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5980,8 +5980,8 @@ entities: - uid: 470 type: Wire components: - - parent: 0 - pos: -6.5,8.5 + - parent: 15 + pos: 2.5,27.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -5993,8 +5993,8 @@ entities: - uid: 471 type: Wire components: - - parent: 0 - pos: -6.5,9.5 + - parent: 15 + pos: 2.5,28.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6006,8 +6006,8 @@ entities: - uid: 472 type: Wire components: - - parent: 0 - pos: -6.5,10.5 + - parent: 15 + pos: 0.5,27.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6019,8 +6019,8 @@ entities: - uid: 473 type: Wire components: - - parent: 0 - pos: -6.5,11.5 + - parent: 15 + pos: 0.5,28.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6030,10 +6030,10 @@ entities: - AdjacentNode type: NodeContainer - uid: 474 - type: Wire + type: APC components: - - parent: 0 - pos: -16.5,5.5 + - parent: 15 + pos: 0.5,27.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6043,10 +6043,10 @@ entities: - AdjacentNode type: NodeContainer - uid: 475 - type: Wire + type: APC components: - - parent: 0 - pos: -16.5,6.5 + - parent: 15 + pos: 7.5,27.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6058,8 +6058,8 @@ entities: - uid: 476 type: Wire components: - - parent: 0 - pos: -16.5,7.5 + - parent: 15 + pos: 1.5,28.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6071,8 +6071,8 @@ entities: - uid: 477 type: Wire components: - - parent: 0 - pos: -17.5,7.5 + - parent: 15 + pos: 3.5,25.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6084,8 +6084,8 @@ entities: - uid: 478 type: Wire components: - - parent: 0 - pos: -17.5,8.5 + - parent: 15 + pos: 4.5,25.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6097,8 +6097,8 @@ entities: - uid: 479 type: Wire components: - - parent: 0 - pos: -17.5,9.5 + - parent: 15 + pos: 5.5,25.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6110,8 +6110,8 @@ entities: - uid: 480 type: Wire components: - - parent: 0 - pos: -17.5,10.5 + - parent: 15 + pos: 6.5,25.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6123,8 +6123,8 @@ entities: - uid: 481 type: Wire components: - - parent: 0 - pos: -17.5,11.5 + - parent: 15 + pos: 7.5,25.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6136,8 +6136,8 @@ entities: - uid: 482 type: Wire components: - - parent: 0 - pos: -17.5,12.5 + - parent: 15 + pos: -6.5,5.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6149,8 +6149,8 @@ entities: - uid: 483 type: Wire components: - - parent: 0 - pos: -16.5,11.5 + - parent: 15 + pos: -6.5,6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6162,8 +6162,8 @@ entities: - uid: 484 type: Wire components: - - parent: 0 - pos: -15.5,11.5 + - parent: 15 + pos: -6.5,7.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6175,8 +6175,8 @@ entities: - uid: 485 type: Wire components: - - parent: 0 - pos: -14.5,11.5 + - parent: 15 + pos: -6.5,8.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6188,8 +6188,8 @@ entities: - uid: 486 type: Wire components: - - parent: 0 - pos: -13.5,11.5 + - parent: 15 + pos: -6.5,9.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6201,8 +6201,8 @@ entities: - uid: 487 type: Wire components: - - parent: 0 - pos: -12.5,11.5 + - parent: 15 + pos: -6.5,10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6214,8 +6214,8 @@ entities: - uid: 488 type: Wire components: - - parent: 0 - pos: -11.5,11.5 + - parent: 15 + pos: -6.5,11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6227,8 +6227,8 @@ entities: - uid: 489 type: Wire components: - - parent: 0 - pos: -10.5,11.5 + - parent: 15 + pos: -16.5,5.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6240,8 +6240,8 @@ entities: - uid: 490 type: Wire components: - - parent: 0 - pos: -9.5,11.5 + - parent: 15 + pos: -16.5,6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6253,8 +6253,8 @@ entities: - uid: 491 type: Wire components: - - parent: 0 - pos: -8.5,11.5 + - parent: 15 + pos: -16.5,7.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6266,8 +6266,8 @@ entities: - uid: 492 type: Wire components: - - parent: 0 - pos: -7.5,11.5 + - parent: 15 + pos: -17.5,7.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6279,8 +6279,8 @@ entities: - uid: 493 type: Wire components: - - parent: 0 - pos: -6.5,12.5 + - parent: 15 + pos: -17.5,8.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6292,8 +6292,8 @@ entities: - uid: 494 type: Wire components: - - parent: 0 - pos: -6.5,13.5 + - parent: 15 + pos: -17.5,9.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6305,8 +6305,8 @@ entities: - uid: 495 type: Wire components: - - parent: 0 - pos: -6.5,14.5 + - parent: 15 + pos: -17.5,10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6318,8 +6318,8 @@ entities: - uid: 496 type: Wire components: - - parent: 0 - pos: -6.5,15.5 + - parent: 15 + pos: -17.5,11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6331,8 +6331,8 @@ entities: - uid: 497 type: Wire components: - - parent: 0 - pos: -7.5,15.5 + - parent: 15 + pos: -17.5,12.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6344,8 +6344,8 @@ entities: - uid: 498 type: Wire components: - - parent: 0 - pos: -8.5,15.5 + - parent: 15 + pos: -16.5,11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6357,8 +6357,8 @@ entities: - uid: 499 type: Wire components: - - parent: 0 - pos: -9.5,15.5 + - parent: 15 + pos: -15.5,11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6370,8 +6370,8 @@ entities: - uid: 500 type: Wire components: - - parent: 0 - pos: -10.5,15.5 + - parent: 15 + pos: -14.5,11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6383,8 +6383,8 @@ entities: - uid: 501 type: Wire components: - - parent: 0 - pos: -11.5,15.5 + - parent: 15 + pos: -13.5,11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6396,8 +6396,8 @@ entities: - uid: 502 type: Wire components: - - parent: 0 - pos: -12.5,15.5 + - parent: 15 + pos: -12.5,11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6409,9 +6409,9 @@ entities: - uid: 503 type: Wire components: - - parent: 0 - pos: 1.5,11.5 - rot: 1.5707963267948966 rad + - parent: 15 + pos: -11.5,11.5 + rot: -1.5707963267948966 rad type: Transform - nodeTypes: HVPower: @@ -6420,11 +6420,11 @@ entities: - AdjacentNode type: NodeContainer - uid: 504 - type: APC + type: Wire components: - - parent: 0 - pos: 1.5,11.5 - rot: 1.5707963267948966 rad + - parent: 15 + pos: -10.5,11.5 + rot: -1.5707963267948966 rad type: Transform - nodeTypes: HVPower: @@ -6435,8 +6435,8 @@ entities: - uid: 505 type: Wire components: - - parent: 0 - pos: -5.5,11.5 + - parent: 15 + pos: -9.5,11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6448,8 +6448,8 @@ entities: - uid: 506 type: Wire components: - - parent: 0 - pos: -4.5,11.5 + - parent: 15 + pos: -8.5,11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6461,8 +6461,8 @@ entities: - uid: 507 type: Wire components: - - parent: 0 - pos: -3.5,11.5 + - parent: 15 + pos: -7.5,11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6474,8 +6474,8 @@ entities: - uid: 508 type: Wire components: - - parent: 0 - pos: -2.5,11.5 + - parent: 15 + pos: -6.5,12.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6487,8 +6487,8 @@ entities: - uid: 509 type: Wire components: - - parent: 0 - pos: -1.5,11.5 + - parent: 15 + pos: -6.5,13.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6500,8 +6500,8 @@ entities: - uid: 510 type: Wire components: - - parent: 0 - pos: -0.5,11.5 + - parent: 15 + pos: -6.5,14.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6513,8 +6513,8 @@ entities: - uid: 511 type: Wire components: - - parent: 0 - pos: 0.5,11.5 + - parent: 15 + pos: -6.5,15.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6526,8 +6526,8 @@ entities: - uid: 512 type: Wire components: - - parent: 0 - pos: -8.5,16.5 + - parent: 15 + pos: -7.5,15.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6539,8 +6539,8 @@ entities: - uid: 513 type: Wire components: - - parent: 0 - pos: -8.5,17.5 + - parent: 15 + pos: -8.5,15.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6552,8 +6552,8 @@ entities: - uid: 514 type: Wire components: - - parent: 0 - pos: -8.5,18.5 + - parent: 15 + pos: -9.5,15.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6565,8 +6565,8 @@ entities: - uid: 515 type: Wire components: - - parent: 0 - pos: -8.5,19.5 + - parent: 15 + pos: -10.5,15.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6578,8 +6578,8 @@ entities: - uid: 516 type: Wire components: - - parent: 0 - pos: -8.5,20.5 + - parent: 15 + pos: -11.5,15.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6589,38 +6589,36 @@ entities: - AdjacentNode type: NodeContainer - uid: 517 - type: Catwalk + type: Wire components: - - parent: 0 - pos: 7.5,-19.5 + - parent: 15 + pos: -12.5,15.5 rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 518 - type: Catwalk + type: Wire components: - - parent: 0 - pos: 14.5,-19.5 - rot: -1.5707963267948966 rad + - parent: 15 + pos: 1.5,11.5 + rot: 1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 519 - type: Catwalk - components: - - parent: 0 - pos: 21.5,-10.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 520 - type: Catwalk - components: - - parent: 0 - pos: 26.5,-10.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 521 type: APC components: - - parent: 0 - pos: -9.5,26.5 + - parent: 15 + pos: 1.5,11.5 rot: 1.5707963267948966 rad type: Transform - nodeTypes: @@ -6629,12 +6627,38 @@ entities: Apc: - AdjacentNode type: NodeContainer +- uid: 520 + type: Wire + components: + - parent: 15 + pos: -5.5,11.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 521 + type: Wire + components: + - parent: 15 + pos: -4.5,11.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 522 type: Wire components: - - parent: 0 - pos: -15.5,15.5 - rot: 1.5707963267948966 rad + - parent: 15 + pos: -3.5,11.5 + rot: -1.5707963267948966 rad type: Transform - nodeTypes: HVPower: @@ -6643,11 +6667,11 @@ entities: - AdjacentNode type: NodeContainer - uid: 523 - type: APC + type: Wire components: - - parent: 0 - pos: -15.5,15.5 - rot: 1.5707963267948966 rad + - parent: 15 + pos: -2.5,11.5 + rot: -1.5707963267948966 rad type: Transform - nodeTypes: HVPower: @@ -6658,9 +6682,9 @@ entities: - uid: 524 type: Wire components: - - parent: 0 - pos: -14.5,15.5 - rot: 1.5707963267948966 rad + - parent: 15 + pos: -1.5,11.5 + rot: -1.5707963267948966 rad type: Transform - nodeTypes: HVPower: @@ -6671,8 +6695,8 @@ entities: - uid: 525 type: Wire components: - - parent: 0 - pos: 2.5,17.5 + - parent: 15 + pos: -0.5,11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6684,8 +6708,8 @@ entities: - uid: 526 type: Wire components: - - parent: 0 - pos: 1.5,17.5 + - parent: 15 + pos: 0.5,11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6697,8 +6721,8 @@ entities: - uid: 527 type: Wire components: - - parent: 0 - pos: 0.5,17.5 + - parent: 15 + pos: -8.5,16.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6710,8 +6734,8 @@ entities: - uid: 528 type: Wire components: - - parent: 0 - pos: -1.5,17.5 + - parent: 15 + pos: -8.5,17.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6723,8 +6747,8 @@ entities: - uid: 529 type: Wire components: - - parent: 0 - pos: 29.5,4.5 + - parent: 15 + pos: -8.5,18.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6736,8 +6760,8 @@ entities: - uid: 530 type: Wire components: - - parent: 0 - pos: 29.5,5.5 + - parent: 15 + pos: -8.5,19.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6749,8 +6773,8 @@ entities: - uid: 531 type: Wire components: - - parent: 0 - pos: 30.5,5.5 + - parent: 15 + pos: -8.5,20.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6760,63 +6784,39 @@ entities: - AdjacentNode type: NodeContainer - uid: 532 - type: Wire + type: Catwalk components: - - parent: 0 - pos: 32.5,5.5 + - parent: 15 + pos: 7.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 533 - type: Wire + type: Catwalk components: - - parent: 0 - pos: 31.5,5.5 + - parent: 15 + pos: 14.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 534 - type: Wire + type: Catwalk components: - - parent: 0 - pos: 33.5,5.5 + - parent: 15 + pos: 21.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 535 - type: Wire + type: Catwalk components: - - parent: 0 - pos: 33.5,6.5 + - parent: 15 + pos: 26.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 536 - type: Wire + type: APC components: - - parent: 0 - pos: 33.5,7.5 - rot: -1.5707963267948966 rad + - parent: 15 + pos: -9.5,26.5 + rot: 1.5707963267948966 rad type: Transform - nodeTypes: HVPower: @@ -6827,9 +6827,9 @@ entities: - uid: 537 type: Wire components: - - parent: 0 - pos: 33.5,8.5 - rot: -1.5707963267948966 rad + - parent: 15 + pos: -15.5,15.5 + rot: 1.5707963267948966 rad type: Transform - nodeTypes: HVPower: @@ -6838,11 +6838,11 @@ entities: - AdjacentNode type: NodeContainer - uid: 538 - type: Wire + type: APC components: - - parent: 0 - pos: 33.5,9.5 - rot: -1.5707963267948966 rad + - parent: 15 + pos: -15.5,15.5 + rot: 1.5707963267948966 rad type: Transform - nodeTypes: HVPower: @@ -6853,9 +6853,9 @@ entities: - uid: 539 type: Wire components: - - parent: 0 - pos: 33.5,10.5 - rot: -1.5707963267948966 rad + - parent: 15 + pos: -14.5,15.5 + rot: 1.5707963267948966 rad type: Transform - nodeTypes: HVPower: @@ -6866,8 +6866,8 @@ entities: - uid: 540 type: Wire components: - - parent: 0 - pos: 33.5,11.5 + - parent: 15 + pos: 2.5,17.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6879,8 +6879,8 @@ entities: - uid: 541 type: Wire components: - - parent: 0 - pos: 33.5,4.5 + - parent: 15 + pos: 1.5,17.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6892,8 +6892,8 @@ entities: - uid: 542 type: Wire components: - - parent: 0 - pos: 34.5,4.5 + - parent: 15 + pos: 0.5,17.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6905,8 +6905,8 @@ entities: - uid: 543 type: Wire components: - - parent: 0 - pos: 35.5,4.5 + - parent: 15 + pos: -1.5,17.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6918,8 +6918,8 @@ entities: - uid: 544 type: Wire components: - - parent: 0 - pos: 36.5,4.5 + - parent: 15 + pos: 29.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6931,8 +6931,8 @@ entities: - uid: 545 type: Wire components: - - parent: 0 - pos: 37.5,4.5 + - parent: 15 + pos: 29.5,5.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6944,8 +6944,8 @@ entities: - uid: 546 type: Wire components: - - parent: 0 - pos: 38.5,4.5 + - parent: 15 + pos: 30.5,5.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6957,8 +6957,8 @@ entities: - uid: 547 type: Wire components: - - parent: 0 - pos: 39.5,4.5 + - parent: 15 + pos: 32.5,5.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6970,8 +6970,8 @@ entities: - uid: 548 type: Wire components: - - parent: 0 - pos: 40.5,4.5 + - parent: 15 + pos: 31.5,5.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6983,8 +6983,8 @@ entities: - uid: 549 type: Wire components: - - parent: 0 - pos: 40.5,5.5 + - parent: 15 + pos: 33.5,5.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -6996,8 +6996,8 @@ entities: - uid: 550 type: Wire components: - - parent: 0 - pos: 40.5,6.5 + - parent: 15 + pos: 33.5,6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7009,8 +7009,8 @@ entities: - uid: 551 type: Wire components: - - parent: 0 - pos: 40.5,7.5 + - parent: 15 + pos: 33.5,7.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7020,17 +7020,23 @@ entities: - AdjacentNode type: NodeContainer - uid: 552 - type: ReinforcedWindow + type: Wire components: - - parent: 0 - pos: 51.5,2.5 + - parent: 15 + pos: 33.5,8.5 rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 553 type: Wire components: - - parent: 0 - pos: 38.5,8.5 + - parent: 15 + pos: 33.5,9.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7042,8 +7048,8 @@ entities: - uid: 554 type: Wire components: - - parent: 0 - pos: 37.5,8.5 + - parent: 15 + pos: 33.5,10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7055,8 +7061,8 @@ entities: - uid: 555 type: Wire components: - - parent: 0 - pos: 39.5,8.5 + - parent: 15 + pos: 33.5,11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7068,8 +7074,8 @@ entities: - uid: 556 type: Wire components: - - parent: 0 - pos: 38.5,3.5 + - parent: 15 + pos: 33.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7081,8 +7087,8 @@ entities: - uid: 557 type: Wire components: - - parent: 0 - pos: 38.5,2.5 + - parent: 15 + pos: 34.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7094,8 +7100,8 @@ entities: - uid: 558 type: Wire components: - - parent: 0 - pos: 38.5,1.5 + - parent: 15 + pos: 35.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7107,8 +7113,8 @@ entities: - uid: 559 type: Wire components: - - parent: 0 - pos: 38.5,0.5 + - parent: 15 + pos: 36.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7120,8 +7126,8 @@ entities: - uid: 560 type: Wire components: - - parent: 0 - pos: 38.5,-0.5 + - parent: 15 + pos: 37.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7133,8 +7139,8 @@ entities: - uid: 561 type: Wire components: - - parent: 0 - pos: 33.5,3.5 + - parent: 15 + pos: 38.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7146,8 +7152,8 @@ entities: - uid: 562 type: Wire components: - - parent: 0 - pos: 33.5,2.5 + - parent: 15 + pos: 39.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7159,8 +7165,8 @@ entities: - uid: 563 type: Wire components: - - parent: 0 - pos: 33.5,1.5 + - parent: 15 + pos: 40.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7172,8 +7178,8 @@ entities: - uid: 564 type: Wire components: - - parent: 0 - pos: 33.5,0.5 + - parent: 15 + pos: 40.5,5.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7185,8 +7191,8 @@ entities: - uid: 565 type: Wire components: - - parent: 0 - pos: 33.5,-0.5 + - parent: 15 + pos: 40.5,6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7198,8 +7204,8 @@ entities: - uid: 566 type: Wire components: - - parent: 0 - pos: 33.5,-1.5 + - parent: 15 + pos: 40.5,7.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7209,23 +7215,17 @@ entities: - AdjacentNode type: NodeContainer - uid: 567 - type: Wire + type: ReinforcedWindow components: - - parent: 0 - pos: 33.5,-2.5 + - parent: 15 + pos: 51.5,2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 568 type: Wire components: - - parent: 0 - pos: 33.5,-3.5 + - parent: 15 + pos: 38.5,8.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7237,8 +7237,8 @@ entities: - uid: 569 type: Wire components: - - parent: 0 - pos: 33.5,-4.5 + - parent: 15 + pos: 37.5,8.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7250,8 +7250,8 @@ entities: - uid: 570 type: Wire components: - - parent: 0 - pos: 33.5,-5.5 + - parent: 15 + pos: 39.5,8.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7263,8 +7263,8 @@ entities: - uid: 571 type: Wire components: - - parent: 0 - pos: 33.5,-6.5 + - parent: 15 + pos: 38.5,3.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7276,8 +7276,8 @@ entities: - uid: 572 type: Wire components: - - parent: 0 - pos: 33.5,-7.5 + - parent: 15 + pos: 38.5,2.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7289,8 +7289,8 @@ entities: - uid: 573 type: Wire components: - - parent: 0 - pos: 32.5,-7.5 + - parent: 15 + pos: 38.5,1.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7302,8 +7302,8 @@ entities: - uid: 574 type: Wire components: - - parent: 0 - pos: 31.5,-7.5 + - parent: 15 + pos: 38.5,0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7315,8 +7315,8 @@ entities: - uid: 575 type: Wire components: - - parent: 0 - pos: 30.5,-7.5 + - parent: 15 + pos: 38.5,-0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7328,8 +7328,8 @@ entities: - uid: 576 type: Wire components: - - parent: 0 - pos: 29.5,-7.5 + - parent: 15 + pos: 33.5,3.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7341,8 +7341,8 @@ entities: - uid: 577 type: Wire components: - - parent: 0 - pos: 29.5,-6.5 + - parent: 15 + pos: 33.5,2.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7354,8 +7354,8 @@ entities: - uid: 578 type: Wire components: - - parent: 0 - pos: 28.5,-6.5 + - parent: 15 + pos: 33.5,1.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7367,8 +7367,8 @@ entities: - uid: 579 type: Wire components: - - parent: 0 - pos: 27.5,-6.5 + - parent: 15 + pos: 33.5,0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7380,8 +7380,8 @@ entities: - uid: 580 type: Wire components: - - parent: 0 - pos: -3.5,-18.5 + - parent: 15 + pos: 33.5,-0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7393,8 +7393,8 @@ entities: - uid: 581 type: Wire components: - - parent: 0 - pos: -3.5,-17.5 + - parent: 15 + pos: 33.5,-1.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7406,8 +7406,8 @@ entities: - uid: 582 type: Wire components: - - parent: 0 - pos: -3.5,-16.5 + - parent: 15 + pos: 33.5,-2.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7419,8 +7419,8 @@ entities: - uid: 583 type: Wire components: - - parent: 0 - pos: -3.5,-15.5 + - parent: 15 + pos: 33.5,-3.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7432,8 +7432,8 @@ entities: - uid: 584 type: Wire components: - - parent: 0 - pos: -3.5,-14.5 + - parent: 15 + pos: 33.5,-4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7445,8 +7445,8 @@ entities: - uid: 585 type: Wire components: - - parent: 0 - pos: -3.5,-20.5 + - parent: 15 + pos: 33.5,-5.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7458,8 +7458,8 @@ entities: - uid: 586 type: Wire components: - - parent: 0 - pos: -3.5,-21.5 + - parent: 15 + pos: 33.5,-6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7471,8 +7471,8 @@ entities: - uid: 587 type: Wire components: - - parent: 0 - pos: -3.5,-22.5 + - parent: 15 + pos: 33.5,-7.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7484,8 +7484,8 @@ entities: - uid: 588 type: Wire components: - - parent: 0 - pos: -3.5,-23.5 + - parent: 15 + pos: 32.5,-7.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7497,8 +7497,8 @@ entities: - uid: 589 type: Wire components: - - parent: 0 - pos: 14.5,-19.5 + - parent: 15 + pos: 31.5,-7.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7510,8 +7510,8 @@ entities: - uid: 590 type: Wire components: - - parent: 0 - pos: 14.5,-18.5 + - parent: 15 + pos: 30.5,-7.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7523,8 +7523,8 @@ entities: - uid: 591 type: Wire components: - - parent: 0 - pos: 14.5,-17.5 + - parent: 15 + pos: 29.5,-7.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7536,8 +7536,8 @@ entities: - uid: 592 type: Wire components: - - parent: 0 - pos: 14.5,-16.5 + - parent: 15 + pos: 29.5,-6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7549,8 +7549,8 @@ entities: - uid: 593 type: Wire components: - - parent: 0 - pos: 14.5,-15.5 + - parent: 15 + pos: 28.5,-6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7562,8 +7562,8 @@ entities: - uid: 594 type: Wire components: - - parent: 0 - pos: 14.5,-14.5 + - parent: 15 + pos: 27.5,-6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7575,8 +7575,8 @@ entities: - uid: 595 type: Wire components: - - parent: 0 - pos: 14.5,-13.5 + - parent: 15 + pos: -3.5,-18.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7588,8 +7588,8 @@ entities: - uid: 596 type: Wire components: - - parent: 0 - pos: 14.5,-12.5 + - parent: 15 + pos: -3.5,-17.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7601,8 +7601,8 @@ entities: - uid: 597 type: Wire components: - - parent: 0 - pos: 14.5,-11.5 + - parent: 15 + pos: -3.5,-16.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7614,8 +7614,8 @@ entities: - uid: 598 type: Wire components: - - parent: 0 - pos: 14.5,-10.5 + - parent: 15 + pos: -3.5,-15.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7627,8 +7627,8 @@ entities: - uid: 599 type: Wire components: - - parent: 0 - pos: 13.5,-10.5 + - parent: 15 + pos: -3.5,-14.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7640,8 +7640,8 @@ entities: - uid: 600 type: Wire components: - - parent: 0 - pos: 12.5,-10.5 + - parent: 15 + pos: -3.5,-20.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7653,8 +7653,8 @@ entities: - uid: 601 type: Wire components: - - parent: 0 - pos: 11.5,-10.5 + - parent: 15 + pos: -3.5,-21.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7666,8 +7666,8 @@ entities: - uid: 602 type: Wire components: - - parent: 0 - pos: 10.5,-10.5 + - parent: 15 + pos: -3.5,-22.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7679,8 +7679,8 @@ entities: - uid: 603 type: Wire components: - - parent: 0 - pos: 9.5,-10.5 + - parent: 15 + pos: -3.5,-23.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7692,8 +7692,8 @@ entities: - uid: 604 type: Wire components: - - parent: 0 - pos: 8.5,-10.5 + - parent: 15 + pos: 14.5,-19.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7705,8 +7705,8 @@ entities: - uid: 605 type: Wire components: - - parent: 0 - pos: 8.5,-11.5 + - parent: 15 + pos: 14.5,-18.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7718,8 +7718,8 @@ entities: - uid: 606 type: Wire components: - - parent: 0 - pos: 8.5,-12.5 + - parent: 15 + pos: 14.5,-17.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7731,8 +7731,8 @@ entities: - uid: 607 type: Wire components: - - parent: 0 - pos: 8.5,-13.5 + - parent: 15 + pos: 14.5,-16.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7744,8 +7744,8 @@ entities: - uid: 608 type: Wire components: - - parent: 0 - pos: 8.5,-14.5 + - parent: 15 + pos: 14.5,-15.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7757,8 +7757,8 @@ entities: - uid: 609 type: Wire components: - - parent: 0 - pos: 9.5,-14.5 + - parent: 15 + pos: 14.5,-14.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7770,8 +7770,8 @@ entities: - uid: 610 type: Wire components: - - parent: 0 - pos: 10.5,-14.5 + - parent: 15 + pos: 14.5,-13.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7783,8 +7783,8 @@ entities: - uid: 611 type: Wire components: - - parent: 0 - pos: 10.5,-9.5 + - parent: 15 + pos: 14.5,-12.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7796,8 +7796,8 @@ entities: - uid: 612 type: Wire components: - - parent: 0 - pos: 10.5,-8.5 + - parent: 15 + pos: 14.5,-11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7809,8 +7809,8 @@ entities: - uid: 613 type: Wire components: - - parent: 0 - pos: 10.5,-7.5 + - parent: 15 + pos: 14.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7822,8 +7822,8 @@ entities: - uid: 614 type: Wire components: - - parent: 0 - pos: 10.5,-6.5 + - parent: 15 + pos: 13.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7835,8 +7835,8 @@ entities: - uid: 615 type: Wire components: - - parent: 0 - pos: 10.5,-5.5 + - parent: 15 + pos: 12.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7848,8 +7848,8 @@ entities: - uid: 616 type: Wire components: - - parent: 0 - pos: 10.5,-4.5 + - parent: 15 + pos: 11.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7861,8 +7861,8 @@ entities: - uid: 617 type: Wire components: - - parent: 0 - pos: 10.5,-3.5 + - parent: 15 + pos: 10.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7874,8 +7874,8 @@ entities: - uid: 618 type: Wire components: - - parent: 0 - pos: 10.5,-2.5 + - parent: 15 + pos: 9.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7887,8 +7887,8 @@ entities: - uid: 619 type: Wire components: - - parent: 0 - pos: 10.5,-1.5 + - parent: 15 + pos: 8.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7900,8 +7900,8 @@ entities: - uid: 620 type: Wire components: - - parent: 0 - pos: 10.5,-0.5 + - parent: 15 + pos: 8.5,-11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7913,8 +7913,8 @@ entities: - uid: 621 type: Wire components: - - parent: 0 - pos: 9.5,-0.5 + - parent: 15 + pos: 8.5,-12.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7926,8 +7926,8 @@ entities: - uid: 622 type: Wire components: - - parent: 0 - pos: 8.5,-0.5 + - parent: 15 + pos: 8.5,-13.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7939,8 +7939,8 @@ entities: - uid: 623 type: Wire components: - - parent: 0 - pos: 7.5,-0.5 + - parent: 15 + pos: 8.5,-14.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7952,8 +7952,8 @@ entities: - uid: 624 type: Wire components: - - parent: 0 - pos: 6.5,-0.5 + - parent: 15 + pos: 9.5,-14.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7965,8 +7965,8 @@ entities: - uid: 625 type: Wire components: - - parent: 0 - pos: 5.5,-0.5 + - parent: 15 + pos: 10.5,-14.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7978,8 +7978,8 @@ entities: - uid: 626 type: Wire components: - - parent: 0 - pos: 4.5,-0.5 + - parent: 15 + pos: 10.5,-9.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -7991,8 +7991,8 @@ entities: - uid: 627 type: Wire components: - - parent: 0 - pos: 17.5,0.5 + - parent: 15 + pos: 10.5,-8.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8004,8 +8004,8 @@ entities: - uid: 628 type: Wire components: - - parent: 0 - pos: 17.5,-0.5 + - parent: 15 + pos: 10.5,-7.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8017,8 +8017,8 @@ entities: - uid: 629 type: Wire components: - - parent: 0 - pos: 17.5,-1.5 + - parent: 15 + pos: 10.5,-6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8030,8 +8030,8 @@ entities: - uid: 630 type: Wire components: - - parent: 0 - pos: 17.5,-2.5 + - parent: 15 + pos: 10.5,-5.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8043,8 +8043,8 @@ entities: - uid: 631 type: Wire components: - - parent: 0 - pos: 17.5,-3.5 + - parent: 15 + pos: 10.5,-4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8056,8 +8056,8 @@ entities: - uid: 632 type: Wire components: - - parent: 0 - pos: 17.5,-4.5 + - parent: 15 + pos: 10.5,-3.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8069,8 +8069,8 @@ entities: - uid: 633 type: Wire components: - - parent: 0 - pos: 17.5,-5.5 + - parent: 15 + pos: 10.5,-2.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8082,8 +8082,8 @@ entities: - uid: 634 type: Wire components: - - parent: 0 - pos: 17.5,-6.5 + - parent: 15 + pos: 10.5,-1.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8095,8 +8095,8 @@ entities: - uid: 635 type: Wire components: - - parent: 0 - pos: 18.5,-6.5 + - parent: 15 + pos: 10.5,-0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8108,8 +8108,8 @@ entities: - uid: 636 type: Wire components: - - parent: 0 - pos: 19.5,-6.5 + - parent: 15 + pos: 9.5,-0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8119,18 +8119,24 @@ entities: - AdjacentNode type: NodeContainer - uid: 637 - type: solid_wall + type: Wire components: - - parent: 0 - pos: 25.5,-6.5 - rot: 1.5707963267948966 rad + - parent: 15 + pos: 8.5,-0.5 + rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 638 type: Wire components: - - parent: 0 - pos: 20.5,-4.5 - rot: 1.5707963267948966 rad + - parent: 15 + pos: 7.5,-0.5 + rot: -1.5707963267948966 rad type: Transform - nodeTypes: HVPower: @@ -8141,9 +8147,9 @@ entities: - uid: 639 type: Wire components: - - parent: 0 - pos: 19.5,-5.5 - rot: 1.5707963267948966 rad + - parent: 15 + pos: 6.5,-0.5 + rot: -1.5707963267948966 rad type: Transform - nodeTypes: HVPower: @@ -8154,9 +8160,9 @@ entities: - uid: 640 type: Wire components: - - parent: 0 - pos: 19.5,-4.5 - rot: 1.5707963267948966 rad + - parent: 15 + pos: 5.5,-0.5 + rot: -1.5707963267948966 rad type: Transform - nodeTypes: HVPower: @@ -8167,8 +8173,8 @@ entities: - uid: 641 type: Wire components: - - parent: 0 - pos: 17.5,-7.5 + - parent: 15 + pos: 4.5,-0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8180,8 +8186,8 @@ entities: - uid: 642 type: Wire components: - - parent: 0 - pos: 17.5,-8.5 + - parent: 15 + pos: 17.5,0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8193,8 +8199,8 @@ entities: - uid: 643 type: Wire components: - - parent: 0 - pos: 17.5,-9.5 + - parent: 15 + pos: 17.5,-0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8206,8 +8212,8 @@ entities: - uid: 644 type: Wire components: - - parent: 0 - pos: 17.5,-10.5 + - parent: 15 + pos: 17.5,-1.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8219,8 +8225,8 @@ entities: - uid: 645 type: Wire components: - - parent: 0 - pos: 18.5,-10.5 + - parent: 15 + pos: 17.5,-2.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8232,8 +8238,8 @@ entities: - uid: 646 type: Wire components: - - parent: 0 - pos: 19.5,-10.5 + - parent: 15 + pos: 17.5,-3.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8245,8 +8251,8 @@ entities: - uid: 647 type: Wire components: - - parent: 0 - pos: 20.5,-10.5 + - parent: 15 + pos: 17.5,-4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8258,8 +8264,8 @@ entities: - uid: 648 type: Wire components: - - parent: 0 - pos: 21.5,-10.5 + - parent: 15 + pos: 17.5,-5.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8271,8 +8277,8 @@ entities: - uid: 649 type: Wire components: - - parent: 0 - pos: 21.5,-9.5 + - parent: 15 + pos: 17.5,-6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8284,8 +8290,8 @@ entities: - uid: 650 type: Wire components: - - parent: 0 - pos: 22.5,-9.5 + - parent: 15 + pos: 18.5,-6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8297,8 +8303,8 @@ entities: - uid: 651 type: Wire components: - - parent: 0 - pos: 23.5,-9.5 + - parent: 15 + pos: 19.5,-6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8308,24 +8314,18 @@ entities: - AdjacentNode type: NodeContainer - uid: 652 - type: Wire + type: solid_wall components: - - parent: 0 - pos: 24.5,-9.5 - rot: -1.5707963267948966 rad + - parent: 15 + pos: 25.5,-6.5 + rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 653 type: Wire components: - - parent: 0 - pos: 25.5,-9.5 - rot: -1.5707963267948966 rad + - parent: 15 + pos: 20.5,-4.5 + rot: 1.5707963267948966 rad type: Transform - nodeTypes: HVPower: @@ -8336,9 +8336,9 @@ entities: - uid: 654 type: Wire components: - - parent: 0 - pos: 16.5,-10.5 - rot: -1.5707963267948966 rad + - parent: 15 + pos: 19.5,-5.5 + rot: 1.5707963267948966 rad type: Transform - nodeTypes: HVPower: @@ -8349,9 +8349,9 @@ entities: - uid: 655 type: Wire components: - - parent: 0 - pos: 15.5,-10.5 - rot: -1.5707963267948966 rad + - parent: 15 + pos: 19.5,-4.5 + rot: 1.5707963267948966 rad type: Transform - nodeTypes: HVPower: @@ -8362,8 +8362,8 @@ entities: - uid: 656 type: Wire components: - - parent: 0 - pos: 18.5,-11.5 + - parent: 15 + pos: 17.5,-7.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8375,8 +8375,8 @@ entities: - uid: 657 type: Wire components: - - parent: 0 - pos: 18.5,-12.5 + - parent: 15 + pos: 17.5,-8.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8388,8 +8388,8 @@ entities: - uid: 658 type: Wire components: - - parent: 0 - pos: 18.5,-13.5 + - parent: 15 + pos: 17.5,-9.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8401,8 +8401,8 @@ entities: - uid: 659 type: Wire components: - - parent: 0 - pos: 19.5,-13.5 + - parent: 15 + pos: 17.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8414,8 +8414,8 @@ entities: - uid: 660 type: Wire components: - - parent: 0 - pos: 20.5,-13.5 + - parent: 15 + pos: 18.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8427,8 +8427,8 @@ entities: - uid: 661 type: Wire components: - - parent: 0 - pos: 21.5,-13.5 + - parent: 15 + pos: 19.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8440,8 +8440,8 @@ entities: - uid: 662 type: Wire components: - - parent: 0 - pos: 22.5,-13.5 + - parent: 15 + pos: 20.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8453,8 +8453,8 @@ entities: - uid: 663 type: Wire components: - - parent: 0 - pos: 23.5,-13.5 + - parent: 15 + pos: 21.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8464,27 +8464,49 @@ entities: - AdjacentNode type: NodeContainer - uid: 664 - type: LightTube + type: Wire components: - - parent: 2250 - type: Transform -- uid: 665 - type: Table - components: - - parent: 0 - pos: 6.5,7.5 + - parent: 15 + pos: 21.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 666 - type: LightTube + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 665 + type: Wire components: - - parent: 363 + - parent: 15 + pos: 22.5,-9.5 + rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 666 + type: Wire + components: + - parent: 15 + pos: 23.5,-9.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 667 type: Wire components: - - parent: 0 - pos: -4.5,-0.5 + - parent: 15 + pos: 24.5,-9.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8496,8 +8518,8 @@ entities: - uid: 668 type: Wire components: - - parent: 0 - pos: 0.5,-7.5 + - parent: 15 + pos: 25.5,-9.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8509,8 +8531,8 @@ entities: - uid: 669 type: Wire components: - - parent: 0 - pos: 0.5,-8.5 + - parent: 15 + pos: 16.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8522,8 +8544,8 @@ entities: - uid: 670 type: Wire components: - - parent: 0 - pos: 0.5,-9.5 + - parent: 15 + pos: 15.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8535,8 +8557,8 @@ entities: - uid: 671 type: Wire components: - - parent: 0 - pos: 0.5,-10.5 + - parent: 15 + pos: 18.5,-11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8548,8 +8570,8 @@ entities: - uid: 672 type: Wire components: - - parent: 0 - pos: -0.5,-10.5 + - parent: 15 + pos: 18.5,-12.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8561,8 +8583,8 @@ entities: - uid: 673 type: Wire components: - - parent: 0 - pos: -1.5,-10.5 + - parent: 15 + pos: 18.5,-13.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8574,8 +8596,8 @@ entities: - uid: 674 type: Wire components: - - parent: 0 - pos: -2.5,-10.5 + - parent: 15 + pos: 19.5,-13.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8587,8 +8609,8 @@ entities: - uid: 675 type: Wire components: - - parent: 0 - pos: -3.5,-10.5 + - parent: 15 + pos: 20.5,-13.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8600,8 +8622,8 @@ entities: - uid: 676 type: Wire components: - - parent: 0 - pos: -4.5,-10.5 + - parent: 15 + pos: 21.5,-13.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8613,8 +8635,8 @@ entities: - uid: 677 type: Wire components: - - parent: 0 - pos: -5.5,-10.5 + - parent: 15 + pos: 22.5,-13.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8626,8 +8648,8 @@ entities: - uid: 678 type: Wire components: - - parent: 0 - pos: -6.5,-10.5 + - parent: 15 + pos: 23.5,-13.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8637,49 +8659,27 @@ entities: - AdjacentNode type: NodeContainer - uid: 679 - type: Wire + type: LightTube components: - - parent: 0 - pos: -7.5,-10.5 - rot: -1.5707963267948966 rad + - parent: 2264 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 680 - type: Wire + type: Table components: - - parent: 0 - pos: -8.5,-10.5 + - parent: 15 + pos: 6.5,7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 681 - type: Wire + type: LightTube components: - - parent: 0 - pos: -9.5,-13.5 - rot: -1.5707963267948966 rad + - parent: 378 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 682 type: Wire components: - - parent: 0 - pos: -9.5,-12.5 + - parent: 15 + pos: -4.5,-0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8691,8 +8691,8 @@ entities: - uid: 683 type: Wire components: - - parent: 0 - pos: -9.5,-11.5 + - parent: 15 + pos: 0.5,-7.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8704,8 +8704,8 @@ entities: - uid: 684 type: Wire components: - - parent: 0 - pos: -8.5,-7.5 + - parent: 15 + pos: 0.5,-8.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8717,8 +8717,8 @@ entities: - uid: 685 type: Wire components: - - parent: 0 - pos: -7.5,-7.5 + - parent: 15 + pos: 0.5,-9.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8730,8 +8730,8 @@ entities: - uid: 686 type: Wire components: - - parent: 0 - pos: -6.5,-7.5 + - parent: 15 + pos: 0.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8743,8 +8743,8 @@ entities: - uid: 687 type: Wire components: - - parent: 0 - pos: -6.5,-6.5 + - parent: 15 + pos: -0.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8756,8 +8756,8 @@ entities: - uid: 688 type: Wire components: - - parent: 0 - pos: -6.5,-5.5 + - parent: 15 + pos: -1.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8769,8 +8769,8 @@ entities: - uid: 689 type: Wire components: - - parent: 0 - pos: -6.5,-4.5 + - parent: 15 + pos: -2.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8782,8 +8782,8 @@ entities: - uid: 690 type: Wire components: - - parent: 0 - pos: -7.5,-4.5 + - parent: 15 + pos: -3.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8795,8 +8795,8 @@ entities: - uid: 691 type: Wire components: - - parent: 0 - pos: -8.5,-4.5 + - parent: 15 + pos: -4.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8808,8 +8808,8 @@ entities: - uid: 692 type: Wire components: - - parent: 0 - pos: -8.5,-3.5 + - parent: 15 + pos: -5.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8821,8 +8821,8 @@ entities: - uid: 693 type: Wire components: - - parent: 0 - pos: -8.5,-2.5 + - parent: 15 + pos: -6.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8834,8 +8834,8 @@ entities: - uid: 694 type: Wire components: - - parent: 0 - pos: -8.5,-1.5 + - parent: 15 + pos: -7.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8847,8 +8847,8 @@ entities: - uid: 695 type: Wire components: - - parent: 0 - pos: -8.5,-0.5 + - parent: 15 + pos: -8.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8860,8 +8860,9 @@ entities: - uid: 696 type: Wire components: - - parent: 0 - pos: -11.5,0.5 + - parent: 15 + pos: -9.5,-13.5 + rot: -1.5707963267948966 rad type: Transform - nodeTypes: HVPower: @@ -8870,40 +8871,62 @@ entities: - AdjacentNode type: NodeContainer - uid: 697 - type: Chair + type: Wire components: - - parent: 0 - pos: -3.5,-23.5 - rot: 3.141592653589793 rad + - parent: 15 + pos: -9.5,-12.5 + rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 698 - type: Chair + type: Wire components: - - parent: 0 - pos: 38.5,-0.5 + - parent: 15 + pos: -9.5,-11.5 + rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 699 - type: Table + type: Wire components: - - parent: 0 - pos: 39.5,-1.5 + - parent: 15 + pos: -8.5,-7.5 rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 700 - type: VendingMachineYouTool + type: Wire components: - - parent: 0 - pos: 31.5,0.5 + - parent: 15 + pos: -7.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - SerialNumber: RYNA-8760 - WireSeed: 1360281528 - type: Wires + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 701 type: Wire components: - - parent: 0 - pos: 2.5,-0.5 + - parent: 15 + pos: -6.5,-7.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8915,8 +8938,8 @@ entities: - uid: 702 type: Wire components: - - parent: 0 - pos: 1.5,-0.5 + - parent: 15 + pos: -6.5,-6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8928,8 +8951,8 @@ entities: - uid: 703 type: Wire components: - - parent: 0 - pos: 0.5,-0.5 + - parent: 15 + pos: -6.5,-5.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8941,8 +8964,8 @@ entities: - uid: 704 type: Wire components: - - parent: 0 - pos: -0.5,-0.5 + - parent: 15 + pos: -6.5,-4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8952,30 +8975,49 @@ entities: - AdjacentNode type: NodeContainer - uid: 705 - type: LowWall + type: Wire components: - - parent: 0 - pos: -22.5,-13.5 + - parent: 15 + pos: -7.5,-4.5 rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 706 - type: Table + type: Wire components: - - parent: 0 - pos: 29.5,-4.5 + - parent: 15 + pos: -8.5,-4.5 rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 707 - type: ComputerAlert + type: Wire components: - - parent: 0 - pos: 29.5,-2.5 + - parent: 15 + pos: -8.5,-3.5 + rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 708 type: Wire components: - - parent: 0 - pos: -32.5,14.5 + - parent: 15 + pos: -8.5,-2.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -8987,8 +9029,8 @@ entities: - uid: 709 type: Wire components: - - parent: 0 - pos: -31.5,14.5 + - parent: 15 + pos: -8.5,-1.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -9000,8 +9042,8 @@ entities: - uid: 710 type: Wire components: - - parent: 0 - pos: -30.5,14.5 + - parent: 15 + pos: -8.5,-0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -9013,9 +9055,8 @@ entities: - uid: 711 type: Wire components: - - parent: 0 - pos: -29.5,14.5 - rot: -1.5707963267948966 rad + - parent: 15 + pos: -11.5,0.5 type: Transform - nodeTypes: HVPower: @@ -9024,62 +9065,40 @@ entities: - AdjacentNode type: NodeContainer - uid: 712 - type: Wire + type: Chair components: - - parent: 0 - pos: -28.5,14.5 - rot: -1.5707963267948966 rad + - parent: 15 + pos: -3.5,-23.5 + rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 713 - type: Wire + type: Chair components: - - parent: 0 - pos: -27.5,14.5 - rot: -1.5707963267948966 rad + - parent: 15 + pos: 38.5,-0.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 714 - type: Wire + type: Table components: - - parent: 0 - pos: -26.5,14.5 + - parent: 15 + pos: 39.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 715 - type: Wire + type: VendingMachineYouTool components: - - parent: 0 - pos: -25.5,14.5 + - parent: 15 + pos: 31.5,0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer + - SerialNumber: RYNA-8760 + WireSeed: 1360281528 + type: Wires - uid: 716 type: Wire components: - - parent: 0 - pos: -24.5,14.5 + - parent: 15 + pos: 2.5,-0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -9091,8 +9110,8 @@ entities: - uid: 717 type: Wire components: - - parent: 0 - pos: -23.5,14.5 + - parent: 15 + pos: 1.5,-0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -9104,8 +9123,8 @@ entities: - uid: 718 type: Wire components: - - parent: 0 - pos: -22.5,14.5 + - parent: 15 + pos: 0.5,-0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -9117,8 +9136,8 @@ entities: - uid: 719 type: Wire components: - - parent: 0 - pos: -21.5,14.5 + - parent: 15 + pos: -0.5,-0.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -9128,49 +9147,30 @@ entities: - AdjacentNode type: NodeContainer - uid: 720 - type: Wire + type: solid_wall components: - - parent: 0 - pos: -20.5,14.5 + - parent: 15 + pos: -25.5,-15.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 721 - type: Wire + type: Table components: - - parent: 0 - pos: -24.5,8.5 + - parent: 15 + pos: 29.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 722 - type: Wire + type: ComputerAlert components: - - parent: 0 - pos: -25.5,8.5 - rot: -1.5707963267948966 rad + - parent: 15 + pos: 29.5,-2.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 723 type: Wire components: - - parent: 0 - pos: -26.5,8.5 + - parent: 15 + pos: -32.5,14.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -9182,8 +9182,8 @@ entities: - uid: 724 type: Wire components: - - parent: 0 - pos: -27.5,8.5 + - parent: 15 + pos: -31.5,14.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -9195,8 +9195,8 @@ entities: - uid: 725 type: Wire components: - - parent: 0 - pos: -28.5,8.5 + - parent: 15 + pos: -30.5,14.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -9206,72 +9206,267 @@ entities: - AdjacentNode type: NodeContainer - uid: 726 + type: Wire + components: + - parent: 15 + pos: -29.5,14.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 727 + type: Wire + components: + - parent: 15 + pos: -28.5,14.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 728 + type: Wire + components: + - parent: 15 + pos: -27.5,14.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 729 + type: Wire + components: + - parent: 15 + pos: -26.5,14.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 730 + type: Wire + components: + - parent: 15 + pos: -25.5,14.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 731 + type: Wire + components: + - parent: 15 + pos: -24.5,14.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 732 + type: Wire + components: + - parent: 15 + pos: -23.5,14.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 733 + type: Wire + components: + - parent: 15 + pos: -22.5,14.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 734 + type: Wire + components: + - parent: 15 + pos: -21.5,14.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 735 + type: Wire + components: + - parent: 15 + pos: -20.5,14.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 736 + type: Wire + components: + - parent: 15 + pos: -24.5,8.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 737 + type: Wire + components: + - parent: 15 + pos: -25.5,8.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 738 + type: Wire + components: + - parent: 15 + pos: -26.5,8.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 739 + type: Wire + components: + - parent: 15 + pos: -27.5,8.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 740 + type: Wire + components: + - parent: 15 + pos: -28.5,8.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 741 type: Catwalk components: - - parent: 0 + - parent: 15 pos: -16.5,-15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 727 +- uid: 742 type: Catwalk components: - - parent: 0 + - parent: 15 pos: -13.5,-14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 728 +- uid: 743 type: Table components: - - parent: 0 + - parent: 15 pos: 31.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 729 +- uid: 744 type: Catwalk components: - - parent: 0 + - parent: 15 pos: -8.5,-10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 730 +- uid: 745 type: Catwalk components: - - parent: 0 + - parent: 15 pos: -9.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 731 +- uid: 746 type: Catwalk components: - - parent: 0 + - parent: 15 pos: -9.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 732 - type: LowWall +- uid: 747 + type: solid_wall components: - - parent: 0 - pos: -21.5,-13.5 + - parent: 15 + pos: -23.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 733 +- uid: 748 type: ChairOfficeDark components: - - parent: 0 + - parent: 15 pos: 30.5,-2.5 rot: 3.141592653589793 rad type: Transform -- uid: 734 +- uid: 749 type: Catwalk components: - - parent: 0 + - parent: 15 pos: 0.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 735 +- uid: 750 type: CrateGeneric components: - - parent: 0 + - parent: 15 pos: 39.5,13.5 rot: -1.5707963267948966 rad type: Transform @@ -9281,10 +9476,10 @@ entities: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 736 +- uid: 751 type: CrateGeneric components: - - parent: 0 + - parent: 15 pos: 38.5,13.5 rot: -1.5707963267948966 rad type: Transform @@ -9294,194 +9489,194 @@ entities: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 737 +- uid: 752 type: Table components: - - parent: 0 + - parent: 15 pos: 6.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 738 - type: Catwalk - components: - - parent: 0 - pos: -32.5,-6.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 739 - type: Catwalk - components: - - parent: 0 - pos: -33.5,-6.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 740 - type: Catwalk - components: - - parent: 0 - pos: -32.5,0.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 741 - type: Catwalk - components: - - parent: 0 - pos: -32.5,1.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 742 - type: FoodChocolateBar - components: - - parent: 1672 - type: Transform -- uid: 743 - type: PowerCellSmallHyper - components: - - parent: 744 - type: Transform - - startingCharge: 1000 - type: PowerCell -- uid: 744 - type: FlashlightLantern - components: - - parent: 1672 - type: Transform - - containers: - flashlight_cell_container: - entities: - - 743 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 745 - type: PowerCellSmallHyper - components: - - parent: 746 - type: Transform - - startingCharge: 1000 - type: PowerCell -- uid: 746 - type: FlashlightLantern - components: - - parent: 1672 - type: Transform - - containers: - flashlight_cell_container: - entities: - - 745 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 747 - type: Catwalk - components: - - parent: 0 - pos: -15.5,11.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 748 - type: Catwalk - components: - - parent: 0 - pos: -16.5,7.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 749 - type: Catwalk - components: - - parent: 0 - pos: -20.5,12.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 750 - type: Catwalk - components: - - parent: 0 - pos: -16.5,11.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 751 - type: Catwalk - components: - - parent: 0 - pos: -4.5,23.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 752 - type: Catwalk - components: - - parent: 0 - pos: -4.5,22.5 - rot: -1.5707963267948966 rad - type: Transform - uid: 753 type: Catwalk components: - - parent: 0 - pos: -4.5,21.5 + - parent: 15 + pos: -32.5,-6.5 rot: -1.5707963267948966 rad type: Transform - uid: 754 type: Catwalk components: - - parent: 0 - pos: -0.5,20.5 + - parent: 15 + pos: -33.5,-6.5 rot: -1.5707963267948966 rad type: Transform - uid: 755 type: Catwalk components: - - parent: 0 - pos: 6.5,14.5 + - parent: 15 + pos: -32.5,0.5 rot: -1.5707963267948966 rad type: Transform - uid: 756 type: Catwalk components: - - parent: 0 - pos: 8.5,13.5 + - parent: 15 + pos: -32.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 757 + type: FoodChocolateBar + components: + - parent: 1686 + type: Transform +- uid: 758 + type: PowerCellSmallHyper + components: + - parent: 759 + type: Transform + - startingCharge: 1000 + type: PowerCell +- uid: 759 + type: FlashlightLantern + components: + - parent: 1686 + type: Transform + - containers: + flashlight_cell_container: + entities: + - 758 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 760 + type: PowerCellSmallHyper + components: + - parent: 761 + type: Transform + - startingCharge: 1000 + type: PowerCell +- uid: 761 + type: FlashlightLantern + components: + - parent: 1686 + type: Transform + - containers: + flashlight_cell_container: + entities: + - 760 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 762 type: Catwalk components: - - parent: 0 + - parent: 15 + pos: -15.5,11.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 763 + type: Catwalk + components: + - parent: 15 + pos: -16.5,7.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 764 + type: Catwalk + components: + - parent: 15 + pos: -20.5,12.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 765 + type: Catwalk + components: + - parent: 15 + pos: -16.5,11.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 766 + type: Catwalk + components: + - parent: 15 + pos: -4.5,23.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 767 + type: Catwalk + components: + - parent: 15 + pos: -4.5,22.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 768 + type: Catwalk + components: + - parent: 15 + pos: -4.5,21.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 769 + type: Catwalk + components: + - parent: 15 + pos: -0.5,20.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 770 + type: Catwalk + components: + - parent: 15 + pos: 6.5,14.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 771 + type: Catwalk + components: + - parent: 15 + pos: 8.5,13.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 772 + type: Catwalk + components: + - parent: 15 pos: 12.5,20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 758 +- uid: 773 type: AirlockMaintEngiLocked components: - - parent: 0 + - parent: 15 pos: 33.5,-5.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: TBKH-5283 WireSeed: 630596236 type: Wires -- uid: 759 +- uid: 774 type: Catwalk components: - - parent: 0 + - parent: 15 pos: 27.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 760 +- uid: 775 type: Catwalk components: - - parent: 0 + - parent: 15 pos: 21.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 761 +- uid: 776 type: ReinforcedWindow components: - - parent: 0 + - parent: 15 pos: 51.5,3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 762 +- uid: 777 type: Generator components: - - parent: 0 + - parent: 15 pos: 40.5,6.5 rot: -1.5707963267948966 rad type: Transform @@ -9489,10 +9684,10 @@ entities: HVPower: - AdjacentNode type: NodeContainer -- uid: 763 +- uid: 778 type: APC components: - - parent: 0 + - parent: 15 pos: 37.5,8.5 rot: -1.5707963267948966 rad type: Transform @@ -9502,176 +9697,176 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 764 - type: reinforced_wall - components: - - parent: 0 - pos: 39.5,10.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 765 - type: reinforced_wall - components: - - parent: 0 - pos: 38.5,10.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 766 - type: reinforced_wall - components: - - parent: 0 - pos: 37.5,10.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 767 - type: reinforced_wall - components: - - parent: 0 - pos: 37.5,11.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 768 - type: reinforced_wall - components: - - parent: 0 - pos: 37.5,12.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 769 - type: reinforced_wall - components: - - parent: 0 - pos: 37.5,13.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 770 - type: reinforced_wall - components: - - parent: 0 - pos: 37.5,14.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 771 - type: reinforced_wall - components: - - parent: 0 - pos: 38.5,14.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 772 - type: reinforced_wall - components: - - parent: 0 - pos: 39.5,14.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 773 - type: reinforced_wall - components: - - parent: 0 - pos: 40.5,14.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 774 - type: reinforced_wall - components: - - parent: 0 - pos: 41.5,14.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 775 - type: reinforced_wall - components: - - parent: 0 - pos: 42.5,14.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 776 - type: reinforced_wall - components: - - parent: 0 - pos: 43.5,14.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 777 - type: reinforced_wall - components: - - parent: 0 - pos: 44.5,14.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 778 - type: reinforced_wall - components: - - parent: 0 - pos: 44.5,13.5 - rot: -1.5707963267948966 rad - type: Transform - uid: 779 type: reinforced_wall components: - - parent: 0 - pos: 44.5,12.5 + - parent: 15 + pos: 39.5,10.5 rot: -1.5707963267948966 rad type: Transform - uid: 780 type: reinforced_wall components: - - parent: 0 - pos: 44.5,11.5 + - parent: 15 + pos: 38.5,10.5 rot: -1.5707963267948966 rad type: Transform - uid: 781 type: reinforced_wall components: - - parent: 0 - pos: 44.5,10.5 + - parent: 15 + pos: 37.5,10.5 rot: -1.5707963267948966 rad type: Transform - uid: 782 type: reinforced_wall components: - - parent: 0 - pos: 43.5,10.5 + - parent: 15 + pos: 37.5,11.5 rot: -1.5707963267948966 rad type: Transform - uid: 783 type: reinforced_wall components: - - parent: 0 - pos: 42.5,10.5 + - parent: 15 + pos: 37.5,12.5 rot: -1.5707963267948966 rad type: Transform - uid: 784 - type: LowWall + type: reinforced_wall components: - - parent: 0 - pos: 40.5,1.5 + - parent: 15 + pos: 37.5,13.5 rot: -1.5707963267948966 rad type: Transform - uid: 785 - type: LowWall + type: reinforced_wall components: - - parent: 0 - pos: 39.5,1.5 + - parent: 15 + pos: 37.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 786 - type: LowWall + type: reinforced_wall components: - - parent: 0 - pos: 36.5,-0.5 + - parent: 15 + pos: 38.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 787 - type: LightBulb + type: reinforced_wall components: - - parent: 791 + - parent: 15 + pos: 39.5,14.5 + rot: -1.5707963267948966 rad type: Transform - uid: 788 + type: reinforced_wall + components: + - parent: 15 + pos: 40.5,14.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 789 + type: reinforced_wall + components: + - parent: 15 + pos: 41.5,14.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 790 + type: reinforced_wall + components: + - parent: 15 + pos: 42.5,14.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 791 + type: reinforced_wall + components: + - parent: 15 + pos: 43.5,14.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 792 + type: reinforced_wall + components: + - parent: 15 + pos: 44.5,14.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 793 + type: reinforced_wall + components: + - parent: 15 + pos: 44.5,13.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 794 + type: reinforced_wall + components: + - parent: 15 + pos: 44.5,12.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 795 + type: reinforced_wall + components: + - parent: 15 + pos: 44.5,11.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 796 + type: reinforced_wall + components: + - parent: 15 + pos: 44.5,10.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 797 + type: reinforced_wall + components: + - parent: 15 + pos: 43.5,10.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 798 + type: reinforced_wall + components: + - parent: 15 + pos: 42.5,10.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 799 + type: LowWall + components: + - parent: 15 + pos: 40.5,1.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 800 + type: LowWall + components: + - parent: 15 + pos: 39.5,1.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 801 + type: LowWall + components: + - parent: 15 + pos: 36.5,-0.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 802 + type: LightBulb + components: + - parent: 806 + type: Transform +- uid: 803 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: -10,-3.5 type: Transform - color: '#FFFFFFFF' @@ -9681,13 +9876,13 @@ entities: - containers: light_bulb: entities: - - 2643 + - 2655 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 789 +- uid: 804 type: PoweredSmallLight components: - - parent: 0 + - parent: 15 pos: -12.5,-6 rot: 1.5707963267948966 rad type: Transform @@ -9698,18 +9893,18 @@ entities: - containers: light_bulb: entities: - - 790 + - 805 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 790 +- uid: 805 type: LightBulb components: - - parent: 789 + - parent: 804 type: Transform -- uid: 791 +- uid: 806 type: PoweredSmallLight components: - - parent: 0 + - parent: 15 pos: -25.5,-10 rot: 1.5707963267948966 rad type: Transform @@ -9720,13 +9915,13 @@ entities: - containers: light_bulb: entities: - - 787 + - 802 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 792 +- uid: 807 type: APC components: - - parent: 0 + - parent: 15 pos: -20.5,-8.5 rot: 1.5707963267948966 rad type: Transform @@ -9736,542 +9931,542 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 793 - type: solid_wall - components: - - parent: 0 - pos: 37.5,9.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 794 - type: solid_wall - components: - - parent: 0 - pos: 37.5,8.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 795 - type: solid_wall - components: - - parent: 0 - pos: 37.5,7.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 796 - type: solid_wall - components: - - parent: 0 - pos: 36.5,7.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 797 - type: solid_wall - components: - - parent: 0 - pos: 35.5,7.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 798 - type: WaterTankFull - components: - - parent: 0 - pos: -1.5,-6.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 799 - type: solid_wall - components: - - parent: 0 - pos: 36.5,6.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 800 - type: LowWall - components: - - parent: 0 - pos: 51.5,1.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 801 - type: LowWall - components: - - parent: 0 - pos: 51.5,2.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 802 - type: solid_wall - components: - - parent: 0 - pos: 41.5,1.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 803 - type: solid_wall - components: - - parent: 0 - pos: 41.5,0.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 804 - type: solid_wall - components: - - parent: 0 - pos: 41.5,-0.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 805 - type: solid_wall - components: - - parent: 0 - pos: 41.5,-1.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 806 - type: solid_wall - components: - - parent: 0 - pos: 41.5,-2.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 807 - type: solid_wall - components: - - parent: 0 - pos: 40.5,-2.5 - rot: -1.5707963267948966 rad - type: Transform - uid: 808 type: solid_wall components: - - parent: 0 - pos: 39.5,-2.5 + - parent: 15 + pos: 37.5,9.5 rot: -1.5707963267948966 rad type: Transform - uid: 809 type: solid_wall components: - - parent: 0 - pos: 38.5,-2.5 + - parent: 15 + pos: 37.5,8.5 rot: -1.5707963267948966 rad type: Transform - uid: 810 type: solid_wall components: - - parent: 0 - pos: 37.5,-2.5 + - parent: 15 + pos: 37.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 811 type: solid_wall components: - - parent: 0 - pos: 36.5,-2.5 + - parent: 15 + pos: 36.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 812 type: solid_wall components: - - parent: 0 - pos: 36.5,-1.5 + - parent: 15 + pos: 35.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 813 - type: solid_wall + type: WaterTankFull components: - - parent: 0 - pos: 36.5,1.5 + - parent: 15 + pos: -1.5,-6.5 rot: -1.5707963267948966 rad type: Transform - uid: 814 type: solid_wall components: - - parent: 0 - pos: 36.5,0.5 + - parent: 15 + pos: 36.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 815 type: LowWall components: - - parent: 0 - pos: 37.5,1.5 + - parent: 15 + pos: 51.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 816 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 36.5,2.5 + - parent: 15 + pos: 51.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 817 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 51.5,3.5 + - parent: 15 + pos: 41.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 818 type: solid_wall components: - - parent: 0 - pos: 35.5,1.5 + - parent: 15 + pos: 41.5,0.5 rot: -1.5707963267948966 rad type: Transform - uid: 819 type: solid_wall components: - - parent: 0 - pos: 31.5,1.5 + - parent: 15 + pos: 41.5,-0.5 rot: -1.5707963267948966 rad type: Transform - uid: 820 type: solid_wall components: - - parent: 0 - pos: 42.5,0.5 + - parent: 15 + pos: 41.5,-1.5 rot: -1.5707963267948966 rad type: Transform - uid: 821 type: solid_wall components: - - parent: 0 - pos: 45.5,0.5 + - parent: 15 + pos: 41.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 822 type: solid_wall components: - - parent: 0 - pos: 44.5,0.5 + - parent: 15 + pos: 40.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 823 - type: WaterTankFull + type: solid_wall components: - - parent: 0 - pos: 10.5,-18.5 + - parent: 15 + pos: 39.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 824 type: solid_wall components: - - parent: 0 - pos: 44.5,-0.5 + - parent: 15 + pos: 38.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 825 type: solid_wall components: - - parent: 0 - pos: 44.5,-1.5 + - parent: 15 + pos: 37.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 826 type: solid_wall components: - - parent: 0 - pos: 44.5,-2.5 + - parent: 15 + pos: 36.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 827 type: solid_wall components: - - parent: 0 - pos: 44.5,-3.5 + - parent: 15 + pos: 36.5,-1.5 rot: -1.5707963267948966 rad type: Transform - uid: 828 type: solid_wall components: - - parent: 0 - pos: 44.5,-4.5 + - parent: 15 + pos: 36.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 829 type: solid_wall components: - - parent: 0 - pos: 44.5,-5.5 + - parent: 15 + pos: 36.5,0.5 rot: -1.5707963267948966 rad type: Transform - uid: 830 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 43.5,-5.5 + - parent: 15 + pos: 37.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 831 type: solid_wall components: - - parent: 0 - pos: 42.5,-5.5 + - parent: 15 + pos: 36.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 832 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 41.5,-5.5 + - parent: 15 + pos: 51.5,3.5 rot: -1.5707963267948966 rad type: Transform - uid: 833 type: solid_wall components: - - parent: 0 - pos: 40.5,-5.5 + - parent: 15 + pos: 35.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 834 type: solid_wall components: - - parent: 0 - pos: 39.5,-5.5 + - parent: 15 + pos: 31.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 835 type: solid_wall components: - - parent: 0 - pos: 39.5,-6.5 + - parent: 15 + pos: 42.5,0.5 rot: -1.5707963267948966 rad type: Transform - uid: 836 type: solid_wall components: - - parent: 0 - pos: 39.5,-7.5 + - parent: 15 + pos: 45.5,0.5 rot: -1.5707963267948966 rad type: Transform - uid: 837 type: solid_wall components: - - parent: 0 - pos: 39.5,-8.5 + - parent: 15 + pos: 44.5,0.5 rot: -1.5707963267948966 rad type: Transform - uid: 838 - type: solid_wall + type: WaterTankFull components: - - parent: 0 - pos: 38.5,-8.5 + - parent: 15 + pos: 10.5,-18.5 rot: -1.5707963267948966 rad type: Transform - uid: 839 type: solid_wall components: - - parent: 0 - pos: 37.5,-8.5 + - parent: 15 + pos: 44.5,-0.5 rot: -1.5707963267948966 rad type: Transform - uid: 840 type: solid_wall components: - - parent: 0 - pos: 36.5,-8.5 + - parent: 15 + pos: 44.5,-1.5 rot: -1.5707963267948966 rad type: Transform - uid: 841 type: solid_wall components: - - parent: 0 - pos: 35.5,-8.5 + - parent: 15 + pos: 44.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 842 type: solid_wall components: - - parent: 0 - pos: 34.5,-8.5 + - parent: 15 + pos: 44.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 843 type: solid_wall components: - - parent: 0 - pos: 33.5,-8.5 + - parent: 15 + pos: 44.5,-4.5 rot: -1.5707963267948966 rad type: Transform - uid: 844 type: solid_wall components: - - parent: 0 - pos: 32.5,-8.5 + - parent: 15 + pos: 44.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 845 type: solid_wall components: - - parent: 0 - pos: 31.5,-8.5 + - parent: 15 + pos: 43.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 846 type: solid_wall components: - - parent: 0 - pos: 30.5,-8.5 + - parent: 15 + pos: 42.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 847 type: solid_wall components: - - parent: 0 - pos: 29.5,-8.5 + - parent: 15 + pos: 41.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 848 type: solid_wall components: - - parent: 0 - pos: 28.5,-8.5 + - parent: 15 + pos: 40.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 849 type: solid_wall components: - - parent: 0 - pos: 28.5,-7.5 + - parent: 15 + pos: 39.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 850 type: solid_wall components: - - parent: 0 - pos: 28.5,-9.5 + - parent: 15 + pos: 39.5,-6.5 rot: -1.5707963267948966 rad type: Transform - uid: 851 type: solid_wall components: - - parent: 0 - pos: 28.5,-10.5 + - parent: 15 + pos: 39.5,-7.5 rot: -1.5707963267948966 rad type: Transform - uid: 852 type: solid_wall components: - - parent: 0 - pos: 28.5,-11.5 + - parent: 15 + pos: 39.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 853 type: solid_wall components: - - parent: 0 - pos: 28.5,-12.5 + - parent: 15 + pos: 38.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 854 type: solid_wall components: - - parent: 0 - pos: 28.5,-13.5 + - parent: 15 + pos: 37.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 855 type: solid_wall components: - - parent: 0 - pos: 28.5,-14.5 + - parent: 15 + pos: 36.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 856 type: solid_wall components: - - parent: 0 - pos: 28.5,-15.5 + - parent: 15 + pos: 35.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 857 type: solid_wall components: - - parent: 0 - pos: 28.5,-16.5 + - parent: 15 + pos: 34.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 858 type: solid_wall components: - - parent: 0 - pos: 28.5,-17.5 + - parent: 15 + pos: 33.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 859 type: solid_wall components: - - parent: 0 - pos: 28.5,-18.5 + - parent: 15 + pos: 32.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 860 type: solid_wall components: - - parent: 0 - pos: 28.5,-19.5 + - parent: 15 + pos: 31.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 861 type: solid_wall components: - - parent: 0 - pos: 27.5,-19.5 + - parent: 15 + pos: 30.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 862 type: solid_wall components: - - parent: 0 - pos: 26.5,-19.5 + - parent: 15 + pos: 29.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 863 type: solid_wall components: - - parent: 0 - pos: 25.5,-19.5 + - parent: 15 + pos: 28.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 864 type: solid_wall components: - - parent: 0 - pos: 24.5,-19.5 + - parent: 15 + pos: 28.5,-7.5 rot: -1.5707963267948966 rad type: Transform - uid: 865 type: solid_wall components: - - parent: 0 - pos: 23.5,-19.5 + - parent: 15 + pos: 28.5,-9.5 rot: -1.5707963267948966 rad type: Transform - uid: 866 type: solid_wall components: - - parent: 0 - pos: 23.5,-20.5 + - parent: 15 + pos: 28.5,-10.5 rot: -1.5707963267948966 rad type: Transform - uid: 867 type: solid_wall components: - - parent: 0 - pos: 23.5,-21.5 + - parent: 15 + pos: 28.5,-11.5 rot: -1.5707963267948966 rad type: Transform - uid: 868 type: solid_wall components: - - parent: 0 - pos: 45.5,8.5 + - parent: 15 + pos: 28.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 869 + type: solid_wall + components: + - parent: 15 + pos: 28.5,-13.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 870 + type: solid_wall + components: + - parent: 15 + pos: 28.5,-14.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 871 + type: solid_wall + components: + - parent: 15 + pos: 28.5,-15.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 872 + type: solid_wall + components: + - parent: 15 + pos: 28.5,-16.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 873 + type: solid_wall + components: + - parent: 15 + pos: 28.5,-17.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 874 + type: solid_wall + components: + - parent: 15 + pos: 28.5,-18.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 875 + type: solid_wall + components: + - parent: 15 + pos: 28.5,-19.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 876 + type: solid_wall + components: + - parent: 15 + pos: 27.5,-19.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 877 + type: solid_wall + components: + - parent: 15 + pos: 26.5,-19.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 878 + type: solid_wall + components: + - parent: 15 + pos: 25.5,-19.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 879 + type: solid_wall + components: + - parent: 15 + pos: 24.5,-19.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 880 + type: solid_wall + components: + - parent: 15 + pos: 23.5,-19.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 881 + type: solid_wall + components: + - parent: 15 + pos: 23.5,-20.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 882 + type: solid_wall + components: + - parent: 15 + pos: 23.5,-21.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 883 + type: solid_wall + components: + - parent: 15 + pos: 45.5,8.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 884 type: Wire components: - - parent: 0 + - parent: 15 pos: 14.5,-23.5 rot: -1.5707963267948966 rad type: Transform @@ -10281,997 +10476,997 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 870 - type: solid_wall - components: - - parent: 0 - pos: 0.5,-28.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 871 - type: solid_wall - components: - - parent: 0 - pos: 0.5,-27.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 872 - type: solid_wall - components: - - parent: 0 - pos: 0.5,-26.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 873 - type: ReinforcedWindow - components: - - parent: 0 - pos: 51.5,0.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 874 - type: LowWall - components: - - parent: 0 - pos: 51.5,0.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 875 - type: solid_wall - components: - - parent: 0 - pos: 18.5,-23.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 876 - type: solid_wall - components: - - parent: 0 - pos: 19.5,-23.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 877 - type: solid_wall - components: - - parent: 0 - pos: 13.5,-21.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 878 - type: solid_wall - components: - - parent: 0 - pos: 12.5,-21.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 879 - type: solid_wall - components: - - parent: 0 - pos: 1.5,-24.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 880 - type: solid_wall - components: - - parent: 0 - pos: 0.5,-24.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 881 - type: solid_wall - components: - - parent: 0 - pos: 0.5,-25.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 882 - type: solid_wall - components: - - parent: 0 - pos: 8.5,-21.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 883 - type: solid_wall - components: - - parent: 0 - pos: 7.5,-21.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 884 - type: solid_wall - components: - - parent: 0 - pos: 6.5,-21.5 - rot: -1.5707963267948966 rad - type: Transform - uid: 885 type: solid_wall components: - - parent: 0 - pos: 6.5,-22.5 + - parent: 15 + pos: 0.5,-28.5 rot: -1.5707963267948966 rad type: Transform - uid: 886 type: solid_wall components: - - parent: 0 - pos: 5.5,-22.5 + - parent: 15 + pos: 0.5,-27.5 rot: -1.5707963267948966 rad type: Transform - uid: 887 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 5.5,-23.5 + - parent: 15 + pos: 0.5,-26.5 rot: -1.5707963267948966 rad type: Transform - uid: 888 - type: LowWall + type: ReinforcedWindow components: - - parent: 0 - pos: 5.5,-24.5 + - parent: 15 + pos: 51.5,0.5 rot: -1.5707963267948966 rad type: Transform - uid: 889 type: LowWall components: - - parent: 0 - pos: 4.5,-24.5 + - parent: 15 + pos: 51.5,0.5 rot: -1.5707963267948966 rad type: Transform - uid: 890 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 3.5,-24.5 + - parent: 15 + pos: 18.5,-23.5 rot: -1.5707963267948966 rad type: Transform - uid: 891 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 2.5,-24.5 + - parent: 15 + pos: 19.5,-23.5 rot: -1.5707963267948966 rad type: Transform - uid: 892 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 9.5,-21.5 + - parent: 15 + pos: 13.5,-21.5 rot: -1.5707963267948966 rad type: Transform - uid: 893 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 10.5,-21.5 + - parent: 15 + pos: 12.5,-21.5 rot: -1.5707963267948966 rad type: Transform - uid: 894 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 11.5,-21.5 + - parent: 15 + pos: 1.5,-24.5 rot: -1.5707963267948966 rad type: Transform - uid: 895 type: solid_wall components: - - parent: 0 - pos: 45.5,10.5 + - parent: 15 + pos: 0.5,-24.5 rot: -1.5707963267948966 rad type: Transform - uid: 896 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 34.5,7.5 + - parent: 15 + pos: 0.5,-25.5 rot: -1.5707963267948966 rad type: Transform - uid: 897 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 32.5,7.5 + - parent: 15 + pos: 8.5,-21.5 rot: -1.5707963267948966 rad type: Transform - uid: 898 type: solid_wall components: - - parent: 0 - pos: 31.5,7.5 + - parent: 15 + pos: 7.5,-21.5 rot: -1.5707963267948966 rad type: Transform - uid: 899 type: solid_wall components: - - parent: 0 - pos: 30.5,7.5 + - parent: 15 + pos: 6.5,-21.5 rot: -1.5707963267948966 rad type: Transform - uid: 900 type: solid_wall components: - - parent: 0 - pos: 29.5,7.5 + - parent: 15 + pos: 6.5,-22.5 rot: -1.5707963267948966 rad type: Transform - uid: 901 type: solid_wall components: - - parent: 0 - pos: 29.5,8.5 + - parent: 15 + pos: 5.5,-22.5 rot: -1.5707963267948966 rad type: Transform - uid: 902 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 29.5,9.5 + - parent: 15 + pos: 5.5,-23.5 rot: -1.5707963267948966 rad type: Transform - uid: 903 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 28.5,7.5 + - parent: 15 + pos: 5.5,-24.5 rot: -1.5707963267948966 rad type: Transform - uid: 904 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 30.5,6.5 + - parent: 15 + pos: 4.5,-24.5 rot: -1.5707963267948966 rad type: Transform - uid: 905 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 30.5,2.5 + - parent: 15 + pos: 3.5,-24.5 rot: -1.5707963267948966 rad type: Transform - uid: 906 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 30.5,1.5 + - parent: 15 + pos: 2.5,-24.5 rot: -1.5707963267948966 rad type: Transform - uid: 907 type: LowWall components: - - parent: 0 - pos: 32.5,1.5 + - parent: 15 + pos: 9.5,-21.5 rot: -1.5707963267948966 rad type: Transform - uid: 908 type: LowWall components: - - parent: 0 - pos: 34.5,1.5 + - parent: 15 + pos: 10.5,-21.5 rot: -1.5707963267948966 rad type: Transform - uid: 909 type: LowWall components: - - parent: 0 - pos: 30.5,4.5 + - parent: 15 + pos: 11.5,-21.5 rot: -1.5707963267948966 rad type: Transform - uid: 910 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 30.5,14.5 + - parent: 15 + pos: 45.5,10.5 rot: -1.5707963267948966 rad type: Transform - uid: 911 type: LowWall components: - - parent: 0 - pos: 30.5,15.5 + - parent: 15 + pos: 34.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 912 type: LowWall components: - - parent: 0 - pos: 31.5,15.5 + - parent: 15 + pos: 32.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 913 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 32.5,15.5 + - parent: 15 + pos: 31.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 914 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 33.5,15.5 + - parent: 15 + pos: 30.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 915 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 34.5,15.5 + - parent: 15 + pos: 29.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 916 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 35.5,15.5 + - parent: 15 + pos: 29.5,8.5 rot: -1.5707963267948966 rad type: Transform - uid: 917 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 36.5,15.5 + - parent: 15 + pos: 29.5,9.5 rot: -1.5707963267948966 rad type: Transform - uid: 918 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 36.5,14.5 + - parent: 15 + pos: 28.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 919 type: solid_wall components: - - parent: 0 - pos: 29.5,11.5 + - parent: 15 + pos: 30.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 920 type: solid_wall components: - - parent: 0 - pos: 29.5,12.5 + - parent: 15 + pos: 30.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 921 type: solid_wall components: - - parent: 0 - pos: 29.5,13.5 + - parent: 15 + pos: 30.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 922 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 29.5,14.5 + - parent: 15 + pos: 32.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 923 type: LowWall components: - - parent: 0 - pos: 19.5,16.5 + - parent: 15 + pos: 34.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 924 type: LowWall components: - - parent: 0 - pos: 24.5,14.5 + - parent: 15 + pos: 30.5,4.5 rot: -1.5707963267948966 rad type: Transform - uid: 925 type: LowWall components: - - parent: 0 - pos: 23.5,14.5 + - parent: 15 + pos: 30.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 926 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 25.5,14.5 + - parent: 15 + pos: 30.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 927 type: LowWall components: - - parent: 0 - pos: 19.5,14.5 + - parent: 15 + pos: 31.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 928 type: LowWall components: - - parent: 0 - pos: 18.5,14.5 + - parent: 15 + pos: 32.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 929 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 25.5,13.5 + - parent: 15 + pos: 33.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 930 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 25.5,12.5 + - parent: 15 + pos: 34.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 931 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 25.5,11.5 + - parent: 15 + pos: 35.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 932 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 25.5,10.5 + - parent: 15 + pos: 36.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 933 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 25.5,8.5 + - parent: 15 + pos: 36.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 934 type: solid_wall components: - - parent: 0 - pos: 25.5,7.5 + - parent: 15 + pos: 29.5,11.5 rot: -1.5707963267948966 rad type: Transform - uid: 935 type: solid_wall components: - - parent: 0 - pos: 26.5,7.5 + - parent: 15 + pos: 29.5,12.5 rot: -1.5707963267948966 rad type: Transform - uid: 936 type: solid_wall components: - - parent: 0 - pos: 24.5,7.5 + - parent: 15 + pos: 29.5,13.5 rot: -1.5707963267948966 rad type: Transform - uid: 937 type: solid_wall components: - - parent: 0 - pos: 24.5,6.5 + - parent: 15 + pos: 29.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 938 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 23.5,6.5 + - parent: 15 + pos: 19.5,16.5 rot: -1.5707963267948966 rad type: Transform - uid: 939 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 18.5,6.5 + - parent: 15 + pos: 24.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 940 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 17.5,6.5 + - parent: 15 + pos: 23.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 941 type: solid_wall components: - - parent: 0 - pos: 17.5,7.5 + - parent: 15 + pos: 25.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 942 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 17.5,8.5 + - parent: 15 + pos: 19.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 943 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 17.5,9.5 + - parent: 15 + pos: 18.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 944 type: solid_wall components: - - parent: 0 - pos: 16.5,8.5 + - parent: 15 + pos: 25.5,13.5 rot: -1.5707963267948966 rad type: Transform - uid: 945 type: solid_wall components: - - parent: 0 - pos: 12.5,8.5 + - parent: 15 + pos: 25.5,12.5 rot: -1.5707963267948966 rad type: Transform - uid: 946 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 19.5,6.5 + - parent: 15 + pos: 25.5,11.5 rot: -1.5707963267948966 rad type: Transform - uid: 947 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 20.5,6.5 + - parent: 15 + pos: 25.5,10.5 rot: -1.5707963267948966 rad type: Transform - uid: 948 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 21.5,6.5 + - parent: 15 + pos: 25.5,8.5 rot: -1.5707963267948966 rad type: Transform - uid: 949 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 22.5,6.5 + - parent: 15 + pos: 25.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 950 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 23.5,15.5 + - parent: 15 + pos: 26.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 951 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 23.5,16.5 + - parent: 15 + pos: 24.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 952 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 21.5,14.5 + - parent: 15 + pos: 24.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 953 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 21.5,15.5 + - parent: 15 + pos: 23.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 954 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 21.5,16.5 + - parent: 15 + pos: 18.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 955 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 19.5,15.5 + - parent: 15 + pos: 17.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 956 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 26.5,14.5 + - parent: 15 + pos: 17.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 957 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 27.5,14.5 + - parent: 15 + pos: 17.5,8.5 rot: -1.5707963267948966 rad type: Transform - uid: 958 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 28.5,14.5 + - parent: 15 + pos: 17.5,9.5 rot: -1.5707963267948966 rad type: Transform - uid: 959 type: solid_wall components: - - parent: 0 - pos: 17.5,12.5 + - parent: 15 + pos: 16.5,8.5 rot: -1.5707963267948966 rad type: Transform - uid: 960 type: solid_wall components: - - parent: 0 - pos: 17.5,13.5 + - parent: 15 + pos: 12.5,8.5 rot: -1.5707963267948966 rad type: Transform - uid: 961 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 17.5,14.5 + - parent: 15 + pos: 19.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 962 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 17.5,15.5 + - parent: 15 + pos: 20.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 963 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 16.5,16.5 + - parent: 15 + pos: 21.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 964 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 17.5,16.5 + - parent: 15 + pos: 22.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 965 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 16.5,13.5 + - parent: 15 + pos: 23.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 966 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 15.5,13.5 + - parent: 15 + pos: 23.5,16.5 rot: -1.5707963267948966 rad type: Transform - uid: 967 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 14.5,13.5 + - parent: 15 + pos: 21.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 968 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 13.5,13.5 + - parent: 15 + pos: 21.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 969 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 12.5,13.5 + - parent: 15 + pos: 21.5,16.5 rot: -1.5707963267948966 rad type: Transform - uid: 970 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 11.5,13.5 + - parent: 15 + pos: 19.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 971 - type: reinforced_wall + type: LowWall components: - - parent: 0 - pos: 11.5,12.5 + - parent: 15 + pos: 26.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 972 - type: reinforced_wall + type: LowWall components: - - parent: 0 - pos: 10.5,12.5 + - parent: 15 + pos: 27.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 973 - type: reinforced_wall + type: LowWall components: - - parent: 0 - pos: 9.5,12.5 + - parent: 15 + pos: 28.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 974 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: 7.5,12.5 + - parent: 15 + pos: 17.5,12.5 rot: -1.5707963267948966 rad type: Transform - uid: 975 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: 6.5,12.5 + - parent: 15 + pos: 17.5,13.5 rot: -1.5707963267948966 rad type: Transform - uid: 976 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: 5.5,12.5 + - parent: 15 + pos: 17.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 977 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: 5.5,11.5 + - parent: 15 + pos: 17.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 978 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: 5.5,10.5 + - parent: 15 + pos: 16.5,16.5 rot: -1.5707963267948966 rad type: Transform - uid: 979 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: 5.5,9.5 + - parent: 15 + pos: 17.5,16.5 rot: -1.5707963267948966 rad type: Transform - uid: 980 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: 5.5,8.5 + - parent: 15 + pos: 16.5,13.5 rot: -1.5707963267948966 rad type: Transform - uid: 981 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: 5.5,7.5 + - parent: 15 + pos: 15.5,13.5 rot: -1.5707963267948966 rad type: Transform - uid: 982 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: 5.5,6.5 + - parent: 15 + pos: 14.5,13.5 rot: -1.5707963267948966 rad type: Transform - uid: 983 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: 11.5,6.5 + - parent: 15 + pos: 13.5,13.5 rot: -1.5707963267948966 rad type: Transform - uid: 984 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: 11.5,11.5 + - parent: 15 + pos: 12.5,13.5 rot: -1.5707963267948966 rad type: Transform - uid: 985 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: 11.5,10.5 + - parent: 15 + pos: 11.5,13.5 rot: -1.5707963267948966 rad type: Transform - uid: 986 type: reinforced_wall components: - - parent: 0 - pos: 11.5,9.5 + - parent: 15 + pos: 11.5,12.5 rot: -1.5707963267948966 rad type: Transform - uid: 987 type: reinforced_wall components: - - parent: 0 - pos: 11.5,8.5 + - parent: 15 + pos: 10.5,12.5 rot: -1.5707963267948966 rad type: Transform - uid: 988 type: reinforced_wall components: - - parent: 0 - pos: 11.5,7.5 + - parent: 15 + pos: 9.5,12.5 rot: -1.5707963267948966 rad type: Transform - uid: 989 type: reinforced_wall components: - - parent: 0 - pos: 10.5,6.5 + - parent: 15 + pos: 7.5,12.5 rot: -1.5707963267948966 rad type: Transform - uid: 990 type: reinforced_wall components: - - parent: 0 - pos: 6.5,6.5 + - parent: 15 + pos: 6.5,12.5 rot: -1.5707963267948966 rad type: Transform - uid: 991 - type: LowWall + type: reinforced_wall components: - - parent: 0 - pos: 8.5,6.5 + - parent: 15 + pos: 5.5,12.5 rot: -1.5707963267948966 rad type: Transform - uid: 992 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: 14.5,15.5 + - parent: 15 + pos: 5.5,11.5 rot: -1.5707963267948966 rad type: Transform - uid: 993 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: 14.5,16.5 + - parent: 15 + pos: 5.5,10.5 rot: -1.5707963267948966 rad type: Transform - uid: 994 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: 14.5,17.5 + - parent: 15 + pos: 5.5,9.5 rot: -1.5707963267948966 rad type: Transform - uid: 995 - type: ReinforcedWindow + type: reinforced_wall components: - - parent: 0 - pos: 19.5,14.5 + - parent: 15 + pos: 5.5,8.5 rot: -1.5707963267948966 rad type: Transform - uid: 996 - type: ReinforcedWindow + type: reinforced_wall components: - - parent: 0 - pos: 19.5,15.5 + - parent: 15 + pos: 5.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 997 - type: ReinforcedWindow + type: reinforced_wall components: - - parent: 0 - pos: 19.5,16.5 + - parent: 15 + pos: 5.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 998 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: 14.5,21.5 + - parent: 15 + pos: 11.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 999 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: 14.5,22.5 + - parent: 15 + pos: 11.5,11.5 rot: -1.5707963267948966 rad type: Transform - uid: 1000 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: 13.5,22.5 + - parent: 15 + pos: 11.5,10.5 rot: -1.5707963267948966 rad type: Transform - uid: 1001 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: 12.5,22.5 + - parent: 15 + pos: 11.5,9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1002 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: 11.5,22.5 + - parent: 15 + pos: 11.5,8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1003 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: 11.5,21.5 + - parent: 15 + pos: 11.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 1004 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: 11.5,19.5 + - parent: 15 + pos: 10.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1005 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: 11.5,18.5 + - parent: 15 + pos: 6.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1006 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 11.5,17.5 + - parent: 15 + pos: 8.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1007 type: solid_wall components: - - parent: 0 - pos: 11.5,16.5 + - parent: 15 + pos: 14.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1008 type: solid_wall components: - - parent: 0 - pos: 11.5,15.5 + - parent: 15 + pos: 14.5,16.5 rot: -1.5707963267948966 rad type: Transform - uid: 1009 type: solid_wall components: - - parent: 0 - pos: 10.5,15.5 + - parent: 15 + pos: 14.5,17.5 rot: -1.5707963267948966 rad type: Transform - uid: 1010 - type: solid_wall + type: ReinforcedWindow components: - - parent: 0 - pos: 9.5,15.5 + - parent: 15 + pos: 19.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 1011 + type: ReinforcedWindow + components: + - parent: 15 + pos: 19.5,15.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1012 + type: ReinforcedWindow + components: + - parent: 15 + pos: 19.5,16.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1013 + type: solid_wall + components: + - parent: 15 + pos: 14.5,21.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1014 + type: solid_wall + components: + - parent: 15 + pos: 14.5,22.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1015 + type: solid_wall + components: + - parent: 15 + pos: 13.5,22.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1016 + type: solid_wall + components: + - parent: 15 + pos: 12.5,22.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1017 + type: solid_wall + components: + - parent: 15 + pos: 11.5,22.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1018 + type: solid_wall + components: + - parent: 15 + pos: 11.5,21.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1019 + type: solid_wall + components: + - parent: 15 + pos: 11.5,19.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1020 + type: solid_wall + components: + - parent: 15 + pos: 11.5,18.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1021 + type: solid_wall + components: + - parent: 15 + pos: 11.5,17.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1022 + type: solid_wall + components: + - parent: 15 + pos: 11.5,16.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1023 + type: solid_wall + components: + - parent: 15 + pos: 11.5,15.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1024 + type: solid_wall + components: + - parent: 15 + pos: 10.5,15.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1025 + type: solid_wall + components: + - parent: 15 + pos: 9.5,15.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1026 type: Wire components: - - parent: 0 + - parent: 15 pos: 8.5,16.5 type: Transform - nodeTypes: @@ -11280,10 +11475,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 1012 +- uid: 1027 type: Wire components: - - parent: 0 + - parent: 15 pos: 8.5,17.5 type: Transform - nodeTypes: @@ -11292,208 +11487,208 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 1013 +- uid: 1028 type: solid_wall components: - - parent: 0 + - parent: 15 pos: 6.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1014 +- uid: 1029 type: solid_wall components: - - parent: 0 + - parent: 15 pos: 5.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1015 +- uid: 1030 type: solid_wall components: - - parent: 0 + - parent: 15 pos: 6.5,16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1016 +- uid: 1031 type: solid_wall components: - - parent: 0 + - parent: 15 pos: 5.5,13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1017 +- uid: 1032 type: solid_wall components: - - parent: 0 + - parent: 15 pos: 6.5,21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1018 - type: reinforced_wall - components: - - parent: 0 - pos: 10.5,22.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1019 - type: reinforced_wall - components: - - parent: 0 - pos: 9.5,22.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1020 - type: reinforced_wall - components: - - parent: 0 - pos: 8.5,22.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1021 - type: reinforced_wall - components: - - parent: 0 - pos: 7.5,22.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1022 - type: reinforced_wall - components: - - parent: 0 - pos: 6.5,22.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1023 - type: reinforced_wall - components: - - parent: 0 - pos: 5.5,22.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1024 - type: reinforced_wall - components: - - parent: 0 - pos: 10.5,23.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1025 - type: reinforced_wall - components: - - parent: 0 - pos: 10.5,24.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1026 - type: reinforced_wall - components: - - parent: 0 - pos: 10.5,25.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1027 - type: reinforced_wall - components: - - parent: 0 - pos: 10.5,26.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1028 - type: reinforced_wall - components: - - parent: 0 - pos: 10.5,27.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1029 - type: reinforced_wall - components: - - parent: 0 - pos: 10.5,28.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1030 - type: reinforced_wall - components: - - parent: 0 - pos: 10.5,30.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1031 - type: reinforced_wall - components: - - parent: 0 - pos: 10.5,31.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1032 - type: reinforced_wall - components: - - parent: 0 - pos: -3.5,31.5 - rot: -1.5707963267948966 rad - type: Transform - uid: 1033 type: reinforced_wall components: - - parent: 0 - pos: -3.5,30.5 + - parent: 15 + pos: 10.5,22.5 rot: -1.5707963267948966 rad type: Transform - uid: 1034 type: reinforced_wall components: - - parent: 0 - pos: -3.5,28.5 + - parent: 15 + pos: 9.5,22.5 rot: -1.5707963267948966 rad type: Transform - uid: 1035 type: reinforced_wall components: - - parent: 0 - pos: -3.5,27.5 + - parent: 15 + pos: 8.5,22.5 rot: -1.5707963267948966 rad type: Transform - uid: 1036 type: reinforced_wall components: - - parent: 0 - pos: -3.5,26.5 + - parent: 15 + pos: 7.5,22.5 rot: -1.5707963267948966 rad type: Transform - uid: 1037 type: reinforced_wall components: - - parent: 0 - pos: -3.5,25.5 + - parent: 15 + pos: 6.5,22.5 rot: -1.5707963267948966 rad type: Transform - uid: 1038 type: reinforced_wall components: - - parent: 0 - pos: 1.5,22.5 + - parent: 15 + pos: 5.5,22.5 rot: -1.5707963267948966 rad type: Transform - uid: 1039 type: reinforced_wall components: - - parent: 0 - pos: 0.5,22.5 + - parent: 15 + pos: 10.5,23.5 rot: -1.5707963267948966 rad type: Transform - uid: 1040 type: reinforced_wall components: - - parent: 0 - pos: -0.5,22.5 + - parent: 15 + pos: 10.5,24.5 rot: -1.5707963267948966 rad type: Transform - uid: 1041 + type: reinforced_wall + components: + - parent: 15 + pos: 10.5,25.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1042 + type: reinforced_wall + components: + - parent: 15 + pos: 10.5,26.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1043 + type: reinforced_wall + components: + - parent: 15 + pos: 10.5,27.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1044 + type: reinforced_wall + components: + - parent: 15 + pos: 10.5,28.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1045 + type: reinforced_wall + components: + - parent: 15 + pos: 10.5,30.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1046 + type: reinforced_wall + components: + - parent: 15 + pos: 10.5,31.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1047 + type: reinforced_wall + components: + - parent: 15 + pos: -3.5,31.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1048 + type: reinforced_wall + components: + - parent: 15 + pos: -3.5,30.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1049 + type: reinforced_wall + components: + - parent: 15 + pos: -3.5,28.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1050 + type: reinforced_wall + components: + - parent: 15 + pos: -3.5,27.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1051 + type: reinforced_wall + components: + - parent: 15 + pos: -3.5,26.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1052 + type: reinforced_wall + components: + - parent: 15 + pos: -3.5,25.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1053 + type: reinforced_wall + components: + - parent: 15 + pos: 1.5,22.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1054 + type: reinforced_wall + components: + - parent: 15 + pos: 0.5,22.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1055 + type: reinforced_wall + components: + - parent: 15 + pos: -0.5,22.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1056 type: AirlockCommandLocked components: - name: Head of Personnel's Office type: MetaData - - parent: 0 + - parent: 15 pos: 6.5,17.5 rot: -1.5707963267948966 rad type: Transform @@ -11503,486 +11698,486 @@ entities: - SerialNumber: JSUF-2970 WireSeed: 805471845 type: Wires -- uid: 1042 +- uid: 1057 type: reinforced_wall components: - - parent: 0 + - parent: 15 pos: -2.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1043 +- uid: 1058 type: reinforced_wall components: - - parent: 0 + - parent: 15 pos: -3.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1044 +- uid: 1059 type: reinforced_wall components: - - parent: 0 + - parent: 15 pos: -3.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1045 +- uid: 1060 type: reinforced_wall components: - - parent: 0 + - parent: 15 pos: -3.5,24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1046 +- uid: 1061 type: solid_wall components: - - parent: 0 + - parent: 15 pos: 1.5,26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1047 +- uid: 1062 type: solid_wall components: - - parent: 0 + - parent: 15 pos: 1.5,27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1048 +- uid: 1063 type: solid_wall components: - - parent: 0 + - parent: 15 pos: 0.5,27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1049 +- uid: 1064 type: solid_wall components: - - parent: 0 + - parent: 15 pos: -2.5,27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1050 +- uid: 1065 type: solid_wall components: - - parent: 0 + - parent: 15 pos: 1.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1051 +- uid: 1066 type: solid_wall components: - - parent: 0 + - parent: 15 pos: 5.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1052 +- uid: 1067 type: solid_wall components: - - parent: 0 + - parent: 15 pos: 5.5,24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1053 +- uid: 1068 type: solid_wall components: - - parent: 0 + - parent: 15 pos: 5.5,26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1054 +- uid: 1069 type: solid_wall components: - - parent: 0 + - parent: 15 pos: 5.5,27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1055 +- uid: 1070 type: solid_wall components: - - parent: 0 + - parent: 15 pos: 6.5,27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1056 +- uid: 1071 type: solid_wall components: - - parent: 0 + - parent: 15 pos: 7.5,27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1057 +- uid: 1072 type: solid_wall components: - - parent: 0 + - parent: 15 pos: 8.5,27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1058 +- uid: 1073 type: solid_wall components: - - parent: 0 + - parent: 15 pos: 9.5,27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1059 - type: LowWall - components: - - parent: 0 - pos: 3.5,22.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1060 - type: LowWall - components: - - parent: 0 - pos: -1.5,27.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1061 - type: LowWall - components: - - parent: 0 - pos: -0.5,27.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1062 - type: LowWall - components: - - parent: 0 - pos: -3.5,29.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1063 - type: LowWall - components: - - parent: 0 - pos: 10.5,29.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1064 - type: LowWall - components: - - parent: 0 - pos: 9.5,31.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1065 - type: LowWall - components: - - parent: 0 - pos: 9.5,32.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1066 - type: LowWall - components: - - parent: 0 - pos: 8.5,32.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1067 - type: LowWall - components: - - parent: 0 - pos: 8.5,33.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1068 - type: LowWall - components: - - parent: 0 - pos: 7.5,33.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1069 - type: LowWall - components: - - parent: 0 - pos: 6.5,33.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1070 - type: LowWall - components: - - parent: 0 - pos: 5.5,33.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1071 - type: LowWall - components: - - parent: 0 - pos: 4.5,33.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1072 - type: LowWall - components: - - parent: 0 - pos: 3.5,33.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1073 - type: LowWall - components: - - parent: 0 - pos: 2.5,33.5 - rot: -1.5707963267948966 rad - type: Transform - uid: 1074 type: LowWall components: - - parent: 0 - pos: 1.5,33.5 + - parent: 15 + pos: 3.5,22.5 rot: -1.5707963267948966 rad type: Transform - uid: 1075 type: LowWall components: - - parent: 0 - pos: 0.5,33.5 + - parent: 15 + pos: -1.5,27.5 rot: -1.5707963267948966 rad type: Transform - uid: 1076 type: LowWall components: - - parent: 0 - pos: -0.5,33.5 + - parent: 15 + pos: -0.5,27.5 rot: -1.5707963267948966 rad type: Transform - uid: 1077 type: LowWall components: - - parent: 0 - pos: -1.5,33.5 + - parent: 15 + pos: -3.5,29.5 rot: -1.5707963267948966 rad type: Transform - uid: 1078 type: LowWall components: - - parent: 0 - pos: -1.5,32.5 + - parent: 15 + pos: 10.5,29.5 rot: -1.5707963267948966 rad type: Transform - uid: 1079 type: LowWall components: - - parent: 0 - pos: -2.5,31.5 + - parent: 15 + pos: 9.5,31.5 rot: -1.5707963267948966 rad type: Transform - uid: 1080 type: LowWall components: - - parent: 0 - pos: -2.5,32.5 + - parent: 15 + pos: 9.5,32.5 rot: -1.5707963267948966 rad type: Transform - uid: 1081 type: LowWall components: - - parent: 0 - pos: 6.5,19.5 + - parent: 15 + pos: 8.5,32.5 rot: -1.5707963267948966 rad type: Transform - uid: 1082 type: LowWall components: - - parent: 0 - pos: 6.5,18.5 + - parent: 15 + pos: 8.5,33.5 rot: -1.5707963267948966 rad type: Transform - uid: 1083 - type: reinforced_wall + type: LowWall components: - - parent: 0 - pos: 1.5,15.5 + - parent: 15 + pos: 7.5,33.5 rot: -1.5707963267948966 rad type: Transform - uid: 1084 - type: reinforced_wall + type: LowWall components: - - parent: 0 - pos: 0.5,15.5 + - parent: 15 + pos: 6.5,33.5 rot: -1.5707963267948966 rad type: Transform - uid: 1085 - type: reinforced_wall + type: LowWall components: - - parent: 0 - pos: -0.5,15.5 + - parent: 15 + pos: 5.5,33.5 rot: -1.5707963267948966 rad type: Transform - uid: 1086 - type: reinforced_wall + type: LowWall components: - - parent: 0 - pos: -1.5,15.5 + - parent: 15 + pos: 4.5,33.5 rot: -1.5707963267948966 rad type: Transform - uid: 1087 - type: reinforced_wall + type: LowWall components: - - parent: 0 - pos: -2.5,15.5 + - parent: 15 + pos: 3.5,33.5 rot: -1.5707963267948966 rad type: Transform - uid: 1088 - type: reinforced_wall + type: LowWall components: - - parent: 0 - pos: -3.5,15.5 + - parent: 15 + pos: 2.5,33.5 rot: -1.5707963267948966 rad type: Transform - uid: 1089 - type: reinforced_wall + type: LowWall components: - - parent: 0 - pos: -4.5,15.5 + - parent: 15 + pos: 1.5,33.5 rot: -1.5707963267948966 rad type: Transform - uid: 1090 - type: reinforced_wall + type: LowWall components: - - parent: 0 - pos: -4.5,16.5 + - parent: 15 + pos: 0.5,33.5 rot: -1.5707963267948966 rad type: Transform - uid: 1091 - type: reinforced_wall + type: LowWall components: - - parent: 0 - pos: -4.5,17.5 + - parent: 15 + pos: -0.5,33.5 rot: -1.5707963267948966 rad type: Transform - uid: 1092 - type: reinforced_wall + type: LowWall components: - - parent: 0 - pos: -4.5,18.5 + - parent: 15 + pos: -1.5,33.5 rot: -1.5707963267948966 rad type: Transform - uid: 1093 - type: reinforced_wall + type: LowWall components: - - parent: 0 - pos: -4.5,19.5 + - parent: 15 + pos: -1.5,32.5 rot: -1.5707963267948966 rad type: Transform - uid: 1094 - type: reinforced_wall + type: LowWall components: - - parent: 0 - pos: -5.5,19.5 + - parent: 15 + pos: -2.5,31.5 rot: -1.5707963267948966 rad type: Transform - uid: 1095 type: LowWall components: - - parent: 0 - pos: -7.5,18.5 + - parent: 15 + pos: -2.5,32.5 rot: -1.5707963267948966 rad type: Transform - uid: 1096 - type: reinforced_wall + type: LowWall components: - - parent: 0 - pos: -3.5,19.5 + - parent: 15 + pos: 6.5,19.5 rot: -1.5707963267948966 rad type: Transform - uid: 1097 - type: reinforced_wall + type: LowWall components: - - parent: 0 - pos: -2.5,19.5 + - parent: 15 + pos: 6.5,18.5 rot: -1.5707963267948966 rad type: Transform - uid: 1098 type: reinforced_wall components: - - parent: 0 - pos: -1.5,19.5 + - parent: 15 + pos: 1.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1099 type: reinforced_wall components: - - parent: 0 - pos: -0.5,19.5 + - parent: 15 + pos: 0.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1100 type: reinforced_wall components: - - parent: 0 - pos: 0.5,19.5 + - parent: 15 + pos: -0.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1101 type: reinforced_wall components: - - parent: 0 - pos: 0.5,18.5 + - parent: 15 + pos: -1.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1102 type: reinforced_wall components: - - parent: 0 - pos: 0.5,16.5 + - parent: 15 + pos: -2.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1103 type: reinforced_wall components: - - parent: 0 - pos: -5.5,20.5 + - parent: 15 + pos: -3.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1104 type: reinforced_wall components: - - parent: 0 - pos: -5.5,21.5 + - parent: 15 + pos: -4.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1105 type: reinforced_wall components: - - parent: 0 - pos: -5.5,22.5 + - parent: 15 + pos: -4.5,16.5 rot: -1.5707963267948966 rad type: Transform - uid: 1106 type: reinforced_wall components: - - parent: 0 - pos: -6.5,22.5 + - parent: 15 + pos: -4.5,17.5 rot: -1.5707963267948966 rad type: Transform - uid: 1107 type: reinforced_wall components: - - parent: 0 - pos: -7.5,22.5 + - parent: 15 + pos: -4.5,18.5 rot: -1.5707963267948966 rad type: Transform - uid: 1108 type: reinforced_wall components: - - parent: 0 - pos: -8.5,22.5 + - parent: 15 + pos: -4.5,19.5 rot: -1.5707963267948966 rad type: Transform - uid: 1109 type: reinforced_wall components: - - parent: 0 - pos: -9.5,22.5 + - parent: 15 + pos: -5.5,19.5 rot: -1.5707963267948966 rad type: Transform - uid: 1110 + type: LowWall + components: + - parent: 15 + pos: -7.5,18.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1111 + type: reinforced_wall + components: + - parent: 15 + pos: -3.5,19.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1112 + type: reinforced_wall + components: + - parent: 15 + pos: -2.5,19.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1113 + type: reinforced_wall + components: + - parent: 15 + pos: -1.5,19.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1114 + type: reinforced_wall + components: + - parent: 15 + pos: -0.5,19.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1115 + type: reinforced_wall + components: + - parent: 15 + pos: 0.5,19.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1116 + type: reinforced_wall + components: + - parent: 15 + pos: 0.5,18.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1117 + type: reinforced_wall + components: + - parent: 15 + pos: 0.5,16.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1118 + type: reinforced_wall + components: + - parent: 15 + pos: -5.5,20.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1119 + type: reinforced_wall + components: + - parent: 15 + pos: -5.5,21.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1120 + type: reinforced_wall + components: + - parent: 15 + pos: -5.5,22.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1121 + type: reinforced_wall + components: + - parent: 15 + pos: -6.5,22.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1122 + type: reinforced_wall + components: + - parent: 15 + pos: -7.5,22.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1123 + type: reinforced_wall + components: + - parent: 15 + pos: -8.5,22.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1124 + type: reinforced_wall + components: + - parent: 15 + pos: -9.5,22.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1125 type: Wire components: - - parent: 0 + - parent: 15 pos: -13.5,15.5 rot: 1.5707963267948966 rad type: Transform @@ -11992,101 +12187,101 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 1111 +- uid: 1126 type: reinforced_wall components: - - parent: 0 + - parent: 15 pos: -11.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1112 +- uid: 1127 type: reinforced_wall components: - - parent: 0 + - parent: 15 pos: -12.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1113 +- uid: 1128 type: reinforced_wall components: - - parent: 0 + - parent: 15 pos: -13.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1114 +- uid: 1129 type: reinforced_wall components: - - parent: 0 + - parent: 15 pos: -14.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1115 +- uid: 1130 type: reinforced_wall components: - - parent: 0 + - parent: 15 pos: -15.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1116 +- uid: 1131 type: reinforced_wall components: - - parent: 0 + - parent: 15 pos: -16.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1117 +- uid: 1132 type: reinforced_wall components: - - parent: 0 + - parent: 15 pos: -16.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1118 +- uid: 1133 type: reinforced_wall components: - - parent: 0 + - parent: 15 pos: -15.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1119 +- uid: 1134 type: reinforced_wall components: - - parent: 0 + - parent: 15 pos: -14.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1120 +- uid: 1135 type: reinforced_wall components: - - parent: 0 + - parent: 15 pos: -13.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1121 +- uid: 1136 type: reinforced_wall components: - - parent: 0 + - parent: 15 pos: -12.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1122 +- uid: 1137 type: reinforced_wall components: - - parent: 0 + - parent: 15 pos: -11.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1123 +- uid: 1138 type: reinforced_wall components: - - parent: 0 + - parent: 15 pos: -10.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1124 +- uid: 1139 type: Wire components: - - parent: 0 + - parent: 15 pos: -9.5,26.5 rot: 1.5707963267948966 rad type: Transform @@ -12096,881 +12291,881 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 1125 - type: reinforced_wall - components: - - parent: 0 - pos: -16.5,21.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1126 - type: reinforced_wall - components: - - parent: 0 - pos: -16.5,20.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1127 - type: reinforced_wall - components: - - parent: 0 - pos: -16.5,19.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1128 - type: reinforced_wall - components: - - parent: 0 - pos: -16.5,18.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1129 - type: reinforced_wall - components: - - parent: 0 - pos: -16.5,17.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1130 - type: reinforced_wall - components: - - parent: 0 - pos: -15.5,21.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1131 - type: reinforced_wall - components: - - parent: 0 - pos: -15.5,20.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1132 - type: reinforced_wall - components: - - parent: 0 - pos: -15.5,19.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1133 - type: reinforced_wall - components: - - parent: 0 - pos: -15.5,18.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1134 - type: reinforced_wall - components: - - parent: 0 - pos: -15.5,17.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1135 - type: reinforced_wall - components: - - parent: 0 - pos: -14.5,17.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1136 - type: reinforced_wall - components: - - parent: 0 - pos: -13.5,17.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1137 - type: reinforced_wall - components: - - parent: 0 - pos: -11.5,17.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1138 - type: reinforced_wall - components: - - parent: 0 - pos: -10.5,17.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1139 - type: reinforced_wall - components: - - parent: 0 - pos: -10.5,18.5 - rot: -1.5707963267948966 rad - type: Transform - uid: 1140 type: reinforced_wall components: - - parent: 0 - pos: -10.5,19.5 + - parent: 15 + pos: -16.5,21.5 rot: -1.5707963267948966 rad type: Transform - uid: 1141 type: reinforced_wall components: - - parent: 0 - pos: -14.5,8.5 + - parent: 15 + pos: -16.5,20.5 rot: -1.5707963267948966 rad type: Transform - uid: 1142 type: reinforced_wall components: - - parent: 0 - pos: -14.5,7.5 + - parent: 15 + pos: -16.5,19.5 rot: -1.5707963267948966 rad type: Transform - uid: 1143 type: reinforced_wall components: - - parent: 0 - pos: -14.5,6.5 + - parent: 15 + pos: -16.5,18.5 rot: -1.5707963267948966 rad type: Transform - uid: 1144 type: reinforced_wall components: - - parent: 0 - pos: -13.5,6.5 + - parent: 15 + pos: -16.5,17.5 rot: -1.5707963267948966 rad type: Transform - uid: 1145 type: reinforced_wall components: - - parent: 0 - pos: -12.5,6.5 + - parent: 15 + pos: -15.5,21.5 rot: -1.5707963267948966 rad type: Transform - uid: 1146 type: reinforced_wall components: - - parent: 0 - pos: -11.5,6.5 + - parent: 15 + pos: -15.5,20.5 rot: -1.5707963267948966 rad type: Transform - uid: 1147 type: reinforced_wall components: - - parent: 0 - pos: -10.5,6.5 + - parent: 15 + pos: -15.5,19.5 rot: -1.5707963267948966 rad type: Transform - uid: 1148 type: reinforced_wall components: - - parent: 0 - pos: -10.5,7.5 + - parent: 15 + pos: -15.5,18.5 rot: -1.5707963267948966 rad type: Transform - uid: 1149 type: reinforced_wall components: - - parent: 0 - pos: -10.5,8.5 + - parent: 15 + pos: -15.5,17.5 rot: -1.5707963267948966 rad type: Transform - uid: 1150 type: reinforced_wall components: - - parent: 0 - pos: -10.5,9.5 + - parent: 15 + pos: -14.5,17.5 rot: -1.5707963267948966 rad type: Transform - uid: 1151 type: reinforced_wall components: - - parent: 0 - pos: -14.5,12.5 + - parent: 15 + pos: -13.5,17.5 rot: -1.5707963267948966 rad type: Transform - uid: 1152 type: reinforced_wall components: - - parent: 0 - pos: -15.5,12.5 + - parent: 15 + pos: -11.5,17.5 rot: -1.5707963267948966 rad type: Transform - uid: 1153 type: reinforced_wall components: - - parent: 0 - pos: -15.5,13.5 + - parent: 15 + pos: -10.5,17.5 rot: -1.5707963267948966 rad type: Transform - uid: 1154 type: reinforced_wall components: - - parent: 0 - pos: -15.5,14.5 + - parent: 15 + pos: -10.5,18.5 rot: -1.5707963267948966 rad type: Transform - uid: 1155 type: reinforced_wall components: - - parent: 0 - pos: -15.5,15.5 + - parent: 15 + pos: -10.5,19.5 rot: -1.5707963267948966 rad type: Transform - uid: 1156 + type: reinforced_wall + components: + - parent: 15 + pos: -14.5,8.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1157 + type: reinforced_wall + components: + - parent: 15 + pos: -14.5,7.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1158 + type: reinforced_wall + components: + - parent: 15 + pos: -14.5,6.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1159 + type: reinforced_wall + components: + - parent: 15 + pos: -13.5,6.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1160 + type: reinforced_wall + components: + - parent: 15 + pos: -12.5,6.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1161 + type: reinforced_wall + components: + - parent: 15 + pos: -11.5,6.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1162 + type: reinforced_wall + components: + - parent: 15 + pos: -10.5,6.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1163 + type: reinforced_wall + components: + - parent: 15 + pos: -10.5,7.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1164 + type: reinforced_wall + components: + - parent: 15 + pos: -10.5,8.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1165 + type: reinforced_wall + components: + - parent: 15 + pos: -10.5,9.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1166 + type: reinforced_wall + components: + - parent: 15 + pos: -14.5,12.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1167 + type: reinforced_wall + components: + - parent: 15 + pos: -15.5,12.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1168 + type: reinforced_wall + components: + - parent: 15 + pos: -15.5,13.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1169 + type: reinforced_wall + components: + - parent: 15 + pos: -15.5,14.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1170 + type: reinforced_wall + components: + - parent: 15 + pos: -15.5,15.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1171 type: AirlockMaintSecLocked components: - - parent: 0 + - parent: 15 pos: -14.5,11.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: HNPX-8810 WireSeed: 227473884 type: Wires -- uid: 1157 - type: reinforced_wall - components: - - parent: 0 - pos: -14.5,10.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1158 - type: reinforced_wall - components: - - parent: 0 - pos: -14.5,9.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1159 - type: solid_wall - components: - - parent: 0 - pos: -6.5,18.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1160 - type: LowWall - components: - - parent: 0 - pos: -10.5,14.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1161 - type: solid_wall - components: - - parent: 0 - pos: -9.5,18.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1162 - type: solid_wall - components: - - parent: 0 - pos: -10.5,16.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1163 - type: solid_wall - components: - - parent: 0 - pos: -10.5,13.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1164 - type: solid_wall - components: - - parent: 0 - pos: -10.5,12.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1165 - type: solid_wall - components: - - parent: 0 - pos: -11.5,12.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1166 - type: solid_wall - components: - - parent: 0 - pos: -12.5,12.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1167 - type: solid_wall - components: - - parent: 0 - pos: -13.5,12.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1168 - type: solid_wall - components: - - parent: 0 - pos: -5.5,18.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1169 - type: reinforced_wall - components: - - parent: 0 - pos: 1.5,14.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1170 - type: reinforced_wall - components: - - parent: 0 - pos: 1.5,13.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1171 - type: reinforced_wall - components: - - parent: 0 - pos: 1.5,12.5 - rot: -1.5707963267948966 rad - type: Transform - uid: 1172 type: reinforced_wall components: - - parent: 0 - pos: 1.5,11.5 + - parent: 15 + pos: -14.5,10.5 rot: -1.5707963267948966 rad type: Transform - uid: 1173 type: reinforced_wall components: - - parent: 0 - pos: 1.5,10.5 + - parent: 15 + pos: -14.5,9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1174 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: 1.5,9.5 + - parent: 15 + pos: -6.5,18.5 rot: -1.5707963267948966 rad type: Transform - uid: 1175 - type: reinforced_wall + type: LowWall components: - - parent: 0 - pos: 1.5,8.5 + - parent: 15 + pos: -10.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 1176 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: 1.5,7.5 + - parent: 15 + pos: -9.5,18.5 rot: -1.5707963267948966 rad type: Transform - uid: 1177 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: 1.5,6.5 + - parent: 15 + pos: -10.5,16.5 rot: -1.5707963267948966 rad type: Transform - uid: 1178 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: -4.5,6.5 + - parent: 15 + pos: -10.5,13.5 rot: -1.5707963267948966 rad type: Transform - uid: 1179 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: -1.5,6.5 + - parent: 15 + pos: -10.5,12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1180 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: -7.5,6.5 + - parent: 15 + pos: -11.5,12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1181 type: solid_wall components: - - parent: 0 - pos: -4.5,7.5 + - parent: 15 + pos: -12.5,12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1182 type: solid_wall components: - - parent: 0 - pos: -4.5,8.5 + - parent: 15 + pos: -13.5,12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1183 type: solid_wall components: - - parent: 0 - pos: -4.5,9.5 + - parent: 15 + pos: -5.5,18.5 rot: -1.5707963267948966 rad type: Transform - uid: 1184 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: -1.5,9.5 + - parent: 15 + pos: 1.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 1185 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: -1.5,7.5 + - parent: 15 + pos: 1.5,13.5 rot: -1.5707963267948966 rad type: Transform - uid: 1186 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: -1.5,8.5 + - parent: 15 + pos: 1.5,12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1187 - type: LowWall + type: reinforced_wall components: - - parent: 0 - pos: -0.5,9.5 + - parent: 15 + pos: 1.5,11.5 rot: -1.5707963267948966 rad type: Transform - uid: 1188 - type: LowWall + type: reinforced_wall components: - - parent: 0 - pos: -3.5,9.5 + - parent: 15 + pos: 1.5,10.5 rot: -1.5707963267948966 rad type: Transform - uid: 1189 - type: LowWall + type: reinforced_wall components: - - parent: 0 - pos: -7.5,9.5 + - parent: 15 + pos: 1.5,9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1190 - type: LowWall + type: reinforced_wall components: - - parent: 0 - pos: -8.5,9.5 + - parent: 15 + pos: 1.5,8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1191 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: -15.5,6.5 + - parent: 15 + pos: 1.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 1192 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: -17.5,6.5 + - parent: 15 + pos: 1.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1193 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: -18.5,6.5 + - parent: 15 + pos: -4.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1194 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: -18.5,7.5 + - parent: 15 + pos: -1.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1195 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: -18.5,8.5 + - parent: 15 + pos: -7.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1196 type: solid_wall components: - - parent: 0 - pos: -18.5,9.5 + - parent: 15 + pos: -4.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 1197 type: solid_wall components: - - parent: 0 - pos: -18.5,10.5 + - parent: 15 + pos: -4.5,8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1198 type: solid_wall components: - - parent: 0 - pos: -18.5,11.5 + - parent: 15 + pos: -4.5,9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1199 type: solid_wall components: - - parent: 0 - pos: -19.5,11.5 + - parent: 15 + pos: -1.5,9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1200 type: solid_wall components: - - parent: 0 - pos: -18.5,14.5 + - parent: 15 + pos: -1.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 1201 type: solid_wall components: - - parent: 0 - pos: -19.5,14.5 + - parent: 15 + pos: -1.5,8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1202 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: -19.5,15.5 + - parent: 15 + pos: -0.5,9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1203 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: -19.5,16.5 + - parent: 15 + pos: -3.5,9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1204 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: -19.5,17.5 + - parent: 15 + pos: -7.5,9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1205 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: -19.5,18.5 + - parent: 15 + pos: -8.5,9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1206 type: solid_wall components: - - parent: 0 - pos: -19.5,19.5 + - parent: 15 + pos: -15.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1207 type: solid_wall components: - - parent: 0 - pos: -19.5,20.5 + - parent: 15 + pos: -17.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1208 type: solid_wall components: - - parent: 0 - pos: -19.5,21.5 + - parent: 15 + pos: -18.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1209 type: solid_wall components: - - parent: 0 - pos: -19.5,22.5 + - parent: 15 + pos: -18.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 1210 type: solid_wall components: - - parent: 0 - pos: -19.5,23.5 + - parent: 15 + pos: -18.5,8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1211 type: solid_wall components: - - parent: 0 - pos: -19.5,24.5 + - parent: 15 + pos: -18.5,9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1212 type: solid_wall components: - - parent: 0 - pos: -19.5,25.5 + - parent: 15 + pos: -18.5,10.5 rot: -1.5707963267948966 rad type: Transform - uid: 1213 type: solid_wall components: - - parent: 0 - pos: -19.5,26.5 + - parent: 15 + pos: -18.5,11.5 rot: -1.5707963267948966 rad type: Transform - uid: 1214 type: solid_wall components: - - parent: 0 - pos: -18.5,26.5 + - parent: 15 + pos: -19.5,11.5 rot: -1.5707963267948966 rad type: Transform - uid: 1215 type: solid_wall components: - - parent: 0 - pos: -17.5,26.5 + - parent: 15 + pos: -18.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 1216 type: solid_wall components: - - parent: 0 - pos: -16.5,26.5 + - parent: 15 + pos: -19.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 1217 type: solid_wall components: - - parent: 0 - pos: -15.5,26.5 + - parent: 15 + pos: -19.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1218 type: solid_wall components: - - parent: 0 - pos: -14.5,26.5 + - parent: 15 + pos: -19.5,16.5 rot: -1.5707963267948966 rad type: Transform - uid: 1219 type: solid_wall components: - - parent: 0 - pos: -13.5,26.5 + - parent: 15 + pos: -19.5,17.5 rot: -1.5707963267948966 rad type: Transform - uid: 1220 type: solid_wall components: - - parent: 0 - pos: -12.5,26.5 + - parent: 15 + pos: -19.5,18.5 rot: -1.5707963267948966 rad type: Transform - uid: 1221 type: solid_wall components: - - parent: 0 - pos: -11.5,26.5 + - parent: 15 + pos: -19.5,19.5 rot: -1.5707963267948966 rad type: Transform - uid: 1222 type: solid_wall components: - - parent: 0 - pos: -10.5,26.5 + - parent: 15 + pos: -19.5,20.5 rot: -1.5707963267948966 rad type: Transform - uid: 1223 type: solid_wall components: - - parent: 0 - pos: -9.5,26.5 + - parent: 15 + pos: -19.5,21.5 rot: -1.5707963267948966 rad type: Transform - uid: 1224 type: solid_wall components: - - parent: 0 - pos: -8.5,26.5 + - parent: 15 + pos: -19.5,22.5 rot: -1.5707963267948966 rad type: Transform - uid: 1225 type: solid_wall components: - - parent: 0 - pos: -7.5,26.5 + - parent: 15 + pos: -19.5,23.5 rot: -1.5707963267948966 rad type: Transform - uid: 1226 type: solid_wall components: - - parent: 0 - pos: -6.5,26.5 + - parent: 15 + pos: -19.5,24.5 rot: -1.5707963267948966 rad type: Transform - uid: 1227 type: solid_wall components: - - parent: 0 - pos: -6.5,25.5 + - parent: 15 + pos: -19.5,25.5 rot: -1.5707963267948966 rad type: Transform - uid: 1228 type: solid_wall components: - - parent: 0 - pos: -4.5,25.5 + - parent: 15 + pos: -19.5,26.5 rot: -1.5707963267948966 rad type: Transform - uid: 1229 type: solid_wall components: - - parent: 0 - pos: -5.5,25.5 + - parent: 15 + pos: -18.5,26.5 rot: -1.5707963267948966 rad type: Transform - uid: 1230 type: solid_wall components: - - parent: 0 - pos: -20.5,15.5 + - parent: 15 + pos: -17.5,26.5 rot: -1.5707963267948966 rad type: Transform - uid: 1231 type: solid_wall components: - - parent: 0 - pos: -21.5,15.5 + - parent: 15 + pos: -16.5,26.5 rot: -1.5707963267948966 rad type: Transform - uid: 1232 type: solid_wall components: - - parent: 0 - pos: -22.5,15.5 + - parent: 15 + pos: -15.5,26.5 rot: -1.5707963267948966 rad type: Transform - uid: 1233 type: solid_wall components: - - parent: 0 - pos: -23.5,15.5 + - parent: 15 + pos: -14.5,26.5 rot: -1.5707963267948966 rad type: Transform - uid: 1234 type: solid_wall components: - - parent: 0 - pos: -24.5,15.5 + - parent: 15 + pos: -13.5,26.5 rot: -1.5707963267948966 rad type: Transform - uid: 1235 type: solid_wall components: - - parent: 0 - pos: -25.5,15.5 + - parent: 15 + pos: -12.5,26.5 rot: -1.5707963267948966 rad type: Transform - uid: 1236 type: solid_wall components: - - parent: 0 - pos: -26.5,15.5 + - parent: 15 + pos: -11.5,26.5 rot: -1.5707963267948966 rad type: Transform - uid: 1237 type: solid_wall components: - - parent: 0 - pos: -27.5,15.5 + - parent: 15 + pos: -10.5,26.5 rot: -1.5707963267948966 rad type: Transform - uid: 1238 type: solid_wall components: - - parent: 0 - pos: -28.5,15.5 + - parent: 15 + pos: -9.5,26.5 rot: -1.5707963267948966 rad type: Transform - uid: 1239 type: solid_wall components: - - parent: 0 - pos: -29.5,15.5 + - parent: 15 + pos: -8.5,26.5 rot: -1.5707963267948966 rad type: Transform - uid: 1240 type: solid_wall components: - - parent: 0 - pos: -30.5,15.5 + - parent: 15 + pos: -7.5,26.5 rot: -1.5707963267948966 rad type: Transform - uid: 1241 type: solid_wall components: - - parent: 0 - pos: -31.5,15.5 + - parent: 15 + pos: -6.5,26.5 rot: -1.5707963267948966 rad type: Transform - uid: 1242 type: solid_wall components: - - parent: 0 - pos: -32.5,15.5 + - parent: 15 + pos: -6.5,25.5 rot: -1.5707963267948966 rad type: Transform - uid: 1243 type: solid_wall components: - - parent: 0 - pos: -33.5,15.5 + - parent: 15 + pos: -4.5,25.5 rot: -1.5707963267948966 rad type: Transform - uid: 1244 type: solid_wall components: - - parent: 0 - pos: -33.5,14.5 + - parent: 15 + pos: -5.5,25.5 rot: -1.5707963267948966 rad type: Transform - uid: 1245 type: solid_wall components: - - parent: 0 - pos: -33.5,13.5 + - parent: 15 + pos: -20.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1246 type: solid_wall components: - - parent: 0 - pos: -33.5,12.5 + - parent: 15 + pos: -21.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1247 type: solid_wall components: - - parent: 0 - pos: -33.5,11.5 + - parent: 15 + pos: -22.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1248 type: solid_wall components: - - parent: 0 - pos: -33.5,10.5 + - parent: 15 + pos: -23.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1249 + type: solid_wall + components: + - parent: 15 + pos: -24.5,15.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1250 + type: solid_wall + components: + - parent: 15 + pos: -25.5,15.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1251 + type: solid_wall + components: + - parent: 15 + pos: -26.5,15.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1252 + type: solid_wall + components: + - parent: 15 + pos: -27.5,15.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1253 + type: solid_wall + components: + - parent: 15 + pos: -28.5,15.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1254 + type: solid_wall + components: + - parent: 15 + pos: -29.5,15.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1255 + type: solid_wall + components: + - parent: 15 + pos: -30.5,15.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1256 + type: solid_wall + components: + - parent: 15 + pos: -31.5,15.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1257 + type: solid_wall + components: + - parent: 15 + pos: -32.5,15.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1258 + type: solid_wall + components: + - parent: 15 + pos: -33.5,15.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1259 + type: solid_wall + components: + - parent: 15 + pos: -33.5,14.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1260 + type: solid_wall + components: + - parent: 15 + pos: -33.5,13.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1261 + type: solid_wall + components: + - parent: 15 + pos: -33.5,12.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1262 + type: solid_wall + components: + - parent: 15 + pos: -33.5,11.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1263 + type: solid_wall + components: + - parent: 15 + pos: -33.5,10.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1264 type: APC components: - - parent: 0 + - parent: 15 pos: -34.5,-5.5 rot: 3.141592653589793 rad type: Transform @@ -12980,2532 +13175,2535 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 1250 - type: solid_wall - components: - - parent: 0 - pos: -33.5,7.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1251 - type: solid_wall - components: - - parent: 0 - pos: -33.5,6.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1252 - type: solid_wall - components: - - parent: 0 - pos: -32.5,6.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1253 - type: solid_wall - components: - - parent: 0 - pos: -31.5,6.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1254 - type: solid_wall - components: - - parent: 0 - pos: -30.5,6.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1255 - type: LowWall - components: - - parent: 0 - pos: -28.5,6.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1256 - type: Window - components: - - parent: 0 - pos: -8.5,2.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1257 - type: Window - components: - - parent: 0 - pos: -7.5,2.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1258 - type: solid_wall - components: - - parent: 0 - pos: -26.5,6.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1259 - type: solid_wall - components: - - parent: 0 - pos: -26.5,7.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1260 - type: solid_wall - components: - - parent: 0 - pos: -25.5,7.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1261 - type: solid_wall - components: - - parent: 0 - pos: -30.5,7.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1262 - type: solid_wall - components: - - parent: 0 - pos: -30.5,8.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1263 - type: solid_wall - components: - - parent: 0 - pos: -30.5,9.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1264 - type: solid_wall - components: - - parent: 0 - pos: -30.5,10.5 - rot: -1.5707963267948966 rad - type: Transform - uid: 1265 type: solid_wall components: - - parent: 0 - pos: -30.5,11.5 + - parent: 15 + pos: -33.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 1266 type: solid_wall components: - - parent: 0 - pos: -30.5,12.5 + - parent: 15 + pos: -33.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1267 type: solid_wall components: - - parent: 0 - pos: -28.5,12.5 + - parent: 15 + pos: -32.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1268 type: solid_wall components: - - parent: 0 - pos: -27.5,12.5 + - parent: 15 + pos: -31.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1269 type: solid_wall components: - - parent: 0 - pos: -26.5,12.5 + - parent: 15 + pos: -30.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1270 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: -25.5,12.5 + - parent: 15 + pos: -28.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1271 - type: solid_wall + type: Window components: - - parent: 0 - pos: -24.5,12.5 + - parent: 15 + pos: -8.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1272 - type: solid_wall + type: Window components: - - parent: 0 - pos: -23.5,12.5 + - parent: 15 + pos: -7.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1273 type: solid_wall components: - - parent: 0 - pos: -22.5,12.5 + - parent: 15 + pos: -26.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1274 type: solid_wall components: - - parent: 0 - pos: -29.5,12.5 + - parent: 15 + pos: -26.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 1275 type: solid_wall components: - - parent: 0 - pos: -22.5,11.5 + - parent: 15 + pos: -25.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 1276 type: solid_wall components: - - parent: 0 - pos: -22.5,11.5 + - parent: 15 + pos: -30.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 1277 type: solid_wall components: - - parent: 0 - pos: -21.5,11.5 + - parent: 15 + pos: -30.5,8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1278 type: solid_wall components: - - parent: 0 - pos: -22.5,10.5 + - parent: 15 + pos: -30.5,9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1279 type: solid_wall components: - - parent: 0 - pos: -22.5,8.5 + - parent: 15 + pos: -30.5,10.5 rot: -1.5707963267948966 rad type: Transform - uid: 1280 type: solid_wall components: - - parent: 0 - pos: -22.5,7.5 + - parent: 15 + pos: -30.5,11.5 rot: -1.5707963267948966 rad type: Transform - uid: 1281 type: solid_wall components: - - parent: 0 - pos: -21.5,7.5 + - parent: 15 + pos: -30.5,12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1282 type: solid_wall components: - - parent: 0 - pos: -21.5,6.5 + - parent: 15 + pos: -28.5,12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1283 type: solid_wall components: - - parent: 0 - pos: -20.5,6.5 + - parent: 15 + pos: -27.5,12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1284 type: solid_wall components: - - parent: 0 - pos: -19.5,6.5 + - parent: 15 + pos: -26.5,12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1285 type: solid_wall components: - - parent: 0 - pos: -25.5,11.5 + - parent: 15 + pos: -25.5,12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1286 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: -25.5,9.5 + - parent: 15 + pos: -24.5,12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1287 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: -2.5,6.5 + - parent: 15 + pos: -23.5,12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1288 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: -3.5,6.5 + - parent: 15 + pos: -22.5,12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1289 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: -0.5,6.5 + - parent: 15 + pos: -29.5,12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1290 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 0.5,6.5 + - parent: 15 + pos: -22.5,11.5 rot: -1.5707963267948966 rad type: Transform - uid: 1291 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 14.5,8.5 + - parent: 15 + pos: -22.5,11.5 rot: -1.5707963267948966 rad type: Transform - uid: 1292 type: solid_wall components: - - parent: 0 - pos: 30.5,-0.5 + - parent: 15 + pos: -21.5,11.5 rot: -1.5707963267948966 rad type: Transform - uid: 1293 type: solid_wall components: - - parent: 0 - pos: 30.5,0.5 + - parent: 15 + pos: -22.5,10.5 rot: -1.5707963267948966 rad type: Transform - uid: 1294 type: solid_wall components: - - parent: 0 - pos: 29.5,-0.5 + - parent: 15 + pos: -22.5,8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1295 type: solid_wall components: - - parent: 0 - pos: 28.5,-0.5 + - parent: 15 + pos: -22.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 1296 type: solid_wall components: - - parent: 0 - pos: 27.5,-0.5 + - parent: 15 + pos: -21.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 1297 type: solid_wall components: - - parent: 0 - pos: 26.5,-0.5 + - parent: 15 + pos: -21.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1298 type: solid_wall components: - - parent: 0 - pos: 25.5,-0.5 + - parent: 15 + pos: -20.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1299 type: solid_wall components: - - parent: 0 - pos: 24.5,-0.5 + - parent: 15 + pos: -19.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1300 type: solid_wall components: - - parent: 0 - pos: 24.5,0.5 + - parent: 15 + pos: -25.5,11.5 rot: -1.5707963267948966 rad type: Transform - uid: 1301 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 24.5,1.5 + - parent: 15 + pos: -25.5,9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1302 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 24.5,2.5 + - parent: 15 + pos: -2.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1303 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 23.5,2.5 + - parent: 15 + pos: -3.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1304 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 22.5,2.5 + - parent: 15 + pos: -0.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1305 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 19.5,2.5 + - parent: 15 + pos: 0.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1306 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 18.5,2.5 + - parent: 15 + pos: 14.5,8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1307 type: solid_wall components: - - parent: 0 - pos: 17.5,2.5 + - parent: 15 + pos: 30.5,-0.5 rot: -1.5707963267948966 rad type: Transform - uid: 1308 type: solid_wall components: - - parent: 0 - pos: 16.5,2.5 + - parent: 15 + pos: 30.5,0.5 rot: -1.5707963267948966 rad type: Transform - uid: 1309 type: solid_wall components: - - parent: 0 - pos: 15.5,2.5 + - parent: 15 + pos: 29.5,-0.5 rot: -1.5707963267948966 rad type: Transform - uid: 1310 type: solid_wall components: - - parent: 0 - pos: 14.5,2.5 + - parent: 15 + pos: 28.5,-0.5 rot: -1.5707963267948966 rad type: Transform - uid: 1311 type: solid_wall components: - - parent: 0 - pos: 13.5,2.5 + - parent: 15 + pos: 27.5,-0.5 rot: -1.5707963267948966 rad type: Transform - uid: 1312 type: solid_wall components: - - parent: 0 - pos: 12.5,2.5 + - parent: 15 + pos: 26.5,-0.5 rot: -1.5707963267948966 rad type: Transform - uid: 1313 type: solid_wall components: - - parent: 0 - pos: 6.5,2.5 + - parent: 15 + pos: 25.5,-0.5 rot: -1.5707963267948966 rad type: Transform - uid: 1314 type: solid_wall components: - - parent: 0 - pos: 5.5,2.5 + - parent: 15 + pos: 24.5,-0.5 rot: -1.5707963267948966 rad type: Transform - uid: 1315 type: solid_wall components: - - parent: 0 - pos: 5.5,1.5 + - parent: 15 + pos: 24.5,0.5 rot: -1.5707963267948966 rad type: Transform - uid: 1316 type: solid_wall components: - - parent: 0 - pos: 20.5,2.5 + - parent: 15 + pos: 24.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 1317 type: solid_wall components: - - parent: 0 - pos: 19.5,1.5 + - parent: 15 + pos: 24.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1318 type: solid_wall components: - - parent: 0 - pos: 19.5,0.5 + - parent: 15 + pos: 23.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1319 type: solid_wall components: - - parent: 0 - pos: 19.5,-0.5 + - parent: 15 + pos: 22.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1320 type: solid_wall components: - - parent: 0 - pos: 19.5,-1.5 + - parent: 15 + pos: 19.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1321 type: solid_wall components: - - parent: 0 - pos: 19.5,-2.5 + - parent: 15 + pos: 18.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1322 type: solid_wall components: - - parent: 0 - pos: 13.5,-2.5 + - parent: 15 + pos: 17.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1323 type: solid_wall components: - - parent: 0 - pos: 13.5,-3.5 + - parent: 15 + pos: 16.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1324 type: solid_wall components: - - parent: 0 - pos: 14.5,-3.5 + - parent: 15 + pos: 15.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1325 type: solid_wall components: - - parent: 0 - pos: 13.5,-6.5 + - parent: 15 + pos: 14.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1326 type: solid_wall components: - - parent: 0 - pos: 5.5,-3.5 + - parent: 15 + pos: 13.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1327 type: solid_wall components: - - parent: 0 - pos: 5.5,-4.5 + - parent: 15 + pos: 12.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1328 type: solid_wall components: - - parent: 0 - pos: 5.5,-5.5 + - parent: 15 + pos: 6.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1329 type: solid_wall components: - - parent: 0 - pos: 5.5,-6.5 + - parent: 15 + pos: 5.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1330 type: solid_wall components: - - parent: 0 - pos: 5.5,-7.5 + - parent: 15 + pos: 5.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 1331 type: solid_wall components: - - parent: 0 - pos: 5.5,-12.5 + - parent: 15 + pos: 20.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1332 type: solid_wall components: - - parent: 0 - pos: 5.5,-11.5 + - parent: 15 + pos: 19.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 1333 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 5.5,-8.5 + - parent: 15 + pos: 19.5,0.5 rot: -1.5707963267948966 rad type: Transform - uid: 1334 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 5.5,-9.5 + - parent: 15 + pos: 19.5,-0.5 rot: -1.5707963267948966 rad type: Transform - uid: 1335 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 5.5,-10.5 + - parent: 15 + pos: 19.5,-1.5 rot: -1.5707963267948966 rad type: Transform - uid: 1336 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 13.5,-1.5 + - parent: 15 + pos: 19.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1337 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 13.5,1.5 + - parent: 15 + pos: 13.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1338 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 13.5,-0.5 + - parent: 15 + pos: 13.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1339 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 16.5,-3.5 + - parent: 15 + pos: 14.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1340 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 11.5,2.5 + - parent: 15 + pos: 13.5,-6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1341 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 10.5,2.5 + - parent: 15 + pos: 5.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1342 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 9.5,2.5 + - parent: 15 + pos: 5.5,-4.5 rot: -1.5707963267948966 rad type: Transform - uid: 1343 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 8.5,2.5 + - parent: 15 + pos: 5.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 1344 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 7.5,2.5 + - parent: 15 + pos: 5.5,-6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1345 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 6.5,-6.5 + - parent: 15 + pos: 5.5,-7.5 rot: -1.5707963267948966 rad type: Transform - uid: 1346 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 9.5,-6.5 + - parent: 15 + pos: 5.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1347 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 8.5,-6.5 + - parent: 15 + pos: 5.5,-11.5 rot: -1.5707963267948966 rad type: Transform - uid: 1348 type: LowWall components: - - parent: 0 - pos: 13.5,-5.5 + - parent: 15 + pos: 5.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1349 type: LowWall components: - - parent: 0 - pos: 13.5,-4.5 + - parent: 15 + pos: 5.5,-9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1350 type: LowWall components: - - parent: 0 - pos: 12.5,-6.5 + - parent: 15 + pos: 5.5,-10.5 rot: -1.5707963267948966 rad type: Transform - uid: 1351 type: LowWall components: - - parent: 0 - pos: 18.5,-3.5 + - parent: 15 + pos: 13.5,-1.5 rot: -1.5707963267948966 rad type: Transform - uid: 1352 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 19.5,-3.5 + - parent: 15 + pos: 13.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 1353 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 20.5,-3.5 + - parent: 15 + pos: 13.5,-0.5 rot: -1.5707963267948966 rad type: Transform - uid: 1354 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 21.5,-3.5 + - parent: 15 + pos: 16.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1355 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 22.5,-3.5 + - parent: 15 + pos: 11.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1356 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 23.5,-3.5 + - parent: 15 + pos: 10.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1357 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 24.5,-3.5 + - parent: 15 + pos: 9.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1358 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 25.5,-3.5 + - parent: 15 + pos: 8.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1359 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 25.5,-4.5 + - parent: 15 + pos: 7.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1360 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 25.5,-5.5 + - parent: 15 + pos: 6.5,-6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1361 - type: LightBulb + type: LowWall components: - - parent: 2013 + - parent: 15 + pos: 9.5,-6.5 + rot: -1.5707963267948966 rad type: Transform - uid: 1362 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 25.5,-7.5 + - parent: 15 + pos: 8.5,-6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1363 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 25.5,-8.5 + - parent: 15 + pos: 13.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 1364 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 24.5,-8.5 + - parent: 15 + pos: 13.5,-4.5 rot: -1.5707963267948966 rad type: Transform - uid: 1365 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 23.5,-8.5 + - parent: 15 + pos: 12.5,-6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1366 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 22.5,-8.5 + - parent: 15 + pos: 18.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1367 type: solid_wall components: - - parent: 0 - pos: 21.5,-8.5 + - parent: 15 + pos: 19.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1368 type: solid_wall components: - - parent: 0 - pos: 20.5,-8.5 + - parent: 15 + pos: 20.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1369 type: solid_wall components: - - parent: 0 - pos: 20.5,-7.5 + - parent: 15 + pos: 21.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1370 type: solid_wall components: - - parent: 0 - pos: 16.5,-18.5 + - parent: 15 + pos: 22.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1371 type: solid_wall components: - - parent: 0 - pos: 20.5,-4.5 + - parent: 15 + pos: 23.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1372 type: solid_wall components: - - parent: 0 - pos: 20.5,-9.5 + - parent: 15 + pos: 24.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1373 - type: Window + type: solid_wall components: - - parent: 0 - pos: 20.5,-14.5 + - parent: 15 + pos: 25.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1374 type: solid_wall components: - - parent: 0 - pos: 20.5,-11.5 + - parent: 15 + pos: 25.5,-4.5 rot: -1.5707963267948966 rad type: Transform - uid: 1375 type: solid_wall components: - - parent: 0 - pos: 21.5,-11.5 + - parent: 15 + pos: 25.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 1376 - type: solid_wall + type: LightBulb components: - - parent: 0 - pos: 22.5,-11.5 - rot: -1.5707963267948966 rad + - parent: 2027 type: Transform - uid: 1377 type: solid_wall components: - - parent: 0 - pos: 23.5,-11.5 + - parent: 15 + pos: 25.5,-7.5 rot: -1.5707963267948966 rad type: Transform - uid: 1378 type: solid_wall components: - - parent: 0 - pos: 24.5,-11.5 + - parent: 15 + pos: 25.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1379 type: solid_wall components: - - parent: 0 - pos: 25.5,-11.5 + - parent: 15 + pos: 24.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1380 type: solid_wall components: - - parent: 0 - pos: 25.5,-12.5 + - parent: 15 + pos: 23.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1381 type: solid_wall components: - - parent: 0 - pos: 25.5,-13.5 + - parent: 15 + pos: 22.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1382 type: solid_wall components: - - parent: 0 - pos: 25.5,-14.5 + - parent: 15 + pos: 21.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1383 type: solid_wall components: - - parent: 0 - pos: 25.5,-15.5 + - parent: 15 + pos: 20.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1384 type: solid_wall components: - - parent: 0 - pos: 25.5,-16.5 + - parent: 15 + pos: 20.5,-7.5 rot: -1.5707963267948966 rad type: Transform - uid: 1385 type: solid_wall components: - - parent: 0 - pos: 24.5,-16.5 + - parent: 15 + pos: 16.5,-18.5 rot: -1.5707963267948966 rad type: Transform - uid: 1386 type: solid_wall components: - - parent: 0 - pos: 23.5,-16.5 + - parent: 15 + pos: 20.5,-4.5 rot: -1.5707963267948966 rad type: Transform - uid: 1387 type: solid_wall components: - - parent: 0 - pos: 22.5,-16.5 + - parent: 15 + pos: 20.5,-9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1388 - type: solid_wall + type: Window components: - - parent: 0 - pos: 21.5,-16.5 + - parent: 15 + pos: 20.5,-14.5 rot: -1.5707963267948966 rad type: Transform - uid: 1389 type: solid_wall components: - - parent: 0 - pos: 20.5,-16.5 + - parent: 15 + pos: 20.5,-11.5 rot: -1.5707963267948966 rad type: Transform - uid: 1390 - type: Window + type: solid_wall components: - - parent: 0 - pos: 20.5,-5.5 + - parent: 15 + pos: 21.5,-11.5 rot: -1.5707963267948966 rad type: Transform - uid: 1391 type: solid_wall components: - - parent: 0 - pos: 15.5,-18.5 + - parent: 15 + pos: 22.5,-11.5 rot: -1.5707963267948966 rad type: Transform - uid: 1392 type: solid_wall components: - - parent: 0 - pos: 20.5,-17.5 + - parent: 15 + pos: 23.5,-11.5 rot: -1.5707963267948966 rad type: Transform - uid: 1393 type: solid_wall components: - - parent: 0 - pos: 20.5,-18.5 + - parent: 15 + pos: 24.5,-11.5 rot: -1.5707963267948966 rad type: Transform - uid: 1394 type: solid_wall components: - - parent: 0 - pos: 46.5,5.5 + - parent: 15 + pos: 25.5,-11.5 rot: -1.5707963267948966 rad type: Transform - uid: 1395 type: solid_wall components: - - parent: 0 - pos: 45.5,5.5 + - parent: 15 + pos: 25.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1396 type: solid_wall components: - - parent: 0 - pos: 48.5,5.5 + - parent: 15 + pos: 25.5,-13.5 rot: -1.5707963267948966 rad type: Transform - uid: 1397 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 20.5,-14.5 + - parent: 15 + pos: 25.5,-14.5 rot: -1.5707963267948966 rad type: Transform - uid: 1398 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 20.5,-5.5 + - parent: 15 + pos: 25.5,-15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1399 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 11.5,-14.5 + - parent: 15 + pos: 25.5,-16.5 rot: -1.5707963267948966 rad type: Transform - uid: 1400 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 11.5,-15.5 + - parent: 15 + pos: 24.5,-16.5 rot: -1.5707963267948966 rad type: Transform - uid: 1401 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 9.5,-12.5 + - parent: 15 + pos: 23.5,-16.5 rot: -1.5707963267948966 rad type: Transform - uid: 1402 - type: Window + type: solid_wall components: - - parent: 0 - pos: 9.5,-12.5 + - parent: 15 + pos: 22.5,-16.5 rot: -1.5707963267948966 rad type: Transform - uid: 1403 type: solid_wall components: - - parent: 0 - pos: 11.5,-12.5 + - parent: 15 + pos: 21.5,-16.5 rot: -1.5707963267948966 rad type: Transform - uid: 1404 - type: Window + type: solid_wall components: - - parent: 0 - pos: 11.5,-15.5 + - parent: 15 + pos: 20.5,-16.5 rot: -1.5707963267948966 rad type: Transform - uid: 1405 - type: solid_wall + type: Window components: - - parent: 0 - pos: 6.5,-12.5 + - parent: 15 + pos: 20.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 1406 - type: Window + type: solid_wall components: - - parent: 0 - pos: 20.5,-12.5 + - parent: 15 + pos: 15.5,-18.5 rot: -1.5707963267948966 rad type: Transform - uid: 1407 type: solid_wall components: - - parent: 0 - pos: 6.5,-13.5 + - parent: 15 + pos: 20.5,-17.5 rot: -1.5707963267948966 rad type: Transform - uid: 1408 type: solid_wall components: - - parent: 0 - pos: 6.5,-14.5 + - parent: 15 + pos: 20.5,-18.5 rot: -1.5707963267948966 rad type: Transform - uid: 1409 type: solid_wall components: - - parent: 0 - pos: 6.5,-15.5 + - parent: 15 + pos: 46.5,5.5 rot: -1.5707963267948966 rad type: Transform - uid: 1410 type: solid_wall components: - - parent: 0 - pos: 6.5,-16.5 + - parent: 15 + pos: 45.5,5.5 rot: -1.5707963267948966 rad type: Transform - uid: 1411 type: solid_wall components: - - parent: 0 - pos: 6.5,-17.5 + - parent: 15 + pos: 48.5,5.5 rot: -1.5707963267948966 rad type: Transform - uid: 1412 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 7.5,-17.5 + - parent: 15 + pos: 20.5,-14.5 rot: -1.5707963267948966 rad type: Transform - uid: 1413 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 8.5,-17.5 + - parent: 15 + pos: 20.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 1414 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 9.5,-17.5 + - parent: 15 + pos: 11.5,-14.5 rot: -1.5707963267948966 rad type: Transform - uid: 1415 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 10.5,-17.5 + - parent: 15 + pos: 11.5,-15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1416 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: 11.5,-17.5 + - parent: 15 + pos: 9.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1417 type: Window components: - - parent: 0 - pos: 11.5,-14.5 + - parent: 15 + pos: 9.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1418 type: solid_wall components: - - parent: 0 - pos: 11.5,-18.5 + - parent: 15 + pos: 11.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1419 - type: solid_wall + type: Window components: - - parent: 0 - pos: 12.5,-18.5 + - parent: 15 + pos: 11.5,-15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1420 type: solid_wall components: - - parent: 0 - pos: 13.5,-18.5 + - parent: 15 + pos: 6.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1421 - type: solid_wall + type: Window components: - - parent: 0 - pos: 6.5,-18.5 + - parent: 15 + pos: 20.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1422 type: solid_wall components: - - parent: 0 - pos: 6.5,-20.5 + - parent: 15 + pos: 6.5,-13.5 rot: -1.5707963267948966 rad type: Transform - uid: 1423 type: solid_wall components: - - parent: 0 - pos: 28.5,-1.5 + - parent: 15 + pos: 6.5,-14.5 rot: -1.5707963267948966 rad type: Transform - uid: 1424 type: solid_wall components: - - parent: 0 - pos: 28.5,-2.5 + - parent: 15 + pos: 6.5,-15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1425 type: solid_wall components: - - parent: 0 - pos: 28.5,-3.5 + - parent: 15 + pos: 6.5,-16.5 rot: -1.5707963267948966 rad type: Transform - uid: 1426 type: solid_wall components: - - parent: 0 - pos: 28.5,-4.5 + - parent: 15 + pos: 6.5,-17.5 rot: -1.5707963267948966 rad type: Transform - uid: 1427 type: solid_wall components: - - parent: 0 - pos: 28.5,-5.5 + - parent: 15 + pos: 7.5,-17.5 rot: -1.5707963267948966 rad type: Transform - uid: 1428 type: solid_wall components: - - parent: 0 - pos: 29.5,-5.5 + - parent: 15 + pos: 8.5,-17.5 rot: -1.5707963267948966 rad type: Transform - uid: 1429 type: solid_wall components: - - parent: 0 - pos: 30.5,-5.5 + - parent: 15 + pos: 9.5,-17.5 rot: -1.5707963267948966 rad type: Transform - uid: 1430 type: solid_wall components: - - parent: 0 - pos: 31.5,-5.5 + - parent: 15 + pos: 10.5,-17.5 rot: -1.5707963267948966 rad type: Transform - uid: 1431 type: solid_wall components: - - parent: 0 - pos: 32.5,-5.5 + - parent: 15 + pos: 11.5,-17.5 rot: -1.5707963267948966 rad type: Transform - uid: 1432 - type: solid_wall + type: Window components: - - parent: 0 - pos: 34.5,-5.5 + - parent: 15 + pos: 11.5,-14.5 rot: -1.5707963267948966 rad type: Transform - uid: 1433 type: solid_wall components: - - parent: 0 - pos: 35.5,-5.5 + - parent: 15 + pos: 11.5,-18.5 rot: -1.5707963267948966 rad type: Transform - uid: 1434 type: solid_wall components: - - parent: 0 - pos: 36.5,-5.5 + - parent: 15 + pos: 12.5,-18.5 rot: -1.5707963267948966 rad type: Transform - uid: 1435 type: solid_wall components: - - parent: 0 - pos: 36.5,-4.5 + - parent: 15 + pos: 13.5,-18.5 rot: -1.5707963267948966 rad type: Transform - uid: 1436 type: solid_wall components: - - parent: 0 - pos: 36.5,-3.5 + - parent: 15 + pos: 6.5,-18.5 rot: -1.5707963267948966 rad type: Transform - uid: 1437 type: solid_wall components: - - parent: 0 - pos: 1.5,1.5 + - parent: 15 + pos: 6.5,-20.5 rot: -1.5707963267948966 rad type: Transform - uid: 1438 type: solid_wall components: - - parent: 0 - pos: 1.5,2.5 + - parent: 15 + pos: 28.5,-1.5 rot: -1.5707963267948966 rad type: Transform - uid: 1439 type: solid_wall components: - - parent: 0 - pos: 0.5,2.5 + - parent: 15 + pos: 28.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1440 type: solid_wall components: - - parent: 0 - pos: 1.5,-3.5 + - parent: 15 + pos: 28.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1441 type: solid_wall components: - - parent: 0 - pos: 1.5,-4.5 + - parent: 15 + pos: 28.5,-4.5 rot: -1.5707963267948966 rad type: Transform - uid: 1442 type: solid_wall components: - - parent: 0 - pos: 1.5,-5.5 + - parent: 15 + pos: 28.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 1443 type: solid_wall components: - - parent: 0 - pos: 1.5,-6.5 + - parent: 15 + pos: 29.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 1444 type: solid_wall components: - - parent: 0 - pos: 0.5,-5.5 + - parent: 15 + pos: 30.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 1445 type: solid_wall components: - - parent: 0 - pos: -0.5,-5.5 + - parent: 15 + pos: 31.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 1446 type: solid_wall components: - - parent: 0 - pos: -1.5,-5.5 + - parent: 15 + pos: 32.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 1447 type: solid_wall components: - - parent: 0 - pos: -2.5,-5.5 + - parent: 15 + pos: 34.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 1448 type: solid_wall components: - - parent: 0 - pos: 1.5,-9.5 + - parent: 15 + pos: 35.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 1449 type: solid_wall components: - - parent: 0 - pos: 1.5,-10.5 + - parent: 15 + pos: 36.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 1450 type: solid_wall components: - - parent: 0 - pos: 1.5,-11.5 + - parent: 15 + pos: 36.5,-4.5 rot: -1.5707963267948966 rad type: Transform - uid: 1451 type: solid_wall components: - - parent: 0 - pos: 1.5,-12.5 + - parent: 15 + pos: 36.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1452 type: solid_wall components: - - parent: 0 - pos: 1.5,-8.5 + - parent: 15 + pos: 1.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 1453 type: solid_wall components: - - parent: 0 - pos: 0.5,-12.5 + - parent: 15 + pos: 1.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1454 type: solid_wall components: - - parent: 0 - pos: -0.5,-12.5 + - parent: 15 + pos: 0.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1455 type: solid_wall components: - - parent: 0 - pos: -1.5,-12.5 + - parent: 15 + pos: 1.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1456 type: solid_wall components: - - parent: 0 - pos: -2.5,-12.5 + - parent: 15 + pos: 1.5,-4.5 rot: -1.5707963267948966 rad type: Transform - uid: 1457 type: solid_wall components: - - parent: 0 - pos: 0.5,-13.5 + - parent: 15 + pos: 1.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 1458 type: solid_wall components: - - parent: 0 - pos: -5.5,-18.5 + - parent: 15 + pos: 1.5,-6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1459 type: solid_wall components: - - parent: 0 - pos: 0.5,-17.5 + - parent: 15 + pos: 0.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 1460 type: solid_wall components: - - parent: 0 - pos: 0.5,-18.5 + - parent: 15 + pos: -0.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 1461 type: solid_wall components: - - parent: 0 - pos: -0.5,-18.5 + - parent: 15 + pos: -1.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 1462 type: solid_wall components: - - parent: 0 - pos: -6.5,-18.5 + - parent: 15 + pos: -2.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 1463 type: solid_wall components: - - parent: 0 - pos: -1.5,-18.5 + - parent: 15 + pos: 1.5,-9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1464 type: solid_wall components: - - parent: 0 - pos: -2.5,-11.5 + - parent: 15 + pos: 1.5,-10.5 rot: -1.5707963267948966 rad type: Transform - uid: 1465 type: solid_wall components: - - parent: 0 - pos: -3.5,-11.5 + - parent: 15 + pos: 1.5,-11.5 rot: -1.5707963267948966 rad type: Transform - uid: 1466 + type: solid_wall + components: + - parent: 15 + pos: 1.5,-12.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1467 + type: solid_wall + components: + - parent: 15 + pos: 1.5,-8.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1468 + type: solid_wall + components: + - parent: 15 + pos: 0.5,-12.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1469 + type: solid_wall + components: + - parent: 15 + pos: -0.5,-12.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1470 + type: solid_wall + components: + - parent: 15 + pos: -1.5,-12.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1471 + type: solid_wall + components: + - parent: 15 + pos: -2.5,-12.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1472 + type: solid_wall + components: + - parent: 15 + pos: 0.5,-13.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1473 + type: solid_wall + components: + - parent: 15 + pos: -5.5,-18.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1474 + type: solid_wall + components: + - parent: 15 + pos: 0.5,-17.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1475 + type: solid_wall + components: + - parent: 15 + pos: 0.5,-18.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1476 + type: solid_wall + components: + - parent: 15 + pos: -0.5,-18.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1477 + type: solid_wall + components: + - parent: 15 + pos: -6.5,-18.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1478 + type: solid_wall + components: + - parent: 15 + pos: -1.5,-18.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1479 + type: solid_wall + components: + - parent: 15 + pos: -2.5,-11.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1480 + type: solid_wall + components: + - parent: 15 + pos: -3.5,-11.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1481 type: AirlockServiceLocked components: - name: Freezer type: MetaData - - parent: 0 + - parent: 15 pos: -12.5,-2.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: TDIM-3243 WireSeed: 780748640 type: Wires -- uid: 1467 - type: solid_wall - components: - - parent: 0 - pos: -5.5,-11.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1468 - type: solid_wall - components: - - parent: 0 - pos: -6.5,-11.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1469 - type: solid_wall - components: - - parent: 0 - pos: -6.5,-12.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1470 - type: solid_wall - components: - - parent: 0 - pos: -6.5,-13.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1471 - type: solid_wall - components: - - parent: 0 - pos: -6.5,-14.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1472 - type: solid_wall - components: - - parent: 0 - pos: -6.5,-15.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1473 - type: solid_wall - components: - - parent: 0 - pos: -6.5,-16.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1474 - type: solid_wall - components: - - parent: 0 - pos: -6.5,-17.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1475 - type: LowWall - components: - - parent: 0 - pos: -2.5,-18.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1476 - type: LowWall - components: - - parent: 0 - pos: -4.5,-18.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1477 - type: LowWall - components: - - parent: 0 - pos: 0.5,-16.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1478 - type: solid_wall - components: - - parent: 0 - pos: -7.5,-21.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1479 - type: solid_wall - components: - - parent: 0 - pos: 1.5,-22.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1480 - type: solid_wall - components: - - parent: 0 - pos: 0.5,-22.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1481 - type: solid_wall - components: - - parent: 0 - pos: 0.5,-21.5 - rot: -1.5707963267948966 rad - type: Transform - uid: 1482 type: solid_wall components: - - parent: 0 - pos: -0.5,-21.5 + - parent: 15 + pos: -5.5,-11.5 rot: -1.5707963267948966 rad type: Transform - uid: 1483 type: solid_wall components: - - parent: 0 - pos: -1.5,-21.5 + - parent: 15 + pos: -6.5,-11.5 rot: -1.5707963267948966 rad type: Transform - uid: 1484 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: -4.5,-21.5 + - parent: 15 + pos: -6.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1485 type: solid_wall components: - - parent: 0 - pos: -1.5,-22.5 + - parent: 15 + pos: -6.5,-13.5 rot: -1.5707963267948966 rad type: Transform - uid: 1486 type: solid_wall components: - - parent: 0 - pos: -1.5,-23.5 + - parent: 15 + pos: -6.5,-14.5 rot: -1.5707963267948966 rad type: Transform - uid: 1487 type: solid_wall components: - - parent: 0 - pos: -1.5,-24.5 + - parent: 15 + pos: -6.5,-15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1488 type: solid_wall components: - - parent: 0 - pos: -1.5,-25.5 + - parent: 15 + pos: -6.5,-16.5 rot: -1.5707963267948966 rad type: Transform - uid: 1489 type: solid_wall components: - - parent: 0 - pos: -2.5,-25.5 + - parent: 15 + pos: -6.5,-17.5 rot: -1.5707963267948966 rad type: Transform - uid: 1490 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: -3.5,-25.5 + - parent: 15 + pos: -2.5,-18.5 rot: -1.5707963267948966 rad type: Transform - uid: 1491 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: -4.5,-25.5 + - parent: 15 + pos: -4.5,-18.5 rot: -1.5707963267948966 rad type: Transform - uid: 1492 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: -5.5,-25.5 + - parent: 15 + pos: 0.5,-16.5 rot: -1.5707963267948966 rad type: Transform - uid: 1493 type: solid_wall components: - - parent: 0 - pos: -6.5,-25.5 + - parent: 15 + pos: -7.5,-21.5 rot: -1.5707963267948966 rad type: Transform - uid: 1494 type: solid_wall components: - - parent: 0 - pos: -6.5,-24.5 + - parent: 15 + pos: 1.5,-22.5 rot: -1.5707963267948966 rad type: Transform - uid: 1495 type: solid_wall components: - - parent: 0 - pos: -6.5,-23.5 + - parent: 15 + pos: 0.5,-22.5 rot: -1.5707963267948966 rad type: Transform - uid: 1496 type: solid_wall components: - - parent: 0 - pos: -6.5,-22.5 + - parent: 15 + pos: 0.5,-21.5 rot: -1.5707963267948966 rad type: Transform - uid: 1497 type: solid_wall components: - - parent: 0 - pos: -6.5,-21.5 + - parent: 15 + pos: -0.5,-21.5 rot: -1.5707963267948966 rad type: Transform - uid: 1498 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: -2.5,-21.5 + - parent: 15 + pos: -1.5,-21.5 rot: -1.5707963267948966 rad type: Transform - uid: 1499 type: LowWall components: - - parent: 0 - pos: -5.5,-21.5 + - parent: 15 + pos: -4.5,-21.5 rot: -1.5707963267948966 rad type: Transform - uid: 1500 type: solid_wall components: - - parent: 0 - pos: -9.5,-21.5 + - parent: 15 + pos: -1.5,-22.5 rot: -1.5707963267948966 rad type: Transform - uid: 1501 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: -12.5,-27.5 + - parent: 15 + pos: -1.5,-23.5 rot: -1.5707963267948966 rad type: Transform - uid: 1502 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: -13.5,-27.5 + - parent: 15 + pos: -1.5,-24.5 rot: -1.5707963267948966 rad type: Transform - uid: 1503 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: -14.5,-27.5 + - parent: 15 + pos: -1.5,-25.5 rot: -1.5707963267948966 rad type: Transform - uid: 1504 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: -15.5,-27.5 + - parent: 15 + pos: -2.5,-25.5 rot: -1.5707963267948966 rad type: Transform - uid: 1505 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: -16.5,-27.5 + - parent: 15 + pos: -3.5,-25.5 rot: -1.5707963267948966 rad type: Transform - uid: 1506 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: -17.5,-27.5 + - parent: 15 + pos: -4.5,-25.5 rot: -1.5707963267948966 rad type: Transform - uid: 1507 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: -18.5,-27.5 + - parent: 15 + pos: -5.5,-25.5 rot: -1.5707963267948966 rad type: Transform - uid: 1508 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: -18.5,-26.5 + - parent: 15 + pos: -6.5,-25.5 rot: -1.5707963267948966 rad type: Transform - uid: 1509 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: -18.5,-25.5 + - parent: 15 + pos: -6.5,-24.5 rot: -1.5707963267948966 rad type: Transform - uid: 1510 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: -18.5,-24.5 + - parent: 15 + pos: -6.5,-23.5 rot: -1.5707963267948966 rad type: Transform - uid: 1511 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: -18.5,-23.5 + - parent: 15 + pos: -6.5,-22.5 rot: -1.5707963267948966 rad type: Transform - uid: 1512 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: -17.5,-23.5 + - parent: 15 + pos: -6.5,-21.5 rot: -1.5707963267948966 rad type: Transform - uid: 1513 - type: reinforced_wall + type: LowWall components: - - parent: 0 - pos: -13.5,-23.5 + - parent: 15 + pos: -2.5,-21.5 rot: -1.5707963267948966 rad type: Transform - uid: 1514 - type: reinforced_wall + type: LowWall components: - - parent: 0 - pos: -12.5,-23.5 + - parent: 15 + pos: -5.5,-21.5 rot: -1.5707963267948966 rad type: Transform - uid: 1515 - type: reinforced_wall + type: solid_wall components: - - parent: 0 - pos: -12.5,-24.5 + - parent: 15 + pos: -9.5,-21.5 rot: -1.5707963267948966 rad type: Transform - uid: 1516 type: reinforced_wall components: - - parent: 0 - pos: -12.5,-25.5 + - parent: 15 + pos: -12.5,-27.5 rot: -1.5707963267948966 rad type: Transform - uid: 1517 type: reinforced_wall components: - - parent: 0 - pos: -12.5,-26.5 + - parent: 15 + pos: -13.5,-27.5 rot: -1.5707963267948966 rad type: Transform - uid: 1518 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: -12.5,-28.5 + - parent: 15 + pos: -14.5,-27.5 rot: -1.5707963267948966 rad type: Transform - uid: 1519 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: -11.5,-28.5 + - parent: 15 + pos: -15.5,-27.5 rot: -1.5707963267948966 rad type: Transform - uid: 1520 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: -10.5,-28.5 + - parent: 15 + pos: -16.5,-27.5 rot: -1.5707963267948966 rad type: Transform - uid: 1521 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: -6.5,-28.5 + - parent: 15 + pos: -17.5,-27.5 rot: -1.5707963267948966 rad type: Transform - uid: 1522 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: -5.5,-28.5 + - parent: 15 + pos: -18.5,-27.5 rot: -1.5707963267948966 rad type: Transform - uid: 1523 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: -4.5,-28.5 + - parent: 15 + pos: -18.5,-26.5 rot: -1.5707963267948966 rad type: Transform - uid: 1524 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: -3.5,-28.5 + - parent: 15 + pos: -18.5,-25.5 rot: -1.5707963267948966 rad type: Transform - uid: 1525 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: -2.5,-28.5 + - parent: 15 + pos: -18.5,-24.5 rot: -1.5707963267948966 rad type: Transform - uid: 1526 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: -1.5,-28.5 + - parent: 15 + pos: -18.5,-23.5 rot: -1.5707963267948966 rad type: Transform - uid: 1527 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: -0.5,-28.5 + - parent: 15 + pos: -17.5,-23.5 rot: -1.5707963267948966 rad type: Transform - uid: 1528 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: -10.5,-21.5 + - parent: 15 + pos: -13.5,-23.5 rot: -1.5707963267948966 rad type: Transform - uid: 1529 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: -10.5,-22.5 + - parent: 15 + pos: -12.5,-23.5 rot: -1.5707963267948966 rad type: Transform - uid: 1530 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: -10.5,-23.5 + - parent: 15 + pos: -12.5,-24.5 rot: -1.5707963267948966 rad type: Transform - uid: 1531 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: -10.5,-24.5 + - parent: 15 + pos: -12.5,-25.5 rot: -1.5707963267948966 rad type: Transform - uid: 1532 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: -10.5,-25.5 + - parent: 15 + pos: -12.5,-26.5 rot: -1.5707963267948966 rad type: Transform - uid: 1533 type: solid_wall components: - - parent: 0 - pos: -12.5,-22.5 + - parent: 15 + pos: -12.5,-28.5 rot: -1.5707963267948966 rad type: Transform - uid: 1534 type: solid_wall components: - - parent: 0 - pos: -12.5,-21.5 + - parent: 15 + pos: -11.5,-28.5 rot: -1.5707963267948966 rad type: Transform - uid: 1535 type: solid_wall components: - - parent: 0 - pos: -12.5,-18.5 + - parent: 15 + pos: -10.5,-28.5 rot: -1.5707963267948966 rad type: Transform - uid: 1536 type: solid_wall components: - - parent: 0 - pos: -12.5,-17.5 + - parent: 15 + pos: -6.5,-28.5 rot: -1.5707963267948966 rad type: Transform - uid: 1537 type: solid_wall components: - - parent: 0 - pos: -12.5,-16.5 + - parent: 15 + pos: -5.5,-28.5 rot: -1.5707963267948966 rad type: Transform - uid: 1538 type: solid_wall components: - - parent: 0 - pos: -11.5,-16.5 + - parent: 15 + pos: -4.5,-28.5 rot: -1.5707963267948966 rad type: Transform - uid: 1539 type: solid_wall components: - - parent: 0 - pos: -10.5,-16.5 + - parent: 15 + pos: -3.5,-28.5 rot: -1.5707963267948966 rad type: Transform - uid: 1540 type: solid_wall components: - - parent: 0 - pos: -9.5,-16.5 + - parent: 15 + pos: -2.5,-28.5 rot: -1.5707963267948966 rad type: Transform - uid: 1541 type: solid_wall components: - - parent: 0 - pos: -8.5,-16.5 + - parent: 15 + pos: -1.5,-28.5 rot: -1.5707963267948966 rad type: Transform - uid: 1542 type: solid_wall components: - - parent: 0 - pos: -7.5,-16.5 + - parent: 15 + pos: -0.5,-28.5 rot: -1.5707963267948966 rad type: Transform - uid: 1543 type: solid_wall components: - - parent: 0 - pos: -13.5,-16.5 + - parent: 15 + pos: -10.5,-21.5 rot: -1.5707963267948966 rad type: Transform - uid: 1544 type: solid_wall components: - - parent: 0 - pos: -14.5,-16.5 + - parent: 15 + pos: -10.5,-22.5 rot: -1.5707963267948966 rad type: Transform - uid: 1545 type: solid_wall components: - - parent: 0 - pos: -15.5,-16.5 + - parent: 15 + pos: -10.5,-23.5 rot: -1.5707963267948966 rad type: Transform - uid: 1546 type: solid_wall components: - - parent: 0 - pos: -17.5,-16.5 + - parent: 15 + pos: -10.5,-24.5 rot: -1.5707963267948966 rad type: Transform - uid: 1547 type: solid_wall components: - - parent: 0 - pos: -18.5,-16.5 + - parent: 15 + pos: -10.5,-25.5 rot: -1.5707963267948966 rad type: Transform - uid: 1548 type: solid_wall components: - - parent: 0 - pos: -18.5,-17.5 + - parent: 15 + pos: -12.5,-22.5 rot: -1.5707963267948966 rad type: Transform - uid: 1549 type: solid_wall components: - - parent: 0 - pos: -18.5,-18.5 + - parent: 15 + pos: -12.5,-21.5 rot: -1.5707963267948966 rad type: Transform - uid: 1550 type: solid_wall components: - - parent: 0 - pos: -18.5,-19.5 + - parent: 15 + pos: -12.5,-18.5 rot: -1.5707963267948966 rad type: Transform - uid: 1551 type: solid_wall components: - - parent: 0 - pos: -18.5,-20.5 + - parent: 15 + pos: -12.5,-17.5 rot: -1.5707963267948966 rad type: Transform - uid: 1552 type: solid_wall components: - - parent: 0 - pos: -18.5,-21.5 + - parent: 15 + pos: -12.5,-16.5 rot: -1.5707963267948966 rad type: Transform - uid: 1553 type: solid_wall components: - - parent: 0 - pos: -18.5,-22.5 + - parent: 15 + pos: -11.5,-16.5 rot: -1.5707963267948966 rad type: Transform - uid: 1554 - type: Table + type: solid_wall components: - - parent: 0 - pos: 6.5,28.5 + - parent: 15 + pos: -10.5,-16.5 rot: -1.5707963267948966 rad type: Transform - uid: 1555 - type: Table + type: solid_wall components: - - parent: 0 - pos: 5.5,28.5 + - parent: 15 + pos: -9.5,-16.5 rot: -1.5707963267948966 rad type: Transform - uid: 1556 + type: solid_wall + components: + - parent: 15 + pos: -8.5,-16.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1557 + type: solid_wall + components: + - parent: 15 + pos: -7.5,-16.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1558 + type: solid_wall + components: + - parent: 15 + pos: -13.5,-16.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1559 + type: solid_wall + components: + - parent: 15 + pos: -14.5,-16.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1560 + type: solid_wall + components: + - parent: 15 + pos: -15.5,-16.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1561 + type: solid_wall + components: + - parent: 15 + pos: -17.5,-16.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1562 + type: solid_wall + components: + - parent: 15 + pos: -18.5,-16.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1563 + type: solid_wall + components: + - parent: 15 + pos: -18.5,-17.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1564 + type: solid_wall + components: + - parent: 15 + pos: -18.5,-18.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1565 + type: solid_wall + components: + - parent: 15 + pos: -18.5,-19.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1566 + type: solid_wall + components: + - parent: 15 + pos: -18.5,-20.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1567 + type: solid_wall + components: + - parent: 15 + pos: -18.5,-21.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1568 + type: solid_wall + components: + - parent: 15 + pos: -18.5,-22.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1569 + type: Table + components: + - parent: 15 + pos: 6.5,28.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1570 + type: Table + components: + - parent: 15 + pos: 5.5,28.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1571 type: VendingMachineCoffee components: - - parent: 0 + - parent: 15 pos: 5.5,-13.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: IBEX-7912 WireSeed: 1765980958 type: Wires -- uid: 1557 +- uid: 1572 type: ToolboxElectricalFilled components: - - parent: 0 + - parent: 15 pos: 8.259691,28.555487 rot: -1.5707963267948966 rad type: Transform - containers: storagebase: entities: - - 3031 - - 3032 - - 3033 - - 3034 - - 3035 - - 3036 + - 3043 + - 3044 + - 3045 + - 3046 + - 3047 + - 3048 type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 1558 - type: solid_wall - components: - - parent: 0 - pos: -16.5,-13.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1559 - type: solid_wall - components: - - parent: 0 - pos: -15.5,-13.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1560 - type: solid_wall - components: - - parent: 0 - pos: -14.5,-13.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1561 - type: solid_wall - components: - - parent: 0 - pos: -12.5,-13.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1562 - type: solid_wall - components: - - parent: 0 - pos: -11.5,-13.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1563 - type: solid_wall - components: - - parent: 0 - pos: -10.5,-13.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1564 - type: solid_wall - components: - - parent: 0 - pos: -10.5,-12.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1565 - type: solid_wall - components: - - parent: 0 - pos: -10.5,-11.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1566 - type: solid_wall - components: - - parent: 0 - pos: -10.5,-10.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1567 - type: solid_wall - components: - - parent: 0 - pos: -10.5,-9.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1568 - type: solid_wall - components: - - parent: 0 - pos: -10.5,-8.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1569 - type: solid_wall - components: - - parent: 0 - pos: -11.5,-8.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1570 - type: solid_wall - components: - - parent: 0 - pos: -13.5,-8.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1571 - type: solid_wall - components: - - parent: 0 - pos: -14.5,-8.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1572 - type: solid_wall - components: - - parent: 0 - pos: -15.5,-8.5 - rot: -1.5707963267948966 rad - type: Transform - uid: 1573 type: solid_wall components: - - parent: 0 - pos: -16.5,-8.5 + - parent: 15 + pos: -16.5,-13.5 rot: -1.5707963267948966 rad type: Transform - uid: 1574 type: solid_wall components: - - parent: 0 - pos: -16.5,-9.5 + - parent: 15 + pos: -15.5,-13.5 rot: -1.5707963267948966 rad type: Transform - uid: 1575 type: solid_wall components: - - parent: 0 - pos: -16.5,-10.5 + - parent: 15 + pos: -14.5,-13.5 rot: -1.5707963267948966 rad type: Transform - uid: 1576 type: solid_wall components: - - parent: 0 - pos: -16.5,-11.5 + - parent: 15 + pos: -12.5,-13.5 rot: -1.5707963267948966 rad type: Transform - uid: 1577 type: solid_wall components: - - parent: 0 - pos: -16.5,-12.5 + - parent: 15 + pos: -11.5,-13.5 rot: -1.5707963267948966 rad type: Transform - uid: 1578 type: solid_wall components: - - parent: 0 - pos: -9.5,-24.5 + - parent: 15 + pos: -10.5,-13.5 rot: -1.5707963267948966 rad type: Transform - uid: 1579 type: solid_wall components: - - parent: 0 - pos: -8.5,-24.5 + - parent: 15 + pos: -10.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1580 type: solid_wall components: - - parent: 0 - pos: -7.5,-24.5 + - parent: 15 + pos: -10.5,-11.5 rot: -1.5707963267948966 rad type: Transform - uid: 1581 type: solid_wall components: - - parent: 0 - pos: -2.5,-6.5 + - parent: 15 + pos: -10.5,-10.5 rot: -1.5707963267948966 rad type: Transform - uid: 1582 type: solid_wall components: - - parent: 0 - pos: -2.5,-7.5 + - parent: 15 + pos: -10.5,-9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1583 type: solid_wall components: - - parent: 0 - pos: -2.5,-8.5 + - parent: 15 + pos: -10.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1584 type: solid_wall components: - - parent: 0 - pos: -3.5,-8.5 + - parent: 15 + pos: -11.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1585 type: solid_wall components: - - parent: 0 - pos: -4.5,-8.5 + - parent: 15 + pos: -13.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1586 type: solid_wall components: - - parent: 0 - pos: -5.5,-8.5 + - parent: 15 + pos: -14.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1587 type: solid_wall components: - - parent: 0 - pos: -6.5,-8.5 + - parent: 15 + pos: -15.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1588 type: solid_wall components: - - parent: 0 - pos: -7.5,-8.5 + - parent: 15 + pos: -16.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1589 type: solid_wall components: - - parent: 0 - pos: -8.5,-8.5 + - parent: 15 + pos: -16.5,-9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1590 type: solid_wall components: - - parent: 0 - pos: -8.5,-6.5 + - parent: 15 + pos: -16.5,-10.5 rot: -1.5707963267948966 rad type: Transform - uid: 1591 type: solid_wall components: - - parent: 0 - pos: -8.5,-5.5 + - parent: 15 + pos: -16.5,-11.5 rot: -1.5707963267948966 rad type: Transform - uid: 1592 type: solid_wall components: - - parent: 0 - pos: -7.5,-5.5 + - parent: 15 + pos: -16.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1593 type: solid_wall components: - - parent: 0 - pos: -9.5,-5.5 + - parent: 15 + pos: -9.5,-24.5 rot: -1.5707963267948966 rad type: Transform - uid: 1594 type: solid_wall components: - - parent: 0 - pos: -10.5,-5.5 + - parent: 15 + pos: -8.5,-24.5 rot: -1.5707963267948966 rad type: Transform - uid: 1595 - type: Table + type: solid_wall components: - - parent: 0 - pos: -15.5,-11.5 + - parent: 15 + pos: -7.5,-24.5 rot: -1.5707963267948966 rad type: Transform - uid: 1596 - type: Table + type: solid_wall components: - - parent: 0 - pos: -15.5,-12.5 + - parent: 15 + pos: -2.5,-6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1597 - type: Table + type: solid_wall components: - - parent: 0 - pos: -29.5,7.5 + - parent: 15 + pos: -2.5,-7.5 rot: -1.5707963267948966 rad type: Transform - uid: 1598 - type: VendingMachineYouTool + type: solid_wall components: - - parent: 0 - pos: -29.5,11.5 + - parent: 15 + pos: -2.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - SerialNumber: RPGM-5471 - WireSeed: 1742069662 - type: Wires - uid: 1599 + type: solid_wall + components: + - parent: 15 + pos: -3.5,-8.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1600 + type: solid_wall + components: + - parent: 15 + pos: -4.5,-8.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1601 + type: solid_wall + components: + - parent: 15 + pos: -5.5,-8.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1602 + type: solid_wall + components: + - parent: 15 + pos: -6.5,-8.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1603 + type: solid_wall + components: + - parent: 15 + pos: -7.5,-8.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1604 + type: solid_wall + components: + - parent: 15 + pos: -8.5,-8.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1605 + type: solid_wall + components: + - parent: 15 + pos: -8.5,-6.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1606 + type: solid_wall + components: + - parent: 15 + pos: -8.5,-5.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1607 + type: solid_wall + components: + - parent: 15 + pos: -7.5,-5.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1608 + type: solid_wall + components: + - parent: 15 + pos: -9.5,-5.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1609 + type: solid_wall + components: + - parent: 15 + pos: -10.5,-5.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1610 + type: Table + components: + - parent: 15 + pos: -15.5,-11.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1611 + type: Table + components: + - parent: 15 + pos: -15.5,-12.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1612 + type: Table + components: + - parent: 15 + pos: -29.5,7.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1613 + type: DisposalTrunk + components: + - parent: 15 + pos: -10.5,-17.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 1614 type: VendingMachineSovietSoda components: - - parent: 0 + - parent: 15 pos: -11.5,-9.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: NVGJ-3894 WireSeed: 844269927 type: Wires -- uid: 1600 +- uid: 1615 type: ChairOfficeDark components: - - parent: 0 + - parent: 15 pos: 40.5,-0.5 rot: 3.141592653589793 rad type: Transform -- uid: 1601 +- uid: 1616 type: solid_wall components: - - parent: 0 + - parent: 15 pos: -10.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1602 +- uid: 1617 type: solid_wall components: - - parent: 0 + - parent: 15 pos: -4.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1603 +- uid: 1618 type: solid_wall components: - - parent: 0 + - parent: 15 pos: -9.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1604 +- uid: 1619 type: solid_wall components: - - parent: 0 + - parent: 15 pos: -11.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1605 +- uid: 1620 type: Table components: - - parent: 0 + - parent: 15 pos: 26.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1606 +- uid: 1621 type: Multitool components: - - parent: 0 + - parent: 15 pos: 6.259919,28.557344 rot: -1.5707963267948966 rad type: Transform -- uid: 1607 +- uid: 1622 type: Medkit components: - - parent: 0 + - parent: 15 pos: -0.959059,28.524237 rot: -1.5707963267948966 rad type: Transform @@ -15513,382 +15711,375 @@ entities: storagebase: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 1608 +- uid: 1623 type: VendingMachineCola components: - - parent: 0 + - parent: 15 pos: 29.5,6.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: QQFJ-6186 WireSeed: 1754739504 type: Wires -- uid: 1609 +- uid: 1624 type: Table components: - - parent: 0 + - parent: 15 pos: 28.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1610 +- uid: 1625 type: Table components: - - parent: 0 + - parent: 15 pos: 20.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1611 +- uid: 1626 type: Table components: - - parent: 0 + - parent: 15 pos: 19.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1612 +- uid: 1627 type: WeldingFuelTank components: - - parent: 0 + - parent: 15 pos: -26.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1613 +- uid: 1628 type: WeldingFuelTank components: - - parent: 0 + - parent: 15 pos: 35.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1614 +- uid: 1629 type: WeldingFuelTank components: - - parent: 0 + - parent: 15 pos: -15.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1615 +- uid: 1630 type: DrinkMugMoebius components: - - parent: 0 + - parent: 15 pos: -8.476567,-17.420076 rot: -1.5707963267948966 rad type: Transform - caps: PourIn, PourOut, Injectable type: Solution -- uid: 1616 - type: Table - components: - - parent: 0 - pos: -29.5,10.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1617 +- uid: 1631 type: VendingMachineSnack components: - - parent: 0 + - parent: 15 pos: 9.5,28.5 rot: 3.141592653589793 rad type: Transform - SerialNumber: ETEK-6817 WireSeed: 2090195893 type: Wires -- uid: 1618 +- uid: 1632 type: Table components: - - parent: 0 + - parent: 15 pos: 0.5,28.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1619 - type: Table - components: - - parent: 0 - pos: 1.5,28.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1620 - type: Table - components: - - parent: 0 - pos: -0.5,28.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1621 - type: solid_wall - components: - - parent: 0 - pos: -21.5,-9.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1622 - type: solid_wall - components: - - parent: 0 - pos: -22.5,-9.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1623 - type: Paper - components: - - parent: 0 - pos: 9.543142,17.067865 - rot: 3.141592653589793 rad - type: Transform -- uid: 1624 - type: solid_wall - components: - - parent: 0 - pos: -24.5,-9.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1625 - type: solid_wall - components: - - parent: 0 - pos: -25.5,-9.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1626 - type: solid_wall - components: - - parent: 0 - pos: -26.5,-9.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1627 - type: solid_wall - components: - - parent: 0 - pos: -27.5,-9.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1628 - type: solid_wall - components: - - parent: 0 - pos: -28.5,-9.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1629 - type: solid_wall - components: - - parent: 0 - pos: -29.5,-9.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1630 - type: solid_wall - components: - - parent: 0 - pos: -30.5,-9.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1631 - type: solid_wall - components: - - parent: 0 - pos: -31.5,-9.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1632 - type: solid_wall - components: - - parent: 0 - pos: -31.5,-7.5 - rot: -1.5707963267948966 rad - type: Transform - uid: 1633 - type: solid_wall + type: Table components: - - parent: 0 - pos: -31.5,-8.5 + - parent: 15 + pos: 1.5,28.5 rot: -1.5707963267948966 rad type: Transform - uid: 1634 type: Table components: - - parent: 0 - pos: -1.5,28.5 + - parent: 15 + pos: -0.5,28.5 rot: -1.5707963267948966 rad type: Transform - uid: 1635 - type: Table + type: solid_wall components: - - parent: 0 - pos: -2.5,28.5 + - parent: 15 + pos: -21.5,-9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1636 type: solid_wall components: - - parent: 0 - pos: -34.5,-8.5 + - parent: 15 + pos: -22.5,-9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1637 - type: solid_wall + type: Paper components: - - parent: 0 - pos: -34.5,-7.5 - rot: -1.5707963267948966 rad + - parent: 15 + pos: 9.543142,17.067865 + rot: 3.141592653589793 rad type: Transform - uid: 1638 type: solid_wall components: - - parent: 0 - pos: -31.5,-5.5 + - parent: 15 + pos: -24.5,-9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1639 type: solid_wall components: - - parent: 0 - pos: -31.5,-4.5 + - parent: 15 + pos: -25.5,-9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1640 type: solid_wall components: - - parent: 0 - pos: -31.5,-3.5 + - parent: 15 + pos: -26.5,-9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1641 type: solid_wall components: - - parent: 0 - pos: -30.5,-3.5 + - parent: 15 + pos: -27.5,-9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1642 type: solid_wall components: - - parent: 0 - pos: -29.5,-3.5 + - parent: 15 + pos: -28.5,-9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1643 type: solid_wall components: - - parent: 0 - pos: -28.5,-3.5 + - parent: 15 + pos: -29.5,-9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1644 type: solid_wall components: - - parent: 0 - pos: -27.5,-3.5 + - parent: 15 + pos: -30.5,-9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1645 type: solid_wall components: - - parent: 0 - pos: -26.5,-3.5 + - parent: 15 + pos: -31.5,-9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1646 type: solid_wall components: - - parent: 0 - pos: -26.5,-2.5 + - parent: 15 + pos: -31.5,-7.5 rot: -1.5707963267948966 rad type: Transform - uid: 1647 type: solid_wall components: - - parent: 0 - pos: -26.5,-4.5 + - parent: 15 + pos: -31.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1648 - type: solid_wall + type: Table components: - - parent: 0 - pos: -26.5,-5.5 + - parent: 15 + pos: -1.5,28.5 rot: -1.5707963267948966 rad type: Transform - uid: 1649 - type: solid_wall + type: Table components: - - parent: 0 - pos: -26.5,-7.5 + - parent: 15 + pos: -2.5,28.5 rot: -1.5707963267948966 rad type: Transform - uid: 1650 type: solid_wall components: - - parent: 0 - pos: -26.5,-8.5 + - parent: 15 + pos: -34.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1651 - type: Table + type: solid_wall components: - - parent: 0 - pos: -7.5,20.5 + - parent: 15 + pos: -34.5,-7.5 rot: -1.5707963267948966 rad type: Transform - uid: 1652 type: solid_wall components: - - parent: 0 - pos: -21.5,-5.5 + - parent: 15 + pos: -31.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 1653 type: solid_wall components: - - parent: 0 - pos: -21.5,-6.5 + - parent: 15 + pos: -31.5,-4.5 rot: -1.5707963267948966 rad type: Transform - uid: 1654 type: solid_wall components: - - parent: 0 - pos: -20.5,-6.5 + - parent: 15 + pos: -31.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1655 type: solid_wall components: - - parent: 0 - pos: -19.5,-6.5 + - parent: 15 + pos: -30.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1656 type: solid_wall components: - - parent: 0 - pos: -18.5,-6.5 + - parent: 15 + pos: -29.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1657 type: solid_wall components: - - parent: 0 - pos: -17.5,-6.5 + - parent: 15 + pos: -28.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1658 - type: SpawnPointLatejoin + type: solid_wall components: - - parent: 0 - pos: -36.5,-5.5 + - parent: 15 + pos: -27.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1659 - type: SpawnPointLatejoin + type: solid_wall components: - - parent: 0 - pos: -36.5,-3.5 + - parent: 15 + pos: -26.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1660 + type: solid_wall + components: + - parent: 15 + pos: -26.5,-2.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1661 + type: solid_wall + components: + - parent: 15 + pos: -26.5,-4.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1662 + type: solid_wall + components: + - parent: 15 + pos: -26.5,-5.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1663 + type: solid_wall + components: + - parent: 15 + pos: -26.5,-7.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1664 + type: solid_wall + components: + - parent: 15 + pos: -26.5,-8.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1665 + type: Table + components: + - parent: 15 + pos: -7.5,20.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1666 + type: solid_wall + components: + - parent: 15 + pos: -21.5,-5.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1667 + type: solid_wall + components: + - parent: 15 + pos: -21.5,-6.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1668 + type: solid_wall + components: + - parent: 15 + pos: -20.5,-6.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1669 + type: solid_wall + components: + - parent: 15 + pos: -19.5,-6.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1670 + type: solid_wall + components: + - parent: 15 + pos: -18.5,-6.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1671 + type: solid_wall + components: + - parent: 15 + pos: -17.5,-6.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1672 + type: SpawnPointLatejoin + components: + - parent: 15 + pos: -36.5,-5.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1673 + type: SpawnPointLatejoin + components: + - parent: 15 + pos: -36.5,-3.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1674 type: CrateInternals components: - - parent: 0 + - parent: 15 pos: 42.5,13.5 rot: -1.5707963267948966 rad type: Transform @@ -15898,10 +16089,10 @@ entities: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 1661 +- uid: 1675 type: CrateRadiation components: - - parent: 0 + - parent: 15 pos: 43.5,13.5 rot: -1.5707963267948966 rad type: Transform @@ -15911,220 +16102,220 @@ entities: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 1662 +- uid: 1676 type: solid_wall components: - - parent: 0 + - parent: 15 pos: -17.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1663 +- uid: 1677 type: solid_wall components: - - parent: 0 + - parent: 15 pos: -17.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1664 - type: solid_wall - components: - - parent: 0 - pos: -17.5,-3.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1665 - type: solid_wall - components: - - parent: 0 - pos: -18.5,-3.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1666 - type: solid_wall - components: - - parent: 0 - pos: -19.5,-3.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1667 - type: solid_wall - components: - - parent: 0 - pos: -20.5,-3.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1668 - type: solid_wall - components: - - parent: 0 - pos: -21.5,-3.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1669 - type: solid_wall - components: - - parent: 0 - pos: -21.5,-2.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1670 - type: BreathMaskClothing - components: - - parent: 1672 - type: Transform -- uid: 1671 - type: BreathMaskClothing - components: - - parent: 1672 - type: Transform -- uid: 1672 - type: ToolboxEmergencyFilled - components: - - parent: 2791 - type: Transform - - containers: - storagebase: - entities: - - 1671 - - 1670 - - 2595 - - 746 - - 744 - - 742 - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 1673 - type: BreathMaskClothing - components: - - parent: 2789 - type: Transform -- uid: 1674 - type: FoodChocolateBar - components: - - parent: 2950 - type: Transform -- uid: 1675 - type: solid_wall - components: - - parent: 0 - pos: -17.5,2.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1676 - type: PowerCellSmallHyper - components: - - parent: 1677 - type: Transform - - startingCharge: 1000 - type: PowerCell -- uid: 1677 - type: FlashlightLantern - components: - - parent: 3079 - type: Transform - - containers: - flashlight_cell_container: - entities: - - 1676 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer - uid: 1678 type: solid_wall components: - - parent: 0 - pos: -20.5,2.5 + - parent: 15 + pos: -17.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1679 type: solid_wall components: - - parent: 0 - pos: -21.5,2.5 + - parent: 15 + pos: -18.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1680 - type: BreathMaskClothing + type: solid_wall components: - - parent: 2950 + - parent: 15 + pos: -19.5,-3.5 + rot: -1.5707963267948966 rad type: Transform - uid: 1681 - type: FlashlightLantern + type: solid_wall components: - - parent: 2950 + - parent: 15 + pos: -20.5,-3.5 + rot: -1.5707963267948966 rad type: Transform - - containers: - flashlight_cell_container: - entities: - - 2948 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer - uid: 1682 type: solid_wall components: - - parent: 0 - pos: -21.5,1.5 + - parent: 15 + pos: -21.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1683 type: solid_wall components: - - parent: 0 - pos: -21.5,0.5 + - parent: 15 + pos: -21.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1684 - type: solid_wall + type: BreathMaskClothing components: - - parent: 0 - pos: -21.5,-0.5 - rot: -1.5707963267948966 rad + - parent: 1686 type: Transform - uid: 1685 - type: solid_wall + type: BreathMaskClothing components: - - parent: 0 - pos: -22.5,1.5 - rot: -1.5707963267948966 rad + - parent: 1686 type: Transform - uid: 1686 - type: solid_wall + type: ToolboxEmergencyFilled components: - - parent: 0 - pos: -25.5,1.5 - rot: -1.5707963267948966 rad + - parent: 2803 type: Transform + - containers: + storagebase: + entities: + - 1685 + - 1684 + - 2607 + - 761 + - 759 + - 757 + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer - uid: 1687 - type: solid_wall + type: BreathMaskClothing components: - - parent: 0 - pos: -26.5,0.5 - rot: -1.5707963267948966 rad + - parent: 2801 type: Transform - uid: 1688 - type: solid_wall + type: FoodChocolateBar components: - - parent: 0 - pos: -26.5,1.5 - rot: -1.5707963267948966 rad + - parent: 2962 type: Transform - uid: 1689 type: solid_wall components: - - parent: 0 - pos: -26.5,2.5 + - parent: 15 + pos: -17.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1690 + type: PowerCellSmallHyper + components: + - parent: 1691 + type: Transform + - startingCharge: 1000 + type: PowerCell +- uid: 1691 + type: FlashlightLantern + components: + - parent: 3091 + type: Transform + - containers: + flashlight_cell_container: + entities: + - 1690 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1692 type: solid_wall components: - - parent: 0 + - parent: 15 + pos: -20.5,2.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1693 + type: solid_wall + components: + - parent: 15 + pos: -21.5,2.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1694 + type: BreathMaskClothing + components: + - parent: 2962 + type: Transform +- uid: 1695 + type: FlashlightLantern + components: + - parent: 2962 + type: Transform + - containers: + flashlight_cell_container: + entities: + - 2960 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1696 + type: solid_wall + components: + - parent: 15 + pos: -21.5,1.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1697 + type: solid_wall + components: + - parent: 15 + pos: -21.5,0.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1698 + type: solid_wall + components: + - parent: 15 + pos: -21.5,-0.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1699 + type: solid_wall + components: + - parent: 15 + pos: -22.5,1.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1700 + type: solid_wall + components: + - parent: 15 + pos: -25.5,1.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1701 + type: solid_wall + components: + - parent: 15 + pos: -26.5,0.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1702 + type: solid_wall + components: + - parent: 15 + pos: -26.5,1.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1703 + type: solid_wall + components: + - parent: 15 + pos: -26.5,2.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1704 + type: solid_wall + components: + - parent: 15 pos: -27.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1691 +- uid: 1705 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: -35,-4.5 rot: 3.141592653589793 rad type: Transform @@ -16135,405 +16326,405 @@ entities: - containers: light_bulb: entities: - - 1749 + - 1763 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 1692 +- uid: 1706 type: Window components: - - parent: 0 + - parent: 15 pos: -25.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1693 - type: solid_wall - components: - - parent: 0 - pos: -30.5,2.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1694 - type: solid_wall - components: - - parent: 0 - pos: -31.5,2.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1695 - type: solid_wall - components: - - parent: 0 - pos: -31.5,1.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1696 - type: solid_wall - components: - - parent: 0 - pos: -31.5,0.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1697 - type: solid_wall - components: - - parent: 0 - pos: -31.5,-0.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1698 - type: solid_wall - components: - - parent: 0 - pos: -31.5,-1.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1699 - type: solid_wall - components: - - parent: 0 - pos: -31.5,-2.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1700 - type: solid_wall - components: - - parent: 0 - pos: -34.5,-5.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1701 - type: solid_wall - components: - - parent: 0 - pos: -34.5,-4.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1702 - type: solid_wall - components: - - parent: 0 - pos: -34.5,-3.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1703 - type: solid_wall - components: - - parent: 0 - pos: -34.5,-2.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1704 - type: solid_wall - components: - - parent: 0 - pos: -34.5,-1.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1705 - type: solid_wall - components: - - parent: 0 - pos: -34.5,-0.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1706 - type: solid_wall - components: - - parent: 0 - pos: -34.5,0.5 - rot: -1.5707963267948966 rad - type: Transform - uid: 1707 type: solid_wall components: - - parent: 0 - pos: -34.5,1.5 + - parent: 15 + pos: -30.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1708 type: solid_wall components: - - parent: 0 - pos: -33.5,1.5 + - parent: 15 + pos: -31.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1709 type: solid_wall components: - - parent: 0 - pos: -33.5,2.5 + - parent: 15 + pos: -31.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 1710 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: -5.5,2.5 + - parent: 15 + pos: -31.5,0.5 rot: -1.5707963267948966 rad type: Transform - uid: 1711 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: -6.5,2.5 + - parent: 15 + pos: -31.5,-0.5 rot: -1.5707963267948966 rad type: Transform - uid: 1712 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: -7.5,2.5 + - parent: 15 + pos: -31.5,-1.5 rot: -1.5707963267948966 rad type: Transform - uid: 1713 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: -8.5,2.5 + - parent: 15 + pos: -31.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1714 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: -35.5,-8.5 + - parent: 15 + pos: -34.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 1715 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: -36.5,-8.5 + - parent: 15 + pos: -34.5,-4.5 rot: -1.5707963267948966 rad type: Transform - uid: 1716 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: -37.5,-8.5 + - parent: 15 + pos: -34.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1717 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: -38.5,-8.5 + - parent: 15 + pos: -34.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1718 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: -38.5,-7.5 + - parent: 15 + pos: -34.5,-1.5 rot: -1.5707963267948966 rad type: Transform - uid: 1719 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: -38.5,-6.5 + - parent: 15 + pos: -34.5,-0.5 rot: -1.5707963267948966 rad type: Transform - uid: 1720 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: -38.5,-5.5 + - parent: 15 + pos: -34.5,0.5 rot: -1.5707963267948966 rad type: Transform - uid: 1721 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: -38.5,-4.5 + - parent: 15 + pos: -34.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 1722 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: -39.5,-4.5 + - parent: 15 + pos: -33.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 1723 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: -37.5,-4.5 + - parent: 15 + pos: -33.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1724 type: LowWall components: - - parent: 0 - pos: -39.5,-2.5 + - parent: 15 + pos: -5.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1725 type: LowWall components: - - parent: 0 - pos: -38.5,-2.5 + - parent: 15 + pos: -6.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1726 type: LowWall components: - - parent: 0 - pos: -37.5,-2.5 + - parent: 15 + pos: -7.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1727 type: LowWall components: - - parent: 0 - pos: -38.5,-1.5 + - parent: 15 + pos: -8.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1728 type: LowWall components: - - parent: 0 - pos: -38.5,-0.5 + - parent: 15 + pos: -35.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1729 type: LowWall components: - - parent: 0 - pos: -38.5,0.5 + - parent: 15 + pos: -36.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1730 - type: ReinforcedWindow + type: LowWall components: - - parent: 0 - pos: -37.5,-2.5 + - parent: 15 + pos: -37.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1731 type: LowWall components: - - parent: 0 - pos: -39.5,1.5 + - parent: 15 + pos: -38.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1732 type: LowWall components: - - parent: 0 - pos: -40.5,1.5 + - parent: 15 + pos: -38.5,-7.5 rot: -1.5707963267948966 rad type: Transform - uid: 1733 type: LowWall components: - - parent: 0 - pos: -40.5,2.5 + - parent: 15 + pos: -38.5,-6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1734 type: LowWall components: - - parent: 0 - pos: -40.5,3.5 + - parent: 15 + pos: -38.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 1735 type: LowWall components: - - parent: 0 - pos: -41.5,3.5 + - parent: 15 + pos: -38.5,-4.5 rot: -1.5707963267948966 rad type: Transform - uid: 1736 type: LowWall components: - - parent: 0 - pos: -39.5,3.5 + - parent: 15 + pos: -39.5,-4.5 rot: -1.5707963267948966 rad type: Transform - uid: 1737 type: LowWall components: - - parent: 0 - pos: -39.5,5.5 + - parent: 15 + pos: -37.5,-4.5 rot: -1.5707963267948966 rad type: Transform - uid: 1738 type: LowWall components: - - parent: 0 - pos: -40.5,5.5 + - parent: 15 + pos: -39.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1739 type: LowWall components: - - parent: 0 - pos: -41.5,5.5 + - parent: 15 + pos: -38.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1740 type: LowWall components: - - parent: 0 - pos: -40.5,6.5 + - parent: 15 + pos: -37.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1741 type: LowWall components: - - parent: 0 - pos: -40.5,7.5 + - parent: 15 + pos: -38.5,-1.5 rot: -1.5707963267948966 rad type: Transform - uid: 1742 type: LowWall components: - - parent: 0 - pos: -41.5,7.5 + - parent: 15 + pos: -38.5,-0.5 rot: -1.5707963267948966 rad type: Transform - uid: 1743 type: LowWall components: - - parent: 0 - pos: -39.5,7.5 + - parent: 15 + pos: -38.5,0.5 rot: -1.5707963267948966 rad type: Transform - uid: 1744 - type: LowWall + type: ReinforcedWindow components: - - parent: 0 - pos: -39.5,9.5 + - parent: 15 + pos: -37.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1745 type: LowWall components: - - parent: 0 - pos: -40.5,9.5 + - parent: 15 + pos: -39.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 1746 type: LowWall components: - - parent: 0 - pos: -41.5,9.5 + - parent: 15 + pos: -40.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 1747 type: LowWall components: - - parent: 0 - pos: -40.5,10.5 + - parent: 15 + pos: -40.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1748 + type: LowWall + components: + - parent: 15 + pos: -40.5,3.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1749 + type: LowWall + components: + - parent: 15 + pos: -41.5,3.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1750 + type: LowWall + components: + - parent: 15 + pos: -39.5,3.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1751 + type: LowWall + components: + - parent: 15 + pos: -39.5,5.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1752 + type: LowWall + components: + - parent: 15 + pos: -40.5,5.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1753 + type: LowWall + components: + - parent: 15 + pos: -41.5,5.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1754 + type: LowWall + components: + - parent: 15 + pos: -40.5,6.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1755 + type: LowWall + components: + - parent: 15 + pos: -40.5,7.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1756 + type: LowWall + components: + - parent: 15 + pos: -41.5,7.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1757 + type: LowWall + components: + - parent: 15 + pos: -39.5,7.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1758 + type: LowWall + components: + - parent: 15 + pos: -39.5,9.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1759 + type: LowWall + components: + - parent: 15 + pos: -40.5,9.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1760 + type: LowWall + components: + - parent: 15 + pos: -41.5,9.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1761 + type: LowWall + components: + - parent: 15 + pos: -40.5,10.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1762 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: -38.5,2 rot: 1.5707963267948966 rad type: Transform @@ -16544,114 +16735,114 @@ entities: - containers: light_bulb: entities: - - 1882 + - 1896 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 1749 +- uid: 1763 type: LightTube components: - - parent: 1691 + - parent: 1705 type: Transform -- uid: 1750 +- uid: 1764 type: solid_wall components: - - parent: 0 + - parent: 15 pos: -40.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1751 +- uid: 1765 type: LowWall components: - - parent: 0 + - parent: 15 pos: -37.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1752 +- uid: 1766 type: LowWall components: - - parent: 0 + - parent: 15 pos: -36.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1753 +- uid: 1767 type: LowWall components: - - parent: 0 + - parent: 15 pos: -35.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1754 +- uid: 1768 type: LightTube components: - - parent: 2310 + - parent: 2324 type: Transform -- uid: 1755 +- uid: 1769 type: Catwalk components: - - parent: 0 + - parent: 15 pos: -32.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1756 +- uid: 1770 type: solid_wall components: - - parent: 0 + - parent: 15 pos: 0.5,21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1757 +- uid: 1771 type: ReinforcedWindow components: - - parent: 0 + - parent: 15 pos: 30.5,4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1758 +- uid: 1772 type: Window components: - - parent: 0 + - parent: 15 pos: 32.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1759 +- uid: 1773 type: Window components: - - parent: 0 + - parent: 15 pos: 34.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1760 +- uid: 1774 type: Window components: - - parent: 0 + - parent: 15 pos: 36.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1761 +- uid: 1775 type: Window components: - - parent: 0 + - parent: 15 pos: 37.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1762 +- uid: 1776 type: Window components: - - parent: 0 + - parent: 15 pos: 39.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1763 +- uid: 1777 type: Window components: - - parent: 0 + - parent: 15 pos: 40.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1764 +- uid: 1778 type: APC components: - - parent: 0 + - parent: 15 pos: -11.5,2.5 type: Transform - nodeTypes: @@ -16660,15 +16851,15 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 1765 +- uid: 1779 type: LightTube components: - - parent: 1766 + - parent: 1780 type: Transform -- uid: 1766 +- uid: 1780 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: -24.5,-9 rot: 1.5707963267948966 rad type: Transform @@ -16679,811 +16870,811 @@ entities: - containers: light_bulb: entities: - - 1765 + - 1779 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 1767 - type: ReinforcedWindow - components: - - parent: 0 - pos: -21.5,-13.5 - rot: 1.5707963267948966 rad - type: Transform -- uid: 1768 - type: ReinforcedWindow - components: - - parent: 0 - pos: -22.5,-13.5 - rot: 1.5707963267948966 rad - type: Transform -- uid: 1769 - type: Window - components: - - parent: 0 - pos: 32.5,7.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1770 - type: Window - components: - - parent: 0 - pos: 34.5,7.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1771 - type: ReinforcedWindow - components: - - parent: 0 - pos: 30.5,14.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1772 - type: ReinforcedWindow - components: - - parent: 0 - pos: 30.5,15.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1773 - type: ReinforcedWindow - components: - - parent: 0 - pos: 31.5,15.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1774 - type: ReinforcedWindow - components: - - parent: 0 - pos: 32.5,15.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1775 - type: ReinforcedWindow - components: - - parent: 0 - pos: 33.5,15.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1776 - type: ReinforcedWindow - components: - - parent: 0 - pos: 34.5,15.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1777 - type: ReinforcedWindow - components: - - parent: 0 - pos: 35.5,15.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1778 - type: ReinforcedWindow - components: - - parent: 0 - pos: 36.5,15.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1779 - type: ReinforcedWindow - components: - - parent: 0 - pos: 36.5,14.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1780 - type: ReinforcedWindow - components: - - parent: 0 - pos: 28.5,14.5 - rot: -1.5707963267948966 rad - type: Transform - uid: 1781 - type: ReinforcedWindow + type: solid_wall components: - - parent: 0 - pos: 27.5,14.5 + - parent: 15 + pos: -25.5,-16.5 rot: -1.5707963267948966 rad type: Transform - uid: 1782 - type: ReinforcedWindow + type: solid_wall components: - - parent: 0 - pos: 26.5,14.5 + - parent: 15 + pos: -25.5,-14.5 rot: -1.5707963267948966 rad type: Transform - uid: 1783 - type: ReinforcedWindow + type: Window components: - - parent: 0 - pos: 24.5,14.5 + - parent: 15 + pos: 32.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 1784 - type: ReinforcedWindow + type: Window components: - - parent: 0 - pos: 23.5,14.5 + - parent: 15 + pos: 34.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 1785 type: ReinforcedWindow components: - - parent: 0 - pos: 23.5,15.5 + - parent: 15 + pos: 30.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 1786 type: ReinforcedWindow components: - - parent: 0 - pos: 23.5,16.5 + - parent: 15 + pos: 30.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1787 type: ReinforcedWindow components: - - parent: 0 - pos: 21.5,16.5 + - parent: 15 + pos: 31.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1788 type: ReinforcedWindow components: - - parent: 0 - pos: 21.5,15.5 + - parent: 15 + pos: 32.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1789 type: ReinforcedWindow components: - - parent: 0 - pos: 21.5,14.5 + - parent: 15 + pos: 33.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1790 type: ReinforcedWindow components: - - parent: 0 - pos: 18.5,14.5 + - parent: 15 + pos: 34.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1791 - type: LowWall + type: ReinforcedWindow components: - - parent: 0 - pos: 14.5,18.5 + - parent: 15 + pos: 35.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1792 - type: LowWall + type: ReinforcedWindow components: - - parent: 0 - pos: 14.5,19.5 + - parent: 15 + pos: 36.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1793 - type: LowWall + type: ReinforcedWindow components: - - parent: 0 - pos: 14.5,20.5 + - parent: 15 + pos: 36.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 1794 type: ReinforcedWindow components: - - parent: 0 - pos: 14.5,18.5 + - parent: 15 + pos: 28.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 1795 type: ReinforcedWindow components: - - parent: 0 - pos: 14.5,19.5 + - parent: 15 + pos: 27.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 1796 type: ReinforcedWindow components: - - parent: 0 - pos: 14.5,20.5 + - parent: 15 + pos: 26.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 1797 type: ReinforcedWindow components: - - parent: 0 - pos: 6.5,18.5 + - parent: 15 + pos: 24.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 1798 type: ReinforcedWindow components: - - parent: 0 - pos: 6.5,19.5 + - parent: 15 + pos: 23.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 1799 type: ReinforcedWindow components: - - parent: 0 - pos: 8.5,6.5 + - parent: 15 + pos: 23.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1800 - type: Window + type: ReinforcedWindow components: - - parent: 0 - pos: 14.5,8.5 + - parent: 15 + pos: 23.5,16.5 rot: -1.5707963267948966 rad type: Transform - uid: 1801 - type: Window + type: ReinforcedWindow components: - - parent: 0 - pos: 19.5,6.5 + - parent: 15 + pos: 21.5,16.5 rot: -1.5707963267948966 rad type: Transform - uid: 1802 - type: Window + type: ReinforcedWindow components: - - parent: 0 - pos: 20.5,6.5 + - parent: 15 + pos: 21.5,15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1803 - type: Window + type: ReinforcedWindow components: - - parent: 0 - pos: 21.5,6.5 + - parent: 15 + pos: 21.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 1804 - type: Window + type: ReinforcedWindow components: - - parent: 0 - pos: 22.5,6.5 + - parent: 15 + pos: 18.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 1805 - type: Window + type: LowWall components: - - parent: 0 - pos: 13.5,-0.5 + - parent: 15 + pos: 14.5,18.5 rot: -1.5707963267948966 rad type: Transform - uid: 1806 - type: Window + type: LowWall components: - - parent: 0 - pos: 13.5,-1.5 + - parent: 15 + pos: 14.5,19.5 rot: -1.5707963267948966 rad type: Transform - uid: 1807 - type: Window + type: LowWall components: - - parent: 0 - pos: 13.5,1.5 + - parent: 15 + pos: 14.5,20.5 rot: -1.5707963267948966 rad type: Transform - uid: 1808 - type: Window + type: ReinforcedWindow components: - - parent: 0 - pos: 11.5,2.5 + - parent: 15 + pos: 14.5,18.5 rot: -1.5707963267948966 rad type: Transform - uid: 1809 - type: Window + type: ReinforcedWindow components: - - parent: 0 - pos: 10.5,2.5 + - parent: 15 + pos: 14.5,19.5 rot: -1.5707963267948966 rad type: Transform - uid: 1810 - type: Window + type: ReinforcedWindow components: - - parent: 0 - pos: 9.5,2.5 + - parent: 15 + pos: 14.5,20.5 rot: -1.5707963267948966 rad type: Transform - uid: 1811 - type: Window + type: ReinforcedWindow components: - - parent: 0 - pos: 8.5,2.5 + - parent: 15 + pos: 6.5,18.5 rot: -1.5707963267948966 rad type: Transform - uid: 1812 - type: Window + type: ReinforcedWindow components: - - parent: 0 - pos: 7.5,2.5 + - parent: 15 + pos: 6.5,19.5 rot: -1.5707963267948966 rad type: Transform - uid: 1813 - type: Window + type: ReinforcedWindow components: - - parent: 0 - pos: 8.5,-6.5 + - parent: 15 + pos: 8.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1814 type: Window components: - - parent: 0 - pos: 9.5,-6.5 + - parent: 15 + pos: 14.5,8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1815 type: Window components: - - parent: 0 - pos: 6.5,-6.5 + - parent: 15 + pos: 19.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1816 type: Window components: - - parent: 0 - pos: 12.5,-6.5 + - parent: 15 + pos: 20.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1817 type: Window components: - - parent: 0 - pos: 13.5,-5.5 + - parent: 15 + pos: 21.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1818 type: Window components: - - parent: 0 - pos: 13.5,-4.5 + - parent: 15 + pos: 22.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1819 type: Window components: - - parent: 0 - pos: 16.5,-3.5 + - parent: 15 + pos: 13.5,-0.5 rot: -1.5707963267948966 rad type: Transform - uid: 1820 type: Window components: - - parent: 0 - pos: 18.5,-3.5 + - parent: 15 + pos: 13.5,-1.5 rot: -1.5707963267948966 rad type: Transform - uid: 1821 - type: LowWall + type: Window components: - - parent: 0 - pos: 20.5,-15.5 + - parent: 15 + pos: 13.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 1822 - type: LowWall + type: Window components: - - parent: 0 - pos: 20.5,-12.5 + - parent: 15 + pos: 11.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1823 type: Window components: - - parent: 0 - pos: 20.5,-15.5 + - parent: 15 + pos: 10.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1824 - type: LowWall + type: Window components: - - parent: 0 - pos: 10.5,-12.5 + - parent: 15 + pos: 9.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1825 - type: LowWall + type: Window components: - - parent: 0 - pos: 7.5,-12.5 + - parent: 15 + pos: 8.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1826 - type: LowWall + type: Window components: - - parent: 0 - pos: 11.5,-13.5 + - parent: 15 + pos: 7.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1827 - type: LowWall + type: Window components: - - parent: 0 - pos: 11.5,-16.5 + - parent: 15 + pos: 8.5,-6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1828 type: Window components: - - parent: 0 - pos: 11.5,-16.5 + - parent: 15 + pos: 9.5,-6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1829 type: Window components: - - parent: 0 - pos: 11.5,-13.5 + - parent: 15 + pos: 6.5,-6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1830 type: Window components: - - parent: 0 - pos: 10.5,-12.5 + - parent: 15 + pos: 12.5,-6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1831 type: Window components: - - parent: 0 - pos: 7.5,-12.5 + - parent: 15 + pos: 13.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 1832 type: Window components: - - parent: 0 - pos: 5.5,-10.5 + - parent: 15 + pos: 13.5,-4.5 rot: -1.5707963267948966 rad type: Transform - uid: 1833 type: Window components: - - parent: 0 - pos: 5.5,-9.5 + - parent: 15 + pos: 16.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1834 type: Window components: - - parent: 0 - pos: 5.5,-8.5 + - parent: 15 + pos: 18.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 1835 - type: Window + type: LowWall components: - - parent: 0 - pos: 0.5,-16.5 + - parent: 15 + pos: 20.5,-15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1836 - type: Window + type: LowWall components: - - parent: 0 - pos: -2.5,-18.5 + - parent: 15 + pos: 20.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1837 type: Window components: - - parent: 0 - pos: -4.5,-18.5 + - parent: 15 + pos: 20.5,-15.5 rot: -1.5707963267948966 rad type: Transform - uid: 1838 - type: Window + type: LowWall components: - - parent: 0 - pos: -5.5,-21.5 + - parent: 15 + pos: 10.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1839 - type: Window + type: LowWall components: - - parent: 0 - pos: -4.5,-21.5 + - parent: 15 + pos: 7.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1840 - type: Window + type: LowWall components: - - parent: 0 - pos: -2.5,-21.5 + - parent: 15 + pos: 11.5,-13.5 rot: -1.5707963267948966 rad type: Transform - uid: 1841 - type: Window + type: LowWall components: - - parent: 0 - pos: -5.5,2.5 + - parent: 15 + pos: 11.5,-16.5 rot: -1.5707963267948966 rad type: Transform - uid: 1842 type: Window components: - - parent: 0 - pos: -6.5,2.5 + - parent: 15 + pos: 11.5,-16.5 rot: -1.5707963267948966 rad type: Transform - uid: 1843 type: Window components: - - parent: 0 - pos: -27.5,6.5 + - parent: 15 + pos: 11.5,-13.5 rot: -1.5707963267948966 rad type: Transform - uid: 1844 type: Window components: - - parent: 0 - pos: -28.5,6.5 + - parent: 15 + pos: 10.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1845 type: Window components: - - parent: 0 - pos: -29.5,6.5 + - parent: 15 + pos: 7.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 1846 - type: LowWall + type: Window components: - - parent: 0 - pos: -29.5,6.5 + - parent: 15 + pos: 5.5,-10.5 rot: -1.5707963267948966 rad type: Transform - uid: 1847 - type: LowWall + type: Window components: - - parent: 0 - pos: -27.5,6.5 + - parent: 15 + pos: 5.5,-9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1848 - type: ReinforcedWindow + type: Window components: - - parent: 0 - pos: -35.5,-8.5 + - parent: 15 + pos: 5.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1849 - type: ReinforcedWindow + type: Window components: - - parent: 0 - pos: -36.5,-8.5 + - parent: 15 + pos: 0.5,-16.5 rot: -1.5707963267948966 rad type: Transform - uid: 1850 - type: ReinforcedWindow + type: Window components: - - parent: 0 - pos: -37.5,-8.5 + - parent: 15 + pos: -2.5,-18.5 rot: -1.5707963267948966 rad type: Transform - uid: 1851 - type: ReinforcedWindow + type: Window components: - - parent: 0 - pos: -38.5,-8.5 + - parent: 15 + pos: -4.5,-18.5 rot: -1.5707963267948966 rad type: Transform - uid: 1852 - type: ReinforcedWindow + type: Window components: - - parent: 0 - pos: -38.5,-7.5 + - parent: 15 + pos: -5.5,-21.5 rot: -1.5707963267948966 rad type: Transform - uid: 1853 - type: ReinforcedWindow + type: Window components: - - parent: 0 - pos: -38.5,-6.5 + - parent: 15 + pos: -4.5,-21.5 rot: -1.5707963267948966 rad type: Transform - uid: 1854 - type: ReinforcedWindow + type: Window components: - - parent: 0 - pos: -38.5,-5.5 + - parent: 15 + pos: -2.5,-21.5 rot: -1.5707963267948966 rad type: Transform - uid: 1855 - type: ReinforcedWindow + type: Window components: - - parent: 0 - pos: -38.5,-4.5 + - parent: 15 + pos: -5.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1856 - type: ReinforcedWindow + type: Window components: - - parent: 0 - pos: -37.5,-4.5 + - parent: 15 + pos: -6.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1857 - type: ReinforcedWindow + type: Window components: - - parent: 0 - pos: -39.5,-4.5 + - parent: 15 + pos: -27.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1858 - type: ReinforcedWindow + type: Window components: - - parent: 0 - pos: -38.5,-2.5 + - parent: 15 + pos: -28.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1859 - type: ReinforcedWindow + type: Window components: - - parent: 0 - pos: -39.5,-2.5 + - parent: 15 + pos: -29.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1860 - type: solid_wall + type: LowWall components: - - parent: 0 - pos: -38.5,1.5 + - parent: 15 + pos: -29.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1861 - type: ReinforcedWindow + type: LowWall components: - - parent: 0 - pos: -38.5,-1.5 + - parent: 15 + pos: -27.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1862 type: ReinforcedWindow components: - - parent: 0 - pos: -38.5,-0.5 + - parent: 15 + pos: -35.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1863 type: ReinforcedWindow components: - - parent: 0 - pos: -38.5,0.5 + - parent: 15 + pos: -36.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1864 type: ReinforcedWindow components: - - parent: 0 - pos: -39.5,1.5 + - parent: 15 + pos: -37.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1865 type: ReinforcedWindow components: - - parent: 0 - pos: -40.5,1.5 + - parent: 15 + pos: -38.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 1866 type: ReinforcedWindow components: - - parent: 0 - pos: -40.5,2.5 + - parent: 15 + pos: -38.5,-7.5 rot: -1.5707963267948966 rad type: Transform - uid: 1867 type: ReinforcedWindow components: - - parent: 0 - pos: -40.5,3.5 + - parent: 15 + pos: -38.5,-6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1868 type: ReinforcedWindow components: - - parent: 0 - pos: -41.5,3.5 + - parent: 15 + pos: -38.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 1869 type: ReinforcedWindow components: - - parent: 0 - pos: -39.5,3.5 + - parent: 15 + pos: -38.5,-4.5 rot: -1.5707963267948966 rad type: Transform - uid: 1870 type: ReinforcedWindow components: - - parent: 0 - pos: -39.5,5.5 + - parent: 15 + pos: -37.5,-4.5 rot: -1.5707963267948966 rad type: Transform - uid: 1871 type: ReinforcedWindow components: - - parent: 0 - pos: -40.5,5.5 + - parent: 15 + pos: -39.5,-4.5 rot: -1.5707963267948966 rad type: Transform - uid: 1872 type: ReinforcedWindow components: - - parent: 0 - pos: -41.5,5.5 + - parent: 15 + pos: -38.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1873 type: ReinforcedWindow components: - - parent: 0 - pos: -40.5,6.5 + - parent: 15 + pos: -39.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1874 - type: ReinforcedWindow + type: solid_wall components: - - parent: 0 - pos: -40.5,7.5 + - parent: 15 + pos: -38.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 1875 type: ReinforcedWindow components: - - parent: 0 - pos: -41.5,7.5 + - parent: 15 + pos: -38.5,-1.5 rot: -1.5707963267948966 rad type: Transform - uid: 1876 type: ReinforcedWindow components: - - parent: 0 - pos: -39.5,7.5 + - parent: 15 + pos: -38.5,-0.5 rot: -1.5707963267948966 rad type: Transform - uid: 1877 type: ReinforcedWindow components: - - parent: 0 - pos: -39.5,9.5 + - parent: 15 + pos: -38.5,0.5 rot: -1.5707963267948966 rad type: Transform - uid: 1878 type: ReinforcedWindow components: - - parent: 0 - pos: -40.5,9.5 + - parent: 15 + pos: -39.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 1879 type: ReinforcedWindow components: - - parent: 0 - pos: -41.5,9.5 + - parent: 15 + pos: -40.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 1880 type: ReinforcedWindow components: - - parent: 0 - pos: -40.5,10.5 + - parent: 15 + pos: -40.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1881 + type: ReinforcedWindow + components: + - parent: 15 + pos: -40.5,3.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1882 + type: ReinforcedWindow + components: + - parent: 15 + pos: -41.5,3.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1883 + type: ReinforcedWindow + components: + - parent: 15 + pos: -39.5,3.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1884 + type: ReinforcedWindow + components: + - parent: 15 + pos: -39.5,5.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1885 + type: ReinforcedWindow + components: + - parent: 15 + pos: -40.5,5.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1886 + type: ReinforcedWindow + components: + - parent: 15 + pos: -41.5,5.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1887 + type: ReinforcedWindow + components: + - parent: 15 + pos: -40.5,6.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1888 + type: ReinforcedWindow + components: + - parent: 15 + pos: -40.5,7.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1889 + type: ReinforcedWindow + components: + - parent: 15 + pos: -41.5,7.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1890 + type: ReinforcedWindow + components: + - parent: 15 + pos: -39.5,7.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1891 + type: ReinforcedWindow + components: + - parent: 15 + pos: -39.5,9.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1892 + type: ReinforcedWindow + components: + - parent: 15 + pos: -40.5,9.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1893 + type: ReinforcedWindow + components: + - parent: 15 + pos: -41.5,9.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1894 + type: ReinforcedWindow + components: + - parent: 15 + pos: -40.5,10.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1895 type: APC components: - - parent: 0 + - parent: 15 pos: -33.5,7.5 type: Transform - nodeTypes: @@ -17492,344 +17683,344 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 1882 +- uid: 1896 type: LightTube components: - - parent: 1748 + - parent: 1762 type: Transform -- uid: 1883 +- uid: 1897 type: solid_wall components: - - parent: 0 + - parent: 15 pos: -39.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1884 - type: ReinforcedWindow - components: - - parent: 0 - pos: -37.5,11.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1885 - type: ReinforcedWindow - components: - - parent: 0 - pos: -36.5,11.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1886 - type: ReinforcedWindow - components: - - parent: 0 - pos: -35.5,11.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1887 - type: solid_wall - components: - - parent: 0 - pos: -29.5,2.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1888 - type: solid_wall - components: - - parent: 0 - pos: -28.5,2.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1889 - type: ReinforcedWindow - components: - - parent: 0 - pos: -3.5,6.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1890 - type: ReinforcedWindow - components: - - parent: 0 - pos: -2.5,6.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1891 - type: ReinforcedWindow - components: - - parent: 0 - pos: -0.5,6.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1892 - type: ReinforcedWindow - components: - - parent: 0 - pos: 0.5,6.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1893 - type: ReinforcedWindow - components: - - parent: 0 - pos: -0.5,9.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1894 - type: ReinforcedWindow - components: - - parent: 0 - pos: -3.5,9.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1895 - type: ReinforcedWindow - components: - - parent: 0 - pos: -8.5,9.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1896 - type: ReinforcedWindow - components: - - parent: 0 - pos: -7.5,9.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 1897 - type: Window - components: - - parent: 0 - pos: -10.5,14.5 - rot: -1.5707963267948966 rad - type: Transform - uid: 1898 - type: Window + type: ReinforcedWindow components: - - parent: 0 - pos: -7.5,18.5 + - parent: 15 + pos: -37.5,11.5 rot: -1.5707963267948966 rad type: Transform - uid: 1899 type: ReinforcedWindow components: - - parent: 0 - pos: -2.5,31.5 + - parent: 15 + pos: -36.5,11.5 rot: -1.5707963267948966 rad type: Transform - uid: 1900 type: ReinforcedWindow components: - - parent: 0 - pos: -2.5,32.5 + - parent: 15 + pos: -35.5,11.5 rot: -1.5707963267948966 rad type: Transform - uid: 1901 - type: ReinforcedWindow + type: solid_wall components: - - parent: 0 - pos: -3.5,29.5 + - parent: 15 + pos: -29.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1902 - type: ReinforcedWindow + type: solid_wall components: - - parent: 0 - pos: -1.5,32.5 + - parent: 15 + pos: -28.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 1903 type: ReinforcedWindow components: - - parent: 0 - pos: -1.5,33.5 + - parent: 15 + pos: -3.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1904 type: ReinforcedWindow components: - - parent: 0 - pos: -0.5,33.5 + - parent: 15 + pos: -2.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1905 type: ReinforcedWindow components: - - parent: 0 - pos: 0.5,33.5 + - parent: 15 + pos: -0.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1906 type: ReinforcedWindow components: - - parent: 0 - pos: 1.5,33.5 + - parent: 15 + pos: 0.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 1907 type: ReinforcedWindow components: - - parent: 0 - pos: 2.5,33.5 + - parent: 15 + pos: -0.5,9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1908 type: ReinforcedWindow components: - - parent: 0 - pos: 3.5,33.5 + - parent: 15 + pos: -3.5,9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1909 type: ReinforcedWindow components: - - parent: 0 - pos: 4.5,33.5 + - parent: 15 + pos: -8.5,9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1910 type: ReinforcedWindow components: - - parent: 0 - pos: 5.5,33.5 + - parent: 15 + pos: -7.5,9.5 rot: -1.5707963267948966 rad type: Transform - uid: 1911 - type: ReinforcedWindow + type: Window components: - - parent: 0 - pos: 6.5,33.5 + - parent: 15 + pos: -10.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 1912 - type: ReinforcedWindow + type: Window components: - - parent: 0 - pos: 7.5,33.5 + - parent: 15 + pos: -7.5,18.5 rot: -1.5707963267948966 rad type: Transform - uid: 1913 type: ReinforcedWindow components: - - parent: 0 - pos: 8.5,33.5 + - parent: 15 + pos: -2.5,31.5 rot: -1.5707963267948966 rad type: Transform - uid: 1914 type: ReinforcedWindow components: - - parent: 0 - pos: 8.5,32.5 + - parent: 15 + pos: -2.5,32.5 rot: -1.5707963267948966 rad type: Transform - uid: 1915 type: ReinforcedWindow components: - - parent: 0 - pos: 9.5,31.5 + - parent: 15 + pos: -3.5,29.5 rot: -1.5707963267948966 rad type: Transform - uid: 1916 type: ReinforcedWindow components: - - parent: 0 - pos: 9.5,32.5 + - parent: 15 + pos: -1.5,32.5 rot: -1.5707963267948966 rad type: Transform - uid: 1917 type: ReinforcedWindow components: - - parent: 0 - pos: 10.5,29.5 + - parent: 15 + pos: -1.5,33.5 rot: -1.5707963267948966 rad type: Transform - uid: 1918 type: ReinforcedWindow components: - - parent: 0 - pos: 3.5,22.5 + - parent: 15 + pos: -0.5,33.5 rot: -1.5707963267948966 rad type: Transform - uid: 1919 - type: Window + type: ReinforcedWindow components: - - parent: 0 - pos: -0.5,27.5 + - parent: 15 + pos: 0.5,33.5 rot: -1.5707963267948966 rad type: Transform - uid: 1920 - type: Window + type: ReinforcedWindow components: - - parent: 0 - pos: -1.5,27.5 + - parent: 15 + pos: 1.5,33.5 rot: -1.5707963267948966 rad type: Transform - uid: 1921 type: ReinforcedWindow components: - - parent: 0 - pos: 2.5,-24.5 + - parent: 15 + pos: 2.5,33.5 rot: -1.5707963267948966 rad type: Transform - uid: 1922 type: ReinforcedWindow components: - - parent: 0 - pos: 3.5,-24.5 + - parent: 15 + pos: 3.5,33.5 rot: -1.5707963267948966 rad type: Transform - uid: 1923 type: ReinforcedWindow components: - - parent: 0 - pos: 4.5,-24.5 + - parent: 15 + pos: 4.5,33.5 rot: -1.5707963267948966 rad type: Transform - uid: 1924 type: ReinforcedWindow components: - - parent: 0 - pos: 5.5,-24.5 + - parent: 15 + pos: 5.5,33.5 rot: -1.5707963267948966 rad type: Transform - uid: 1925 type: ReinforcedWindow components: - - parent: 0 - pos: 5.5,-23.5 + - parent: 15 + pos: 6.5,33.5 rot: -1.5707963267948966 rad type: Transform - uid: 1926 - type: Window + type: ReinforcedWindow components: - - parent: 0 - pos: 9.5,-21.5 + - parent: 15 + pos: 7.5,33.5 rot: -1.5707963267948966 rad type: Transform - uid: 1927 - type: Window + type: ReinforcedWindow components: - - parent: 0 - pos: 10.5,-21.5 + - parent: 15 + pos: 8.5,33.5 rot: -1.5707963267948966 rad type: Transform - uid: 1928 - type: Window + type: ReinforcedWindow components: - - parent: 0 - pos: 11.5,-21.5 + - parent: 15 + pos: 8.5,32.5 rot: -1.5707963267948966 rad type: Transform - uid: 1929 type: ReinforcedWindow components: - - parent: 0 - pos: 51.5,1.5 + - parent: 15 + pos: 9.5,31.5 rot: -1.5707963267948966 rad type: Transform - uid: 1930 + type: ReinforcedWindow + components: + - parent: 15 + pos: 9.5,32.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1931 + type: ReinforcedWindow + components: + - parent: 15 + pos: 10.5,29.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1932 + type: ReinforcedWindow + components: + - parent: 15 + pos: 3.5,22.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1933 + type: Window + components: + - parent: 15 + pos: -0.5,27.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1934 + type: Window + components: + - parent: 15 + pos: -1.5,27.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1935 + type: ReinforcedWindow + components: + - parent: 15 + pos: 2.5,-24.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1936 + type: ReinforcedWindow + components: + - parent: 15 + pos: 3.5,-24.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1937 + type: ReinforcedWindow + components: + - parent: 15 + pos: 4.5,-24.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1938 + type: ReinforcedWindow + components: + - parent: 15 + pos: 5.5,-24.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1939 + type: ReinforcedWindow + components: + - parent: 15 + pos: 5.5,-23.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1940 + type: Window + components: + - parent: 15 + pos: 9.5,-21.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1941 + type: Window + components: + - parent: 15 + pos: 10.5,-21.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1942 + type: Window + components: + - parent: 15 + pos: 11.5,-21.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1943 + type: ReinforcedWindow + components: + - parent: 15 + pos: 51.5,1.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 1944 type: Wire components: - - parent: 0 + - parent: 15 pos: 40.5,8.5 rot: -1.5707963267948966 rad type: Transform @@ -17839,10 +18030,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 1931 +- uid: 1945 type: Wire components: - - parent: 0 + - parent: 15 pos: 41.5,8.5 rot: -1.5707963267948966 rad type: Transform @@ -17852,10 +18043,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 1932 +- uid: 1946 type: Wire components: - - parent: 0 + - parent: 15 pos: 42.5,8.5 rot: -1.5707963267948966 rad type: Transform @@ -17865,10 +18056,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 1933 +- uid: 1947 type: Wire components: - - parent: 0 + - parent: 15 pos: 43.5,8.5 rot: -1.5707963267948966 rad type: Transform @@ -17878,10 +18069,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 1934 +- uid: 1948 type: Wire components: - - parent: 0 + - parent: 15 pos: 43.5,9.5 rot: -1.5707963267948966 rad type: Transform @@ -17891,10 +18082,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 1935 +- uid: 1949 type: Wire components: - - parent: 0 + - parent: 15 pos: 43.5,10.5 rot: -1.5707963267948966 rad type: Transform @@ -17904,10 +18095,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 1936 +- uid: 1950 type: APC components: - - parent: 0 + - parent: 15 pos: 43.5,10.5 rot: -1.5707963267948966 rad type: Transform @@ -17917,10 +18108,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 1937 +- uid: 1951 type: Wire components: - - parent: 0 + - parent: 15 pos: 41.5,4.5 rot: -1.5707963267948966 rad type: Transform @@ -17930,10 +18121,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 1938 +- uid: 1952 type: Wire components: - - parent: 0 + - parent: 15 pos: 41.5,3.5 rot: -1.5707963267948966 rad type: Transform @@ -17943,10 +18134,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 1939 +- uid: 1953 type: Wire components: - - parent: 0 + - parent: 15 pos: 41.5,2.5 rot: -1.5707963267948966 rad type: Transform @@ -17956,10 +18147,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 1940 +- uid: 1954 type: Wire components: - - parent: 0 + - parent: 15 pos: 41.5,1.5 rot: -1.5707963267948966 rad type: Transform @@ -17969,10 +18160,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 1941 +- uid: 1955 type: APC components: - - parent: 0 + - parent: 15 pos: 41.5,1.5 rot: -1.5707963267948966 rad type: Transform @@ -17982,173 +18173,26 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 1942 +- uid: 1956 type: WaterTankFull components: - - parent: 0 + - parent: 15 pos: -19.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1943 +- uid: 1957 type: WaterTankFull components: - - parent: 0 + - parent: 15 pos: 35.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1944 - type: Poweredlight - components: - - parent: 0 - pos: 42.5,10 - rot: -1.5707963267948966 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 1945 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 1945 - type: LightTube - components: - - parent: 1944 - type: Transform -- uid: 1946 - type: Poweredlight - components: - - parent: 0 - pos: 37,2.5 - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 1947 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 1947 - type: LightTube - components: - - parent: 1946 - type: Transform -- uid: 1948 - type: LightTube - components: - - parent: 1949 - type: Transform -- uid: 1949 - type: Poweredlight - components: - - parent: 0 - pos: 38.5,-2 - rot: 1.5707963267948966 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 1948 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 1950 - type: LightTube - components: - - parent: 1951 - type: Transform -- uid: 1951 - type: Poweredlight - components: - - parent: 0 - pos: 30.5,8 - rot: 1.5707963267948966 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 1950 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 1952 - type: LightBulb - components: - - parent: 1953 - type: Transform -- uid: 1953 - type: PoweredSmallLight - components: - - parent: 0 - pos: 38,12.5 - rot: 3.141592653589793 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - containers: - light_bulb: - entities: - - 1952 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 1954 - type: PoweredSmallLight - components: - - parent: 0 - pos: 44,12.5 - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 1955 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 1955 - type: LightBulb - components: - - parent: 1954 - type: Transform -- uid: 1956 - type: PoweredSmallLight - components: - - parent: 0 - pos: 44,-1.5 - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - containers: - light_bulb: - entities: - - 1957 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 1957 - type: LightBulb - components: - - parent: 1956 - type: Transform - uid: 1958 type: Poweredlight components: - - parent: 0 - pos: 36.5,8 - rot: 1.5707963267948966 rad + - parent: 15 + pos: 42.5,10 + rot: -1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -18168,12 +18212,13 @@ entities: - uid: 1960 type: Poweredlight components: - - parent: 0 - pos: 37,12.5 - rot: 3.141592653589793 rad + - parent: 15 + pos: 37,2.5 type: Transform - color: '#FFFFFFFF' type: PointLight + - powerLoad: 40 + type: PowerReceiver - containers: light_bulb: entities: @@ -18186,206 +18231,15 @@ entities: - parent: 1960 type: Transform - uid: 1962 - type: Poweredlight + type: LightTube components: - - parent: 0 - pos: 30,12.5 + - parent: 1963 type: Transform - - color: '#FFFFFFFF' - type: PointLight - - containers: - light_bulb: - entities: - - 1963 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer - uid: 1963 - type: LightTube - components: - - parent: 1962 - type: Transform -- uid: 1964 - type: Wire - components: - - parent: 0 - pos: 32.5,9.5 - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1965 - type: Wire - components: - - parent: 0 - pos: 31.5,9.5 - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1966 - type: Wire - components: - - parent: 0 - pos: 30.5,9.5 - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1967 - type: Wire - components: - - parent: 0 - pos: 29.5,9.5 - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1968 - type: APC - components: - - parent: 0 - pos: 29.5,9.5 - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1969 - type: Wire - components: - - parent: 0 - pos: 35.5,-1.5 - rot: 3.141592653589793 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1970 - type: Wire - components: - - parent: 0 - pos: 34.5,-1.5 - rot: 3.141592653589793 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1971 - type: Wire - components: - - parent: 0 - pos: 36.5,-1.5 - rot: 3.141592653589793 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1972 - type: APC - components: - - parent: 0 - pos: 36.5,-1.5 - rot: 3.141592653589793 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1973 type: Poweredlight components: - - parent: 0 - pos: 36,-2.5 - rot: 3.141592653589793 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 1974 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 1974 - type: LightTube - components: - - parent: 1973 - type: Transform -- uid: 1975 - type: Poweredlight - components: - - parent: 0 - pos: 29,-2.5 - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 1976 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 1976 - type: LightTube - components: - - parent: 1975 - type: Transform -- uid: 1977 - type: Poweredlight - components: - - parent: 0 - pos: 35.5,7 - rot: -1.5707963267948966 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 1978 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 1978 - type: LightTube - components: - - parent: 1977 - type: Transform -- uid: 1979 - type: Poweredlight - components: - - parent: 0 - pos: 31.5,2 + - parent: 15 + pos: 38.5,-2 rot: 1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' @@ -18395,19 +18249,20 @@ entities: - containers: light_bulb: entities: - - 1980 + - 1962 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 1980 +- uid: 1964 type: LightTube components: - - parent: 1979 + - parent: 1965 type: Transform -- uid: 1981 +- uid: 1965 type: Poweredlight components: - - parent: 0 - pos: 31,0.5 + - parent: 15 + pos: 30.5,8 + rot: 1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -18416,63 +18271,248 @@ entities: - containers: light_bulb: entities: - - 1982 + - 1964 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 1982 - type: LightTube +- uid: 1966 + type: LightBulb components: - - parent: 1981 + - parent: 1967 type: Transform -- uid: 1983 - type: Poweredlight +- uid: 1967 + type: PoweredSmallLight components: - - parent: 0 - pos: 28.5,7 - rot: -1.5707963267948966 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 1984 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 1984 - type: LightTube - components: - - parent: 1983 - type: Transform -- uid: 1985 - type: Poweredlight - components: - - parent: 0 - pos: 30,1.5 + - parent: 15 + pos: 38,12.5 rot: 3.141592653589793 rad type: Transform - color: '#FFFFFFFF' type: PointLight + - containers: + light_bulb: + entities: + - 1966 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1968 + type: PoweredSmallLight + components: + - parent: 15 + pos: 44,12.5 + type: Transform + - color: '#FFFFFFFF' + type: PointLight - powerLoad: 40 type: PowerReceiver - containers: light_bulb: entities: - - 1986 + - 1969 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 1986 +- uid: 1969 + type: LightBulb + components: + - parent: 1968 + type: Transform +- uid: 1970 + type: PoweredSmallLight + components: + - parent: 15 + pos: 44,-1.5 + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - containers: + light_bulb: + entities: + - 1971 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1971 + type: LightBulb + components: + - parent: 1970 + type: Transform +- uid: 1972 + type: Poweredlight + components: + - parent: 15 + pos: 36.5,8 + rot: 1.5707963267948966 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 1973 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1973 type: LightTube components: - - parent: 1985 + - parent: 1972 type: Transform +- uid: 1974 + type: Poweredlight + components: + - parent: 15 + pos: 37,12.5 + rot: 3.141592653589793 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - containers: + light_bulb: + entities: + - 1975 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1975 + type: LightTube + components: + - parent: 1974 + type: Transform +- uid: 1976 + type: Poweredlight + components: + - parent: 15 + pos: 30,12.5 + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - containers: + light_bulb: + entities: + - 1977 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1977 + type: LightTube + components: + - parent: 1976 + type: Transform +- uid: 1978 + type: Wire + components: + - parent: 15 + pos: 32.5,9.5 + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 1979 + type: Wire + components: + - parent: 15 + pos: 31.5,9.5 + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 1980 + type: Wire + components: + - parent: 15 + pos: 30.5,9.5 + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 1981 + type: Wire + components: + - parent: 15 + pos: 29.5,9.5 + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 1982 + type: APC + components: + - parent: 15 + pos: 29.5,9.5 + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 1983 + type: Wire + components: + - parent: 15 + pos: 35.5,-1.5 + rot: 3.141592653589793 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 1984 + type: Wire + components: + - parent: 15 + pos: 34.5,-1.5 + rot: 3.141592653589793 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 1985 + type: Wire + components: + - parent: 15 + pos: 36.5,-1.5 + rot: 3.141592653589793 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 1986 + type: APC + components: + - parent: 15 + pos: 36.5,-1.5 + rot: 3.141592653589793 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 1987 type: Poweredlight components: - - parent: 0 - pos: 25,1.5 + - parent: 15 + pos: 36,-2.5 + rot: 3.141592653589793 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -18490,89 +18530,75 @@ entities: - parent: 1987 type: Transform - uid: 1989 - type: Wire + type: Poweredlight components: - - parent: 0 - pos: 27.5,3.5 - rot: -1.5707963267948966 rad + - parent: 15 + pos: 29,-2.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 1990 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer - uid: 1990 - type: Wire + type: LightTube components: - - parent: 0 - pos: 27.5,2.5 - rot: -1.5707963267948966 rad + - parent: 1989 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 1991 - type: Wire + type: Poweredlight components: - - parent: 0 - pos: 27.5,1.5 + - parent: 15 + pos: 35.5,7 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 1992 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer - uid: 1992 - type: Wire + type: LightTube components: - - parent: 0 - pos: 27.5,0.5 - rot: -1.5707963267948966 rad + - parent: 1991 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 1993 - type: Wire + type: Poweredlight components: - - parent: 0 - pos: 27.5,-0.5 - rot: -1.5707963267948966 rad + - parent: 15 + pos: 31.5,2 + rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 1994 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer - uid: 1994 - type: APC + type: LightTube components: - - parent: 0 - pos: 27.5,-0.5 - rot: -1.5707963267948966 rad + - parent: 1993 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 1995 - type: PoweredSmallLight + type: Poweredlight components: - - parent: 0 - pos: 26,11.5 - rot: 3.141592653589793 rad + - parent: 15 + pos: 31,0.5 type: Transform - color: '#FFFFFFFF' type: PointLight @@ -18585,16 +18611,16 @@ entities: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 1996 - type: LightBulb + type: LightTube components: - parent: 1995 type: Transform - uid: 1997 - type: PoweredSmallLight + type: Poweredlight components: - - parent: 0 - pos: 38.5,-3 - rot: 1.5707963267948966 rad + - parent: 15 + pos: 28.5,7 + rot: -1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -18607,16 +18633,16 @@ entities: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 1998 - type: LightBulb + type: LightTube components: - parent: 1997 type: Transform - uid: 1999 - type: PoweredSmallLight + type: Poweredlight components: - - parent: 0 - pos: 35.5,-6 - rot: 1.5707963267948966 rad + - parent: 15 + pos: 30,1.5 + rot: 3.141592653589793 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -18629,16 +18655,15 @@ entities: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 2000 - type: LightBulb + type: LightTube components: - parent: 1999 type: Transform - uid: 2001 - type: PoweredSmallLight + type: Poweredlight components: - - parent: 0 - pos: 26,-4.5 - rot: 3.141592653589793 rad + - parent: 15 + pos: 25,1.5 type: Transform - color: '#FFFFFFFF' type: PointLight @@ -18651,79 +18676,94 @@ entities: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 2002 - type: LightBulb + type: LightTube components: - parent: 2001 type: Transform - uid: 2003 - type: PoweredSmallLight + type: Wire components: - - parent: 0 - pos: 24,0.5 + - parent: 15 + pos: 27.5,3.5 + rot: -1.5707963267948966 rad type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2004 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 2004 - type: LightBulb + type: Wire components: - - parent: 2003 + - parent: 15 + pos: 27.5,2.5 + rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 2005 - type: PoweredSmallLight + type: Wire components: - - parent: 0 - pos: 28,-10.5 + - parent: 15 + pos: 27.5,1.5 + rot: -1.5707963267948966 rad type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2006 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 2006 - type: LightBulb + type: Wire components: - - parent: 2005 + - parent: 15 + pos: 27.5,0.5 + rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 2007 - type: PoweredSmallLight + type: Wire components: - - parent: 0 - pos: 28,-15.5 + - parent: 15 + pos: 27.5,-0.5 + rot: -1.5707963267948966 rad type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2008 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 2008 - type: LightBulb + type: APC components: - - parent: 2007 + - parent: 15 + pos: 27.5,-0.5 + rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 2009 type: PoweredSmallLight components: - - parent: 0 - pos: 25.5,-19 - rot: -1.5707963267948966 rad + - parent: 15 + pos: 26,11.5 + rot: 3.141592653589793 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -18741,23 +18781,174 @@ entities: - parent: 2009 type: Transform - uid: 2011 - type: solid_wall + type: PoweredSmallLight components: - - parent: 0 - pos: 45.5,7.5 - rot: -1.5707963267948966 rad + - parent: 15 + pos: 38.5,-3 + rot: 1.5707963267948966 rad type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2012 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer - uid: 2012 - type: solid_wall + type: LightBulb components: - - parent: 0 - pos: 45.5,6.5 - rot: -1.5707963267948966 rad + - parent: 2011 type: Transform - uid: 2013 type: PoweredSmallLight components: - - parent: 0 + - parent: 15 + pos: 35.5,-6 + rot: 1.5707963267948966 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2014 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2014 + type: LightBulb + components: + - parent: 2013 + type: Transform +- uid: 2015 + type: PoweredSmallLight + components: + - parent: 15 + pos: 26,-4.5 + rot: 3.141592653589793 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2016 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2016 + type: LightBulb + components: + - parent: 2015 + type: Transform +- uid: 2017 + type: PoweredSmallLight + components: + - parent: 15 + pos: 24,0.5 + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2018 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2018 + type: LightBulb + components: + - parent: 2017 + type: Transform +- uid: 2019 + type: PoweredSmallLight + components: + - parent: 15 + pos: 28,-10.5 + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2020 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2020 + type: LightBulb + components: + - parent: 2019 + type: Transform +- uid: 2021 + type: PoweredSmallLight + components: + - parent: 15 + pos: 28,-15.5 + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2022 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2022 + type: LightBulb + components: + - parent: 2021 + type: Transform +- uid: 2023 + type: PoweredSmallLight + components: + - parent: 15 + pos: 25.5,-19 + rot: -1.5707963267948966 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2024 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2024 + type: LightBulb + components: + - parent: 2023 + type: Transform +- uid: 2025 + type: solid_wall + components: + - parent: 15 + pos: 45.5,7.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2026 + type: solid_wall + components: + - parent: 15 + pos: 45.5,6.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2027 + type: PoweredSmallLight + components: + - parent: 15 pos: 12.5,-19 rot: 1.5707963267948966 rad type: Transform @@ -18768,13 +18959,13 @@ entities: - containers: light_bulb: entities: - - 1361 + - 1376 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2014 +- uid: 2028 type: APC components: - - parent: 0 + - parent: 15 pos: 20.5,-4.5 rot: 1.5707963267948966 rad type: Transform @@ -18784,10 +18975,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2015 +- uid: 2029 type: Wire components: - - parent: 0 + - parent: 15 pos: 23.5,-12.5 rot: 1.5707963267948966 rad type: Transform @@ -18797,10 +18988,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2016 +- uid: 2030 type: Wire components: - - parent: 0 + - parent: 15 pos: 23.5,-11.5 rot: 1.5707963267948966 rad type: Transform @@ -18810,10 +19001,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2017 +- uid: 2031 type: APC components: - - parent: 0 + - parent: 15 pos: 23.5,-11.5 rot: 1.5707963267948966 rad type: Transform @@ -18823,10 +19014,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2018 +- uid: 2032 type: Wire components: - - parent: 0 + - parent: 15 pos: 15.5,-16.5 rot: 1.5707963267948966 rad type: Transform @@ -18836,10 +19027,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2019 +- uid: 2033 type: Wire components: - - parent: 0 + - parent: 15 pos: 16.5,-16.5 rot: 1.5707963267948966 rad type: Transform @@ -18849,10 +19040,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2020 +- uid: 2034 type: Wire components: - - parent: 0 + - parent: 15 pos: 16.5,-17.5 rot: 1.5707963267948966 rad type: Transform @@ -18862,10 +19053,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2021 +- uid: 2035 type: Wire components: - - parent: 0 + - parent: 15 pos: 16.5,-18.5 rot: 1.5707963267948966 rad type: Transform @@ -18875,10 +19066,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2022 +- uid: 2036 type: APC components: - - parent: 0 + - parent: 15 pos: 16.5,-18.5 rot: 1.5707963267948966 rad type: Transform @@ -18888,10 +19079,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2023 +- uid: 2037 type: Wire components: - - parent: 0 + - parent: 15 pos: 8.5,-15.5 rot: 1.5707963267948966 rad type: Transform @@ -18901,10 +19092,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2024 +- uid: 2038 type: Wire components: - - parent: 0 + - parent: 15 pos: 8.5,-17.5 rot: 1.5707963267948966 rad type: Transform @@ -18914,10 +19105,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2025 +- uid: 2039 type: Wire components: - - parent: 0 + - parent: 15 pos: 8.5,-16.5 rot: 1.5707963267948966 rad type: Transform @@ -18927,10 +19118,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2026 +- uid: 2040 type: APC components: - - parent: 0 + - parent: 15 pos: 8.5,-17.5 rot: 1.5707963267948966 rad type: Transform @@ -18940,15 +19131,15 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2027 +- uid: 2041 type: LightBulb components: - - parent: 2028 + - parent: 2042 type: Transform -- uid: 2028 +- uid: 2042 type: PoweredSmallLight components: - - parent: 0 + - parent: 15 pos: 9.5,-18 rot: 1.5707963267948966 rad type: Transform @@ -18959,13 +19150,13 @@ entities: - containers: light_bulb: entities: - - 2027 + - 2041 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2029 +- uid: 2043 type: PoweredSmallLight components: - - parent: 0 + - parent: 15 pos: 25.5,-1 rot: 1.5707963267948966 rad type: Transform @@ -18976,18 +19167,18 @@ entities: - containers: light_bulb: entities: - - 2030 + - 2044 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2030 +- uid: 2044 type: LightBulb components: - - parent: 2029 + - parent: 2043 type: Transform -- uid: 2031 +- uid: 2045 type: PoweredSmallLight components: - - parent: 0 + - parent: 15 pos: 30.5,-6 rot: 1.5707963267948966 rad type: Transform @@ -18998,155 +19189,20 @@ entities: - containers: light_bulb: entities: - - 2032 + - 2046 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2032 +- uid: 2046 type: LightBulb components: - - parent: 2031 - type: Transform -- uid: 2033 - type: Poweredlight - components: - - parent: 0 - pos: 25,11.5 - rot: 3.141592653589793 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2034 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2034 - type: LightTube - components: - - parent: 2033 - type: Transform -- uid: 2035 - type: LightTube - components: - - parent: 2036 - type: Transform -- uid: 2036 - type: Poweredlight - components: - - parent: 0 - pos: 13.5,-7 - rot: -1.5707963267948966 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - containers: - light_bulb: - entities: - - 2035 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2037 - type: Poweredlight - components: - - parent: 0 - pos: 20,-8.5 - rot: 3.141592653589793 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2038 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2038 - type: LightTube - components: - - parent: 2037 - type: Transform -- uid: 2039 - type: Poweredlight - components: - - parent: 0 - pos: 19,-0.5 - rot: 3.141592653589793 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2040 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2040 - type: LightTube - components: - - parent: 2039 - type: Transform -- uid: 2041 - type: Poweredlight - components: - - parent: 0 - pos: 15.5,2 - rot: -1.5707963267948966 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2042 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2042 - type: LightTube - components: - - parent: 2041 - type: Transform -- uid: 2043 - type: ChairOfficeLight - components: - - parent: 0 - pos: 14.5,0.5 - rot: 3.141592653589793 rad - type: Transform -- uid: 2044 - type: ChairOfficeLight - components: - - parent: 0 - pos: 10.5,-16.5 - rot: 3.141592653589793 rad - type: Transform -- uid: 2045 - type: solid_wall - components: - - parent: 0 - pos: 47.5,5.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2046 - type: solid_wall - components: - - parent: 0 - pos: 51.5,-0.5 - rot: -1.5707963267948966 rad + - parent: 2045 type: Transform - uid: 2047 type: Poweredlight components: - - parent: 0 - pos: 12,-12.5 + - parent: 15 + pos: 25,11.5 + rot: 3.141592653589793 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -19164,33 +19220,31 @@ entities: - parent: 2047 type: Transform - uid: 2049 + type: LightTube + components: + - parent: 2050 + type: Transform +- uid: 2050 type: Poweredlight components: - - parent: 0 - pos: 9.5,-17 - rot: 1.5707963267948966 rad + - parent: 15 + pos: 13.5,-7 + rot: -1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' type: PointLight - - powerLoad: 40 - type: PowerReceiver - containers: light_bulb: entities: - - 2050 + - 2049 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2050 - type: LightTube - components: - - parent: 2049 - type: Transform - uid: 2051 type: Poweredlight components: - - parent: 0 - pos: 6.5,-12 - rot: 1.5707963267948966 rad + - parent: 15 + pos: 20,-8.5 + rot: 3.141592653589793 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -19210,8 +19264,9 @@ entities: - uid: 2053 type: Poweredlight components: - - parent: 0 - pos: 6,-4.5 + - parent: 15 + pos: 19,-0.5 + rot: 3.141592653589793 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -19229,92 +19284,60 @@ entities: - parent: 2053 type: Transform - uid: 2055 - type: Wire + type: Poweredlight components: - - parent: 0 - pos: 6.5,-1.5 + - parent: 15 + pos: 15.5,2 + rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2056 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer - uid: 2056 - type: Wire + type: LightTube components: - - parent: 0 - pos: 6.5,-2.5 + - parent: 2055 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2057 - type: Wire + type: ChairOfficeLight components: - - parent: 0 - pos: 6.5,-3.5 + - parent: 15 + pos: 14.5,0.5 + rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2058 - type: Wire + type: ChairOfficeLight components: - - parent: 0 - pos: 5.5,-3.5 + - parent: 15 + pos: 10.5,-16.5 + rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2059 - type: APC + type: solid_wall components: - - parent: 0 - pos: 5.5,-3.5 + - parent: 15 + pos: 47.5,5.5 + rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2060 - type: Poweredlight + type: solid_wall components: - - parent: 0 - pos: 6,1.5 + - parent: 15 + pos: 51.5,-0.5 + rot: -1.5707963267948966 rad type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2061 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer - uid: 2061 - type: LightTube - components: - - parent: 2060 - type: Transform -- uid: 2062 type: Poweredlight components: - - parent: 0 - pos: 12.5,2 - rot: -1.5707963267948966 rad + - parent: 15 + pos: 12,-12.5 type: Transform - color: '#FFFFFFFF' type: PointLight @@ -19323,59 +19346,63 @@ entities: - containers: light_bulb: entities: - - 2063 + - 2062 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2063 +- uid: 2062 type: LightTube components: - - parent: 2062 + - parent: 2061 type: Transform +- uid: 2063 + type: Poweredlight + components: + - parent: 15 + pos: 9.5,-17 + rot: 1.5707963267948966 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2064 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer - uid: 2064 - type: Wire + type: LightTube components: - - parent: 0 - pos: 17.5,1.5 - rot: -1.5707963267948966 rad + - parent: 2063 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2065 - type: Wire + type: Poweredlight components: - - parent: 0 - pos: 17.5,2.5 - rot: -1.5707963267948966 rad + - parent: 15 + pos: 6.5,-12 + rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2066 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer - uid: 2066 - type: APC + type: LightTube components: - - parent: 0 - pos: 17.5,2.5 - rot: -1.5707963267948966 rad + - parent: 2065 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2067 type: Poweredlight components: - - parent: 0 - pos: 13,-3.5 - rot: 3.141592653589793 rad + - parent: 15 + pos: 6,-4.5 type: Transform - color: '#FFFFFFFF' type: PointLight @@ -19393,9 +19420,173 @@ entities: - parent: 2067 type: Transform - uid: 2069 + type: Wire + components: + - parent: 15 + pos: 6.5,-1.5 + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2070 + type: Wire + components: + - parent: 15 + pos: 6.5,-2.5 + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2071 + type: Wire + components: + - parent: 15 + pos: 6.5,-3.5 + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2072 + type: Wire + components: + - parent: 15 + pos: 5.5,-3.5 + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2073 + type: APC + components: + - parent: 15 + pos: 5.5,-3.5 + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2074 type: Poweredlight components: - - parent: 0 + - parent: 15 + pos: 6,1.5 + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2075 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2075 + type: LightTube + components: + - parent: 2074 + type: Transform +- uid: 2076 + type: Poweredlight + components: + - parent: 15 + pos: 12.5,2 + rot: -1.5707963267948966 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2077 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2077 + type: LightTube + components: + - parent: 2076 + type: Transform +- uid: 2078 + type: Wire + components: + - parent: 15 + pos: 17.5,1.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2079 + type: Wire + components: + - parent: 15 + pos: 17.5,2.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2080 + type: APC + components: + - parent: 15 + pos: 17.5,2.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2081 + type: Poweredlight + components: + - parent: 15 + pos: 13,-3.5 + rot: 3.141592653589793 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2082 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2082 + type: LightTube + components: + - parent: 2081 + type: Transform +- uid: 2083 + type: Poweredlight + components: + - parent: 15 pos: 14.5,-4 rot: -1.5707963267948966 rad type: Transform @@ -19404,23 +19595,23 @@ entities: - containers: light_bulb: entities: - - 2070 + - 2084 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2070 +- uid: 2084 type: LightTube components: - - parent: 2069 + - parent: 2083 type: Transform -- uid: 2071 +- uid: 2085 type: LightTube components: - - parent: 2072 + - parent: 2086 type: Transform -- uid: 2072 +- uid: 2086 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: 1,-17.5 type: Transform - color: '#FFFFFFFF' @@ -19430,13 +19621,13 @@ entities: - containers: light_bulb: entities: - - 2071 + - 2085 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2073 +- uid: 2087 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: 6,-17.5 rot: 3.141592653589793 rad type: Transform @@ -19447,18 +19638,18 @@ entities: - containers: light_bulb: entities: - - 2074 + - 2088 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2074 +- uid: 2088 type: LightTube components: - - parent: 2073 + - parent: 2087 type: Transform -- uid: 2075 +- uid: 2089 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: 1.5,-22 rot: 1.5707963267948966 rad type: Transform @@ -19469,18 +19660,18 @@ entities: - containers: light_bulb: entities: - - 2076 + - 2090 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2076 +- uid: 2090 type: LightTube components: - - parent: 2075 + - parent: 2089 type: Transform -- uid: 2077 +- uid: 2091 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: 5.5,-22 rot: 1.5707963267948966 rad type: Transform @@ -19491,18 +19682,18 @@ entities: - containers: light_bulb: entities: - - 2078 + - 2092 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2078 +- uid: 2092 type: LightTube components: - - parent: 2077 + - parent: 2091 type: Transform -- uid: 2079 +- uid: 2093 type: Wire components: - - parent: 0 + - parent: 15 pos: 14.5,11.5 rot: 1.5707963267948966 rad type: Transform @@ -19512,10 +19703,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2080 +- uid: 2094 type: Wire components: - - parent: 0 + - parent: 15 pos: 14.5,12.5 rot: 1.5707963267948966 rad type: Transform @@ -19525,10 +19716,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2081 +- uid: 2095 type: Wire components: - - parent: 0 + - parent: 15 pos: 14.5,13.5 rot: 1.5707963267948966 rad type: Transform @@ -19538,10 +19729,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2082 +- uid: 2096 type: APC components: - - parent: 0 + - parent: 15 pos: 14.5,13.5 rot: 1.5707963267948966 rad type: Transform @@ -19551,10 +19742,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2083 +- uid: 2097 type: Wire components: - - parent: 0 + - parent: 15 pos: 8.5,10.5 rot: 1.5707963267948966 rad type: Transform @@ -19564,10 +19755,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2084 +- uid: 2098 type: Wire components: - - parent: 0 + - parent: 15 pos: 7.5,10.5 rot: 1.5707963267948966 rad type: Transform @@ -19577,10 +19768,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2085 +- uid: 2099 type: Wire components: - - parent: 0 + - parent: 15 pos: 6.5,10.5 rot: 1.5707963267948966 rad type: Transform @@ -19590,10 +19781,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2086 +- uid: 2100 type: Wire components: - - parent: 0 + - parent: 15 pos: 5.5,10.5 rot: 1.5707963267948966 rad type: Transform @@ -19603,10 +19794,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2087 +- uid: 2101 type: APC components: - - parent: 0 + - parent: 15 pos: 5.5,10.5 rot: 1.5707963267948966 rad type: Transform @@ -19616,15 +19807,15 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2088 +- uid: 2102 type: LightTube components: - - parent: 2089 + - parent: 2103 type: Transform -- uid: 2089 +- uid: 2103 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: 18,13.5 type: Transform - color: '#FFFFFFFF' @@ -19632,13 +19823,13 @@ entities: - containers: light_bulb: entities: - - 2088 + - 2102 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2090 +- uid: 2104 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: 18,8.5 type: Transform - color: '#FFFFFFFF' @@ -19648,170 +19839,20 @@ entities: - containers: light_bulb: entities: - - 2091 + - 2105 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2091 - type: LightTube - components: - - parent: 2090 - type: Transform -- uid: 2092 - type: Poweredlight - components: - - parent: 0 - pos: 15.5,13 - rot: -1.5707963267948966 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2093 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2093 - type: LightTube - components: - - parent: 2092 - type: Transform -- uid: 2094 - type: Poweredlight - components: - - parent: 0 - pos: 12,10.5 - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2095 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2095 - type: LightTube - components: - - parent: 2094 - type: Transform -- uid: 2096 - type: Poweredlight - components: - - parent: 0 - pos: 17,7.5 - rot: 3.141592653589793 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - containers: - light_bulb: - entities: - - 2097 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2097 - type: LightTube - components: - - parent: 2096 - type: Transform -- uid: 2098 - type: LightTube - components: - - parent: 2099 - type: Transform -- uid: 2099 - type: Poweredlight - components: - - parent: 0 - pos: 23.5,3 - rot: 1.5707963267948966 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2098 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2100 - type: Poweredlight - components: - - parent: 0 - pos: 18.5,3 - rot: 1.5707963267948966 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2101 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2101 - type: LightTube - components: - - parent: 2100 - type: Transform -- uid: 2102 - type: Poweredlight - components: - - parent: 0 - pos: 13.5,3 - rot: 1.5707963267948966 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2103 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2103 - type: LightTube - components: - - parent: 2102 - type: Transform -- uid: 2104 - type: LightTube - components: - - parent: 2105 - type: Transform - uid: 2105 - type: Poweredlight + type: LightTube components: - - parent: 0 - pos: 11,9.5 - rot: 3.141592653589793 rad + - parent: 2104 type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2104 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer - uid: 2106 type: Poweredlight components: - - parent: 0 - pos: 6,9.5 + - parent: 15 + pos: 15.5,13 + rot: -1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -19829,11 +19870,10 @@ entities: - parent: 2106 type: Transform - uid: 2108 - type: PoweredSmallLight + type: Poweredlight components: - - parent: 0 - pos: 8.5,15 - rot: 1.5707963267948966 rad + - parent: 15 + pos: 12,10.5 type: Transform - color: '#FFFFFFFF' type: PointLight @@ -19846,14 +19886,165 @@ entities: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 2109 - type: LightBulb + type: LightTube components: - parent: 2108 type: Transform - uid: 2110 + type: Poweredlight + components: + - parent: 15 + pos: 17,7.5 + rot: 3.141592653589793 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - containers: + light_bulb: + entities: + - 2111 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2111 + type: LightTube + components: + - parent: 2110 + type: Transform +- uid: 2112 + type: LightTube + components: + - parent: 2113 + type: Transform +- uid: 2113 + type: Poweredlight + components: + - parent: 15 + pos: 23.5,3 + rot: 1.5707963267948966 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2112 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2114 + type: Poweredlight + components: + - parent: 15 + pos: 18.5,3 + rot: 1.5707963267948966 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2115 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2115 + type: LightTube + components: + - parent: 2114 + type: Transform +- uid: 2116 + type: Poweredlight + components: + - parent: 15 + pos: 13.5,3 + rot: 1.5707963267948966 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2117 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2117 + type: LightTube + components: + - parent: 2116 + type: Transform +- uid: 2118 + type: LightTube + components: + - parent: 2119 + type: Transform +- uid: 2119 + type: Poweredlight + components: + - parent: 15 + pos: 11,9.5 + rot: 3.141592653589793 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2118 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2120 + type: Poweredlight + components: + - parent: 15 + pos: 6,9.5 + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2121 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2121 + type: LightTube + components: + - parent: 2120 + type: Transform +- uid: 2122 type: PoweredSmallLight components: - - parent: 0 + - parent: 15 + pos: 8.5,15 + rot: 1.5707963267948966 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2123 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2123 + type: LightBulb + components: + - parent: 2122 + type: Transform +- uid: 2124 + type: PoweredSmallLight + components: + - parent: 15 pos: 14,16.5 type: Transform - color: '#FFFFFFFF' @@ -19863,18 +20054,18 @@ entities: - containers: light_bulb: entities: - - 2111 + - 2125 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2111 +- uid: 2125 type: LightBulb components: - - parent: 2110 + - parent: 2124 type: Transform -- uid: 2112 +- uid: 2126 type: PoweredSmallLight components: - - parent: 0 + - parent: 15 pos: 17,15.5 type: Transform - color: '#FFFFFFFF' @@ -19882,186 +20073,19 @@ entities: - containers: light_bulb: entities: - - 2113 + - 2127 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2113 +- uid: 2127 type: LightBulb components: - - parent: 2112 + - parent: 2126 type: Transform -- uid: 2114 - type: Wire - components: - - parent: 0 - pos: 9.5,20.5 - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2115 - type: Wire - components: - - parent: 0 - pos: 8.5,20.5 - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2116 - type: Wire - components: - - parent: 0 - pos: 8.5,19.5 - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2117 - type: Wire - components: - - parent: 0 - pos: 8.5,18.5 - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2118 - type: solid_wall - components: - - parent: 0 - pos: 7.5,15.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2119 - type: solid_wall - components: - - parent: 0 - pos: 8.5,15.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2120 - type: Wire - components: - - parent: 0 - pos: 9.5,16.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2121 - type: Wire - components: - - parent: 0 - pos: 9.5,15.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2122 - type: APC - components: - - parent: 0 - pos: 9.5,15.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2123 - type: Wire - components: - - parent: 0 - pos: -2.5,19.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2124 - type: Wire - components: - - parent: 0 - pos: -2.5,18.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2125 - type: Wire - components: - - parent: 0 - pos: -2.5,17.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2126 - type: Wire - components: - - parent: 0 - pos: -0.5,17.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2127 - type: APC - components: - - parent: 0 - pos: -2.5,19.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2128 type: Wire components: - - parent: 0 - pos: 7.5,26.5 - rot: -1.5707963267948966 rad + - parent: 15 + pos: 9.5,20.5 type: Transform - nodeTypes: HVPower: @@ -20072,7 +20096,174 @@ entities: - uid: 2129 type: Wire components: - - parent: 0 + - parent: 15 + pos: 8.5,20.5 + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2130 + type: Wire + components: + - parent: 15 + pos: 8.5,19.5 + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2131 + type: Wire + components: + - parent: 15 + pos: 8.5,18.5 + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2132 + type: solid_wall + components: + - parent: 15 + pos: 7.5,15.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2133 + type: solid_wall + components: + - parent: 15 + pos: 8.5,15.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2134 + type: Wire + components: + - parent: 15 + pos: 9.5,16.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2135 + type: Wire + components: + - parent: 15 + pos: 9.5,15.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2136 + type: APC + components: + - parent: 15 + pos: 9.5,15.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2137 + type: Wire + components: + - parent: 15 + pos: -2.5,19.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2138 + type: Wire + components: + - parent: 15 + pos: -2.5,18.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2139 + type: Wire + components: + - parent: 15 + pos: -2.5,17.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2140 + type: Wire + components: + - parent: 15 + pos: -0.5,17.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2141 + type: APC + components: + - parent: 15 + pos: -2.5,19.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2142 + type: Wire + components: + - parent: 15 + pos: 7.5,26.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2143 + type: Wire + components: + - parent: 15 pos: 7.5,27.5 rot: -1.5707963267948966 rad type: Transform @@ -20082,15 +20273,15 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2130 +- uid: 2144 type: LightTube components: - - parent: 2131 + - parent: 2145 type: Transform -- uid: 2131 +- uid: 2145 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: 8.5,22 rot: -1.5707963267948966 rad type: Transform @@ -20101,167 +20292,14 @@ entities: - containers: light_bulb: entities: - - 2130 + - 2144 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2132 - type: Poweredlight - components: - - parent: 0 - pos: 8.5,16 - rot: 1.5707963267948966 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2133 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2133 - type: LightTube - components: - - parent: 2132 - type: Transform -- uid: 2134 - type: Poweredlight - components: - - parent: 0 - pos: 1.5,16 - rot: 1.5707963267948966 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2135 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2135 - type: LightTube - components: - - parent: 2134 - type: Transform -- uid: 2136 - type: Poweredlight - components: - - parent: 0 - pos: 5.5,16 - rot: 1.5707963267948966 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2137 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2137 - type: LightTube - components: - - parent: 2136 - type: Transform -- uid: 2138 - type: Poweredlight - components: - - parent: 0 - pos: 2,23.5 - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2139 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2139 - type: LightTube - components: - - parent: 2138 - type: Transform -- uid: 2140 - type: Poweredlight - components: - - parent: 0 - pos: 5,23.5 - rot: 3.141592653589793 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2141 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2141 - type: LightTube - components: - - parent: 2140 - type: Transform -- uid: 2142 - type: Poweredlight - components: - - parent: 0 - pos: 10,25.5 - rot: 3.141592653589793 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2143 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2143 - type: LightTube - components: - - parent: 2142 - type: Transform -- uid: 2144 - type: Poweredlight - components: - - parent: 0 - pos: 1.5,28 - rot: 1.5707963267948966 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2145 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2145 - type: LightTube - components: - - parent: 2144 - type: Transform - uid: 2146 type: Poweredlight components: - - parent: 0 - pos: 5.5,28 + - parent: 15 + pos: 8.5,16 rot: 1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' @@ -20282,11 +20320,14 @@ entities: - uid: 2148 type: Poweredlight components: - - parent: 0 - pos: -3,30.5 + - parent: 15 + pos: 1.5,16 + rot: 1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' type: PointLight + - powerLoad: 40 + type: PowerReceiver - containers: light_bulb: entities: @@ -20301,12 +20342,14 @@ entities: - uid: 2150 type: Poweredlight components: - - parent: 0 - pos: 10,30.5 - rot: 3.141592653589793 rad + - parent: 15 + pos: 5.5,16 + rot: 1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' type: PointLight + - powerLoad: 40 + type: PowerReceiver - containers: light_bulb: entities: @@ -20319,15 +20362,10 @@ entities: - parent: 2150 type: Transform - uid: 2152 - type: LightTube - components: - - parent: 2153 - type: Transform -- uid: 2153 type: Poweredlight components: - - parent: 0 - pos: -3,25.5 + - parent: 15 + pos: 2,23.5 type: Transform - color: '#FFFFFFFF' type: PointLight @@ -20336,14 +20374,19 @@ entities: - containers: light_bulb: entities: - - 2152 + - 2153 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2154 - type: PoweredSmallLight +- uid: 2153 + type: LightTube components: - - parent: 0 - pos: -4,17.5 + - parent: 2152 + type: Transform +- uid: 2154 + type: Poweredlight + components: + - parent: 15 + pos: 5,23.5 rot: 3.141592653589793 rad type: Transform - color: '#FFFFFFFF' @@ -20357,30 +20400,37 @@ entities: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 2155 - type: LightBulb + type: LightTube components: - parent: 2154 type: Transform - uid: 2156 - type: BreathMaskClothing + type: Poweredlight components: - - parent: 2795 + - parent: 15 + pos: 10,25.5 + rot: 3.141592653589793 rad type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2157 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer - uid: 2157 - type: AirlockMaintCommonLocked + type: LightTube components: - - parent: 0 - pos: 1.5,-23.5 - rot: -1.5707963267948966 rad + - parent: 2156 type: Transform - - SerialNumber: WMQV-1038 - WireSeed: 1721536160 - type: Wires - uid: 2158 - type: PoweredSmallLight + type: Poweredlight components: - - parent: 0 - pos: -7.5,26 + - parent: 15 + pos: 1.5,28 rot: 1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' @@ -20394,82 +20444,16 @@ entities: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 2159 - type: LightBulb + type: LightTube components: - parent: 2158 type: Transform - uid: 2160 - type: Wire - components: - - parent: 0 - pos: -9.5,20.5 - rot: 1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2161 - type: Wire - components: - - parent: 0 - pos: -10.5,20.5 - rot: 1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2162 - type: Wire - components: - - parent: 0 - pos: -10.5,21.5 - rot: 1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2163 - type: reinforced_wall - components: - - parent: 0 - pos: -10.5,21.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2164 - type: reinforced_wall - components: - - parent: 0 - pos: -10.5,22.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2165 - type: APC - components: - - parent: 0 - pos: -10.5,21.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2166 type: Poweredlight components: - - parent: 0 - pos: -7.5,22 - rot: -1.5707963267948966 rad + - parent: 15 + pos: 5.5,28 + rot: 1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -20478,22 +20462,85 @@ entities: - containers: light_bulb: entities: - - 2167 + - 2161 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2167 +- uid: 2161 type: LightTube components: - - parent: 2166 + - parent: 2160 type: Transform -- uid: 2168 +- uid: 2162 type: Poweredlight components: - - parent: 0 - pos: -15,20.5 + - parent: 15 + pos: -3,30.5 type: Transform - color: '#FFFFFFFF' type: PointLight + - containers: + light_bulb: + entities: + - 2163 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2163 + type: LightTube + components: + - parent: 2162 + type: Transform +- uid: 2164 + type: Poweredlight + components: + - parent: 15 + pos: 10,30.5 + rot: 3.141592653589793 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - containers: + light_bulb: + entities: + - 2165 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2165 + type: LightTube + components: + - parent: 2164 + type: Transform +- uid: 2166 + type: LightTube + components: + - parent: 2167 + type: Transform +- uid: 2167 + type: Poweredlight + components: + - parent: 15 + pos: -3,25.5 + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2166 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2168 + type: PoweredSmallLight + components: + - parent: 15 + pos: -4,17.5 + rot: 3.141592653589793 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver - containers: light_bulb: entities: @@ -20501,38 +20548,31 @@ entities: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 2169 - type: LightTube + type: LightBulb components: - parent: 2168 type: Transform - uid: 2170 - type: Poweredlight + type: BreathMaskClothing components: - - parent: 0 - pos: -12.5,13 - rot: 1.5707963267948966 rad + - parent: 2807 type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2171 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer - uid: 2171 - type: LightTube + type: AirlockMaintCommonLocked components: - - parent: 2170 + - parent: 15 + pos: 1.5,-23.5 + rot: -1.5707963267948966 rad type: Transform + - SerialNumber: WMQV-1038 + WireSeed: 1721536160 + type: Wires - uid: 2172 - type: Poweredlight + type: PoweredSmallLight components: - - parent: 0 - pos: -5,16.5 - rot: 3.141592653589793 rad + - parent: 15 + pos: -7.5,26 + rot: 1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -20545,78 +20585,82 @@ entities: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 2173 - type: LightTube + type: LightBulb components: - parent: 2172 type: Transform - uid: 2174 - type: Poweredlight + type: Wire components: - - parent: 0 - pos: -10,12.5 + - parent: 15 + pos: -9.5,20.5 + rot: 1.5707963267948966 rad type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2175 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 2175 - type: LightTube + type: Wire components: - - parent: 2174 + - parent: 15 + pos: -10.5,20.5 + rot: 1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 2176 - type: Poweredlight + type: Wire components: - - parent: 0 - pos: -10,7.5 + - parent: 15 + pos: -10.5,21.5 + rot: 1.5707963267948966 rad type: Transform - - color: '#FFFFFFFF' - type: PointLight - - containers: - light_bulb: - entities: - - 2177 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 2177 - type: LightTube + type: reinforced_wall components: - - parent: 2176 + - parent: 15 + pos: -10.5,21.5 + rot: -1.5707963267948966 rad type: Transform - uid: 2178 + type: reinforced_wall + components: + - parent: 15 + pos: -10.5,22.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2179 + type: APC + components: + - parent: 15 + pos: -10.5,21.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2180 type: Poweredlight components: - - parent: 0 - pos: -5,7.5 - rot: 3.141592653589793 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2179 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2179 - type: LightTube - components: - - parent: 2178 - type: Transform -- uid: 2180 - type: PoweredSmallLight - components: - - parent: 0 - pos: -4,8.5 - rot: 3.141592653589793 rad + - parent: 15 + pos: -7.5,22 + rot: -1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -20629,16 +20673,15 @@ entities: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 2181 - type: LightBulb + type: LightTube components: - parent: 2180 type: Transform - uid: 2182 - type: PoweredSmallLight + type: Poweredlight components: - - parent: 0 - pos: -1,8.5 - rot: 3.141592653589793 rad + - parent: 15 + pos: -15,20.5 type: Transform - color: '#FFFFFFFF' type: PointLight @@ -20649,15 +20692,15 @@ entities: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 2183 - type: LightBulb + type: LightTube components: - parent: 2182 type: Transform - uid: 2184 type: Poweredlight components: - - parent: 0 - pos: -1.5,10 + - parent: 15 + pos: -12.5,13 rot: 1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' @@ -20678,8 +20721,9 @@ entities: - uid: 2186 type: Poweredlight components: - - parent: 0 - pos: 2,12.5 + - parent: 15 + pos: -5,16.5 + rot: 3.141592653589793 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -20699,8 +20743,8 @@ entities: - uid: 2188 type: Poweredlight components: - - parent: 0 - pos: 2,7.5 + - parent: 15 + pos: -10,12.5 type: Transform - color: '#FFFFFFFF' type: PointLight @@ -20720,13 +20764,11 @@ entities: - uid: 2190 type: Poweredlight components: - - parent: 0 - pos: 2,1.5 + - parent: 15 + pos: -10,7.5 type: Transform - color: '#FFFFFFFF' type: PointLight - - powerLoad: 40 - type: PowerReceiver - containers: light_bulb: entities: @@ -20741,8 +20783,9 @@ entities: - uid: 2192 type: Poweredlight components: - - parent: 0 - pos: 2,-4.5 + - parent: 15 + pos: -5,7.5 + rot: 3.141592653589793 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -20760,10 +20803,11 @@ entities: - parent: 2192 type: Transform - uid: 2194 - type: Poweredlight + type: PoweredSmallLight components: - - parent: 0 - pos: 2,-9.5 + - parent: 15 + pos: -4,8.5 + rot: 3.141592653589793 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -20776,38 +20820,36 @@ entities: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 2195 - type: LightTube + type: LightBulb components: - parent: 2194 type: Transform - uid: 2196 - type: LightTube + type: PoweredSmallLight components: - - parent: 2197 - type: Transform -- uid: 2197 - type: Poweredlight - components: - - parent: 0 - pos: -0.5,-5 - rot: 1.5707963267948966 rad + - parent: 15 + pos: -1,8.5 + rot: 3.141592653589793 rad type: Transform - color: '#FFFFFFFF' type: PointLight - - powerLoad: 40 - type: PowerReceiver - containers: light_bulb: entities: - - 2196 + - 2197 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer +- uid: 2197 + type: LightBulb + components: + - parent: 2196 + type: Transform - uid: 2198 type: Poweredlight components: - - parent: 0 - pos: -4.5,2 - rot: -1.5707963267948966 rad + - parent: 15 + pos: -1.5,10 + rot: 1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -20825,83 +20867,73 @@ entities: - parent: 2198 type: Transform - uid: 2200 - type: Table + type: Poweredlight components: - - parent: 0 - pos: 29.5,0.5 - rot: -1.5707963267948966 rad + - parent: 15 + pos: 2,12.5 type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2201 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer - uid: 2201 - type: Table + type: LightTube components: - - parent: 0 - pos: 25.5,0.5 - rot: -1.5707963267948966 rad + - parent: 2200 type: Transform - uid: 2202 - type: VendingMachineEngivend + type: Poweredlight components: - - parent: 0 - pos: 31.5,-0.5 - rot: -1.5707963267948966 rad + - parent: 15 + pos: 2,7.5 type: Transform - - SerialNumber: PBIP-1768 - WireSeed: 1566618327 - type: Wires + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2203 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer - uid: 2203 - type: Wire + type: LightTube components: - - parent: 0 - pos: -6.5,-8.5 - rot: -1.5707963267948966 rad + - parent: 2202 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2204 - type: APC + type: Poweredlight components: - - parent: 0 - pos: -6.5,-8.5 - rot: -1.5707963267948966 rad + - parent: 15 + pos: 2,1.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2205 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer - uid: 2205 - type: Poweredlight + type: LightTube components: - - parent: 0 - pos: -1.5,6 - rot: -1.5707963267948966 rad + - parent: 2204 type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2206 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer - uid: 2206 - type: LightTube - components: - - parent: 2205 - type: Transform -- uid: 2207 type: Poweredlight components: - - parent: 0 - pos: -11.5,6 - rot: -1.5707963267948966 rad + - parent: 15 + pos: 2,-4.5 type: Transform - color: '#FFFFFFFF' type: PointLight @@ -20910,20 +20942,46 @@ entities: - containers: light_bulb: entities: - - 2208 + - 2207 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2208 +- uid: 2207 type: LightTube components: - - parent: 2207 + - parent: 2206 type: Transform -- uid: 2209 +- uid: 2208 type: Poweredlight components: - - parent: 0 - pos: -18.5,6 - rot: -1.5707963267948966 rad + - parent: 15 + pos: 2,-9.5 + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2209 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2209 + type: LightTube + components: + - parent: 2208 + type: Transform +- uid: 2210 + type: LightTube + components: + - parent: 2211 + type: Transform +- uid: 2211 + type: Poweredlight + components: + - parent: 15 + pos: -0.5,-5 + rot: 1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -20935,58 +20993,11 @@ entities: - 2210 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2210 - type: LightTube - components: - - parent: 2209 - type: Transform -- uid: 2211 +- uid: 2212 type: Poweredlight components: - - parent: 0 - pos: -11,8.5 - rot: 3.141592653589793 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - containers: - light_bulb: - entities: - - 2212 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2212 - type: LightTube - components: - - parent: 2211 - type: Transform -- uid: 2213 - type: PoweredSmallLight - components: - - parent: 0 - pos: -0.5,-6 - rot: 1.5707963267948966 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2214 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2214 - type: LightBulb - components: - - parent: 2213 - type: Transform -- uid: 2215 - type: PoweredSmallLight - components: - - parent: 0 - pos: -0.5,-12 + - parent: 15 + pos: -4.5,2 rot: -1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' @@ -20996,47 +21007,70 @@ entities: - containers: light_bulb: entities: - - 2216 + - 2213 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer +- uid: 2213 + type: LightTube + components: + - parent: 2212 + type: Transform +- uid: 2214 + type: Table + components: + - parent: 15 + pos: 29.5,0.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2215 + type: Table + components: + - parent: 15 + pos: 25.5,0.5 + rot: -1.5707963267948966 rad + type: Transform - uid: 2216 - type: LightBulb + type: VendingMachineEngivend components: - - parent: 2215 + - parent: 15 + pos: 31.5,-0.5 + rot: -1.5707963267948966 rad type: Transform + - SerialNumber: PBIP-1768 + WireSeed: 1566618327 + type: Wires - uid: 2217 - type: PoweredSmallLight + type: Wire components: - - parent: 0 - pos: -18,9.5 - rot: 3.141592653589793 rad + - parent: 15 + pos: -6.5,-8.5 + rot: -1.5707963267948966 rad type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2218 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 2218 - type: LightBulb + type: APC components: - - parent: 2217 + - parent: 15 + pos: -6.5,-8.5 + rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 2219 - type: LightBulb + type: Poweredlight components: - - parent: 2220 - type: Transform -- uid: 2220 - type: PoweredSmallLight - components: - - parent: 0 - pos: -19,22.5 - rot: 3.141592653589793 rad + - parent: 15 + pos: -1.5,6 + rot: -1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -21045,15 +21079,20 @@ entities: - containers: light_bulb: entities: - - 2219 + - 2220 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2221 - type: PoweredSmallLight +- uid: 2220 + type: LightTube components: - - parent: 0 - pos: -14.5,26 - rot: 1.5707963267948966 rad + - parent: 2219 + type: Transform +- uid: 2221 + type: Poweredlight + components: + - parent: 15 + pos: -11.5,6 + rot: -1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -21066,16 +21105,16 @@ entities: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 2222 - type: LightBulb + type: LightTube components: - parent: 2221 type: Transform - uid: 2223 - type: PoweredSmallLight + type: Poweredlight components: - - parent: 0 - pos: -19,16.5 - rot: 3.141592653589793 rad + - parent: 15 + pos: -18.5,6 + rot: -1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -21088,177 +21127,15 @@ entities: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 2224 - type: LightBulb + type: LightTube components: - parent: 2223 type: Transform - uid: 2225 - type: Wire - components: - - parent: 0 - pos: -29.5,8.5 - rot: 3.141592653589793 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2226 - type: Wire - components: - - parent: 0 - pos: -30.5,8.5 - rot: 3.141592653589793 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2227 - type: Wire - components: - - parent: 0 - pos: -28.5,-2.5 - rot: 3.141592653589793 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2228 - type: APC - components: - - parent: 0 - pos: -28.5,-3.5 - rot: 3.141592653589793 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2229 - type: BreathMaskClothing - components: - - parent: 2788 - type: Transform -- uid: 2230 - type: Chair - components: - - parent: 0 - pos: -8.5,20.5 - type: Transform -- uid: 2231 - type: APC - components: - - parent: 0 - pos: -33.5,2.5 - rot: 3.141592653589793 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2232 - type: solid_wall - components: - - parent: 0 - pos: -33.5,9.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2233 - type: APC - components: - - parent: 0 - pos: -12.5,-13.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2234 - type: APC - components: - - parent: 0 - pos: -1.5,-18.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2235 - type: APC - components: - - parent: 0 - pos: -7.5,-21.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2236 - type: APC - components: - - parent: 0 - pos: -12.5,-18.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2237 - type: APC - components: - - parent: 0 - pos: 0.5,-26.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2238 - type: Table - components: - - parent: 0 - pos: -29.5,8.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2239 - type: Table - components: - - parent: 0 - pos: -29.5,9.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2240 type: Poweredlight components: - - parent: 0 - pos: -3,-6.5 + - parent: 15 + pos: -11,8.5 rot: 3.141592653589793 rad type: Transform - color: '#FFFFFFFF' @@ -21266,19 +21143,19 @@ entities: - containers: light_bulb: entities: - - 2241 + - 2226 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2241 +- uid: 2226 type: LightTube components: - - parent: 2240 + - parent: 2225 type: Transform -- uid: 2242 - type: Poweredlight +- uid: 2227 + type: PoweredSmallLight components: - - parent: 0 - pos: -5.5,-8 + - parent: 15 + pos: -0.5,-6 rot: 1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' @@ -21288,134 +21165,295 @@ entities: - containers: light_bulb: entities: - - 2243 + - 2228 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2243 - type: LightTube - components: - - parent: 2242 - type: Transform -- uid: 2244 - type: Table - components: - - parent: 0 - pos: 18.5,7.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2245 - type: Table - components: - - parent: 0 - pos: 15.5,8.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2246 - type: VendingMachineSnack - components: - - parent: 0 - pos: -22.5,0.5 - rot: -1.5707963267948966 rad - type: Transform - - SerialNumber: SEML-1014 - WireSeed: 1521930307 - type: Wires -- uid: 2247 - type: VendingMachineCola - components: - - parent: 0 - pos: -34.5,2.5 - rot: -1.5707963267948966 rad - type: Transform - - SerialNumber: OFVJ-3613 - WireSeed: 681961778 - type: Wires -- uid: 2248 - type: PowerCellSmallHyper - components: - - parent: 2249 - type: Transform - - startingCharge: 1000 - type: PowerCell -- uid: 2249 - type: FlashlightLantern - components: - - parent: 2950 - type: Transform - - containers: - flashlight_cell_container: - entities: - - 2248 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2250 - type: Poweredlight - components: - - parent: 0 - pos: -27.5,12 - rot: -1.5707963267948966 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 664 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2251 - type: LockerToolFilled - components: - - parent: 0 - pos: -27.5,11.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - entities: - - 3037 - - 3039 - - 3040 - - 3041 - - 3042 - - 3043 - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2252 - type: PoweredSmallLight - components: - - parent: 0 - pos: -11,-10.5 - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2253 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2253 +- uid: 2228 type: LightBulb components: - - parent: 2252 + - parent: 2227 type: Transform -- uid: 2254 +- uid: 2229 type: PoweredSmallLight components: - - parent: 0 - pos: -7,-12.5 + - parent: 15 + pos: -0.5,-12 + rot: -1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' type: PointLight - powerLoad: 40 type: PowerReceiver + - containers: + light_bulb: + entities: + - 2230 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2230 + type: LightBulb + components: + - parent: 2229 + type: Transform +- uid: 2231 + type: PoweredSmallLight + components: + - parent: 15 + pos: -18,9.5 + rot: 3.141592653589793 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2232 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2232 + type: LightBulb + components: + - parent: 2231 + type: Transform +- uid: 2233 + type: LightBulb + components: + - parent: 2234 + type: Transform +- uid: 2234 + type: PoweredSmallLight + components: + - parent: 15 + pos: -19,22.5 + rot: 3.141592653589793 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2233 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2235 + type: PoweredSmallLight + components: + - parent: 15 + pos: -14.5,26 + rot: 1.5707963267948966 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2236 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2236 + type: LightBulb + components: + - parent: 2235 + type: Transform +- uid: 2237 + type: PoweredSmallLight + components: + - parent: 15 + pos: -19,16.5 + rot: 3.141592653589793 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2238 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2238 + type: LightBulb + components: + - parent: 2237 + type: Transform +- uid: 2239 + type: Wire + components: + - parent: 15 + pos: -29.5,8.5 + rot: 3.141592653589793 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2240 + type: Wire + components: + - parent: 15 + pos: -30.5,8.5 + rot: 3.141592653589793 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2241 + type: Wire + components: + - parent: 15 + pos: -28.5,-2.5 + rot: 3.141592653589793 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2242 + type: APC + components: + - parent: 15 + pos: -28.5,-3.5 + rot: 3.141592653589793 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2243 + type: BreathMaskClothing + components: + - parent: 2800 + type: Transform +- uid: 2244 + type: Chair + components: + - parent: 15 + pos: -8.5,20.5 + type: Transform +- uid: 2245 + type: APC + components: + - parent: 15 + pos: -33.5,2.5 + rot: 3.141592653589793 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2246 + type: solid_wall + components: + - parent: 15 + pos: -33.5,9.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2247 + type: APC + components: + - parent: 15 + pos: -12.5,-13.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2248 + type: APC + components: + - parent: 15 + pos: -1.5,-18.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2249 + type: APC + components: + - parent: 15 + pos: -7.5,-21.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2250 + type: APC + components: + - parent: 15 + pos: -12.5,-18.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2251 + type: APC + components: + - parent: 15 + pos: 0.5,-26.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2252 + type: Table + components: + - parent: 15 + pos: -29.5,8.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2253 + type: Table + components: + - parent: 15 + pos: -29.5,9.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2254 + type: Poweredlight + components: + - parent: 15 + pos: -3,-6.5 + rot: 3.141592653589793 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight - containers: light_bulb: entities: @@ -21423,16 +21461,16 @@ entities: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 2255 - type: LightBulb + type: LightTube components: - parent: 2254 type: Transform - uid: 2256 - type: PoweredSmallLight + type: Poweredlight components: - - parent: 0 - pos: -14.5,-16 - rot: -1.5707963267948966 rad + - parent: 15 + pos: -5.5,-8 + rot: 1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -21445,50 +21483,68 @@ entities: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 2257 - type: LightBulb + type: LightTube components: - parent: 2256 type: Transform - uid: 2258 type: Table components: - - parent: 0 - pos: 10.5,7.5 + - parent: 15 + pos: 18.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 2259 type: Table components: - - parent: 0 - pos: 10.5,7.5 + - parent: 15 + pos: 15.5,8.5 rot: -1.5707963267948966 rad type: Transform - uid: 2260 - type: PoweredSmallLight + type: VendingMachineSnack components: - - parent: 0 - pos: -19,9.5 + - parent: 15 + pos: -22.5,0.5 + rot: -1.5707963267948966 rad + type: Transform + - SerialNumber: SEML-1014 + WireSeed: 1521930307 + type: Wires +- uid: 2261 + type: VendingMachineCola + components: + - parent: 15 + pos: -34.5,2.5 + rot: -1.5707963267948966 rad + type: Transform + - SerialNumber: OFVJ-3613 + WireSeed: 681961778 + type: Wires +- uid: 2262 + type: PowerCellSmallHyper + components: + - parent: 2263 + type: Transform + - startingCharge: 1000 + type: PowerCell +- uid: 2263 + type: FlashlightLantern + components: + - parent: 2962 type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - containers: - light_bulb: + flashlight_cell_container: entities: - - 2261 + - 2262 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2261 - type: LightBulb - components: - - parent: 2260 - type: Transform -- uid: 2262 +- uid: 2264 type: Poweredlight components: - - parent: 0 - pos: -30,9.5 + - parent: 15 + pos: -27.5,12 + rot: -1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -21497,40 +21553,36 @@ entities: - containers: light_bulb: entities: - - 2263 + - 679 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2263 - type: LightTube - components: - - parent: 2262 - type: Transform -- uid: 2264 - type: Welder - components: - - parent: 0 - pos: -29.434454,8.191761 - rot: -1.5707963267948966 rad - type: Transform - uid: 2265 - type: LockerWeldingSupplies + type: LockerToolFilled components: - - parent: 0 - pos: 38.5,9.5 + - parent: 15 + pos: -27.5,11.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: EntityStorageComponent: + entities: + - 3049 + - 3051 + - 3052 + - 3053 + - 3054 + - 3055 type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 2266 - type: Poweredlight + type: PoweredSmallLight components: - - parent: 0 - pos: -23,8.5 - rot: 3.141592653589793 rad + - parent: 15 + pos: -11,-10.5 type: Transform - color: '#FFFFFFFF' type: PointLight @@ -21543,16 +21595,15 @@ entities: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 2267 - type: LightTube + type: LightBulb components: - parent: 2266 type: Transform - uid: 2268 - type: Poweredlight + type: PoweredSmallLight components: - - parent: 0 - pos: -32.5,6 - rot: -1.5707963267948966 rad + - parent: 15 + pos: -7,-12.5 type: Transform - color: '#FFFFFFFF' type: PointLight @@ -21565,16 +21616,16 @@ entities: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 2269 - type: LightTube + type: LightBulb components: - parent: 2268 type: Transform - uid: 2270 - type: Poweredlight + type: PoweredSmallLight components: - - parent: 0 - pos: -30.5,3 - rot: 1.5707963267948966 rad + - parent: 15 + pos: -14.5,-16 + rot: -1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -21587,37 +21638,29 @@ entities: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 2271 - type: LightTube + type: LightBulb components: - parent: 2270 type: Transform - uid: 2272 - type: Poweredlight + type: Table components: - - parent: 0 - pos: -20.5,3 - rot: 1.5707963267948966 rad + - parent: 15 + pos: 10.5,7.5 + rot: -1.5707963267948966 rad type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2273 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer - uid: 2273 - type: LightTube + type: Table components: - - parent: 2272 + - parent: 15 + pos: 10.5,7.5 + rot: -1.5707963267948966 rad type: Transform - uid: 2274 - type: Poweredlight + type: PoweredSmallLight components: - - parent: 0 - pos: -26,-3.5 + - parent: 15 + pos: -19,9.5 type: Transform - color: '#FFFFFFFF' type: PointLight @@ -21630,16 +21673,15 @@ entities: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 2275 - type: LightTube + type: LightBulb components: - parent: 2274 type: Transform - uid: 2276 type: Poweredlight components: - - parent: 0 - pos: -22,-3.5 - rot: 3.141592653589793 rad + - parent: 15 + pos: -30,9.5 type: Transform - color: '#FFFFFFFF' type: PointLight @@ -21657,35 +21699,38 @@ entities: - parent: 2276 type: Transform - uid: 2278 + type: Welder + components: + - parent: 15 + pos: -29.434454,8.191761 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2279 + type: LockerWeldingSupplies + components: + - parent: 15 + pos: 38.5,9.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2280 type: Poweredlight components: - - parent: 0 - pos: -31,-0.5 + - parent: 15 + pos: -23,8.5 + rot: 3.141592653589793 rad type: Transform - color: '#FFFFFFFF' type: PointLight - powerLoad: 40 type: PowerReceiver - - containers: - light_bulb: - entities: - - 2279 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2279 - type: LightTube - components: - - parent: 2278 - type: Transform -- uid: 2280 - type: Poweredlight - components: - - parent: 0 - pos: -27,1.5 - rot: 3.141592653589793 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - containers: light_bulb: entities: @@ -21698,11 +21743,11 @@ entities: - parent: 2280 type: Transform - uid: 2282 - type: PoweredSmallLight + type: Poweredlight components: - - parent: 0 - pos: -29.5,-4 - rot: 1.5707963267948966 rad + - parent: 15 + pos: -32.5,6 + rot: -1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -21715,16 +21760,16 @@ entities: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 2283 - type: LightBulb + type: LightTube components: - parent: 2282 type: Transform - uid: 2284 - type: PoweredSmallLight + type: Poweredlight components: - - parent: 0 - pos: -29.5,-9 - rot: -1.5707963267948966 rad + - parent: 15 + pos: -30.5,3 + rot: 1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -21737,31 +21782,37 @@ entities: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 2285 - type: LightBulb + type: LightTube components: - parent: 2284 type: Transform - uid: 2286 - type: Food4NoRaisins + type: Poweredlight components: - - parent: 0 - pos: -1.7489221,25.142187 - rot: 3.141592653589793 rad + - parent: 15 + pos: -20.5,3 + rot: 1.5707963267948966 rad type: Transform - - fillingSteps: 0 - type: Solution + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2287 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer - uid: 2287 - type: Pen + type: LightTube components: - - parent: 0 - pos: 9.652517,18.48974 - rot: 3.141592653589793 rad + - parent: 2286 type: Transform - uid: 2288 - type: PoweredSmallLight + type: Poweredlight components: - - parent: 0 - pos: -18,-4.5 + - parent: 15 + pos: -26,-3.5 type: Transform - color: '#FFFFFFFF' type: PointLight @@ -21774,48 +21825,79 @@ entities: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 2289 - type: LightBulb + type: LightTube components: - parent: 2288 type: Transform - uid: 2290 - type: BreathMaskClothing + type: Poweredlight components: - - parent: 2781 + - parent: 15 + pos: -22,-3.5 + rot: 3.141592653589793 rad type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2291 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer - uid: 2291 - type: BreathMaskClothing + type: LightTube components: - - parent: 2773 + - parent: 2290 type: Transform - uid: 2292 - type: FoodChocolateBar + type: Poweredlight components: - - parent: 3079 + - parent: 15 + pos: -31,-0.5 type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2293 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer - uid: 2293 - type: PowerCellSmallHyper + type: LightTube components: - - parent: 2949 + - parent: 2292 type: Transform - - startingCharge: 1000 - type: PowerCell - uid: 2294 - type: FoodChocolateBar + type: Poweredlight components: - - parent: 2950 + - parent: 15 + pos: -27,1.5 + rot: 3.141592653589793 rad type: Transform + - color: '#FFFFFFFF' + type: PointLight + - containers: + light_bulb: + entities: + - 2295 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer - uid: 2295 - type: BreathMaskClothing + type: LightTube components: - - parent: 2950 + - parent: 2294 type: Transform - uid: 2296 type: PoweredSmallLight components: - - parent: 0 - pos: -34,-0.5 - rot: 3.141592653589793 rad + - parent: 15 + pos: -29.5,-4 + rot: 1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -21833,25 +21915,11 @@ entities: - parent: 2296 type: Transform - uid: 2298 - type: Table - components: - - parent: 0 - pos: 7.5,28.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2299 - type: Table - components: - - parent: 0 - pos: 8.5,28.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2300 type: PoweredSmallLight components: - - parent: 0 - pos: -29.5,15 - rot: 1.5707963267948966 rad + - parent: 15 + pos: -29.5,-9 + rot: -1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -21860,20 +21928,35 @@ entities: - containers: light_bulb: entities: - - 2301 + - 2299 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2301 +- uid: 2299 type: LightBulb components: - - parent: 2300 + - parent: 2298 + type: Transform +- uid: 2300 + type: Food4NoRaisins + components: + - parent: 15 + pos: -1.7489221,25.142187 + rot: 3.141592653589793 rad + type: Transform + - fillingSteps: 0 + type: Solution +- uid: 2301 + type: Pen + components: + - parent: 15 + pos: 9.652517,18.48974 + rot: 3.141592653589793 rad type: Transform - uid: 2302 - type: Poweredlight + type: PoweredSmallLight components: - - parent: 0 - pos: -22,2.5 - rot: 3.141592653589793 rad + - parent: 15 + pos: -18,-4.5 type: Transform - color: '#FFFFFFFF' type: PointLight @@ -21886,14 +21969,126 @@ entities: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 2303 - type: LightTube + type: LightBulb components: - parent: 2302 type: Transform - uid: 2304 + type: BreathMaskClothing + components: + - parent: 2793 + type: Transform +- uid: 2305 + type: BreathMaskClothing + components: + - parent: 2785 + type: Transform +- uid: 2306 + type: FoodChocolateBar + components: + - parent: 3091 + type: Transform +- uid: 2307 + type: PowerCellSmallHyper + components: + - parent: 2961 + type: Transform + - startingCharge: 1000 + type: PowerCell +- uid: 2308 + type: FoodChocolateBar + components: + - parent: 2962 + type: Transform +- uid: 2309 + type: BreathMaskClothing + components: + - parent: 2962 + type: Transform +- uid: 2310 + type: PoweredSmallLight + components: + - parent: 15 + pos: -34,-0.5 + rot: 3.141592653589793 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2311 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2311 + type: LightBulb + components: + - parent: 2310 + type: Transform +- uid: 2312 + type: Table + components: + - parent: 15 + pos: 7.5,28.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2313 + type: Table + components: + - parent: 15 + pos: 8.5,28.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2314 + type: PoweredSmallLight + components: + - parent: 15 + pos: -29.5,15 + rot: 1.5707963267948966 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2315 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2315 + type: LightBulb + components: + - parent: 2314 + type: Transform +- uid: 2316 type: Poweredlight components: - - parent: 0 + - parent: 15 + pos: -22,2.5 + rot: 3.141592653589793 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2317 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2317 + type: LightTube + components: + - parent: 2316 + type: Transform +- uid: 2318 + type: Poweredlight + components: + - parent: 15 pos: -26,6.5 type: Transform - color: '#FFFFFFFF' @@ -21903,18 +22098,18 @@ entities: - containers: light_bulb: entities: - - 2305 + - 2319 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2305 +- uid: 2319 type: LightTube components: - - parent: 2304 + - parent: 2318 type: Transform -- uid: 2306 +- uid: 2320 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: -22,0.5 rot: 3.141592653589793 rad type: Transform @@ -21925,18 +22120,18 @@ entities: - containers: light_bulb: entities: - - 2307 + - 2321 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2307 +- uid: 2321 type: LightTube components: - - parent: 2306 + - parent: 2320 type: Transform -- uid: 2308 +- uid: 2322 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: -34,9.5 rot: 3.141592653589793 rad type: Transform @@ -21947,18 +22142,18 @@ entities: - containers: light_bulb: entities: - - 2309 + - 2323 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2309 +- uid: 2323 type: LightTube components: - - parent: 2308 + - parent: 2322 type: Transform -- uid: 2310 +- uid: 2324 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: -35,0.5 rot: 3.141592653589793 rad type: Transform @@ -21969,90 +22164,90 @@ entities: - containers: light_bulb: entities: - - 1754 + - 1768 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2311 +- uid: 2325 type: solid_wall components: - - parent: 0 + - parent: 15 pos: -38.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2312 +- uid: 2326 type: solid_wall components: - - parent: 0 + - parent: 15 pos: -34.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2313 +- uid: 2327 type: SpawnPointStationEngineer components: - - parent: 0 + - parent: 15 pos: 33.5,4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2314 +- uid: 2328 type: SpawnPointSecurityOfficer components: - - parent: 0 + - parent: 15 pos: -7.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2315 +- uid: 2329 type: Table components: - - parent: 0 + - parent: 15 pos: 8.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2316 +- uid: 2330 type: Table components: - - parent: 0 + - parent: 15 pos: 8.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2317 +- uid: 2331 type: Table components: - - parent: 0 + - parent: 15 pos: 8.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2318 +- uid: 2332 type: Table components: - - parent: 0 + - parent: 15 pos: 7.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2319 +- uid: 2333 type: Table components: - - parent: 0 + - parent: 15 pos: 6.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2320 +- uid: 2334 type: ChairOfficeLight components: - - parent: 0 + - parent: 15 pos: 6.5,-4.5 rot: 1.5707963267948966 rad type: Transform -- uid: 2321 +- uid: 2335 type: ComputerMedicalRecords components: - - parent: 0 + - parent: 15 pos: 6.5,-5.5 rot: 1.5707963267948966 rad type: Transform -- uid: 2322 +- uid: 2336 type: chem_dispenser components: - - parent: 0 + - parent: 15 pos: 14.5,1.5 rot: -1.5707963267948966 rad type: Transform @@ -22060,207 +22255,83 @@ entities: ReagentDispenser-reagentContainerContainer: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2323 +- uid: 2337 type: Table components: - - parent: 0 + - parent: 15 pos: 14.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2324 +- uid: 2338 type: Table components: - - parent: 0 + - parent: 15 pos: 18.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2325 +- uid: 2339 type: Table components: - - parent: 0 + - parent: 15 pos: 18.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2326 - type: Table +- uid: 2340 + type: chem_master components: - - parent: 0 - pos: 18.5,-0.5 + - parent: 15 + pos: 15.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2327 + - containers: + ChemMaster-reagentContainerContainer: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2341 type: Table components: - - parent: 0 + - parent: 15 pos: 14.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2328 - type: Table - components: - - parent: 0 - pos: 15.5,-0.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2329 - type: Table - components: - - parent: 0 - pos: 15.5,-3.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2330 - type: LockerHeadOfSecurityFilled - components: - - parent: 0 - pos: -9.5,21.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2331 - type: LockerChemistry - components: - - parent: 0 - pos: 18.5,-1.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2332 - type: Table - components: - - parent: 0 - pos: 13.5,0.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2333 - type: WarpPoint - components: - - parent: 0 - pos: 8.5,10.5 - rot: -1.5707963267948966 rad - type: Transform - - location: eva - type: WarpPoint -- uid: 2334 - type: WarpPoint - components: - - parent: 0 - pos: 7.5,25.5 - rot: -1.5707963267948966 rad - type: Transform - - location: cap - type: WarpPoint -- uid: 2335 - type: WarpPoint - components: - - parent: 0 - pos: 16.5,0.5 - rot: -1.5707963267948966 rad - type: Transform - - location: chem - type: WarpPoint -- uid: 2336 - type: WarpPoint - components: - - parent: 0 - pos: 9.5,19.5 - rot: -1.5707963267948966 rad - type: Transform - - location: hop - type: WarpPoint -- uid: 2337 - type: WarpPoint - components: - - parent: 0 - pos: 49.5,-2.5 - rot: -1.5707963267948966 rad - type: Transform - - location: grav - type: WarpPoint -- uid: 2338 - type: LockerMedical - components: - - parent: 0 - pos: 21.5,-7.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2339 - type: LockerMedical - components: - - parent: 0 - pos: 22.5,-7.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2340 - type: VendingMachineMedical - components: - - parent: 0 - pos: 19.5,-4.5 - rot: -1.5707963267948966 rad - type: Transform - - SerialNumber: ZETC-9911 - WireSeed: 1806878269 - type: Wires -- uid: 2341 - type: VendingMachineMedical - components: - - parent: 0 - pos: 6.5,-11.5 - rot: -1.5707963267948966 rad - type: Transform - - SerialNumber: GZGK-6351 - WireSeed: 2142912283 - type: Wires - uid: 2342 type: Table components: - - parent: 0 - pos: 21.5,-4.5 + - parent: 15 + pos: 15.5,-0.5 rot: -1.5707963267948966 rad type: Transform - uid: 2343 type: Table components: - - parent: 0 - pos: 22.5,-4.5 + - parent: 15 + pos: 15.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 2344 - type: Table + type: LockerHeadOfSecurityFilled components: - - parent: 0 - pos: 23.5,-4.5 + - parent: 15 + pos: -9.5,21.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer - uid: 2345 - type: CrateMedical + type: LockerChemistry components: - - parent: 0 - pos: 24.5,-4.5 + - parent: 15 + pos: 18.5,-1.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: @@ -22270,63 +22341,192 @@ entities: - uid: 2346 type: Table components: - - parent: 0 - pos: 6.5,-10.5 + - parent: 15 + pos: 13.5,0.5 rot: -1.5707963267948966 rad type: Transform - uid: 2347 + type: WarpPoint + components: + - parent: 15 + pos: 8.5,10.5 + rot: -1.5707963267948966 rad + type: Transform + - location: eva + type: WarpPoint +- uid: 2348 + type: WarpPoint + components: + - parent: 15 + pos: 7.5,25.5 + rot: -1.5707963267948966 rad + type: Transform + - location: cap + type: WarpPoint +- uid: 2349 + type: WarpPoint + components: + - parent: 15 + pos: 16.5,0.5 + rot: -1.5707963267948966 rad + type: Transform + - location: chem + type: WarpPoint +- uid: 2350 + type: WarpPoint + components: + - parent: 15 + pos: 9.5,19.5 + rot: -1.5707963267948966 rad + type: Transform + - location: hop + type: WarpPoint +- uid: 2351 + type: WarpPoint + components: + - parent: 15 + pos: 49.5,-2.5 + rot: -1.5707963267948966 rad + type: Transform + - location: grav + type: WarpPoint +- uid: 2352 + type: LockerMedical + components: + - parent: 15 + pos: 21.5,-7.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2353 + type: LockerMedical + components: + - parent: 15 + pos: 22.5,-7.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2354 + type: VendingMachineMedical + components: + - parent: 15 + pos: 19.5,-4.5 + rot: -1.5707963267948966 rad + type: Transform + - SerialNumber: ZETC-9911 + WireSeed: 1806878269 + type: Wires +- uid: 2355 + type: VendingMachineMedical + components: + - parent: 15 + pos: 6.5,-11.5 + rot: -1.5707963267948966 rad + type: Transform + - SerialNumber: GZGK-6351 + WireSeed: 2142912283 + type: Wires +- uid: 2356 type: Table components: - - parent: 0 + - parent: 15 + pos: 21.5,-4.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2357 + type: Table + components: + - parent: 15 + pos: 22.5,-4.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2358 + type: Table + components: + - parent: 15 + pos: 23.5,-4.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2359 + type: CrateMedical + components: + - parent: 15 + pos: 24.5,-4.5 + rot: -1.5707963267948966 rad + type: Transform + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2360 + type: Table + components: + - parent: 15 + pos: 6.5,-10.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2361 + type: Table + components: + - parent: 15 pos: 6.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2348 +- uid: 2362 type: Table components: - - parent: 0 + - parent: 15 pos: 6.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2349 +- uid: 2363 type: Table components: - - parent: 0 + - parent: 15 pos: 6.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2350 +- uid: 2364 type: Table components: - - parent: 0 + - parent: 15 pos: 10.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2351 +- uid: 2365 type: Table components: - - parent: 0 + - parent: 15 pos: 9.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2352 +- uid: 2366 type: Beaker components: - - parent: 0 - pos: 18.57514,0.038482428 - rot: 1.5707963267948966 rad - type: Transform -- uid: 2353 - type: Beaker - components: - - parent: 0 + - parent: 15 pos: 15.07514,-0.38339257 rot: 1.5707963267948966 rad type: Transform -- uid: 2354 +- uid: 2367 type: MedicalScanner components: - - parent: 0 + - parent: 15 pos: 16.5,-13.5 rot: -1.5707963267948966 rad type: Transform @@ -22334,10 +22534,10 @@ entities: MedicalScanner-bodyContainer: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2355 +- uid: 2368 type: MedicalScanner components: - - parent: 0 + - parent: 15 pos: 16.5,-11.5 rot: -1.5707963267948966 rad type: Transform @@ -22345,52 +22545,52 @@ entities: MedicalScanner-bodyContainer: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2356 +- uid: 2369 type: LowWall components: - - parent: 0 + - parent: 15 pos: 15.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2357 +- uid: 2370 type: LowWall components: - - parent: 0 + - parent: 15 pos: 16.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2358 +- uid: 2371 type: LowWall components: - - parent: 0 + - parent: 15 pos: 17.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2359 +- uid: 2372 type: Window components: - - parent: 0 + - parent: 15 pos: 15.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2360 +- uid: 2373 type: Window components: - - parent: 0 + - parent: 15 pos: 16.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2361 +- uid: 2374 type: Window components: - - parent: 0 + - parent: 15 pos: 17.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2362 +- uid: 2375 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: 20,-11.5 rot: 3.141592653589793 rad type: Transform @@ -22401,18 +22601,18 @@ entities: - containers: light_bulb: entities: - - 2363 + - 2376 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2363 +- uid: 2376 type: LightTube components: - - parent: 2362 + - parent: 2375 type: Transform -- uid: 2364 +- uid: 2377 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: 7,-14.5 type: Transform - color: '#FFFFFFFF' @@ -22422,18 +22622,18 @@ entities: - containers: light_bulb: entities: - - 2365 + - 2378 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2365 +- uid: 2378 type: LightTube components: - - parent: 2364 + - parent: 2377 type: Transform -- uid: 2366 +- uid: 2379 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: 23.5,-4 rot: -1.5707963267948966 rad type: Transform @@ -22444,18 +22644,18 @@ entities: - containers: light_bulb: entities: - - 2367 + - 2380 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2367 +- uid: 2380 type: LightTube components: - - parent: 2366 + - parent: 2379 type: Transform -- uid: 2368 +- uid: 2381 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: 23.5,-8 rot: 1.5707963267948966 rad type: Transform @@ -22466,18 +22666,18 @@ entities: - containers: light_bulb: entities: - - 2369 + - 2382 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2369 +- uid: 2382 type: LightTube components: - - parent: 2368 + - parent: 2381 type: Transform -- uid: 2370 +- uid: 2383 type: Medkit components: - - parent: 0 + - parent: 15 pos: 6.5537567,-7.609968 rot: 1.5707963267948966 rad type: Transform @@ -22485,10 +22685,10 @@ entities: storagebase: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 2371 +- uid: 2384 type: Medkit components: - - parent: 0 + - parent: 15 pos: 6.5693817,-8.359968 rot: 1.5707963267948966 rad type: Transform @@ -22496,10 +22696,10 @@ entities: storagebase: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 2372 +- uid: 2385 type: Medkit components: - - parent: 0 + - parent: 15 pos: 6.5225067,-9.141218 rot: 1.5707963267948966 rad type: Transform @@ -22507,10 +22707,10 @@ entities: storagebase: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 2373 +- uid: 2386 type: Medkit components: - - parent: 0 + - parent: 15 pos: 6.5068817,-9.984968 rot: 1.5707963267948966 rad type: Transform @@ -22518,73 +22718,84 @@ entities: storagebase: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 2374 - type: LargeBeaker +- uid: 2387 + type: DisposalUnit components: - - parent: 0 - pos: 18.45014,1.5384824 - rot: 1.5707963267948966 rad + - parent: 15 + pos: 18.5,-0.5 type: Transform -- uid: 2375 - type: LargeBeaker + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 2388 + type: DisposalTrunk components: - - parent: 0 - pos: 18.403265,0.8822324 - rot: 1.5707963267948966 rad + - parent: 15 + pos: 18.5,-0.5 + rot: 3.141592653589793 rad type: Transform -- uid: 2376 + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 2389 type: LargeBeaker components: - - parent: 0 + - parent: 15 pos: 14.528265,-0.44589257 rot: 1.5707963267948966 rad type: Transform -- uid: 2377 +- uid: 2390 type: Beaker components: - - parent: 0 + - parent: 15 pos: 15.48139,-0.43026757 rot: 1.5707963267948966 rad type: Transform -- uid: 2378 +- uid: 2391 type: ComputerMedicalRecords components: - - parent: 0 + - parent: 15 pos: 24.5,-15.5 rot: 1.5707963267948966 rad type: Transform -- uid: 2379 +- uid: 2392 type: Table components: - - parent: 0 + - parent: 15 pos: 23.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2380 +- uid: 2393 type: Table components: - - parent: 0 + - parent: 15 pos: 23.5,-14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2381 +- uid: 2394 type: Table components: - - parent: 0 + - parent: 15 pos: 23.5,-15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2382 +- uid: 2395 type: ChairOfficeLight components: - - parent: 0 + - parent: 15 pos: 24.5,-14.5 rot: 3.141592653589793 rad type: Transform -- uid: 2383 +- uid: 2396 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: 25,-14.5 rot: 3.141592653589793 rad type: Transform @@ -22595,192 +22806,192 @@ entities: - containers: light_bulb: entities: - - 2384 + - 2397 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2384 +- uid: 2397 type: LightTube components: - - parent: 2383 + - parent: 2396 type: Transform -- uid: 2385 +- uid: 2398 type: WarpPoint components: - - parent: 0 + - parent: 15 pos: -24.5,-3.5 rot: -1.5707963267948966 rad type: Transform - location: dorms type: WarpPoint -- uid: 2386 +- uid: 2399 type: WarpPoint components: - - parent: 0 + - parent: 15 pos: -36.5,6.5 rot: -1.5707963267948966 rad type: Transform - location: escape type: WarpPoint -- uid: 2387 +- uid: 2400 type: ToolboxEmergencyFilled components: - - parent: 2783 + - parent: 2795 type: Transform - containers: storagebase: entities: - - 2624 - - 2593 - - 2594 - - 2623 - - 2621 - - 285 + - 2636 + - 2605 + - 2606 + - 2635 + - 2633 + - 300 type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 2388 +- uid: 2401 type: SpawnPointChef components: - - parent: 0 + - parent: 15 pos: -12.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2389 +- uid: 2402 type: SpawnPointLatejoin components: - - parent: 0 + - parent: 15 pos: -36.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2390 +- uid: 2403 type: SpawnPointAssistant components: - - parent: 0 + - parent: 15 pos: -29.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2391 +- uid: 2404 type: SpawnPointAssistant components: - - parent: 0 + - parent: 15 pos: -23.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2392 +- uid: 2405 type: Table components: - - parent: 0 + - parent: 15 pos: -4.5,-23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2393 +- uid: 2406 type: Table components: - - parent: 0 + - parent: 15 pos: -4.5,-24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2394 - type: LowWall - components: - - parent: 0 - pos: -10.5,-29.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2395 - type: LowWall - components: - - parent: 0 - pos: -10.5,-30.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2396 - type: LowWall - components: - - parent: 0 - pos: -9.5,-30.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2397 - type: LowWall - components: - - parent: 0 - pos: -6.5,-29.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2398 - type: LowWall - components: - - parent: 0 - pos: -7.5,-30.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2399 - type: LowWall - components: - - parent: 0 - pos: -6.5,-30.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2400 - type: LowWall - components: - - parent: 0 - pos: -8.5,-30.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2401 - type: ReinforcedWindow - components: - - parent: 0 - pos: -10.5,-29.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2402 - type: ReinforcedWindow - components: - - parent: 0 - pos: -10.5,-30.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2403 - type: ReinforcedWindow - components: - - parent: 0 - pos: -9.5,-30.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2404 - type: ReinforcedWindow - components: - - parent: 0 - pos: -8.5,-30.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2405 - type: ReinforcedWindow - components: - - parent: 0 - pos: -7.5,-30.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2406 - type: ReinforcedWindow - components: - - parent: 0 - pos: -6.5,-30.5 - rot: -1.5707963267948966 rad - type: Transform - uid: 2407 - type: ReinforcedWindow + type: LowWall components: - - parent: 0 - pos: -6.5,-29.5 + - parent: 15 + pos: -10.5,-29.5 rot: -1.5707963267948966 rad type: Transform - uid: 2408 + type: LowWall + components: + - parent: 15 + pos: -10.5,-30.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2409 + type: LowWall + components: + - parent: 15 + pos: -9.5,-30.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2410 + type: LowWall + components: + - parent: 15 + pos: -6.5,-29.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2411 + type: LowWall + components: + - parent: 15 + pos: -7.5,-30.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2412 + type: LowWall + components: + - parent: 15 + pos: -6.5,-30.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2413 + type: LowWall + components: + - parent: 15 + pos: -8.5,-30.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2414 + type: ReinforcedWindow + components: + - parent: 15 + pos: -10.5,-29.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2415 + type: ReinforcedWindow + components: + - parent: 15 + pos: -10.5,-30.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2416 + type: ReinforcedWindow + components: + - parent: 15 + pos: -9.5,-30.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2417 + type: ReinforcedWindow + components: + - parent: 15 + pos: -8.5,-30.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2418 + type: ReinforcedWindow + components: + - parent: 15 + pos: -7.5,-30.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2419 + type: ReinforcedWindow + components: + - parent: 15 + pos: -6.5,-30.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2420 + type: ReinforcedWindow + components: + - parent: 15 + pos: -6.5,-29.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2421 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: -1.5,-18 rot: 1.5707963267948966 rad type: Transform @@ -22791,18 +23002,18 @@ entities: - containers: light_bulb: entities: - - 2409 + - 2422 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2409 +- uid: 2422 type: LightTube components: - - parent: 2408 + - parent: 2421 type: Transform -- uid: 2410 +- uid: 2423 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: -6,-14.5 type: Transform - color: '#FFFFFFFF' @@ -22812,18 +23023,18 @@ entities: - containers: light_bulb: entities: - - 2411 + - 2424 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2411 +- uid: 2424 type: LightTube components: - - parent: 2410 + - parent: 2423 type: Transform -- uid: 2412 +- uid: 2425 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: -1.5,-13 rot: -1.5707963267948966 rad type: Transform @@ -22834,23 +23045,23 @@ entities: - containers: light_bulb: entities: - - 2413 + - 2426 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2413 +- uid: 2426 type: LightTube components: - - parent: 2412 + - parent: 2425 type: Transform -- uid: 2414 +- uid: 2427 type: LightTube components: - - parent: 2415 + - parent: 2428 type: Transform -- uid: 2415 +- uid: 2428 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: -9.5,-21 rot: 1.5707963267948966 rad type: Transform @@ -22861,150 +23072,15 @@ entities: - containers: light_bulb: entities: - - 2414 + - 2427 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2416 - type: Poweredlight - components: - - parent: 0 - pos: -9.5,-17 - rot: -1.5707963267948966 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2417 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2417 - type: LightTube - components: - - parent: 2416 - type: Transform -- uid: 2418 - type: Poweredlight - components: - - parent: 0 - pos: -1.5,-21 - rot: 1.5707963267948966 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2419 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2419 - type: LightTube - components: - - parent: 2418 - type: Transform -- uid: 2420 - type: Poweredlight - components: - - parent: 0 - pos: -2,-23.5 - rot: 3.141592653589793 rad - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2421 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2421 - type: LightTube - components: - - parent: 2420 - type: Transform -- uid: 2422 - type: PoweredSmallLight - components: - - parent: 0 - pos: -7,-23.5 - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2423 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2423 - type: LightBulb - components: - - parent: 2422 - type: Transform -- uid: 2424 - type: ResearchAndDevelopmentServer - components: - - parent: 0 - pos: -8.5,-23.5 - type: Transform - - points: 136000 - type: ResearchServer -- uid: 2425 - type: LightTube - components: - - parent: 2426 - type: Transform -- uid: 2426 - type: Poweredlight - components: - - parent: 0 - pos: -18,-25.5 - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - containers: - light_bulb: - entities: - - 2425 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2427 - type: Poweredlight - components: - - parent: 0 - pos: -18,-21.5 - type: Transform - - color: '#FFFFFFFF' - type: PointLight - - powerLoad: 40 - type: PowerReceiver - - containers: - light_bulb: - entities: - - 2428 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 2428 - type: LightTube - components: - - parent: 2427 - type: Transform - uid: 2429 type: Poweredlight components: - - parent: 0 - pos: -13,-21.5 - rot: 3.141592653589793 rad + - parent: 15 + pos: -9.5,-17 + rot: -1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -23024,9 +23100,9 @@ entities: - uid: 2431 type: Poweredlight components: - - parent: 0 - pos: -13,-25.5 - rot: 3.141592653589793 rad + - parent: 15 + pos: -1.5,-21 + rot: 1.5707963267948966 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -23046,9 +23122,9 @@ entities: - uid: 2433 type: Poweredlight components: - - parent: 0 - pos: -15.5,-17 - rot: -1.5707963267948966 rad + - parent: 15 + pos: -2,-23.5 + rot: 3.141592653589793 rad type: Transform - color: '#FFFFFFFF' type: PointLight @@ -23066,9 +23142,144 @@ entities: - parent: 2433 type: Transform - uid: 2435 + type: PoweredSmallLight + components: + - parent: 15 + pos: -7,-23.5 + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2436 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2436 + type: LightBulb + components: + - parent: 2435 + type: Transform +- uid: 2437 + type: ResearchAndDevelopmentServer + components: + - parent: 15 + pos: -8.5,-23.5 + type: Transform + - points: 136000 + type: ResearchServer +- uid: 2438 + type: LightTube + components: + - parent: 2439 + type: Transform +- uid: 2439 + type: Poweredlight + components: + - parent: 15 + pos: -18,-25.5 + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - containers: + light_bulb: + entities: + - 2438 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2440 + type: Poweredlight + components: + - parent: 15 + pos: -18,-21.5 + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2441 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2441 + type: LightTube + components: + - parent: 2440 + type: Transform +- uid: 2442 + type: Poweredlight + components: + - parent: 15 + pos: -13,-21.5 + rot: 3.141592653589793 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2443 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2443 + type: LightTube + components: + - parent: 2442 + type: Transform +- uid: 2444 + type: Poweredlight + components: + - parent: 15 + pos: -13,-25.5 + rot: 3.141592653589793 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2445 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2445 + type: LightTube + components: + - parent: 2444 + type: Transform +- uid: 2446 + type: Poweredlight + components: + - parent: 15 + pos: -15.5,-17 + rot: -1.5707963267948966 rad + type: Transform + - color: '#FFFFFFFF' + type: PointLight + - powerLoad: 40 + type: PowerReceiver + - containers: + light_bulb: + entities: + - 2447 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2447 + type: LightTube + components: + - parent: 2446 + type: Transform +- uid: 2448 type: Wire components: - - parent: 0 + - parent: 15 pos: -17.5,-19.5 rot: -1.5707963267948966 rad type: Transform @@ -23078,10 +23289,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2436 +- uid: 2449 type: APC components: - - parent: 0 + - parent: 15 pos: -18.5,-19.5 rot: -1.5707963267948966 rad type: Transform @@ -23091,21 +23302,21 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2437 +- uid: 2450 type: ComputerResearchAndDevelopment components: - - parent: 0 + - parent: 15 pos: -5.5,-15.5 type: Transform -- uid: 2438 +- uid: 2451 type: LightBulb components: - - parent: 2439 + - parent: 2452 type: Transform -- uid: 2439 +- uid: 2452 type: PoweredSmallLight components: - - parent: 0 + - parent: 15 pos: -6.5,-26 rot: 1.5707963267948966 rad type: Transform @@ -23116,156 +23327,156 @@ entities: - containers: light_bulb: entities: - - 2438 + - 2451 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2440 +- uid: 2453 type: Table components: - - parent: 0 + - parent: 15 pos: -0.5,-17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2441 - type: Table - components: - - parent: 0 - pos: -1.5,-17.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2442 - type: Table - components: - - parent: 0 - pos: -2.5,-17.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2443 - type: Table - components: - - parent: 0 - pos: 0.5,-15.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2444 - type: Table - components: - - parent: 0 - pos: 0.5,-14.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2445 - type: BaseResearchAndDevelopmentPointSource - components: - - parent: 0 - pos: -5.5,-17.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2446 - type: ChairOfficeLight - components: - - parent: 0 - pos: -0.5,-14.5 - type: Transform -- uid: 2447 - type: ChairOfficeLight - components: - - parent: 0 - pos: -5.5,-23.5 - type: Transform -- uid: 2448 - type: VendingMachineCoffee - components: - - parent: 0 - pos: -7.5,-17.5 - type: Transform - - SerialNumber: FXDO-7188 - WireSeed: 428238634 - type: Wires -- uid: 2449 - type: Table - components: - - parent: 0 - pos: -8.5,-17.5 - type: Transform -- uid: 2450 - type: ChairOfficeLight - components: - - parent: 0 - pos: -9.5,-17.5 - type: Transform -- uid: 2451 - type: ChairOfficeLight - components: - - parent: 0 - pos: -8.5,-18.5 - rot: 1.5707963267948966 rad - type: Transform -- uid: 2452 - type: Autolathe - components: - - parent: 0 - pos: -5.5,-12.5 - type: Transform -- uid: 2453 - type: Protolathe - components: - - parent: 0 - pos: -3.5,-12.5 - type: Transform - uid: 2454 type: Table components: - - parent: 0 - pos: -2.5,-13.5 + - parent: 15 + pos: -1.5,-17.5 rot: -1.5707963267948966 rad type: Transform - uid: 2455 type: Table components: - - parent: 0 - pos: -1.5,-13.5 + - parent: 15 + pos: -2.5,-17.5 rot: -1.5707963267948966 rad type: Transform - uid: 2456 type: Table components: - - parent: 0 - pos: -0.5,-13.5 + - parent: 15 + pos: 0.5,-15.5 rot: -1.5707963267948966 rad type: Transform - uid: 2457 - type: SpawnPointStationEngineer + type: Table components: - - parent: 0 - pos: 41.5,4.5 + - parent: 15 + pos: 0.5,-14.5 rot: -1.5707963267948966 rad type: Transform - uid: 2458 - type: SpawnPointStationEngineer + type: BaseResearchAndDevelopmentPointSource components: - - parent: 0 - pos: 33.5,11.5 + - parent: 15 + pos: -5.5,-17.5 rot: -1.5707963267948966 rad type: Transform - uid: 2459 + type: ChairOfficeLight + components: + - parent: 15 + pos: -0.5,-14.5 + type: Transform +- uid: 2460 + type: ChairOfficeLight + components: + - parent: 15 + pos: -5.5,-23.5 + type: Transform +- uid: 2461 + type: VendingMachineCoffee + components: + - parent: 15 + pos: -7.5,-17.5 + type: Transform + - SerialNumber: FXDO-7188 + WireSeed: 428238634 + type: Wires +- uid: 2462 + type: Table + components: + - parent: 15 + pos: -8.5,-17.5 + type: Transform +- uid: 2463 + type: ChairOfficeLight + components: + - parent: 15 + pos: -9.5,-17.5 + type: Transform +- uid: 2464 + type: ChairOfficeLight + components: + - parent: 15 + pos: -8.5,-18.5 + rot: 1.5707963267948966 rad + type: Transform +- uid: 2465 + type: Autolathe + components: + - parent: 15 + pos: -5.5,-12.5 + type: Transform +- uid: 2466 + type: Protolathe + components: + - parent: 15 + pos: -3.5,-12.5 + type: Transform +- uid: 2467 + type: Table + components: + - parent: 15 + pos: -2.5,-13.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2468 + type: Table + components: + - parent: 15 + pos: -1.5,-13.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2469 + type: Table + components: + - parent: 15 + pos: -0.5,-13.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2470 + type: SpawnPointStationEngineer + components: + - parent: 15 + pos: 41.5,4.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2471 + type: SpawnPointStationEngineer + components: + - parent: 15 + pos: 33.5,11.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2472 type: SpawnPointSecurityOfficer components: - - parent: 0 + - parent: 15 pos: -2.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2460 +- uid: 2473 type: SpawnPointSecurityOfficer components: - - parent: 0 + - parent: 15 pos: -13.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2461 +- uid: 2474 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: -38.5,11 rot: -1.5707963267948966 rad type: Transform @@ -23276,442 +23487,442 @@ entities: - containers: light_bulb: entities: - - 2462 + - 2475 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2462 +- uid: 2475 type: LightTube components: - - parent: 2461 + - parent: 2474 type: Transform -- uid: 2463 +- uid: 2476 type: Table components: - - parent: 0 + - parent: 15 pos: -2.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2464 +- uid: 2477 type: Table components: - - parent: 0 + - parent: 15 pos: -7.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2465 +- uid: 2478 type: Table components: - - parent: 0 + - parent: 15 pos: -6.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2466 +- uid: 2479 type: Table components: - - parent: 0 + - parent: 15 pos: -5.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2467 +- uid: 2480 type: Table components: - - parent: 0 + - parent: 15 pos: -4.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2468 +- uid: 2481 type: Table components: - - parent: 0 + - parent: 15 pos: -3.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2469 +- uid: 2482 type: Table components: - - parent: 0 + - parent: 15 pos: -2.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2470 +- uid: 2483 type: Table components: - - parent: 0 + - parent: 15 pos: 39.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2471 +- uid: 2484 type: SpawnPointAssistant components: - - parent: 0 + - parent: 15 pos: -27.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2472 +- uid: 2485 type: SpawnPointSecurityOfficer components: - - parent: 0 + - parent: 15 pos: -12.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2473 +- uid: 2486 type: SpawnPointAssistant components: - - parent: 0 + - parent: 15 pos: -27.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2474 +- uid: 2487 type: SpawnPointStationEngineer components: - - parent: 0 + - parent: 15 pos: 33.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2475 +- uid: 2488 type: StoolBar components: - - parent: 0 + - parent: 15 pos: -7.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2476 +- uid: 2489 type: StoolBar components: - - parent: 0 + - parent: 15 pos: -6.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2477 +- uid: 2490 type: StoolBar components: - - parent: 0 + - parent: 15 pos: -5.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2478 +- uid: 2491 type: StoolBar components: - - parent: 0 + - parent: 15 pos: -4.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2479 +- uid: 2492 type: StoolBar components: - - parent: 0 + - parent: 15 pos: -3.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2480 +- uid: 2493 type: StoolBar components: - - parent: 0 + - parent: 15 pos: -2.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2481 +- uid: 2494 type: Fork components: - - parent: 0 + - parent: 15 pos: -7.6538,0.49939823 type: Transform -- uid: 2482 +- uid: 2495 type: Arcade components: - - parent: 0 + - parent: 15 pos: -1.5,-4.5 type: Transform -- uid: 2483 +- uid: 2496 type: TableWood components: - - parent: 0 + - parent: 15 pos: -7.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2484 +- uid: 2497 type: TableWood components: - - parent: 0 + - parent: 15 pos: -6.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2485 +- uid: 2498 type: TableWood components: - - parent: 0 + - parent: 15 pos: -0.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2486 +- uid: 2499 type: TableWood components: - - parent: 0 + - parent: 15 pos: -3.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2487 +- uid: 2500 type: ChairWood components: - - parent: 0 + - parent: 15 pos: -3.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2488 +- uid: 2501 type: ChairWood components: - - parent: 0 + - parent: 15 pos: -3.5,-0.5 rot: 1.5707963267948966 rad type: Transform -- uid: 2489 +- uid: 2502 type: ChairWood components: - - parent: 0 + - parent: 15 pos: -6.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2490 +- uid: 2503 type: ChairWood components: - - parent: 0 + - parent: 15 pos: -7.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2491 +- uid: 2504 type: ChairWood components: - - parent: 0 + - parent: 15 pos: -7.5,-0.5 rot: 1.5707963267948966 rad type: Transform -- uid: 2492 +- uid: 2505 type: ChairWood components: - - parent: 0 + - parent: 15 pos: -6.5,-0.5 rot: 1.5707963267948966 rad type: Transform -- uid: 2493 +- uid: 2506 type: ChairWood components: - - parent: 0 + - parent: 15 pos: -0.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2494 +- uid: 2507 type: ChairWood components: - - parent: 0 + - parent: 15 pos: -0.5,-0.5 rot: 1.5707963267948966 rad type: Transform -- uid: 2495 +- uid: 2508 type: BarSign components: - name: The Net desc: You just seem to get caught up in it for hours. type: MetaData - - parent: 0 + - parent: 15 pos: 1,2.5 rot: 1.5707963267948966 rad type: Transform - current: TheNet type: BarSign -- uid: 2496 +- uid: 2509 type: Spoon components: - - parent: 0 + - parent: 15 pos: -6.419425,0.43689823 type: Transform -- uid: 2497 +- uid: 2510 type: VendingMachineCigs components: - - parent: 0 + - parent: 15 pos: 0.5,-4.5 type: Transform - SerialNumber: LQQS-9626 WireSeed: 1162309017 type: Wires -- uid: 2498 +- uid: 2511 type: VendingMachineSnack components: - - parent: 0 + - parent: 15 pos: -0.5,-4.5 type: Transform - SerialNumber: UTZI-3622 WireSeed: 241374962 type: Wires -- uid: 2499 +- uid: 2512 type: Chair components: - - parent: 0 + - parent: 15 pos: 22.5,-14.5 type: Transform -- uid: 2500 +- uid: 2513 type: Stool components: - - parent: 0 + - parent: 15 pos: -1.5,-3.5 type: Transform -- uid: 2501 +- uid: 2514 type: Table components: - - parent: 0 + - parent: 15 pos: -15.5,-10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2502 +- uid: 2515 type: ComputerComms components: - - parent: 0 + - parent: 15 pos: 3.5,32.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2503 +- uid: 2516 type: WarpPoint components: - - parent: 0 + - parent: 15 pos: -4.5,-0.5 rot: -1.5707963267948966 rad type: Transform - location: bar type: WarpPoint -- uid: 2504 +- uid: 2517 type: WarpPoint components: - - parent: 0 + - parent: 15 pos: -6.5,-19.5 rot: -1.5707963267948966 rad type: Transform - location: sci type: WarpPoint -- uid: 2505 +- uid: 2518 type: WarpPoint components: - - parent: 0 + - parent: 15 pos: 14.5,-9.5 rot: -1.5707963267948966 rad type: Transform - location: med type: WarpPoint -- uid: 2506 +- uid: 2519 type: WarpPoint components: - - parent: 0 + - parent: 15 pos: 19.5,11.5 rot: -1.5707963267948966 rad type: Transform - location: cargo type: WarpPoint -- uid: 2507 +- uid: 2520 type: WarpPoint components: - - parent: 0 + - parent: 15 pos: 34.5,4.5 rot: -1.5707963267948966 rad type: Transform - location: eng type: WarpPoint -- uid: 2508 +- uid: 2521 type: VendingMachineCola components: - - parent: 0 + - parent: 15 pos: 1.5,21.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: UJIM-0013 WireSeed: 1599139719 type: Wires -- uid: 2509 +- uid: 2522 type: VendingMachineCoffee components: - - parent: 0 + - parent: 15 pos: 0.5,23.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: IZAA-7367 WireSeed: 1364903384 type: Wires -- uid: 2510 +- uid: 2523 type: VendingMachineCigs components: - - parent: 0 + - parent: 15 pos: 6.5,23.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: HKLI-4112 WireSeed: 911429600 type: Wires -- uid: 2511 +- uid: 2524 type: TableWood components: - - parent: 0 + - parent: 15 pos: 8.5,25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2512 +- uid: 2525 type: TableWood components: - - parent: 0 + - parent: 15 pos: 8.5,26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2513 +- uid: 2526 type: ChairOfficeDark components: - - parent: 0 + - parent: 15 pos: 3.5,31.5 rot: 1.5707963267948966 rad type: Transform -- uid: 2514 +- uid: 2527 type: ComputerComms components: - - parent: 0 + - parent: 15 pos: 9.5,23.5 rot: 1.5707963267948966 rad type: Transform -- uid: 2515 +- uid: 2528 type: ChairOfficeDark components: - - parent: 0 + - parent: 15 pos: 9.5,25.5 rot: 3.141592653589793 rad type: Transform -- uid: 2516 +- uid: 2529 type: ChairWood components: - - parent: 0 + - parent: 15 pos: 7.5,25.5 type: Transform -- uid: 2517 +- uid: 2530 type: WarpPoint components: - - parent: 0 + - parent: 15 pos: -6.5,13.5 rot: -1.5707963267948966 rad type: Transform - location: sec type: WarpPoint -- uid: 2518 +- uid: 2531 type: WarpPoint components: - - parent: 0 + - parent: 15 pos: 3.5,29.5 rot: -1.5707963267948966 rad type: Transform - location: bridge type: WarpPoint -- uid: 2519 +- uid: 2532 type: Table components: - - parent: 0 + - parent: 15 pos: 6.5,20.5 type: Transform -- uid: 2520 +- uid: 2533 type: ComputerId components: - - parent: 0 + - parent: 15 pos: 8.5,23.5 rot: 1.5707963267948966 rad type: Transform @@ -23721,10 +23932,10 @@ entities: IdCardConsole-targetId: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2521 +- uid: 2534 type: ComputerId components: - - parent: 0 + - parent: 15 pos: 7.5,21.5 rot: -1.5707963267948966 rad type: Transform @@ -23734,97 +23945,97 @@ entities: IdCardConsole-targetId: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2522 +- uid: 2535 type: ComputerAlert components: - - parent: 0 + - parent: 15 pos: 6.5,32.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2523 +- uid: 2536 type: ComputerPowerMonitoring components: - - parent: 0 + - parent: 15 pos: 7.5,32.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2524 +- uid: 2537 type: Paper components: - - parent: 0 + - parent: 15 pos: -1.344388,25.58412 type: Transform -- uid: 2525 +- uid: 2538 type: Pen components: - - parent: 0 + - parent: 15 pos: -1.563138,24.568495 type: Transform -- uid: 2526 +- uid: 2539 type: TableWood components: - - parent: 0 + - parent: 15 pos: -1.5,25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2527 +- uid: 2540 type: TableWood components: - - parent: 0 + - parent: 15 pos: -1.5,24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2528 +- uid: 2541 type: ChairOfficeDark components: - - parent: 0 + - parent: 15 pos: -0.5,24.5 rot: 3.141592653589793 rad type: Transform -- uid: 2529 +- uid: 2542 type: ChairOfficeDark components: - - parent: 0 + - parent: 15 pos: -0.5,25.5 rot: 3.141592653589793 rad type: Transform -- uid: 2530 +- uid: 2543 type: ChairOfficeDark components: - - parent: 0 + - parent: 15 pos: -2.5,24.5 type: Transform -- uid: 2531 +- uid: 2544 type: ChairOfficeDark components: - - parent: 0 + - parent: 15 pos: -2.5,25.5 type: Transform -- uid: 2532 +- uid: 2545 type: ChairOfficeDark components: - - parent: 0 + - parent: 15 pos: 7.5,31.5 rot: 1.5707963267948966 rad type: Transform -- uid: 2533 +- uid: 2546 type: ComputerMedicalRecords components: - - parent: 0 + - parent: 15 pos: 0.5,32.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2534 +- uid: 2547 type: ChairOfficeDark components: - - parent: 0 + - parent: 15 pos: 0.5,31.5 rot: 1.5707963267948966 rad type: Transform -- uid: 2535 +- uid: 2548 type: ComputerSupplyRequest components: - - parent: 0 + - parent: 15 pos: 8.5,31.5 rot: 3.141592653589793 rad type: Transform @@ -23841,578 +24052,415 @@ entities: - cargo.glass - cargo.cable type: GalacticMarket -- uid: 2536 +- uid: 2549 type: Table components: - - parent: 0 + - parent: 15 pos: 9.5,18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2537 +- uid: 2550 type: Table components: - - parent: 0 + - parent: 15 pos: 9.5,16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2538 +- uid: 2551 type: Table components: - - parent: 0 + - parent: 15 pos: 9.5,17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2539 +- uid: 2552 type: Chair components: - - parent: 0 + - parent: 15 pos: 8.5,17.5 type: Transform -- uid: 2540 +- uid: 2553 type: ChairOfficeDark components: - - parent: 0 + - parent: 15 pos: 10.5,17.5 rot: 3.141592653589793 rad type: Transform -- uid: 2541 +- uid: 2554 type: Paper components: - - parent: 0 + - parent: 15 pos: 9.699392,17.630365 rot: 3.141592653589793 rad type: Transform -- uid: 2542 - type: solid_wall - components: - - parent: 0 - pos: -34.5,-9.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2543 - type: solid_wall - components: - - parent: 0 - pos: -34.5,-10.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2544 - type: solid_wall - components: - - parent: 0 - pos: -34.5,-11.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2545 - type: solid_wall - components: - - parent: 0 - pos: -34.5,-12.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2546 - type: solid_wall - components: - - parent: 0 - pos: -33.5,-12.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2547 - type: solid_wall - components: - - parent: 0 - pos: -32.5,-12.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2548 - type: solid_wall - components: - - parent: 0 - pos: -31.5,-12.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2549 - type: solid_wall - components: - - parent: 0 - pos: -30.5,-12.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2550 - type: solid_wall - components: - - parent: 0 - pos: -29.5,-12.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2551 - type: solid_wall - components: - - parent: 0 - pos: -28.5,-12.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2552 - type: solid_wall - components: - - parent: 0 - pos: -27.5,-12.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2553 - type: solid_wall - components: - - parent: 0 - pos: -26.5,-12.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2554 - type: solid_wall - components: - - parent: 0 - pos: -25.5,-12.5 - rot: -1.5707963267948966 rad - type: Transform - uid: 2555 type: solid_wall components: - - parent: 0 - pos: -24.5,-12.5 + - parent: 15 + pos: -34.5,-9.5 rot: -1.5707963267948966 rad type: Transform - uid: 2556 type: solid_wall components: - - parent: 0 - pos: -24.5,-13.5 + - parent: 15 + pos: -34.5,-10.5 rot: -1.5707963267948966 rad type: Transform - uid: 2557 type: solid_wall components: - - parent: 0 - pos: -23.5,-13.5 + - parent: 15 + pos: -34.5,-11.5 rot: -1.5707963267948966 rad type: Transform - uid: 2558 type: solid_wall components: - - parent: 0 - pos: -16.5,-6.5 + - parent: 15 + pos: -34.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 2559 - type: BreathMaskClothing + type: solid_wall components: - - parent: 2785 + - parent: 15 + pos: -33.5,-12.5 + rot: -1.5707963267948966 rad type: Transform - uid: 2560 type: solid_wall components: - - parent: 0 - pos: -20.5,-13.5 + - parent: 15 + pos: -32.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 2561 type: solid_wall components: - - parent: 0 - pos: -19.5,-13.5 + - parent: 15 + pos: -31.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 2562 type: solid_wall components: - - parent: 0 - pos: -19.5,-15.5 + - parent: 15 + pos: -30.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 2563 type: solid_wall components: - - parent: 0 - pos: -19.5,-16.5 + - parent: 15 + pos: -29.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 2564 type: solid_wall components: - - parent: 0 - pos: -19.5,-14.5 + - parent: 15 + pos: -28.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 2565 type: solid_wall components: - - parent: 0 - pos: -20.5,-9.5 + - parent: 15 + pos: -27.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 2566 type: solid_wall components: - - parent: 0 - pos: -20.5,-10.5 + - parent: 15 + pos: -26.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 2567 type: solid_wall components: - - parent: 0 - pos: -19.5,-10.5 + - parent: 15 + pos: -25.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 2568 type: solid_wall components: - - parent: 0 - pos: -18.5,-10.5 + - parent: 15 + pos: -20.5,-16.5 rot: -1.5707963267948966 rad type: Transform - uid: 2569 type: solid_wall components: - - parent: 0 - pos: -17.5,-10.5 + - parent: 15 + pos: -21.5,-16.5 rot: -1.5707963267948966 rad type: Transform - uid: 2570 type: solid_wall components: - - parent: 0 - pos: -20.5,-8.5 + - parent: 15 + pos: -25.5,-13.5 rot: -1.5707963267948966 rad type: Transform - uid: 2571 type: solid_wall components: - - parent: 0 - pos: -15.5,2.5 + - parent: 15 + pos: -16.5,-6.5 rot: -1.5707963267948966 rad type: Transform - uid: 2572 - type: solid_wall + type: BreathMaskClothing components: - - parent: 0 - pos: -14.5,2.5 - rot: -1.5707963267948966 rad + - parent: 2797 type: Transform - uid: 2573 type: solid_wall components: - - parent: 0 - pos: -13.5,2.5 + - parent: 15 + pos: -22.5,-16.5 rot: -1.5707963267948966 rad type: Transform - uid: 2574 type: solid_wall components: - - parent: 0 - pos: -12.5,2.5 + - parent: 15 + pos: -24.5,-16.5 rot: -1.5707963267948966 rad type: Transform - uid: 2575 - type: solid_wall + type: TrashSpawner components: - - parent: 0 - pos: -15.5,1.5 + - parent: 15 + pos: 7.5,13.5 rot: -1.5707963267948966 rad type: Transform - uid: 2576 type: solid_wall components: - - parent: 0 - pos: -15.5,-3.5 + - parent: 15 + pos: -19.5,-16.5 rot: -1.5707963267948966 rad type: Transform - uid: 2577 type: solid_wall components: - - parent: 0 - pos: -15.5,-0.5 + - parent: 15 + pos: -20.5,-9.5 rot: -1.5707963267948966 rad type: Transform - uid: 2578 type: solid_wall components: - - parent: 0 - pos: -15.5,-1.5 + - parent: 15 + pos: -20.5,-10.5 rot: -1.5707963267948966 rad type: Transform - uid: 2579 type: solid_wall components: - - parent: 0 - pos: -15.5,-2.5 + - parent: 15 + pos: -19.5,-10.5 rot: -1.5707963267948966 rad type: Transform - uid: 2580 type: solid_wall components: - - parent: 0 - pos: -10.5,-2.5 + - parent: 15 + pos: -18.5,-10.5 rot: -1.5707963267948966 rad type: Transform - uid: 2581 type: solid_wall components: - - parent: 0 - pos: -11.5,-2.5 + - parent: 15 + pos: -17.5,-10.5 rot: -1.5707963267948966 rad type: Transform - uid: 2582 type: solid_wall components: - - parent: 0 - pos: -13.5,-2.5 + - parent: 15 + pos: -20.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 2583 type: solid_wall components: - - parent: 0 - pos: -14.5,-2.5 + - parent: 15 + pos: -15.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 2584 type: solid_wall components: - - parent: 0 - pos: -10.5,-3.5 + - parent: 15 + pos: -14.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 2585 type: solid_wall components: - - parent: 0 - pos: -10.5,-4.5 + - parent: 15 + pos: -13.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 2586 type: solid_wall components: - - parent: 0 - pos: -11.5,-5.5 + - parent: 15 + pos: -12.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 2587 type: solid_wall components: - - parent: 0 - pos: -12.5,-5.5 + - parent: 15 + pos: -15.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 2588 type: solid_wall components: - - parent: 0 - pos: -13.5,-5.5 + - parent: 15 + pos: -15.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 2589 type: solid_wall components: - - parent: 0 - pos: -14.5,-5.5 + - parent: 15 + pos: -15.5,-0.5 rot: -1.5707963267948966 rad type: Transform - uid: 2590 - type: Catwalk + type: solid_wall components: - - parent: 0 - pos: -23.5,-10.5 + - parent: 15 + pos: -15.5,-1.5 rot: -1.5707963267948966 rad type: Transform - uid: 2591 - type: Catwalk + type: solid_wall components: - - parent: 0 - pos: -17.5,-14.5 + - parent: 15 + pos: -15.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 2592 - type: Catwalk + type: solid_wall components: - - parent: 0 - pos: -9.5,-7.5 + - parent: 15 + pos: -10.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 2593 - type: BreathMaskClothing + type: solid_wall components: - - parent: 2387 + - parent: 15 + pos: -11.5,-2.5 + rot: -1.5707963267948966 rad type: Transform - uid: 2594 - type: FoodChocolateBar + type: solid_wall components: - - parent: 2387 + - parent: 15 + pos: -13.5,-2.5 + rot: -1.5707963267948966 rad type: Transform - uid: 2595 - type: FoodChocolateBar + type: solid_wall components: - - parent: 1672 + - parent: 15 + pos: -14.5,-2.5 + rot: -1.5707963267948966 rad type: Transform - uid: 2596 - type: Wire + type: solid_wall components: - - parent: 0 - pos: -33.5,-7.5 + - parent: 15 + pos: -10.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2597 - type: Wire + type: solid_wall components: - - parent: 0 - pos: -33.5,-8.5 + - parent: 15 + pos: -10.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2598 - type: Wire + type: solid_wall components: - - parent: 0 - pos: -33.5,-9.5 + - parent: 15 + pos: -11.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2599 - type: Wire + type: solid_wall components: - - parent: 0 - pos: -33.5,-10.5 + - parent: 15 + pos: -12.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2600 - type: Wire + type: solid_wall components: - - parent: 0 - pos: -33.5,-11.5 + - parent: 15 + pos: -13.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2601 - type: Wire + type: solid_wall components: - - parent: 0 - pos: -32.5,-11.5 + - parent: 15 + pos: -14.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2602 - type: Wire + type: Catwalk components: - - parent: 0 - pos: -31.5,-11.5 + - parent: 15 + pos: -23.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2603 - type: Wire + type: Catwalk components: - - parent: 0 - pos: -30.5,-11.5 + - parent: 15 + pos: -17.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2604 - type: Wire + type: Catwalk components: - - parent: 0 - pos: -29.5,-11.5 + - parent: 15 + pos: -9.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2605 - type: Wire + type: BreathMaskClothing components: - - parent: 0 - pos: -28.5,-11.5 - rot: -1.5707963267948966 rad + - parent: 2400 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2606 - type: Wire + type: FoodChocolateBar components: - - parent: 0 - pos: -27.5,-11.5 - rot: -1.5707963267948966 rad + - parent: 2400 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2607 - type: Wire + type: FoodChocolateBar components: - - parent: 0 - pos: -26.5,-11.5 - rot: -1.5707963267948966 rad + - parent: 1686 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2608 type: Wire components: - - parent: 0 - pos: -25.5,-11.5 + - parent: 15 + pos: -33.5,-7.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -24424,8 +24472,8 @@ entities: - uid: 2609 type: Wire components: - - parent: 0 - pos: -24.5,-11.5 + - parent: 15 + pos: -33.5,-8.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -24437,8 +24485,8 @@ entities: - uid: 2610 type: Wire components: - - parent: 0 - pos: -23.5,-11.5 + - parent: 15 + pos: -33.5,-9.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -24450,8 +24498,8 @@ entities: - uid: 2611 type: Wire components: - - parent: 0 - pos: -23.5,-12.5 + - parent: 15 + pos: -33.5,-10.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -24463,8 +24511,8 @@ entities: - uid: 2612 type: Wire components: - - parent: 0 - pos: -22.5,-12.5 + - parent: 15 + pos: -33.5,-11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -24476,8 +24524,8 @@ entities: - uid: 2613 type: Wire components: - - parent: 0 - pos: -21.5,-12.5 + - parent: 15 + pos: -32.5,-11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -24489,8 +24537,8 @@ entities: - uid: 2614 type: Wire components: - - parent: 0 - pos: -20.5,-12.5 + - parent: 15 + pos: -31.5,-11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -24502,8 +24550,8 @@ entities: - uid: 2615 type: Wire components: - - parent: 0 - pos: -19.5,-12.5 + - parent: 15 + pos: -30.5,-11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -24515,8 +24563,8 @@ entities: - uid: 2616 type: Wire components: - - parent: 0 - pos: -18.5,-12.5 + - parent: 15 + pos: -29.5,-11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -24528,8 +24576,8 @@ entities: - uid: 2617 type: Wire components: - - parent: 0 - pos: -18.5,-13.5 + - parent: 15 + pos: -28.5,-11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -24541,8 +24589,8 @@ entities: - uid: 2618 type: Wire components: - - parent: 0 - pos: -18.5,-14.5 + - parent: 15 + pos: -27.5,-11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -24554,8 +24602,8 @@ entities: - uid: 2619 type: Wire components: - - parent: 0 - pos: -9.5,-6.5 + - parent: 15 + pos: -26.5,-11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -24567,8 +24615,8 @@ entities: - uid: 2620 type: Wire components: - - parent: 0 - pos: -17.5,-14.5 + - parent: 15 + pos: -25.5,-11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -24578,44 +24626,62 @@ entities: - AdjacentNode type: NodeContainer - uid: 2621 - type: FlashlightLantern + type: Wire components: - - parent: 2387 + - parent: 15 + pos: -24.5,-11.5 + rot: -1.5707963267948966 rad type: Transform - - containers: - flashlight_cell_container: - entities: - - 284 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 2622 - type: PowerCellSmallHyper + type: Wire components: - - parent: 2623 + - parent: 15 + pos: -23.5,-11.5 + rot: -1.5707963267948966 rad type: Transform - - startingCharge: 1000 - type: PowerCell + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 2623 - type: FlashlightLantern + type: Wire components: - - parent: 2387 + - parent: 15 + pos: -18.5,-11.5 + rot: -1.5707963267948966 rad type: Transform - - containers: - flashlight_cell_container: - entities: - - 2622 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 2624 - type: BreathMaskClothing + type: Wire components: - - parent: 2387 + - parent: 15 + pos: -21.5,-11.5 + rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 2625 type: Wire components: - - parent: 0 - pos: -15.5,-6.5 + - parent: 15 + pos: -22.5,-11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -24627,8 +24693,8 @@ entities: - uid: 2626 type: Wire components: - - parent: 0 - pos: -14.5,-6.5 + - parent: 15 + pos: -19.5,-11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -24640,8 +24706,8 @@ entities: - uid: 2627 type: Wire components: - - parent: 0 - pos: -13.5,-6.5 + - parent: 15 + pos: -20.5,-11.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -24653,8 +24719,8 @@ entities: - uid: 2628 type: Wire components: - - parent: 0 - pos: -12.5,-6.5 + - parent: 15 + pos: -18.5,-12.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -24666,8 +24732,8 @@ entities: - uid: 2629 type: Wire components: - - parent: 0 - pos: -11.5,-6.5 + - parent: 15 + pos: -18.5,-13.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -24679,8 +24745,8 @@ entities: - uid: 2630 type: Wire components: - - parent: 0 - pos: -10.5,-6.5 + - parent: 15 + pos: -18.5,-14.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -24692,8 +24758,8 @@ entities: - uid: 2631 type: Wire components: - - parent: 0 - pos: -23.5,-10.5 + - parent: 15 + pos: -9.5,-6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -24705,8 +24771,8 @@ entities: - uid: 2632 type: Wire components: - - parent: 0 - pos: -23.5,-9.5 + - parent: 15 + pos: -17.5,-14.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -24716,77 +24782,83 @@ entities: - AdjacentNode type: NodeContainer - uid: 2633 - type: Wire + type: FlashlightLantern components: - - parent: 0 - pos: -23.5,-8.5 - rot: -1.5707963267948966 rad + - parent: 2400 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer + - containers: + flashlight_cell_container: + entities: + - 299 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer - uid: 2634 - type: Wire + type: PowerCellSmallHyper components: - - parent: 0 - pos: -21.5,-7.5 - rot: -1.5707963267948966 rad + - parent: 2635 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer + - startingCharge: 1000 + type: PowerCell - uid: 2635 - type: Wire + type: FlashlightLantern components: - - parent: 0 - pos: -20.5,-7.5 - rot: -1.5707963267948966 rad + - parent: 2400 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer + - containers: + flashlight_cell_container: + entities: + - 2634 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer - uid: 2636 - type: SpawnPointLatejoin + type: BreathMaskClothing components: - - parent: 0 - pos: -36.5,-1.5 - rot: -1.5707963267948966 rad + - parent: 2400 type: Transform - uid: 2637 - type: Table + type: Wire components: - - parent: 0 - pos: -10.5,-0.5 + - parent: 15 + pos: -15.5,-6.5 rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 2638 - type: Table + type: Wire components: - - parent: 0 - pos: -10.5,0.5 + - parent: 15 + pos: -14.5,-6.5 rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 2639 - type: Table + type: Wire components: - - parent: 0 - pos: -10.5,1.5 + - parent: 15 + pos: -13.5,-6.5 rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 2640 type: Wire components: - - parent: 0 - pos: -9.5,-1.5 + - parent: 15 + pos: -12.5,-6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -24798,8 +24870,8 @@ entities: - uid: 2641 type: Wire components: - - parent: 0 - pos: -10.5,-1.5 + - parent: 15 + pos: -11.5,-6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -24811,8 +24883,8 @@ entities: - uid: 2642 type: Wire components: - - parent: 0 - pos: -11.5,-1.5 + - parent: 15 + pos: -10.5,-6.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -24822,71 +24894,11 @@ entities: - AdjacentNode type: NodeContainer - uid: 2643 - type: LightTube - components: - - parent: 788 - type: Transform -- uid: 2644 - type: SpawnPointSecurityOfficer - components: - - parent: 0 - pos: -11.5,8.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2645 - type: VendingMachineTheater - components: - - parent: 0 - pos: -17.5,-9.5 - rot: -1.5707963267948966 rad - type: Transform - - SerialNumber: OOCP-5021 - WireSeed: 1336485199 - type: Wires -- uid: 2646 - type: PianoInstrument - components: - - parent: 0 - pos: -9.5,-4.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2647 - type: Stool - components: - - parent: 0 - pos: -9.5,-3.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2648 - type: Table - components: - - parent: 0 - pos: -14.5,-1.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2649 - type: Table - components: - - parent: 0 - pos: -14.5,-0.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2650 - type: KitchenMicrowave - components: - - parent: 0 - pos: -14.5,-1.5 - rot: -1.5707963267948966 rad - type: Transform - - containers: - microwave_entity_container: - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2651 type: Wire components: - - parent: 0 - pos: -11.5,-0.5 + - parent: 15 + pos: -23.5,-10.5 + rot: -1.5707963267948966 rad type: Transform - nodeTypes: HVPower: @@ -24894,11 +24906,92 @@ entities: Apc: - AdjacentNode type: NodeContainer +- uid: 2644 + type: Wire + components: + - parent: 15 + pos: -23.5,-9.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2645 + type: Wire + components: + - parent: 15 + pos: -23.5,-8.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2646 + type: Wire + components: + - parent: 15 + pos: -21.5,-7.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2647 + type: Wire + components: + - parent: 15 + pos: -20.5,-7.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2648 + type: SpawnPointLatejoin + components: + - parent: 15 + pos: -36.5,-1.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2649 + type: Table + components: + - parent: 15 + pos: -10.5,-0.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2650 + type: Table + components: + - parent: 15 + pos: -10.5,0.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2651 + type: Table + components: + - parent: 15 + pos: -10.5,1.5 + rot: -1.5707963267948966 rad + type: Transform - uid: 2652 type: Wire components: - - parent: 0 - pos: -11.5,1.5 + - parent: 15 + pos: -9.5,-1.5 + rot: -1.5707963267948966 rad type: Transform - nodeTypes: HVPower: @@ -24907,9 +25000,122 @@ entities: - AdjacentNode type: NodeContainer - uid: 2653 + type: Wire + components: + - parent: 15 + pos: -10.5,-1.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2654 + type: Wire + components: + - parent: 15 + pos: -11.5,-1.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2655 + type: LightTube + components: + - parent: 803 + type: Transform +- uid: 2656 + type: SpawnPointSecurityOfficer + components: + - parent: 15 + pos: -11.5,8.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2657 + type: VendingMachineTheater + components: + - parent: 15 + pos: -17.5,-9.5 + rot: -1.5707963267948966 rad + type: Transform + - SerialNumber: OOCP-5021 + WireSeed: 1336485199 + type: Wires +- uid: 2658 + type: PianoInstrument + components: + - parent: 15 + pos: -9.5,-4.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics +- uid: 2659 + type: Stool + components: + - parent: 15 + pos: -9.5,-3.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2660 + type: Table + components: + - parent: 15 + pos: -14.5,-1.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2661 + type: Table + components: + - parent: 15 + pos: -14.5,-0.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2662 + type: KitchenMicrowave + components: + - parent: 15 + pos: -14.5,-1.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + microwave_entity_container: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2663 + type: Wire + components: + - parent: 15 + pos: -11.5,-0.5 + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2664 + type: Wire + components: + - parent: 15 + pos: -11.5,1.5 + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2665 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: -13.5,-2 rot: 1.5707963267948966 rad type: Transform @@ -24920,18 +25126,18 @@ entities: - containers: light_bulb: entities: - - 2654 + - 2666 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2654 +- uid: 2666 type: LightTube components: - - parent: 2653 + - parent: 2665 type: Transform -- uid: 2655 +- uid: 2667 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: -13.5,2 rot: -1.5707963267948966 rad type: Transform @@ -24942,18 +25148,18 @@ entities: - containers: light_bulb: entities: - - 2656 + - 2668 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2656 +- uid: 2668 type: LightTube components: - - parent: 2655 + - parent: 2667 type: Transform -- uid: 2657 +- uid: 2669 type: PoweredSmallLight components: - - parent: 0 + - parent: 15 pos: -12.5,-5 rot: -1.5707963267948966 rad type: Transform @@ -24964,18 +25170,18 @@ entities: - containers: light_bulb: entities: - - 2658 + - 2670 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2658 +- uid: 2670 type: LightBulb components: - - parent: 2657 + - parent: 2669 type: Transform -- uid: 2659 +- uid: 2671 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: -18.5,-10 rot: 1.5707963267948966 rad type: Transform @@ -24986,392 +25192,236 @@ entities: - containers: light_bulb: entities: - - 2660 + - 2672 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2660 +- uid: 2672 type: LightTube components: - - parent: 2659 - type: Transform -- uid: 2661 - type: GravityGenerator - components: - - parent: 0 - pos: 49.5,-4.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2662 - type: reinforced_wall - components: - - parent: 0 - pos: 46.5,-1.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2663 - type: reinforced_wall - components: - - parent: 0 - pos: 46.5,-2.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2664 - type: reinforced_wall - components: - - parent: 0 - pos: 46.5,-3.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2665 - type: reinforced_wall - components: - - parent: 0 - pos: 46.5,-4.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2666 - type: reinforced_wall - components: - - parent: 0 - pos: 46.5,-5.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2667 - type: reinforced_wall - components: - - parent: 0 - pos: 46.5,-6.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2668 - type: reinforced_wall - components: - - parent: 0 - pos: 46.5,-7.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2669 - type: reinforced_wall - components: - - parent: 0 - pos: 47.5,-7.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2670 - type: reinforced_wall - components: - - parent: 0 - pos: 48.5,-7.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2671 - type: reinforced_wall - components: - - parent: 0 - pos: 49.5,-7.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2672 - type: reinforced_wall - components: - - parent: 0 - pos: 50.5,-7.5 - rot: -1.5707963267948966 rad + - parent: 2671 type: Transform - uid: 2673 - type: reinforced_wall + type: GravityGenerator components: - - parent: 0 - pos: 51.5,-7.5 + - parent: 15 + pos: 49.5,-4.5 rot: -1.5707963267948966 rad type: Transform - uid: 2674 type: reinforced_wall components: - - parent: 0 - pos: 52.5,-7.5 + - parent: 15 + pos: 46.5,-1.5 rot: -1.5707963267948966 rad type: Transform - uid: 2675 type: reinforced_wall components: - - parent: 0 - pos: 52.5,-6.5 + - parent: 15 + pos: 46.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 2676 type: reinforced_wall components: - - parent: 0 - pos: 52.5,-5.5 + - parent: 15 + pos: 46.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 2677 type: reinforced_wall components: - - parent: 0 - pos: 52.5,-4.5 + - parent: 15 + pos: 46.5,-4.5 rot: -1.5707963267948966 rad type: Transform - uid: 2678 type: reinforced_wall components: - - parent: 0 - pos: 52.5,-3.5 + - parent: 15 + pos: 46.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 2679 type: reinforced_wall components: - - parent: 0 - pos: 52.5,-2.5 + - parent: 15 + pos: 46.5,-6.5 rot: -1.5707963267948966 rad type: Transform - uid: 2680 type: reinforced_wall components: - - parent: 0 - pos: 52.5,-1.5 + - parent: 15 + pos: 46.5,-7.5 rot: -1.5707963267948966 rad type: Transform - uid: 2681 type: reinforced_wall components: - - parent: 0 - pos: 51.5,-1.5 + - parent: 15 + pos: 47.5,-7.5 rot: -1.5707963267948966 rad type: Transform - uid: 2682 type: reinforced_wall components: - - parent: 0 - pos: 47.5,-1.5 + - parent: 15 + pos: 48.5,-7.5 rot: -1.5707963267948966 rad type: Transform - uid: 2683 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: 51.5,4.5 + - parent: 15 + pos: 49.5,-7.5 rot: -1.5707963267948966 rad type: Transform - uid: 2684 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: 49.5,5.5 + - parent: 15 + pos: 50.5,-7.5 rot: -1.5707963267948966 rad type: Transform - uid: 2685 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: 46.5,0.5 + - parent: 15 + pos: 51.5,-7.5 rot: -1.5707963267948966 rad type: Transform - uid: 2686 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: 47.5,-0.5 + - parent: 15 + pos: 52.5,-7.5 rot: -1.5707963267948966 rad type: Transform - uid: 2687 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: 47.5,0.5 + - parent: 15 + pos: 52.5,-6.5 rot: -1.5707963267948966 rad type: Transform - uid: 2688 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: 50.5,5.5 + - parent: 15 + pos: 52.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 2689 - type: solid_wall + type: reinforced_wall components: - - parent: 0 - pos: 51.5,5.5 + - parent: 15 + pos: 52.5,-4.5 rot: -1.5707963267948966 rad type: Transform - uid: 2690 type: reinforced_wall components: - - parent: 0 - pos: 48.5,-1.5 + - parent: 15 + pos: 52.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 2691 type: reinforced_wall components: - - parent: 0 - pos: 50.5,-1.5 + - parent: 15 + pos: 52.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 2692 - type: Wire + type: reinforced_wall components: - - parent: 0 - pos: 42.5,4.5 + - parent: 15 + pos: 52.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2693 - type: Wire + type: reinforced_wall components: - - parent: 0 - pos: 43.5,4.5 + - parent: 15 + pos: 51.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2694 - type: Wire + type: reinforced_wall components: - - parent: 0 - pos: 44.5,4.5 + - parent: 15 + pos: 47.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2695 - type: Wire + type: solid_wall components: - - parent: 0 - pos: 45.5,4.5 + - parent: 15 + pos: 51.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2696 - type: Wire + type: solid_wall components: - - parent: 0 - pos: 46.5,4.5 + - parent: 15 + pos: 49.5,5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2697 - type: Wire + type: solid_wall components: - - parent: 0 - pos: 47.5,4.5 + - parent: 15 + pos: 46.5,0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2698 - type: Wire + type: solid_wall components: - - parent: 0 - pos: 48.5,4.5 + - parent: 15 + pos: 47.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2699 - type: Wire + type: solid_wall components: - - parent: 0 - pos: 49.5,4.5 + - parent: 15 + pos: 47.5,0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2700 - type: Wire + type: solid_wall components: - - parent: 0 - pos: 49.5,3.5 + - parent: 15 + pos: 50.5,5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2701 - type: Wire + type: solid_wall components: - - parent: 0 - pos: 49.5,2.5 + - parent: 15 + pos: 51.5,5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2702 - type: Wire + type: reinforced_wall components: - - parent: 0 - pos: 49.5,1.5 + - parent: 15 + pos: 48.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2703 - type: Wire + type: reinforced_wall components: - - parent: 0 - pos: 49.5,0.5 + - parent: 15 + pos: 50.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 2704 type: Wire components: - - parent: 0 - pos: 49.5,-0.5 + - parent: 15 + pos: 42.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -25383,8 +25433,8 @@ entities: - uid: 2705 type: Wire components: - - parent: 0 - pos: 49.5,-1.5 + - parent: 15 + pos: 43.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -25396,8 +25446,8 @@ entities: - uid: 2706 type: Wire components: - - parent: 0 - pos: 49.5,-2.5 + - parent: 15 + pos: 44.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -25407,10 +25457,10 @@ entities: - AdjacentNode type: NodeContainer - uid: 2707 - type: APC + type: Wire components: - - parent: 0 - pos: 50.5,-1.5 + - parent: 15 + pos: 45.5,4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -25420,9 +25470,165 @@ entities: - AdjacentNode type: NodeContainer - uid: 2708 + type: Wire + components: + - parent: 15 + pos: 46.5,4.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2709 + type: Wire + components: + - parent: 15 + pos: 47.5,4.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2710 + type: Wire + components: + - parent: 15 + pos: 48.5,4.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2711 + type: Wire + components: + - parent: 15 + pos: 49.5,4.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2712 + type: Wire + components: + - parent: 15 + pos: 49.5,3.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2713 + type: Wire + components: + - parent: 15 + pos: 49.5,2.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2714 + type: Wire + components: + - parent: 15 + pos: 49.5,1.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2715 + type: Wire + components: + - parent: 15 + pos: 49.5,0.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2716 + type: Wire + components: + - parent: 15 + pos: 49.5,-0.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2717 + type: Wire + components: + - parent: 15 + pos: 49.5,-1.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2718 + type: Wire + components: + - parent: 15 + pos: 49.5,-2.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2719 + type: APC + components: + - parent: 15 + pos: 50.5,-1.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 2720 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: 47,-4.5 type: Transform - color: '#FFFFFFFF' @@ -25430,18 +25636,18 @@ entities: - containers: light_bulb: entities: - - 2709 + - 2721 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2709 +- uid: 2721 type: LightTube components: - - parent: 2708 + - parent: 2720 type: Transform -- uid: 2710 +- uid: 2722 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: 52,-4.5 rot: 3.141592653589793 rad type: Transform @@ -25450,282 +25656,128 @@ entities: - containers: light_bulb: entities: - - 2711 + - 2723 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2711 +- uid: 2723 type: LightTube components: - - parent: 2710 - type: Transform -- uid: 2712 - type: Catwalk - components: - - parent: 0 - pos: 47.5,-2.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2713 - type: Catwalk - components: - - parent: 0 - pos: 48.5,-2.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2714 - type: Catwalk - components: - - parent: 0 - pos: 49.5,-2.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2715 - type: Catwalk - components: - - parent: 0 - pos: 50.5,-2.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2716 - type: Catwalk - components: - - parent: 0 - pos: 51.5,-2.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2717 - type: Catwalk - components: - - parent: 0 - pos: 51.5,-3.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2718 - type: Catwalk - components: - - parent: 0 - pos: 51.5,-4.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2719 - type: Catwalk - components: - - parent: 0 - pos: 51.5,-5.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2720 - type: Catwalk - components: - - parent: 0 - pos: 51.5,-6.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2721 - type: Catwalk - components: - - parent: 0 - pos: 50.5,-6.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2722 - type: Catwalk - components: - - parent: 0 - pos: 49.5,-6.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2723 - type: Catwalk - components: - - parent: 0 - pos: 48.5,-6.5 - rot: -1.5707963267948966 rad + - parent: 2722 type: Transform - uid: 2724 type: Catwalk components: - - parent: 0 - pos: 47.5,-6.5 + - parent: 15 + pos: 47.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 2725 type: Catwalk components: - - parent: 0 - pos: 47.5,-5.5 + - parent: 15 + pos: 48.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 2726 type: Catwalk components: - - parent: 0 - pos: 47.5,-4.5 + - parent: 15 + pos: 49.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 2727 + type: Catwalk + components: + - parent: 15 + pos: 50.5,-2.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2728 + type: Catwalk + components: + - parent: 15 + pos: 51.5,-2.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2729 + type: Catwalk + components: + - parent: 15 + pos: 51.5,-3.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2730 + type: Catwalk + components: + - parent: 15 + pos: 51.5,-4.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2731 + type: Catwalk + components: + - parent: 15 + pos: 51.5,-5.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2732 + type: Catwalk + components: + - parent: 15 + pos: 51.5,-6.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2733 + type: Catwalk + components: + - parent: 15 + pos: 50.5,-6.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2734 + type: Catwalk + components: + - parent: 15 + pos: 49.5,-6.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2735 + type: Catwalk + components: + - parent: 15 + pos: 48.5,-6.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2736 + type: Catwalk + components: + - parent: 15 + pos: 47.5,-6.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2737 + type: Catwalk + components: + - parent: 15 + pos: 47.5,-5.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2738 + type: Catwalk + components: + - parent: 15 + pos: 47.5,-4.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2739 type: WardrobePajamaFilled components: - - parent: 0 + - parent: 15 pos: -27.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2728 - type: WardrobeGreyFilled - components: - - parent: 0 - pos: -27.5,-2.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2729 - type: LockerGeneric - components: - - parent: 0 - pos: -11.5,-12.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2730 - type: LockerL3JanitorFilled - components: - - parent: 0 - pos: -13.5,-17.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2731 - type: WardrobeScienceFilled - components: - - parent: 0 - pos: -11.5,-17.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2732 - type: LockerResearchDirectorFilled - components: - - parent: 0 - pos: -2.5,-24.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2733 - type: LockerEngineerFilled - components: - - parent: 0 - pos: 35.5,-2.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2734 - type: LockerEngineerFilled - components: - - parent: 0 - pos: 35.5,-1.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2735 - type: LockerChiefEngineerFilled - components: - - parent: 0 - pos: 37.5,-1.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2736 - type: LockerAtmosphericsFilled - components: - - parent: 0 - pos: 36.5,8.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2737 - type: LockerAtmosphericsFilled - components: - - parent: 0 - pos: 36.5,9.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2738 - type: WardrobeAtmosphericsFilled - components: - - parent: 0 - pos: 36.5,10.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2739 - type: WardrobeEngineeringFilled - components: - - parent: 0 - pos: 32.5,-4.5 - rot: -1.5707963267948966 rad - type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: @@ -25733,12 +25785,14 @@ entities: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 2740 - type: LockerHeadOfPersonnelFilled + type: WardrobeGreyFilled components: - - parent: 0 - pos: 10.5,21.5 + - parent: 15 + pos: -27.5,-2.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: @@ -25746,12 +25800,14 @@ entities: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 2741 - type: WardrobeBlackFilled + type: LockerGeneric components: - - parent: 0 - pos: -28.5,-2.5 + - parent: 15 + pos: -11.5,-12.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: @@ -25759,12 +25815,14 @@ entities: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 2742 - type: LockerChiefMedicalOfficerFilled + type: LockerL3JanitorFilled components: - - parent: 0 - pos: 21.5,-15.5 + - parent: 15 + pos: -13.5,-17.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: @@ -25772,12 +25830,14 @@ entities: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 2743 - type: LockerL3SecurityFilled + type: WardrobeScienceFilled components: - - parent: 0 - pos: -11.5,21.5 + - parent: 15 + pos: -11.5,-17.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: @@ -25785,12 +25845,14 @@ entities: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 2744 - type: WardrobeMedicalDoctorFilled + type: LockerResearchDirectorFilled components: - - parent: 0 - pos: 23.5,-7.5 + - parent: 15 + pos: -2.5,-24.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: @@ -25798,12 +25860,14 @@ entities: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 2745 - type: LockerSecurityFilled + type: LockerEngineerFilled components: - - parent: 0 - pos: -14.5,13.5 + - parent: 15 + pos: 35.5,-2.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: @@ -25811,12 +25875,14 @@ entities: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 2746 - type: LockerSecurityFilled + type: LockerEngineerFilled components: - - parent: 0 - pos: -13.5,13.5 + - parent: 15 + pos: 35.5,-1.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: @@ -25824,12 +25890,14 @@ entities: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 2747 - type: LockerSecurityFilled + type: LockerChiefEngineerFilled components: - - parent: 0 - pos: -12.5,13.5 + - parent: 15 + pos: 37.5,-1.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: @@ -25837,12 +25905,14 @@ entities: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 2748 - type: LockerL3VirologyFilled + type: LockerAtmosphericsFilled components: - - parent: 0 - pos: 24.5,-7.5 + - parent: 15 + pos: 36.5,8.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: @@ -25850,12 +25920,14 @@ entities: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 2749 - type: LockerMedicineFilled + type: LockerAtmosphericsFilled components: - - parent: 0 - pos: 18.5,-2.5 + - parent: 15 + pos: 36.5,9.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: @@ -25863,12 +25935,14 @@ entities: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 2750 - type: WardrobeWhiteFilled + type: WardrobeAtmosphericsFilled components: - - parent: 0 - pos: 7.5,-16.5 + - parent: 15 + pos: 36.5,10.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: @@ -25876,12 +25950,14 @@ entities: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 2751 - type: LockerChefFilled + type: WardrobeEngineeringFilled components: - - parent: 0 - pos: -14.5,1.5 + - parent: 15 + pos: 32.5,-4.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: @@ -25889,12 +25965,14 @@ entities: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 2752 - type: LockerJanitorFilled + type: LockerHeadOfPersonnelFilled components: - - parent: 0 - pos: -19.5,10.5 + - parent: 15 + pos: 10.5,21.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: @@ -25902,12 +25980,14 @@ entities: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 2753 - type: LockerL3JanitorFilled + type: WardrobeBlackFilled components: - - parent: 0 - pos: -19.5,9.5 + - parent: 15 + pos: -28.5,-2.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: @@ -25915,12 +25995,14 @@ entities: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 2754 - type: WardrobePrisonFilled + type: LockerChiefMedicalOfficerFilled components: - - parent: 0 - pos: 0.5,14.5 + - parent: 15 + pos: 21.5,-15.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: @@ -25928,9 +26010,189 @@ entities: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 2755 + type: LockerL3SecurityFilled + components: + - parent: 15 + pos: -11.5,21.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2756 + type: WardrobeMedicalDoctorFilled + components: + - parent: 15 + pos: 23.5,-7.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2757 + type: LockerSecurityFilled + components: + - parent: 15 + pos: -14.5,13.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2758 + type: LockerSecurityFilled + components: + - parent: 15 + pos: -13.5,13.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2759 + type: LockerSecurityFilled + components: + - parent: 15 + pos: -12.5,13.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2760 + type: LockerL3VirologyFilled + components: + - parent: 15 + pos: 24.5,-7.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2761 + type: LockerMedicineFilled + components: + - parent: 15 + pos: 18.5,-2.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2762 + type: WardrobeWhiteFilled + components: + - parent: 15 + pos: 7.5,-16.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2763 + type: LockerChefFilled + components: + - parent: 15 + pos: -14.5,1.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2764 + type: LockerJanitorFilled + components: + - parent: 15 + pos: -19.5,10.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2765 + type: LockerL3JanitorFilled + components: + - parent: 15 + pos: -19.5,9.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2766 + type: WardrobePrisonFilled + components: + - parent: 15 + pos: 0.5,14.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2767 type: PottedPlantRandom components: - - parent: 0 + - parent: 15 pos: 0.5,26.5 rot: -1.5707963267948966 rad type: Transform @@ -25940,141 +26202,79 @@ entities: flashlight_cell_container: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2756 +- uid: 2768 type: WardrobeCargoFilled components: - - parent: 0 + - parent: 15 pos: 23.5,7.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 2757 +- uid: 2769 type: LockerCaptainFilled components: - - parent: 0 + - parent: 15 pos: 6.5,26.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 2758 +- uid: 2770 type: LockerEmergencyFilledRandom components: - - parent: 0 + - parent: 15 pos: -34.5,10.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: EntityStorageComponent: entities: - - 3044 + - 3056 type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 2759 +- uid: 2771 type: LockerEmergencyFilledRandom components: - - parent: 0 + - parent: 15 pos: -39.5,2.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: EntityStorageComponent: entities: - - 3045 - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2760 - type: LockerEmergencyFilledRandom - components: - - parent: 0 - pos: -37.5,-7.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - entities: - - 3046 - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2761 - type: LockerEmergencyFilledRandom - components: - - parent: 0 - pos: -11.5,-10.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - entities: - - 3047 - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2762 - type: LockerFireFilled - components: - - parent: 0 - pos: -14.5,-17.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2763 - type: LockerEmergencyFilledRandom - components: - - parent: 0 - pos: 23.5,1.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2764 - type: LockerEmergencyFilledRandom - components: - - parent: 0 - pos: 26.5,12.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - entities: - - 3048 - 3057 type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 2765 +- uid: 2772 type: LockerEmergencyFilledRandom components: - - parent: 0 - pos: -7.5,-25.5 + - parent: 15 + pos: -37.5,-7.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: @@ -26083,13 +26283,15 @@ entities: - 3058 type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 2766 +- uid: 2773 type: LockerEmergencyFilledRandom components: - - parent: 0 - pos: -15.5,-17.5 + - parent: 15 + pos: -11.5,-10.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: @@ -26098,112 +26300,15 @@ entities: - 3059 type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 2767 - type: LockerFireFilled - components: - - parent: 0 - pos: 9.5,-18.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2768 - type: LockerEmergencyFilledRandom - components: - - parent: 0 - pos: 8.5,-18.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - entities: - - 3068 - - 3077 - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2769 - type: LockerFireFilled - components: - - parent: 0 - pos: 23.5,0.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2770 - type: LockerFireFilled - components: - - parent: 0 - pos: 44.5,9.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2771 - type: LockerEmergencyFilledRandom - components: - - parent: 0 - pos: 43.5,9.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - entities: - - 3078 - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2772 - type: LockerFireFilled - components: - - parent: 0 - pos: 28.5,12.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 2773 - type: LockerEmergencyFilledRandom - components: - - parent: 0 - pos: 12.5,21.5 - rot: -1.5707963267948966 rad - type: Transform - - IsPlaceable: False - type: PlaceableSurface - - containers: - EntityStorageComponent: - entities: - - 3079 - - 2291 - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer - uid: 2774 type: LockerFireFilled components: - - parent: 0 - pos: 13.5,21.5 + - parent: 15 + pos: -14.5,-17.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: @@ -26211,12 +26316,14 @@ entities: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 2775 - type: LockerBombFilled + type: LockerEmergencyFilledRandom components: - - parent: 0 - pos: -12.5,21.5 + - parent: 15 + pos: 23.5,1.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: @@ -26224,48 +26331,249 @@ entities: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 2776 - type: LockerBombFilled + type: LockerEmergencyFilledRandom components: - - parent: 0 - pos: -17.5,-17.5 + - parent: 15 + pos: 26.5,12.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: EntityStorageComponent: + entities: + - 3060 + - 3069 type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 2777 - type: LockerFireFilled + type: LockerEmergencyFilledRandom components: - - parent: 0 - pos: -11.5,-11.5 + - parent: 15 + pos: -7.5,-25.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: EntityStorageComponent: + entities: + - 3070 type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 2778 - type: LockerFireFilled + type: LockerEmergencyFilledRandom components: - - parent: 0 - pos: -37.5,-6.5 + - parent: 15 + pos: -15.5,-17.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + entities: + - 3071 + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2779 + type: LockerFireFilled + components: + - parent: 15 + pos: 9.5,-18.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 2779 +- uid: 2780 + type: LockerEmergencyFilledRandom + components: + - parent: 15 + pos: 8.5,-18.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + entities: + - 3080 + - 3089 + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2781 + type: LockerFireFilled + components: + - parent: 15 + pos: 23.5,0.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2782 + type: LockerFireFilled + components: + - parent: 15 + pos: 44.5,9.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2783 + type: LockerEmergencyFilledRandom + components: + - parent: 15 + pos: 43.5,9.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + entities: + - 3090 + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2784 + type: LockerFireFilled + components: + - parent: 15 + pos: 28.5,12.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2785 + type: LockerEmergencyFilledRandom + components: + - parent: 15 + pos: 12.5,21.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + entities: + - 3091 + - 2305 + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2786 + type: LockerFireFilled + components: + - parent: 15 + pos: 13.5,21.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2787 + type: LockerBombFilled + components: + - parent: 15 + pos: -12.5,21.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2788 + type: LockerBombFilled + components: + - parent: 15 + pos: -17.5,-17.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2789 + type: LockerFireFilled + components: + - parent: 15 + pos: -11.5,-11.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2790 + type: LockerFireFilled + components: + - parent: 15 + pos: -37.5,-6.5 + rot: -1.5707963267948966 rad + type: Transform + - Anchored: True + type: Physics + - IsPlaceable: False + type: PlaceableSurface + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2791 type: PottedPlantRandom components: - - parent: 0 + - parent: 15 pos: -39.5,10.5 rot: -1.5707963267948966 rad type: Transform @@ -26275,10 +26583,10 @@ entities: flashlight_cell_container: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2780 +- uid: 2792 type: PottedPlantRandom components: - - parent: 0 + - parent: 15 pos: -25.5,-8.5 rot: -1.5707963267948966 rad type: Transform @@ -26288,25 +26596,27 @@ entities: flashlight_cell_container: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2781 +- uid: 2793 type: LockerEmergencyFilledRandom components: - - parent: 0 + - parent: 15 pos: -21.5,-8.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: EntityStorageComponent: entities: - - 2290 + - 2304 type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 2782 +- uid: 2794 type: PottedPlantRD components: - - parent: 0 + - parent: 15 pos: -2.5,-22.5 rot: -1.5707963267948966 rad type: Transform @@ -26314,58 +26624,64 @@ entities: flashlight_cell_container: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2783 +- uid: 2795 type: LockerEmergencyFilledRandom components: - - parent: 0 + - parent: 15 pos: -0.5,14.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: EntityStorageComponent: entities: - - 2387 - - 286 - - 287 + - 2400 + - 301 + - 302 type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 2784 +- uid: 2796 type: LockerEmergencyFilledRandom components: - - parent: 0 + - parent: 15 pos: 9.5,30.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: EntityStorageComponent: entities: - - 288 - - 2951 + - 303 + - 2963 type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 2785 +- uid: 2797 type: LockerEmergencyFilledRandom components: - - parent: 0 + - parent: 15 pos: -2.5,30.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: EntityStorageComponent: entities: - - 2559 + - 2572 type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 2786 +- uid: 2798 type: PottedPlantRandom components: - - parent: 0 + - parent: 15 pos: 7.5,23.5 rot: -1.5707963267948966 rad type: Transform @@ -26375,10 +26691,10 @@ entities: flashlight_cell_container: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2787 +- uid: 2799 type: PottedPlantRandom components: - - parent: 0 + - parent: 15 pos: 10.5,16.5 rot: -1.5707963267948966 rad type: Transform @@ -26388,41 +26704,45 @@ entities: flashlight_cell_container: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2788 +- uid: 2800 type: LockerEmergencyFilledRandom components: - - parent: 0 + - parent: 15 pos: 24.5,13.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: EntityStorageComponent: entities: - - 2229 + - 2243 type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 2789 +- uid: 2801 type: LockerEmergencyFilledRandom components: - - parent: 0 + - parent: 15 pos: -23.5,11.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: EntityStorageComponent: entities: - - 2950 - - 1673 + - 2962 + - 1687 type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 2790 +- uid: 2802 type: PottedPlantRandom components: - - parent: 0 + - parent: 15 pos: -24.5,11.5 rot: -1.5707963267948966 rad type: Transform @@ -26432,26 +26752,28 @@ entities: flashlight_cell_container: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2791 +- uid: 2803 type: LockerEmergencyFilledRandom components: - - parent: 0 + - parent: 15 pos: 5.5,-21.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: EntityStorageComponent: entities: - - 1672 - - 291 + - 1686 + - 306 type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 2792 +- uid: 2804 type: PottedPlantRandom components: - - parent: 0 + - parent: 15 pos: 1.5,-21.5 rot: -1.5707963267948966 rad type: Transform @@ -26461,48 +26783,52 @@ entities: flashlight_cell_container: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2793 +- uid: 2805 type: LockerBoozeFilled components: - - parent: 0 + - parent: 15 pos: -3.5,-7.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 2794 +- uid: 2806 type: VendingMachineBooze components: - - parent: 0 + - parent: 15 pos: -4.5,-7.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: DHCS-0497 WireSeed: 1858375876 type: Wires -- uid: 2795 +- uid: 2807 type: LockerEmergencyFilledRandom components: - - parent: 0 + - parent: 15 pos: -9.5,23.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: EntityStorageComponent: entities: - - 2156 + - 2170 type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 2796 +- uid: 2808 type: PottedPlantRandom components: - - parent: 0 + - parent: 15 pos: 5.5,21.5 rot: -1.5707963267948966 rad type: Transform @@ -26512,10 +26838,10 @@ entities: flashlight_cell_container: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2797 +- uid: 2809 type: PottedPlantRandom components: - - parent: 0 + - parent: 15 pos: 12.5,1.5 rot: -1.5707963267948966 rad type: Transform @@ -26525,10 +26851,10 @@ entities: flashlight_cell_container: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2798 +- uid: 2810 type: PottedPlantRandomPlastic components: - - parent: 0 + - parent: 15 pos: 29.5,-3.5 rot: -1.5707963267948966 rad type: Transform @@ -26538,10 +26864,10 @@ entities: flashlight_cell_container: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2799 +- uid: 2811 type: PottedPlantRandom components: - - parent: 0 + - parent: 15 pos: 21.5,-12.5 rot: -1.5707963267948966 rad type: Transform @@ -26551,10 +26877,10 @@ entities: flashlight_cell_container: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2800 +- uid: 2812 type: PottedPlantRandomPlastic components: - - parent: 0 + - parent: 15 pos: -12.5,7.5 rot: -1.5707963267948966 rad type: Transform @@ -26564,178 +26890,178 @@ entities: flashlight_cell_container: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2801 +- uid: 2813 type: SpawnPointCargoTechnician components: - - parent: 0 + - parent: 15 pos: 14.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2802 +- uid: 2814 type: SpawnPointCargoTechnician components: - - parent: 0 + - parent: 15 pos: 21.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2803 +- uid: 2815 type: SpawnPointChiefMedicalOfficer components: - - parent: 0 + - parent: 15 pos: 24.5,-14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2804 +- uid: 2816 type: SpawnPointMedicalDoctor components: - - parent: 0 + - parent: 15 pos: 6.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2805 +- uid: 2817 type: SpawnPointMedicalDoctor components: - - parent: 0 + - parent: 15 pos: 14.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2806 +- uid: 2818 type: SpawnPointMedicalDoctor components: - - parent: 0 + - parent: 15 pos: 22.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2807 +- uid: 2819 type: SpawnPointMedicalDoctor components: - - parent: 0 + - parent: 15 pos: 16.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2808 +- uid: 2820 type: SpawnPointMedicalDoctor components: - - parent: 0 + - parent: 15 pos: 11.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2809 +- uid: 2821 type: SpawnPointMedicalDoctor components: - - parent: 0 + - parent: 15 pos: 15.5,-15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2810 +- uid: 2822 type: SpawnPointResearchDirector components: - - parent: 0 + - parent: 15 pos: -5.5,-23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2811 +- uid: 2823 type: SpawnPointScientist components: - - parent: 0 + - parent: 15 pos: -9.5,-17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2812 +- uid: 2824 type: SpawnPointScientist components: - - parent: 0 + - parent: 15 pos: -8.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2813 +- uid: 2825 type: SpawnPointScientist components: - - parent: 0 + - parent: 15 pos: -0.5,-14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2814 +- uid: 2826 type: SpawnPointScientist components: - - parent: 0 + - parent: 15 pos: -4.5,-15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2815 +- uid: 2827 type: SpawnPointScientist components: - - parent: 0 + - parent: 15 pos: -15.5,-19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2816 +- uid: 2828 type: SpawnPointBartender components: - - parent: 0 + - parent: 15 pos: -5.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2817 +- uid: 2829 type: SpawnPointClown components: - - parent: 0 + - parent: 15 pos: -18.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2818 +- uid: 2830 type: SpawnPointJanitor components: - - parent: 0 + - parent: 15 pos: -20.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2819 +- uid: 2831 type: SpawnPointHeadOfSecurity components: - - parent: 0 + - parent: 15 pos: -6.5,20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2820 +- uid: 2832 type: SpawnPointCaptain components: - - parent: 0 + - parent: 15 pos: 9.5,25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2821 +- uid: 2833 type: SpawnPointHeadOfPersonnel components: - - parent: 0 + - parent: 15 pos: 7.5,20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2822 +- uid: 2834 type: SpawnPointChiefEngineer components: - - parent: 0 + - parent: 15 pos: 40.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2823 +- uid: 2835 type: SpawnPointStationEngineer components: - - parent: 0 + - parent: 15 pos: 30.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2824 +- uid: 2836 type: solid_wall components: - - parent: 0 + - parent: 15 pos: 45.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2825 +- uid: 2837 type: Wire components: - - parent: 0 + - parent: 15 pos: 22.5,-21.5 rot: -1.5707963267948966 rad type: Transform @@ -26745,10 +27071,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2826 +- uid: 2838 type: Wire components: - - parent: 0 + - parent: 15 pos: 22.5,-22.5 rot: -1.5707963267948966 rad type: Transform @@ -26758,10 +27084,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2827 +- uid: 2839 type: Wire components: - - parent: 0 + - parent: 15 pos: 22.5,-23.5 rot: -1.5707963267948966 rad type: Transform @@ -26771,10 +27097,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2828 +- uid: 2840 type: Wire components: - - parent: 0 + - parent: 15 pos: 22.5,-24.5 rot: -1.5707963267948966 rad type: Transform @@ -26784,10 +27110,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2829 +- uid: 2841 type: Wire components: - - parent: 0 + - parent: 15 pos: 22.5,-25.5 rot: -1.5707963267948966 rad type: Transform @@ -26797,10 +27123,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2830 +- uid: 2842 type: Wire components: - - parent: 0 + - parent: 15 pos: 21.5,-25.5 rot: -1.5707963267948966 rad type: Transform @@ -26810,10 +27136,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2831 +- uid: 2843 type: Wire components: - - parent: 0 + - parent: 15 pos: 20.5,-25.5 rot: -1.5707963267948966 rad type: Transform @@ -26823,10 +27149,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2832 +- uid: 2844 type: Wire components: - - parent: 0 + - parent: 15 pos: 19.5,-25.5 rot: -1.5707963267948966 rad type: Transform @@ -26836,10 +27162,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2833 +- uid: 2845 type: Wire components: - - parent: 0 + - parent: 15 pos: 14.5,-21.5 rot: -1.5707963267948966 rad type: Transform @@ -26849,10 +27175,10 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2834 +- uid: 2846 type: Wire components: - - parent: 0 + - parent: 15 pos: 14.5,-22.5 rot: -1.5707963267948966 rad type: Transform @@ -26862,509 +27188,511 @@ entities: Apc: - AdjacentNode type: NodeContainer -- uid: 2835 - type: solid_wall - components: - - parent: 0 - pos: 23.5,-22.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2836 - type: solid_wall - components: - - parent: 0 - pos: 23.5,-23.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2837 - type: solid_wall - components: - - parent: 0 - pos: 23.5,-24.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2838 - type: solid_wall - components: - - parent: 0 - pos: 23.5,-25.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2839 - type: solid_wall - components: - - parent: 0 - pos: 23.5,-26.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2840 - type: solid_wall - components: - - parent: 0 - pos: 22.5,-26.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2841 - type: solid_wall - components: - - parent: 0 - pos: 21.5,-26.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2842 - type: solid_wall - components: - - parent: 0 - pos: 20.5,-26.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2843 - type: solid_wall - components: - - parent: 0 - pos: 19.5,-26.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2844 - type: solid_wall - components: - - parent: 0 - pos: 18.5,-26.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2845 - type: solid_wall - components: - - parent: 0 - pos: 17.5,-26.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 2846 - type: solid_wall - components: - - parent: 0 - pos: 16.5,-26.5 - rot: -1.5707963267948966 rad - type: Transform - uid: 2847 type: solid_wall components: - - parent: 0 - pos: 15.5,-26.5 + - parent: 15 + pos: 23.5,-22.5 rot: -1.5707963267948966 rad type: Transform - uid: 2848 type: solid_wall components: - - parent: 0 - pos: 14.5,-26.5 + - parent: 15 + pos: 23.5,-23.5 rot: -1.5707963267948966 rad type: Transform - uid: 2849 type: solid_wall components: - - parent: 0 - pos: 13.5,-26.5 + - parent: 15 + pos: 23.5,-24.5 rot: -1.5707963267948966 rad type: Transform - uid: 2850 type: solid_wall components: - - parent: 0 - pos: 13.5,-22.5 + - parent: 15 + pos: 23.5,-25.5 rot: -1.5707963267948966 rad type: Transform - uid: 2851 type: solid_wall components: - - parent: 0 - pos: 13.5,-23.5 + - parent: 15 + pos: 23.5,-26.5 rot: -1.5707963267948966 rad type: Transform - uid: 2852 type: solid_wall components: - - parent: 0 - pos: 13.5,-24.5 + - parent: 15 + pos: 22.5,-26.5 rot: -1.5707963267948966 rad type: Transform - uid: 2853 type: solid_wall components: - - parent: 0 - pos: 13.5,-25.5 + - parent: 15 + pos: 21.5,-26.5 rot: -1.5707963267948966 rad type: Transform - uid: 2854 type: solid_wall components: - - parent: 0 - pos: 20.5,-19.5 + - parent: 15 + pos: 20.5,-26.5 rot: -1.5707963267948966 rad type: Transform - uid: 2855 type: solid_wall components: - - parent: 0 - pos: 20.5,-20.5 + - parent: 15 + pos: 19.5,-26.5 rot: -1.5707963267948966 rad type: Transform - uid: 2856 type: solid_wall components: - - parent: 0 - pos: 20.5,-21.5 + - parent: 15 + pos: 18.5,-26.5 rot: -1.5707963267948966 rad type: Transform - uid: 2857 type: solid_wall components: - - parent: 0 - pos: 20.5,-22.5 + - parent: 15 + pos: 17.5,-26.5 rot: -1.5707963267948966 rad type: Transform - uid: 2858 type: solid_wall components: - - parent: 0 - pos: 20.5,-23.5 + - parent: 15 + pos: 16.5,-26.5 rot: -1.5707963267948966 rad type: Transform - uid: 2859 type: solid_wall components: - - parent: 0 - pos: 17.5,-23.5 + - parent: 15 + pos: 15.5,-26.5 rot: -1.5707963267948966 rad type: Transform - uid: 2860 type: solid_wall components: - - parent: 0 - pos: 16.5,-23.5 + - parent: 15 + pos: 14.5,-26.5 rot: -1.5707963267948966 rad type: Transform - uid: 2861 type: solid_wall components: - - parent: 0 - pos: 16.5,-22.5 + - parent: 15 + pos: 13.5,-26.5 rot: -1.5707963267948966 rad type: Transform - uid: 2862 type: solid_wall components: - - parent: 0 - pos: 16.5,-21.5 + - parent: 15 + pos: 13.5,-22.5 rot: -1.5707963267948966 rad type: Transform - uid: 2863 type: solid_wall components: - - parent: 0 - pos: 16.5,-20.5 + - parent: 15 + pos: 13.5,-23.5 rot: -1.5707963267948966 rad type: Transform - uid: 2864 type: solid_wall components: - - parent: 0 - pos: 16.5,-19.5 + - parent: 15 + pos: 13.5,-24.5 rot: -1.5707963267948966 rad type: Transform - uid: 2865 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 17.5,-18.5 + - parent: 15 + pos: 13.5,-25.5 rot: -1.5707963267948966 rad type: Transform - uid: 2866 - type: LowWall + type: solid_wall components: - - parent: 0 - pos: 18.5,-18.5 + - parent: 15 + pos: 20.5,-19.5 rot: -1.5707963267948966 rad type: Transform - uid: 2867 - type: Window + type: solid_wall components: - - parent: 0 - pos: 17.5,-18.5 + - parent: 15 + pos: 20.5,-20.5 rot: -1.5707963267948966 rad type: Transform - uid: 2868 - type: Window + type: solid_wall components: - - parent: 0 - pos: 18.5,-18.5 + - parent: 15 + pos: 20.5,-21.5 rot: -1.5707963267948966 rad type: Transform - uid: 2869 - type: Table + type: solid_wall components: - - parent: 0 - pos: 19.5,-21.5 + - parent: 15 + pos: 20.5,-22.5 rot: -1.5707963267948966 rad type: Transform - uid: 2870 - type: Table + type: solid_wall components: - - parent: 0 - pos: 19.5,-22.5 + - parent: 15 + pos: 20.5,-23.5 rot: -1.5707963267948966 rad type: Transform - uid: 2871 + type: solid_wall + components: + - parent: 15 + pos: 17.5,-23.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2872 + type: solid_wall + components: + - parent: 15 + pos: 16.5,-23.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2873 + type: solid_wall + components: + - parent: 15 + pos: 16.5,-22.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2874 + type: solid_wall + components: + - parent: 15 + pos: 16.5,-21.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2875 + type: solid_wall + components: + - parent: 15 + pos: 16.5,-20.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2876 + type: solid_wall + components: + - parent: 15 + pos: 16.5,-19.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2877 + type: LowWall + components: + - parent: 15 + pos: 17.5,-18.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2878 + type: LowWall + components: + - parent: 15 + pos: 18.5,-18.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2879 + type: Window + components: + - parent: 15 + pos: 17.5,-18.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2880 + type: Window + components: + - parent: 15 + pos: 18.5,-18.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2881 + type: Table + components: + - parent: 15 + pos: 19.5,-21.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2882 + type: Table + components: + - parent: 15 + pos: 19.5,-22.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 2883 type: WardrobeWhite components: - - parent: 0 + - parent: 15 pos: 17.5,-22.5 rot: -1.5707963267948966 rad type: Transform + - Anchored: True + type: Physics - IsPlaceable: False type: PlaceableSurface - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 2872 +- uid: 2884 type: AirlockExternalLocked components: - name: Escape Shuttle Dock type: MetaData - - parent: 0 + - parent: 15 pos: -41.5,4.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: YDNW-8344 WireSeed: 1461459343 type: Wires -- uid: 2873 +- uid: 2885 type: AirlockExternalLocked components: - name: Escape Shuttle Dock type: MetaData - - parent: 0 + - parent: 15 pos: -39.5,4.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: MTMV-2725 WireSeed: 1595174815 type: Wires -- uid: 2874 +- uid: 2886 type: AirlockExternalLocked components: - name: Escape Shuttle Dock type: MetaData - - parent: 0 + - parent: 15 pos: -39.5,8.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: JRVM-7167 WireSeed: 276292114 type: Wires -- uid: 2875 +- uid: 2887 type: AirlockExternalLocked components: - name: Escape Shuttle Dock type: MetaData - - parent: 0 + - parent: 15 pos: -41.5,8.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: WOWQ-0513 WireSeed: 583509204 type: Wires -- uid: 2876 +- uid: 2888 type: AirlockExternalLocked components: - name: Arrivals Shuttle Dock type: MetaData - - parent: 0 + - parent: 15 pos: -37.5,-3.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: QGJE-4931 WireSeed: 1482369729 type: Wires -- uid: 2877 +- uid: 2889 type: AirlockExternalLocked components: - name: Arrivals Shuttle Dock type: MetaData - - parent: 0 + - parent: 15 pos: -39.5,-3.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: GGEH-0220 WireSeed: 242377644 type: Wires -- uid: 2878 +- uid: 2890 type: AirlockSecurityGlassLocked components: - name: Brig type: MetaData - - parent: 0 + - parent: 15 pos: -5.5,6.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: UTIY-4998 WireSeed: 1726083170 type: Wires -- uid: 2879 +- uid: 2891 type: AirlockSecurityGlassLocked components: - name: Brig type: MetaData - - parent: 0 + - parent: 15 pos: -5.5,9.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: PWHV-6126 WireSeed: 95746143 type: Wires -- uid: 2880 +- uid: 2892 type: AirlockSecurityGlassLocked components: - name: Brig type: MetaData - - parent: 0 + - parent: 15 pos: -6.5,9.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: UMAN-4635 WireSeed: 1230209243 type: Wires -- uid: 2881 +- uid: 2893 type: AirlockEngineeringLocked components: - name: Gravity Generator type: MetaData - - parent: 0 + - parent: 15 pos: 49.5,-1.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: HDGO-1994 WireSeed: 1611393969 type: Wires -- uid: 2882 +- uid: 2894 type: AirlockEngineeringGlassLocked components: - name: Engineering Equipment type: MetaData - - parent: 0 + - parent: 15 pos: 33.5,1.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: BMIA-0393 WireSeed: 1262933985 type: Wires -- uid: 2883 +- uid: 2895 type: AirlockEngineeringGlassLocked components: - name: Atmospherics type: MetaData - - parent: 0 + - parent: 15 pos: 33.5,7.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: ZPZI-8277 WireSeed: 1000221277 type: Wires -- uid: 2884 +- uid: 2896 type: AirlockEngineeringLocked components: - name: Secure Storage type: MetaData - - parent: 0 + - parent: 15 pos: 41.5,10.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: OIHB-3467 WireSeed: 1488013576 type: Wires -- uid: 2885 +- uid: 2897 type: AirlockEngineeringLocked components: - name: Secure Storage type: MetaData - - parent: 0 + - parent: 15 pos: 40.5,10.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: FWYN-7319 WireSeed: 1132227642 type: Wires -- uid: 2886 +- uid: 2898 type: AirlockMaintEngiLocked components: - - parent: 0 + - parent: 15 pos: 29.5,10.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: QAZQ-7619 WireSeed: 1431368753 type: Wires -- uid: 2887 +- uid: 2899 type: AirlockMaintEngiLocked components: - - parent: 0 + - parent: 15 pos: 43.5,0.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: EDYY-9722 WireSeed: 1350495469 type: Wires -- uid: 2888 +- uid: 2900 type: AirlockMaintCargoLocked components: - - parent: 0 + - parent: 15 pos: 25.5,9.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: TGQV-7064 WireSeed: 1222080910 type: Wires -- uid: 2889 +- uid: 2901 type: AirlockMaintRnDLocked components: - - parent: 0 + - parent: 15 pos: -16.5,-16.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: ETGJ-1536 WireSeed: 585052938 type: Wires -- uid: 2890 +- uid: 2902 type: AirlockCommandGlassLocked components: - name: Heads of Staff Meeting Room type: MetaData - - parent: 0 + - parent: 15 pos: 1.5,24.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: HSBW-6099 WireSeed: 1283137444 type: Wires -- uid: 2891 +- uid: 2903 type: AirlockCommandGlassLocked components: - name: Heads of Staff Meeting Room type: MetaData - - parent: 0 + - parent: 15 pos: 1.5,25.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: CVJZ-3331 WireSeed: 2032450470 type: Wires -- uid: 2892 +- uid: 2904 type: AirlockCommandLocked components: - name: Captain's Office type: MetaData - - parent: 0 + - parent: 15 pos: 5.5,25.5 rot: -1.5707963267948966 rad type: Transform @@ -27374,212 +27702,212 @@ entities: - SerialNumber: ZSJB-6485 WireSeed: 1654014956 type: Wires -- uid: 2893 +- uid: 2905 type: AirlockMaintCommonLocked components: - - parent: 0 + - parent: 15 pos: 6.5,-19.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: KOAX-2017 WireSeed: 429692583 type: Wires -- uid: 2894 +- uid: 2906 type: AirlockMaintCommonLocked components: - - parent: 0 + - parent: 15 pos: 21.5,2.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: ESWO-4332 WireSeed: 2096314373 type: Wires -- uid: 2895 +- uid: 2907 type: AirlockMaintCommandLocked components: - - parent: 0 + - parent: 15 pos: -1.5,22.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: EDSP-7639 WireSeed: 385333425 type: Wires -- uid: 2896 +- uid: 2908 type: AirlockMedicalGlassLocked components: - name: Medical Bay type: MetaData - - parent: 0 + - parent: 15 pos: 10.5,-6.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: GIFF-6584 WireSeed: 1537922900 type: Wires -- uid: 2897 +- uid: 2909 type: AirlockMedicalGlassLocked components: - name: Medical Bay type: MetaData - - parent: 0 + - parent: 15 pos: 11.5,-6.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: FOZI-5287 WireSeed: 1249197100 type: Wires -- uid: 2898 +- uid: 2910 type: AirlockMedicalGlassLocked components: - name: Medical Storage type: MetaData - - parent: 0 + - parent: 15 pos: 20.5,-6.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: AOQZ-2284 WireSeed: 309331436 type: Wires -- uid: 2899 +- uid: 2911 type: AirlockMedicalGlassLocked components: - name: Surgery type: MetaData - - parent: 0 + - parent: 15 pos: 19.5,-18.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: RFQA-3846 WireSeed: 2044461648 type: Wires -- uid: 2900 +- uid: 2912 type: AirlockMedicalGlassLocked components: - name: Cloning type: MetaData - - parent: 0 + - parent: 15 pos: 8.5,-12.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: NYPQ-5613 WireSeed: 139476535 type: Wires -- uid: 2901 +- uid: 2913 type: AirlockSecurityGlassLocked components: - name: Security Equipment type: MetaData - - parent: 0 + - parent: 15 pos: -10.5,15.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: TOKV-1672 WireSeed: 19823819 type: Wires -- uid: 2902 +- uid: 2914 type: AirlockSecurityGlassLocked components: - name: Reception Desk type: MetaData - - parent: 0 + - parent: 15 pos: -9.5,9.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: RKIB-6099 WireSeed: 2093794508 type: Wires -- uid: 2903 +- uid: 2915 type: AirlockMaintCommonLocked components: - - parent: 0 + - parent: 15 pos: 0.5,20.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: UFWQ-8199 WireSeed: 892075468 type: Wires -- uid: 2904 +- uid: 2916 type: AirlockMaintMedLocked components: - - parent: 0 + - parent: 15 pos: 14.5,-18.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: CMJR-8177 WireSeed: 1850262699 type: Wires -- uid: 2905 +- uid: 2917 type: AirlockMaintMedLocked components: - - parent: 0 + - parent: 15 pos: 20.5,-10.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: CGQP-2165 WireSeed: 1990089277 type: Wires -- uid: 2906 +- uid: 2918 type: AirlockMaintRnDLocked components: - - parent: 0 + - parent: 15 pos: -11.5,-21.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: QEKJ-6577 WireSeed: 2104799525 type: Wires -- uid: 2907 +- uid: 2919 type: AirlockScienceLocked components: - name: Science type: MetaData - - parent: 0 + - parent: 15 pos: 0.5,-19.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: SSUK-2106 WireSeed: 393959200 type: Wires -- uid: 2908 +- uid: 2920 type: AirlockScienceLocked components: - name: Science type: MetaData - - parent: 0 + - parent: 15 pos: 0.5,-20.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: FECH-6552 WireSeed: 834795221 type: Wires -- uid: 2909 +- uid: 2921 type: AirlockScienceGlassLocked components: - name: Research and Development type: MetaData - - parent: 0 + - parent: 15 pos: -3.5,-18.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: NLBV-9910 WireSeed: 2125493896 type: Wires -- uid: 2910 +- uid: 2922 type: AirlockMaintCommonLocked components: - - parent: 0 + - parent: 15 pos: -33.5,8.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: KAVV-9342 WireSeed: 825185224 type: Wires -- uid: 2911 +- uid: 2923 type: AirlockCommandGlassLocked components: - name: Chief Engineer's Office type: MetaData - - parent: 0 + - parent: 15 pos: 38.5,1.5 rot: -1.5707963267948966 rad type: Transform @@ -27590,17 +27918,17 @@ entities: - SerialNumber: CYII-3400 WireSeed: 1636079785 type: Wires -- uid: 2912 +- uid: 2924 type: Catwalk components: - - parent: 0 + - parent: 15 pos: 26.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2913 +- uid: 2925 type: AirlockMaintCommandLocked components: - - parent: 0 + - parent: 15 pos: 11.5,20.5 rot: -1.5707963267948966 rad type: Transform @@ -27610,22 +27938,22 @@ entities: - SerialNumber: YMJG-5269 WireSeed: 1016192265 type: Wires -- uid: 2914 +- uid: 2926 type: AirlockExternalLocked components: - - parent: 0 + - parent: 15 pos: 15.5,16.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: CARV-1132 WireSeed: 772636827 type: Wires -- uid: 2915 +- uid: 2927 type: Airlock components: - name: Custodial Closet type: MetaData - - parent: 0 + - parent: 15 pos: -22.5,9.5 rot: -1.5707963267948966 rad type: Transform @@ -27635,52 +27963,52 @@ entities: - access: - - Janitor type: AccessReader -- uid: 2916 +- uid: 2928 type: AirlockMaintCommonLocked components: - - parent: 0 + - parent: 15 pos: -34.5,-6.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: WAGV-3965 WireSeed: 603835631 type: Wires -- uid: 2917 +- uid: 2929 type: AirlockMaintCommonLocked components: - - parent: 0 + - parent: 15 pos: -23.5,-9.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: SMTC-9034 WireSeed: 364757442 type: Wires -- uid: 2918 +- uid: 2930 type: AirlockMaintCommonLocked components: - - parent: 0 + - parent: 15 pos: 1.5,-7.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: DUSN-0560 WireSeed: 1251354631 type: Wires -- uid: 2919 +- uid: 2931 type: AirlockVaultLocked components: - name: Vault type: MetaData - - parent: 0 + - parent: 15 pos: 0.5,17.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: DYMA-4078 WireSeed: 967318617 type: Wires -- uid: 2920 +- uid: 2932 type: AirlockMaintCommonLocked components: - - parent: 0 + - parent: 15 pos: -8.5,-7.5 rot: -1.5707963267948966 rad type: Transform @@ -27690,116 +28018,116 @@ entities: - SerialNumber: NUAR-5567 WireSeed: 799238141 type: Wires -- uid: 2921 +- uid: 2933 type: AirlockServiceGlassLocked components: - name: Kitchen type: MetaData - - parent: 0 + - parent: 15 pos: -10.5,-1.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: GQOG-3037 WireSeed: 1603027824 type: Wires -- uid: 2922 +- uid: 2934 type: AirlockMaintEngiLocked components: - - parent: 0 + - parent: 15 pos: 28.5,-6.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: IQZH-5797 WireSeed: 1376777420 type: Wires -- uid: 2923 +- uid: 2935 type: AirlockServiceGlassLocked components: - name: Bar type: MetaData - - parent: 0 + - parent: 15 pos: -7.5,-4.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: HMBY-7370 WireSeed: 75096740 type: Wires -- uid: 2924 +- uid: 2936 type: AirlockSecurityGlassLocked components: - name: Brig type: MetaData - - parent: 0 + - parent: 15 pos: -6.5,6.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: YWRZ-7532 WireSeed: 1493191944 type: Wires -- uid: 2925 +- uid: 2937 type: AirlockMaintCommonLocked components: - - parent: 0 + - parent: 15 pos: -16.5,6.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: TCCQ-9887 WireSeed: 310306233 type: Wires -- uid: 2926 +- uid: 2938 type: AirlockMaintCommonLocked components: - - parent: 0 + - parent: 15 pos: 5.5,14.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: PXDM-3756 WireSeed: 1182672040 type: Wires -- uid: 2927 +- uid: 2939 type: AirlockMaintRnDLocked components: - - parent: 0 + - parent: 15 pos: -4.5,-11.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: HGRG-8490 WireSeed: 1162485056 type: Wires -- uid: 2928 +- uid: 2940 type: AirlockMaintIntLocked components: - - parent: 0 + - parent: 15 pos: -12.5,-8.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: LTAH-1133 WireSeed: 2138344506 type: Wires -- uid: 2929 +- uid: 2941 type: AirlockMaintIntLocked components: - - parent: 0 + - parent: 15 pos: -13.5,-13.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: NBXI-9071 WireSeed: 1420939772 type: Wires -- uid: 2930 +- uid: 2942 type: AirlockMaintCommonLocked components: - - parent: 0 + - parent: 15 pos: -32.5,2.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: XTSS-0448 WireSeed: 1688266155 type: Wires -- uid: 2931 +- uid: 2943 type: AirlockMaintCommonLocked components: - - parent: 0 + - parent: 15 pos: -20.5,11.5 rot: -1.5707963267948966 rad type: Transform @@ -27809,60 +28137,60 @@ entities: - SerialNumber: YUEC-2888 WireSeed: 707792930 type: Wires -- uid: 2932 +- uid: 2944 type: AirlockEngineeringGlassLocked components: - name: Engineering type: MetaData - - parent: 0 + - parent: 15 pos: 30.5,3.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: JFQS-4233 WireSeed: 637268313 type: Wires -- uid: 2933 +- uid: 2945 type: AirlockEngineeringGlassLocked components: - name: Engineering type: MetaData - - parent: 0 + - parent: 15 pos: 30.5,5.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: TTIO-1603 WireSeed: 454212984 type: Wires -- uid: 2934 +- uid: 2946 type: AirlockMedicalGlassLocked components: - name: Chemistry type: MetaData - - parent: 0 + - parent: 15 pos: 7.5,-6.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: UOPN-8787 WireSeed: 128258817 type: Wires -- uid: 2935 +- uid: 2947 type: AirlockMedicalGlassLocked components: - name: Chemistry type: MetaData - - parent: 0 + - parent: 15 pos: 17.5,-3.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: DWWN-6619 WireSeed: 572882105 type: Wires -- uid: 2936 +- uid: 2948 type: AirlockCommandGlassLocked components: - name: Chief Medical Officer's Office type: MetaData - - parent: 0 + - parent: 15 pos: 20.5,-13.5 rot: -1.5707963267948966 rad type: Transform @@ -27873,12 +28201,12 @@ entities: - SerialNumber: DBOY-7146 WireSeed: 2093027285 type: Wires -- uid: 2937 +- uid: 2949 type: AirlockCommandGlassLocked components: - name: Server Room type: MetaData - - parent: 0 + - parent: 15 pos: -8.5,-21.5 rot: -1.5707963267948966 rad type: Transform @@ -27889,12 +28217,12 @@ entities: - SerialNumber: UOQR-3851 WireSeed: 1790641128 type: Wires -- uid: 2938 +- uid: 2950 type: AirlockCommandGlassLocked components: - name: Research Director's Office type: MetaData - - parent: 0 + - parent: 15 pos: -3.5,-21.5 rot: -1.5707963267948966 rad type: Transform @@ -27905,48 +28233,48 @@ entities: - SerialNumber: KPHE-6888 WireSeed: 2049581986 type: Wires -- uid: 2939 +- uid: 2951 type: AirlockScienceLocked components: - name: Testing Area type: MetaData - - parent: 0 + - parent: 15 pos: -12.5,-19.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: PCBK-5706 WireSeed: 1681355557 type: Wires -- uid: 2940 +- uid: 2952 type: AirlockScienceLocked components: - name: Testing Area type: MetaData - - parent: 0 + - parent: 15 pos: -12.5,-20.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: HGVM-3521 WireSeed: 418686914 type: Wires -- uid: 2941 +- uid: 2953 type: AirlockGlass components: - name: Locker Room type: MetaData - - parent: 0 + - parent: 15 pos: -26.5,-0.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: CZDO-4573 WireSeed: 601853902 type: Wires -- uid: 2942 +- uid: 2954 type: AirlockServiceGlassLocked components: - name: Tool Storage type: MetaData - - parent: 0 + - parent: 15 pos: -25.5,10.5 rot: -1.5707963267948966 rad type: Transform @@ -27956,12 +28284,12 @@ entities: - SerialNumber: HRRO-0652 WireSeed: 329371063 type: Wires -- uid: 2943 +- uid: 2955 type: AirlockServiceGlassLocked components: - name: Tool Storage type: MetaData - - parent: 0 + - parent: 15 pos: -25.5,8.5 rot: -1.5707963267948966 rad type: Transform @@ -27971,24 +28299,24 @@ entities: - SerialNumber: VYIC-4178 WireSeed: 1840012897 type: Wires -- uid: 2944 +- uid: 2956 type: AirlockGlass components: - name: Locker Room type: MetaData - - parent: 0 + - parent: 15 pos: -26.5,-1.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: QSPE-3594 WireSeed: 2117235893 type: Wires -- uid: 2945 +- uid: 2957 type: AirlockServiceLocked components: - name: Theatre type: MetaData - - parent: 0 + - parent: 15 pos: -20.5,-7.5 rot: -1.5707963267948966 rad type: Transform @@ -27998,73 +28326,73 @@ entities: - SerialNumber: XQJX-4652 WireSeed: 1020748128 type: Wires -- uid: 2946 +- uid: 2958 type: Airlock components: - name: Bunk Dorms type: MetaData - - parent: 0 + - parent: 15 pos: -26.5,-6.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: AAAO-9160 WireSeed: 264992413 type: Wires -- uid: 2947 +- uid: 2959 type: Airlock components: - name: Showers type: MetaData - - parent: 0 + - parent: 15 pos: -21.5,-4.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: TZNE-2505 WireSeed: 448067850 type: Wires -- uid: 2948 +- uid: 2960 type: PowerCellSmallHyper components: - - parent: 1681 + - parent: 1695 type: Transform - startingCharge: 1000 type: PowerCell -- uid: 2949 +- uid: 2961 type: FlashlightLantern components: - - parent: 3079 + - parent: 3091 type: Transform - containers: flashlight_cell_container: entities: - - 2293 + - 2307 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2950 +- uid: 2962 type: ToolboxEmergencyFilled components: - - parent: 2789 + - parent: 2801 type: Transform - containers: storagebase: entities: - - 1680 - - 2295 - - 2294 - - 1681 - - 2249 - - 1674 + - 1694 + - 2309 + - 2308 + - 1695 + - 2263 + - 1688 type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 2951 +- uid: 2963 type: BreathMaskClothing components: - - parent: 2784 + - parent: 2796 type: Transform -- uid: 2952 +- uid: 2964 type: AirlockMaintCommonLocked components: - - parent: 0 + - parent: 15 pos: -16.5,-7.5 rot: -1.5707963267948966 rad type: Transform @@ -28074,121 +28402,121 @@ entities: - SerialNumber: OGJH-7262 WireSeed: 189680893 type: Wires -- uid: 2953 +- uid: 2965 type: AirlockMaintCommonLocked components: - - parent: 0 + - parent: 15 pos: -31.5,-6.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: XAIA-4765 WireSeed: 2025498773 type: Wires -- uid: 2954 +- uid: 2966 type: AirlockMaintCommonLocked components: - - parent: 0 + - parent: 15 pos: 27.5,7.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: AJUU-2442 WireSeed: 558462682 type: Wires -- uid: 2955 +- uid: 2967 type: Table components: - - parent: 0 + - parent: 15 pos: -8.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2956 +- uid: 2968 type: Table components: - - parent: 0 + - parent: 15 pos: -9.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2957 +- uid: 2969 type: Table components: - - parent: 0 + - parent: 15 pos: -7.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2958 +- uid: 2970 type: Table components: - - parent: 0 + - parent: 15 pos: -7.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2959 +- uid: 2971 type: ChairOfficeDark components: - - parent: 0 + - parent: 15 pos: -9.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2960 +- uid: 2972 type: ChairOfficeDark components: - - parent: 0 + - parent: 15 pos: -8.5,8.5 type: Transform -- uid: 2961 +- uid: 2973 type: AirlockVaultLocked components: - name: Armory type: MetaData - - parent: 0 + - parent: 15 pos: -12.5,17.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: WUEJ-5650 WireSeed: 2067462950 type: Wires -- uid: 2962 +- uid: 2974 type: AirlockVaultLocked components: - name: Armory type: MetaData - - parent: 0 + - parent: 15 pos: -10.5,20.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: GWCZ-9570 WireSeed: 1211819228 type: Wires -- uid: 2963 +- uid: 2975 type: AirlockCommandGlassLocked components: - name: Bridge type: MetaData - - parent: 0 + - parent: 15 pos: 2.5,22.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: IFYB-8145 WireSeed: 129332630 type: Wires -- uid: 2964 +- uid: 2976 type: AirlockCommandGlassLocked components: - name: Bridge type: MetaData - - parent: 0 + - parent: 15 pos: 4.5,22.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: VKBA-7089 WireSeed: 932839495 type: Wires -- uid: 2965 +- uid: 2977 type: AirlockCommandGlassLocked components: - name: EVA type: MetaData - - parent: 0 + - parent: 15 pos: 7.5,6.5 rot: -1.5707963267948966 rad type: Transform @@ -28198,12 +28526,12 @@ entities: - SerialNumber: EQPZ-5128 WireSeed: 1773319195 type: Wires -- uid: 2966 +- uid: 2978 type: AirlockCommandGlassLocked components: - name: EVA type: MetaData - - parent: 0 + - parent: 15 pos: 9.5,6.5 rot: -1.5707963267948966 rad type: Transform @@ -28213,10 +28541,10 @@ entities: - SerialNumber: SKSC-7681 WireSeed: 1162035575 type: Wires -- uid: 2967 +- uid: 2979 type: AirlockMaintCommandLocked components: - - parent: 0 + - parent: 15 pos: 8.5,12.5 rot: -1.5707963267948966 rad type: Transform @@ -28226,48 +28554,48 @@ entities: - SerialNumber: GAZR-1881 WireSeed: 425508591 type: Wires -- uid: 2968 +- uid: 2980 type: AirlockCargoGlassLocked components: - name: Cargo Office type: MetaData - - parent: 0 + - parent: 15 pos: 13.5,8.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: TUPT-9669 WireSeed: 1130530967 type: Wires -- uid: 2969 +- uid: 2981 type: AirlockCargoGlassLocked components: - name: Cargo Bay type: MetaData - - parent: 0 + - parent: 15 pos: 17.5,10.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: YQSJ-5479 WireSeed: 504243442 type: Wires -- uid: 2970 +- uid: 2982 type: AirlockCargoGlassLocked components: - name: Cargo Bay type: MetaData - - parent: 0 + - parent: 15 pos: 17.5,11.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: FSLA-5169 WireSeed: 1857012812 type: Wires -- uid: 2971 +- uid: 2983 type: AirlockExternalLocked components: - name: Supply Shuttle Dock type: MetaData - - parent: 0 + - parent: 15 pos: 20.5,14.5 rot: -1.5707963267948966 rad type: Transform @@ -28277,12 +28605,12 @@ entities: - SerialNumber: JEQY-9989 WireSeed: 233131541 type: Wires -- uid: 2972 +- uid: 2984 type: AirlockExternalLocked components: - name: Supply Shuttle Dock type: MetaData - - parent: 0 + - parent: 15 pos: 20.5,16.5 rot: -1.5707963267948966 rad type: Transform @@ -28292,12 +28620,12 @@ entities: - SerialNumber: BYPX-4636 WireSeed: 210382358 type: Wires -- uid: 2973 +- uid: 2985 type: AirlockExternalLocked components: - name: Supply Shuttle Dock type: MetaData - - parent: 0 + - parent: 15 pos: 22.5,16.5 rot: -1.5707963267948966 rad type: Transform @@ -28307,12 +28635,12 @@ entities: - SerialNumber: DWWC-6035 WireSeed: 356196615 type: Wires -- uid: 2974 +- uid: 2986 type: AirlockExternalLocked components: - name: Supply Shuttle Dock type: MetaData - - parent: 0 + - parent: 15 pos: 22.5,14.5 rot: -1.5707963267948966 rad type: Transform @@ -28322,22 +28650,22 @@ entities: - SerialNumber: BSBV-2797 WireSeed: 949804272 type: Wires -- uid: 2975 +- uid: 2987 type: AirlockExternalLocked components: - - parent: 0 + - parent: 15 pos: 14.5,14.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: PTVE-0215 WireSeed: 1200332241 type: Wires -- uid: 2976 +- uid: 2988 type: AirlockCommandGlassLocked components: - name: Head of Security's Office type: MetaData - - parent: 0 + - parent: 15 pos: -8.5,18.5 rot: -1.5707963267948966 rad type: Transform @@ -28348,10 +28676,10 @@ entities: - SerialNumber: VAUE-5425 WireSeed: 602620559 type: Wires -- uid: 2977 +- uid: 2989 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: 17,-20.5 type: Transform - color: '#FFFFFFFF' @@ -28361,18 +28689,18 @@ entities: - containers: light_bulb: entities: - - 2978 + - 2990 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2978 +- uid: 2990 type: LightTube components: - - parent: 2977 + - parent: 2989 type: Transform -- uid: 2979 +- uid: 2991 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: 15.5,-18 rot: 1.5707963267948966 rad type: Transform @@ -28383,18 +28711,18 @@ entities: - containers: light_bulb: entities: - - 2980 + - 2992 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2980 +- uid: 2992 type: LightTube components: - - parent: 2979 + - parent: 2991 type: Transform -- uid: 2981 +- uid: 2993 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: 20,-17.5 rot: 3.141592653589793 rad type: Transform @@ -28405,261 +28733,261 @@ entities: - containers: light_bulb: entities: - - 2982 + - 2994 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 2982 +- uid: 2994 type: LightTube components: - - parent: 2981 + - parent: 2993 type: Transform -- uid: 2983 +- uid: 2995 type: reinforced_wall components: - - parent: 0 + - parent: 15 pos: -15.5,16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2984 +- uid: 2996 type: Catwalk components: - - parent: 0 + - parent: 15 pos: -1.5,21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2985 +- uid: 2997 type: AirlockSecurityGlassLocked components: - name: Cell 1 type: MetaData - - parent: 0 + - parent: 15 pos: -2.5,9.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: OGUH-9387 WireSeed: 1300492132 type: Wires -- uid: 2986 +- uid: 2998 type: AirlockSecurityGlassLocked components: - name: Cell 2 type: MetaData - - parent: 0 + - parent: 15 pos: 0.5,9.5 rot: -1.5707963267948966 rad type: Transform - SerialNumber: QNEK-0307 WireSeed: 7959160 type: Wires -- uid: 2987 +- uid: 2999 type: SuspicionMeleeSpawner components: - - parent: 0 + - parent: 15 pos: -27.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2988 +- uid: 3000 type: SuspicionMeleeSpawner components: - - parent: 0 + - parent: 15 pos: -28.5,13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2989 +- uid: 3001 type: SuspicionMeleeSpawner components: - - parent: 0 + - parent: 15 pos: -29.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2990 +- uid: 3002 type: SuspicionMeleeSpawner components: - - parent: 0 + - parent: 15 pos: -0.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2991 +- uid: 3003 type: SuspicionMeleeSpawner components: - - parent: 0 + - parent: 15 pos: 6.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2992 +- uid: 3004 type: SuspicionMeleeSpawner components: - - parent: 0 + - parent: 15 pos: 10.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2993 +- uid: 3005 type: SuspicionMeleeSpawner components: - - parent: 0 + - parent: 15 pos: 15.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2994 +- uid: 3006 type: SuspicionMeleeSpawner components: - - parent: 0 + - parent: 15 pos: 10.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2995 +- uid: 3007 type: SuspicionMeleeSpawner components: - - parent: 0 + - parent: 15 pos: 18.5,-24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2996 +- uid: 3008 type: SuspicionMeleeSpawner components: - - parent: 0 + - parent: 15 pos: 17.5,-20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2997 +- uid: 3009 type: SuspicionMeleeSpawner components: - - parent: 0 + - parent: 15 pos: 22.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2998 +- uid: 3010 type: SuspicionRifleSpawner components: - - parent: 0 + - parent: 15 pos: 23.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2999 - type: SuspicionRifleSpawner - components: - - parent: 0 - pos: -2.5,-4.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 3000 - type: SuspicionRifleSpawner - components: - - parent: 0 - pos: -14.5,-0.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 3001 - type: SuspicionRifleSpawner - components: - - parent: 0 - pos: -32.5,-8.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 3002 - type: SuspicionPistolSpawner - components: - - parent: 0 - pos: -18.5,-11.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 3003 - type: SuspicionPistolSpawner - components: - - parent: 0 - pos: -31.5,8.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 3004 - type: SuspicionPistolSpawner - components: - - parent: 0 - pos: -20.5,14.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 3005 - type: SuspicionRifleSpawner - components: - - parent: 0 - pos: -7.5,20.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 3006 - type: SuspicionRifleSpawner - components: - - parent: 0 - pos: -7.5,21.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 3007 - type: SuspicionPistolSpawner - components: - - parent: 0 - pos: 6.5,20.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 3008 - type: SuspicionRifleSpawner - components: - - parent: 0 - pos: 0.5,28.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 3009 - type: SuspicionRifleSpawner - components: - - parent: 0 - pos: 6.5,28.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 3010 - type: SuspicionPistolSpawner - components: - - parent: 0 - pos: -13.5,24.5 - rot: -1.5707963267948966 rad - type: Transform - uid: 3011 - type: SuspicionMeleeSpawner + type: SuspicionRifleSpawner components: - - parent: 0 - pos: -4.5,20.5 + - parent: 15 + pos: -2.5,-4.5 rot: -1.5707963267948966 rad type: Transform - uid: 3012 type: SuspicionRifleSpawner components: - - parent: 0 - pos: 5.5,16.5 + - parent: 15 + pos: -14.5,-0.5 rot: -1.5707963267948966 rad type: Transform - uid: 3013 - type: OuterclothingHazard + type: SuspicionRifleSpawner components: - - parent: 382 + - parent: 15 + pos: -32.5,-8.5 + rot: -1.5707963267948966 rad type: Transform - uid: 3014 + type: SuspicionPistolSpawner + components: + - parent: 15 + pos: -18.5,-11.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3015 + type: SuspicionPistolSpawner + components: + - parent: 15 + pos: -31.5,8.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3016 + type: SuspicionPistolSpawner + components: + - parent: 15 + pos: -20.5,14.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3017 + type: SuspicionRifleSpawner + components: + - parent: 15 + pos: -7.5,20.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3018 + type: SuspicionRifleSpawner + components: + - parent: 15 + pos: -7.5,21.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3019 + type: SuspicionPistolSpawner + components: + - parent: 15 + pos: 6.5,20.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3020 + type: SuspicionRifleSpawner + components: + - parent: 15 + pos: 0.5,28.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3021 + type: SuspicionRifleSpawner + components: + - parent: 15 + pos: 6.5,28.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3022 + type: SuspicionPistolSpawner + components: + - parent: 15 + pos: -13.5,24.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3023 + type: SuspicionMeleeSpawner + components: + - parent: 15 + pos: -4.5,20.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3024 + type: SuspicionRifleSpawner + components: + - parent: 15 + pos: 5.5,16.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3025 + type: OuterclothingHazard + components: + - parent: 397 + type: Transform +- uid: 3026 type: FlashlightLantern components: - - parent: 382 + - parent: 397 type: Transform - containers: flashlight_cell_container: entities: - - 3015 + - 3027 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 3015 +- uid: 3027 type: PowerCellSmallHyper components: - - parent: 3014 + - parent: 3026 type: Transform - startingCharge: 1000 type: PowerCell -- uid: 3016 +- uid: 3028 type: Screwdriver components: - - parent: 382 + - parent: 397 type: Transform - selected: cyan colors: @@ -28671,25 +28999,25 @@ entities: cyan: '#18A2D5FF' yellow: '#FFA500FF' type: RandomSpriteColor -- uid: 3017 +- uid: 3029 type: Wrench components: - - parent: 382 + - parent: 397 type: Transform -- uid: 3018 +- uid: 3030 type: Welder components: - - parent: 382 + - parent: 397 type: Transform -- uid: 3019 +- uid: 3031 type: Crowbar components: - - parent: 382 + - parent: 397 type: Transform -- uid: 3020 +- uid: 3032 type: Wirecutter components: - - parent: 382 + - parent: 397 type: Transform - selected: cyan colors: @@ -28701,42 +29029,42 @@ entities: cyan: '#18A2D5FF' yellow: '#D58C18FF' type: RandomSpriteColor -- uid: 3021 +- uid: 3033 type: UtilityBeltClothing components: - - parent: 382 + - parent: 397 type: Transform - containers: storagebase: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 3022 - type: CableStack +- uid: 3034 + type: CableStack1 components: - - parent: 382 + - parent: 397 type: Transform -- uid: 3023 +- uid: 3035 type: FlashlightLantern components: - - parent: 384 + - parent: 399 type: Transform - containers: flashlight_cell_container: entities: - - 3024 + - 3036 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 3024 +- uid: 3036 type: PowerCellSmallHyper components: - - parent: 3023 + - parent: 3035 type: Transform - startingCharge: 1000 type: PowerCell -- uid: 3025 +- uid: 3037 type: Screwdriver components: - - parent: 384 + - parent: 399 type: Transform - selected: red colors: @@ -28748,20 +29076,20 @@ entities: cyan: '#18A2D5FF' yellow: '#FFA500FF' type: RandomSpriteColor -- uid: 3026 +- uid: 3038 type: Welder components: - - parent: 384 + - parent: 399 type: Transform -- uid: 3027 +- uid: 3039 type: Crowbar components: - - parent: 384 + - parent: 399 type: Transform -- uid: 3028 +- uid: 3040 type: Wirecutter components: - - parent: 384 + - parent: 399 type: Transform - selected: yellow colors: @@ -28773,20 +29101,20 @@ entities: cyan: '#18A2D5FF' yellow: '#D58C18FF' type: RandomSpriteColor -- uid: 3029 +- uid: 3041 type: GlovesYellow components: - - parent: 384 + - parent: 399 type: Transform -- uid: 3030 +- uid: 3042 type: HatHardhatRed components: - - parent: 384 + - parent: 399 type: Transform -- uid: 3031 +- uid: 3043 type: Screwdriver components: - - parent: 1557 + - parent: 1572 type: Transform - selected: yellow colors: @@ -28798,15 +29126,15 @@ entities: cyan: '#18A2D5FF' yellow: '#FFA500FF' type: RandomSpriteColor -- uid: 3032 +- uid: 3044 type: Crowbar components: - - parent: 1557 + - parent: 1572 type: Transform -- uid: 3033 +- uid: 3045 type: Wirecutter components: - - parent: 1557 + - parent: 1572 type: Transform - selected: blue colors: @@ -28818,43 +29146,43 @@ entities: cyan: '#18A2D5FF' yellow: '#D58C18FF' type: RandomSpriteColor -- uid: 3034 - type: CableStack +- uid: 3046 + type: CableStack1 components: - - parent: 1557 + - parent: 1572 type: Transform -- uid: 3035 - type: CableStack +- uid: 3047 + type: CableStack1 components: - - parent: 1557 + - parent: 1572 type: Transform -- uid: 3036 - type: CableStack +- uid: 3048 + type: CableStack1 components: - - parent: 1557 + - parent: 1572 type: Transform -- uid: 3037 +- uid: 3049 type: FlashlightLantern components: - - parent: 2251 + - parent: 2265 type: Transform - containers: flashlight_cell_container: entities: - - 3038 + - 3050 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 3038 +- uid: 3050 type: PowerCellSmallHyper components: - - parent: 3037 + - parent: 3049 type: Transform - startingCharge: 1000 type: PowerCell -- uid: 3039 +- uid: 3051 type: Screwdriver components: - - parent: 2251 + - parent: 2265 type: Transform - selected: yellow colors: @@ -28866,25 +29194,25 @@ entities: cyan: '#18A2D5FF' yellow: '#FFA500FF' type: RandomSpriteColor -- uid: 3040 +- uid: 3052 type: Wrench components: - - parent: 2251 + - parent: 2265 type: Transform -- uid: 3041 +- uid: 3053 type: Welder components: - - parent: 2251 + - parent: 2265 type: Transform -- uid: 3042 +- uid: 3054 type: Crowbar components: - - parent: 2251 + - parent: 2265 type: Transform -- uid: 3043 +- uid: 3055 type: Wirecutter components: - - parent: 2251 + - parent: 2265 type: Transform - selected: yellow colors: @@ -28896,456 +29224,300 @@ entities: cyan: '#18A2D5FF' yellow: '#D58C18FF' type: RandomSpriteColor -- uid: 3044 - type: BreathMaskClothing - components: - - parent: 2758 - type: Transform -- uid: 3045 - type: BreathMaskClothing - components: - - parent: 2759 - type: Transform -- uid: 3046 - type: BreathMaskClothing - components: - - parent: 2760 - type: Transform -- uid: 3047 - type: BreathMaskClothing - components: - - parent: 2761 - type: Transform -- uid: 3048 - type: ToolboxEmergencyFilled - components: - - parent: 2764 - type: Transform - - containers: - storagebase: - entities: - - 3049 - - 3050 - - 3051 - - 3052 - - 3054 - - 3056 - type: Robust.Server.GameObjects.Components.Container.Container - type: ContainerContainer -- uid: 3049 - type: BreathMaskClothing - components: - - parent: 3048 - type: Transform -- uid: 3050 - type: BreathMaskClothing - components: - - parent: 3048 - type: Transform -- uid: 3051 - type: FoodChocolateBar - components: - - parent: 3048 - type: Transform -- uid: 3052 - type: FlashlightLantern - components: - - parent: 3048 - type: Transform - - containers: - flashlight_cell_container: - entities: - - 3053 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 3053 - type: PowerCellSmallHyper - components: - - parent: 3052 - type: Transform - - startingCharge: 1000 - type: PowerCell -- uid: 3054 - type: FlashlightLantern - components: - - parent: 3048 - type: Transform - - containers: - flashlight_cell_container: - entities: - - 3055 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 3055 - type: PowerCellSmallHyper - components: - - parent: 3054 - type: Transform - - startingCharge: 1000 - type: PowerCell - uid: 3056 - type: FoodChocolateBar + type: BreathMaskClothing components: - - parent: 3048 + - parent: 2770 type: Transform - uid: 3057 type: BreathMaskClothing components: - - parent: 2764 + - parent: 2771 type: Transform - uid: 3058 type: BreathMaskClothing components: - - parent: 2765 + - parent: 2772 type: Transform - uid: 3059 + type: BreathMaskClothing + components: + - parent: 2773 + type: Transform +- uid: 3060 type: ToolboxEmergencyFilled components: - - parent: 2766 + - parent: 2776 type: Transform - containers: storagebase: entities: - - 3060 - 3061 - 3062 - 3063 - - 3065 - - 3067 + - 3064 + - 3066 + - 3068 type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 3060 - type: BreathMaskClothing - components: - - parent: 3059 - type: Transform - uid: 3061 type: BreathMaskClothing components: - - parent: 3059 + - parent: 3060 type: Transform - uid: 3062 - type: FoodChocolateBar + type: BreathMaskClothing components: - - parent: 3059 + - parent: 3060 type: Transform - uid: 3063 - type: FlashlightLantern - components: - - parent: 3059 - type: Transform - - containers: - flashlight_cell_container: - entities: - - 3064 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 3064 - type: PowerCellSmallHyper - components: - - parent: 3063 - type: Transform - - startingCharge: 1000 - type: PowerCell -- uid: 3065 - type: FlashlightLantern - components: - - parent: 3059 - type: Transform - - containers: - flashlight_cell_container: - entities: - - 3066 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 3066 - type: PowerCellSmallHyper - components: - - parent: 3065 - type: Transform - - startingCharge: 1000 - type: PowerCell -- uid: 3067 type: FoodChocolateBar components: - - parent: 3059 + - parent: 3060 type: Transform -- uid: 3068 - type: ToolboxEmergencyFilled +- uid: 3064 + type: FlashlightLantern components: - - parent: 2768 + - parent: 3060 type: Transform - containers: - storagebase: + flashlight_cell_container: entities: - - 3069 - - 3070 - - 3071 - - 3072 - - 3074 - - 3076 - type: Robust.Server.GameObjects.Components.Container.Container + - 3065 + type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer +- uid: 3065 + type: PowerCellSmallHyper + components: + - parent: 3064 + type: Transform + - startingCharge: 1000 + type: PowerCell +- uid: 3066 + type: FlashlightLantern + components: + - parent: 3060 + type: Transform + - containers: + flashlight_cell_container: + entities: + - 3067 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 3067 + type: PowerCellSmallHyper + components: + - parent: 3066 + type: Transform + - startingCharge: 1000 + type: PowerCell +- uid: 3068 + type: FoodChocolateBar + components: + - parent: 3060 + type: Transform - uid: 3069 type: BreathMaskClothing components: - - parent: 3068 + - parent: 2776 type: Transform - uid: 3070 type: BreathMaskClothing components: - - parent: 3068 + - parent: 2777 type: Transform - uid: 3071 - type: FoodChocolateBar - components: - - parent: 3068 - type: Transform -- uid: 3072 - type: FlashlightLantern - components: - - parent: 3068 - type: Transform - - containers: - flashlight_cell_container: - entities: - - 3073 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 3073 - type: PowerCellSmallHyper - components: - - parent: 3072 - type: Transform - - startingCharge: 1000 - type: PowerCell -- uid: 3074 - type: FlashlightLantern - components: - - parent: 3068 - type: Transform - - containers: - flashlight_cell_container: - entities: - - 3075 - type: Content.Server.GameObjects.ContainerSlot - type: ContainerContainer -- uid: 3075 - type: PowerCellSmallHyper - components: - - parent: 3074 - type: Transform - - startingCharge: 1000 - type: PowerCell -- uid: 3076 - type: FoodChocolateBar - components: - - parent: 3068 - type: Transform -- uid: 3077 - type: BreathMaskClothing - components: - - parent: 2768 - type: Transform -- uid: 3078 - type: BreathMaskClothing - components: - - parent: 2771 - type: Transform -- uid: 3079 type: ToolboxEmergencyFilled components: - - parent: 2773 + - parent: 2778 type: Transform - containers: storagebase: entities: - - 3080 - - 3081 - - 342 - - 1677 - - 2949 - - 2292 + - 3072 + - 3073 + - 3074 + - 3075 + - 3077 + - 3079 type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer -- uid: 3080 +- uid: 3072 type: BreathMaskClothing components: - - parent: 3079 + - parent: 3071 type: Transform +- uid: 3073 + type: BreathMaskClothing + components: + - parent: 3071 + type: Transform +- uid: 3074 + type: FoodChocolateBar + components: + - parent: 3071 + type: Transform +- uid: 3075 + type: FlashlightLantern + components: + - parent: 3071 + type: Transform + - containers: + flashlight_cell_container: + entities: + - 3076 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 3076 + type: PowerCellSmallHyper + components: + - parent: 3075 + type: Transform + - startingCharge: 1000 + type: PowerCell +- uid: 3077 + type: FlashlightLantern + components: + - parent: 3071 + type: Transform + - containers: + flashlight_cell_container: + entities: + - 3078 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 3078 + type: PowerCellSmallHyper + components: + - parent: 3077 + type: Transform + - startingCharge: 1000 + type: PowerCell +- uid: 3079 + type: FoodChocolateBar + components: + - parent: 3071 + type: Transform +- uid: 3080 + type: ToolboxEmergencyFilled + components: + - parent: 2780 + type: Transform + - containers: + storagebase: + entities: + - 3081 + - 3082 + - 3083 + - 3084 + - 3086 + - 3088 + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer - uid: 3081 type: BreathMaskClothing components: - - parent: 3079 + - parent: 3080 type: Transform - uid: 3082 + type: BreathMaskClothing + components: + - parent: 3080 + type: Transform +- uid: 3083 + type: FoodChocolateBar + components: + - parent: 3080 + type: Transform +- uid: 3084 + type: FlashlightLantern + components: + - parent: 3080 + type: Transform + - containers: + flashlight_cell_container: + entities: + - 3085 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 3085 + type: PowerCellSmallHyper + components: + - parent: 3084 + type: Transform + - startingCharge: 1000 + type: PowerCell +- uid: 3086 + type: FlashlightLantern + components: + - parent: 3080 + type: Transform + - containers: + flashlight_cell_container: + entities: + - 3087 + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 3087 + type: PowerCellSmallHyper + components: + - parent: 3086 + type: Transform + - startingCharge: 1000 + type: PowerCell +- uid: 3088 + type: FoodChocolateBar + components: + - parent: 3080 + type: Transform +- uid: 3089 + type: BreathMaskClothing + components: + - parent: 2780 + type: Transform +- uid: 3090 + type: BreathMaskClothing + components: + - parent: 2783 + type: Transform +- uid: 3091 + type: ToolboxEmergencyFilled + components: + - parent: 2785 + type: Transform + - containers: + storagebase: + entities: + - 3092 + - 3093 + - 357 + - 1691 + - 2961 + - 2306 + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 3092 + type: BreathMaskClothing + components: + - parent: 3091 + type: Transform +- uid: 3093 + type: BreathMaskClothing + components: + - parent: 3091 + type: Transform +- uid: 3094 type: solid_wall components: - - parent: 0 + - parent: 15 pos: -21.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3083 - type: Wire - components: - - parent: 0 - pos: -15.5,-5.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3084 - type: Wire - components: - - parent: 0 - pos: -16.5,-5.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3085 - type: Wire - components: - - parent: 0 - pos: -16.5,-4.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3086 - type: Wire - components: - - parent: 0 - pos: -16.5,-3.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3087 - type: Wire - components: - - parent: 0 - pos: -16.5,-2.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3088 - type: Wire - components: - - parent: 0 - pos: -17.5,-2.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3089 - type: Wire - components: - - parent: 0 - pos: -18.5,-2.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3090 - type: Wire - components: - - parent: 0 - pos: -19.5,-2.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3091 - type: Wire - components: - - parent: 0 - pos: -16.5,-1.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3092 - type: Wire - components: - - parent: 0 - pos: -19.5,-3.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3093 - type: Wire - components: - - parent: 0 - pos: -16.5,-0.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3094 - type: Wire - components: - - parent: 0 - pos: -16.5,0.5 - rot: -1.5707963267948966 rad - type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 3095 type: Wire components: - - parent: 0 - pos: -16.5,1.5 + - parent: 15 + pos: -15.5,-5.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -29357,8 +29529,8 @@ entities: - uid: 3096 type: Wire components: - - parent: 0 - pos: -16.5,2.5 + - parent: 15 + pos: -16.5,-5.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -29370,8 +29542,8 @@ entities: - uid: 3097 type: Wire components: - - parent: 0 - pos: -16.5,3.5 + - parent: 15 + pos: -16.5,-4.5 rot: -1.5707963267948966 rad type: Transform - nodeTypes: @@ -29381,794 +29553,4167 @@ entities: - AdjacentNode type: NodeContainer - uid: 3098 - type: solid_wall + type: Wire components: - - parent: 0 - pos: -14.5,-3.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 3099 - type: Table - components: - - parent: 0 - pos: -15.5,0.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 3100 - type: AirlockMaintCommonLocked - components: - - parent: 0 - pos: -14.5,-4.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 3101 - type: AirlockMaintCommonLocked - components: - - parent: 0 + - parent: 15 pos: -16.5,-3.5 rot: -1.5707963267948966 rad type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 3099 + type: Wire + components: + - parent: 15 + pos: -16.5,-2.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 3100 + type: Wire + components: + - parent: 15 + pos: -17.5,-2.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 3101 + type: Wire + components: + - parent: 15 + pos: -18.5,-2.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer - uid: 3102 + type: Wire + components: + - parent: 15 + pos: -19.5,-2.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 3103 + type: Wire + components: + - parent: 15 + pos: -16.5,-1.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 3104 + type: Wire + components: + - parent: 15 + pos: -19.5,-3.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 3105 + type: Wire + components: + - parent: 15 + pos: -16.5,-0.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 3106 + type: Wire + components: + - parent: 15 + pos: -16.5,0.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 3107 + type: Wire + components: + - parent: 15 + pos: -16.5,1.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 3108 + type: Wire + components: + - parent: 15 + pos: -16.5,2.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 3109 + type: Wire + components: + - parent: 15 + pos: -16.5,3.5 + rot: -1.5707963267948966 rad + type: Transform + - nodeTypes: + HVPower: + - AdjacentNode + Apc: + - AdjacentNode + type: NodeContainer +- uid: 3110 + type: solid_wall + components: + - parent: 15 + pos: -14.5,-3.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3111 + type: Table + components: + - parent: 15 + pos: -15.5,0.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3112 + type: AirlockMaintCommonLocked + components: + - parent: 15 + pos: -14.5,-4.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3113 + type: AirlockMaintCommonLocked + components: + - parent: 15 + pos: -16.5,-3.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3114 type: Airlock components: - name: Hydroponics type: MetaData - - parent: 0 + - parent: 15 pos: -16.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3103 +- uid: 3115 type: Catwalk components: - - parent: 0 + - parent: 15 pos: -16.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3104 +- uid: 3116 type: Catwalk components: - - parent: 0 + - parent: 15 pos: -15.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3105 +- uid: 3117 type: Catwalk components: - - parent: 0 + - parent: 15 pos: -15.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3106 +- uid: 3118 type: Catwalk components: - - parent: 0 + - parent: 15 pos: -16.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3107 +- uid: 3119 type: Catwalk components: - - parent: 0 + - parent: 15 pos: -15.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3108 +- uid: 3120 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: -20.5,2 rot: -1.5707963267948966 rad type: Transform - containers: light_bulb: entities: - - 3109 + - 3121 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 3109 +- uid: 3121 type: LightTube components: - - parent: 3108 + - parent: 3120 type: Transform -- uid: 3110 +- uid: 3122 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: -20.5,-3 rot: 1.5707963267948966 rad type: Transform - containers: light_bulb: entities: - - 3111 + - 3123 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 3111 +- uid: 3123 type: LightTube components: - - parent: 3110 + - parent: 3122 type: Transform -- uid: 3112 +- uid: 3124 type: Poweredlight components: - - parent: 0 + - parent: 15 pos: -16,-1.5 rot: 3.141592653589793 rad type: Transform - containers: light_bulb: entities: - - 3113 + - 3125 type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer -- uid: 3113 +- uid: 3125 type: LightTube components: - - parent: 3112 - type: Transform -- uid: 3114 - type: TrashSpawner - components: - - parent: 0 - pos: -21.5,10.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 3115 - type: TrashSpawner - components: - - parent: 0 - pos: -31.5,7.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 3116 - type: TrashSpawner - components: - - parent: 0 - pos: -32.5,11.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 3117 - type: TrashSpawner - components: - - parent: 0 - pos: -30.5,14.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 3118 - type: TrashSpawner - components: - - parent: 0 - pos: -25.5,13.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 3119 - type: TrashSpawner - components: - - parent: 0 - pos: -23.5,14.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 3120 - type: TrashSpawner - components: - - parent: 0 - pos: -21.5,12.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 3121 - type: TrashSpawner - components: - - parent: 0 - pos: -17.5,13.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 3122 - type: TrashSpawner - components: - - parent: 0 - pos: -15.5,9.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 3123 - type: TrashSpawner - components: - - parent: 0 - pos: -18.5,19.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 3124 - type: TrashSpawner - components: - - parent: 0 - pos: -18.5,25.5 - rot: -1.5707963267948966 rad - type: Transform -- uid: 3125 - type: TrashSpawner - components: - - parent: 0 - pos: -15.5,24.5 - rot: -1.5707963267948966 rad + - parent: 3124 type: Transform - uid: 3126 type: TrashSpawner components: - - parent: 0 - pos: -8.5,25.5 + - parent: 15 + pos: -21.5,10.5 rot: -1.5707963267948966 rad type: Transform - uid: 3127 type: TrashSpawner components: - - parent: 0 - pos: -7.5,23.5 + - parent: 15 + pos: -31.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 3128 type: TrashSpawner components: - - parent: 0 - pos: -4.5,22.5 + - parent: 15 + pos: -32.5,11.5 rot: -1.5707963267948966 rad type: Transform - uid: 3129 type: TrashSpawner components: - - parent: 0 - pos: -2.5,20.5 + - parent: 15 + pos: -30.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 3130 type: TrashSpawner components: - - parent: 0 - pos: -3.5,7.5 + - parent: 15 + pos: -25.5,13.5 rot: -1.5707963267948966 rad type: Transform - uid: 3131 type: TrashSpawner components: - - parent: 0 - pos: 0.5,8.5 + - parent: 15 + pos: -23.5,14.5 rot: -1.5707963267948966 rad type: Transform - uid: 3132 type: TrashSpawner components: - - parent: 0 - pos: -36.5,10.5 + - parent: 15 + pos: -21.5,12.5 rot: -1.5707963267948966 rad type: Transform - uid: 3133 type: TrashSpawner components: - - parent: 0 - pos: -35.5,-2.5 + - parent: 15 + pos: -17.5,13.5 rot: -1.5707963267948966 rad type: Transform - uid: 3134 type: TrashSpawner components: - - parent: 0 - pos: -32.5,5.5 + - parent: 15 + pos: -15.5,9.5 rot: -1.5707963267948966 rad type: Transform - uid: 3135 type: TrashSpawner components: - - parent: 0 - pos: -22.5,6.5 + - parent: 15 + pos: -18.5,19.5 rot: -1.5707963267948966 rad type: Transform - uid: 3136 type: TrashSpawner components: - - parent: 0 - pos: -30.5,1.5 + - parent: 15 + pos: -18.5,25.5 rot: -1.5707963267948966 rad type: Transform - uid: 3137 type: TrashSpawner components: - - parent: 0 - pos: -30.5,-8.5 + - parent: 15 + pos: -15.5,24.5 rot: -1.5707963267948966 rad type: Transform - uid: 3138 type: TrashSpawner components: - - parent: 0 - pos: -19.5,-5.5 + - parent: 15 + pos: -8.5,25.5 rot: -1.5707963267948966 rad type: Transform - uid: 3139 type: TrashSpawner components: - - parent: 0 - pos: -32.5,-0.5 + - parent: 15 + pos: -7.5,23.5 rot: -1.5707963267948966 rad type: Transform - uid: 3140 type: TrashSpawner components: - - parent: 0 - pos: -33.5,-7.5 + - parent: 15 + pos: -4.5,22.5 rot: -1.5707963267948966 rad type: Transform - uid: 3141 type: TrashSpawner components: - - parent: 0 - pos: -33.5,-11.5 + - parent: 15 + pos: -2.5,20.5 rot: -1.5707963267948966 rad type: Transform - uid: 3142 type: TrashSpawner components: - - parent: 0 - pos: -32.5,-5.5 + - parent: 15 + pos: -3.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 3143 type: TrashSpawner components: - - parent: 0 - pos: -28.5,-11.5 + - parent: 15 + pos: 0.5,8.5 rot: -1.5707963267948966 rad type: Transform - uid: 3144 type: TrashSpawner components: - - parent: 0 - pos: -21.5,-10.5 + - parent: 15 + pos: -36.5,10.5 rot: -1.5707963267948966 rad type: Transform - uid: 3145 type: TrashSpawner components: - - parent: 0 - pos: -21.5,-12.5 + - parent: 15 + pos: -35.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 3146 type: TrashSpawner components: - - parent: 0 - pos: -18.5,-13.5 + - parent: 15 + pos: -32.5,5.5 rot: -1.5707963267948966 rad type: Transform - uid: 3147 type: TrashSpawner components: - - parent: 0 - pos: -12.5,-15.5 + - parent: 15 + pos: -22.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 3148 type: TrashSpawner components: - - parent: 0 - pos: -8.5,-15.5 + - parent: 15 + pos: -30.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 3149 type: TrashSpawner components: - - parent: 0 - pos: -9.5,-12.5 + - parent: 15 + pos: -30.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 3150 type: TrashSpawner components: - - parent: 0 - pos: -8.5,-11.5 + - parent: 15 + pos: -19.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 3151 type: TrashSpawner components: - - parent: 0 - pos: -11.5,-6.5 + - parent: 15 + pos: -32.5,-0.5 rot: -1.5707963267948966 rad type: Transform - uid: 3152 type: TrashSpawner components: - - parent: 0 - pos: -16.5,-5.5 + - parent: 15 + pos: -33.5,-7.5 rot: -1.5707963267948966 rad type: Transform - uid: 3153 type: TrashSpawner components: - - parent: 0 - pos: -6.5,-9.5 + - parent: 15 + pos: -33.5,-11.5 rot: -1.5707963267948966 rad type: Transform - uid: 3154 type: TrashSpawner components: - - parent: 0 - pos: -2.5,-10.5 + - parent: 15 + pos: -32.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 3155 type: TrashSpawner components: - - parent: 0 - pos: -0.5,-9.5 + - parent: 15 + pos: -28.5,-11.5 rot: -1.5707963267948966 rad type: Transform - uid: 3156 type: TrashSpawner components: - - parent: 0 - pos: -0.5,-8.5 + - parent: 15 + pos: -21.5,-10.5 rot: -1.5707963267948966 rad type: Transform - uid: 3157 type: TrashSpawner components: - - parent: 0 - pos: 0.5,-6.5 + - parent: 15 + pos: -21.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 3158 type: TrashSpawner components: - - parent: 0 - pos: -11.5,-23.5 + - parent: 15 + pos: -18.5,-13.5 rot: -1.5707963267948966 rad type: Transform - uid: 3159 type: TrashSpawner components: - - parent: 0 - pos: -11.5,-27.5 + - parent: 15 + pos: -12.5,-15.5 rot: -1.5707963267948966 rad type: Transform - uid: 3160 type: TrashSpawner components: - - parent: 0 - pos: -9.5,-25.5 + - parent: 15 + pos: -8.5,-15.5 rot: -1.5707963267948966 rad type: Transform - uid: 3161 type: TrashSpawner components: - - parent: 0 - pos: -5.5,-27.5 + - parent: 15 + pos: -9.5,-12.5 rot: -1.5707963267948966 rad type: Transform - uid: 3162 type: TrashSpawner components: - - parent: 0 - pos: -2.5,-26.5 + - parent: 15 + pos: -8.5,-11.5 rot: -1.5707963267948966 rad type: Transform - uid: 3163 type: TrashSpawner components: - - parent: 0 - pos: -0.5,-22.5 + - parent: 15 + pos: -11.5,-6.5 rot: -1.5707963267948966 rad type: Transform - uid: 3164 type: TrashSpawner components: - - parent: 0 - pos: -10.5,-17.5 + - parent: 15 + pos: -16.5,-5.5 rot: -1.5707963267948966 rad type: Transform - uid: 3165 type: TrashSpawner components: - - parent: 0 - pos: 7.5,-18.5 + - parent: 15 + pos: -6.5,-9.5 rot: -1.5707963267948966 rad type: Transform - uid: 3166 type: TrashSpawner components: - - parent: 0 - pos: 12.5,-19.5 + - parent: 15 + pos: -2.5,-10.5 rot: -1.5707963267948966 rad type: Transform - uid: 3167 type: TrashSpawner components: - - parent: 0 - pos: 14.5,-21.5 + - parent: 15 + pos: -0.5,-9.5 rot: -1.5707963267948966 rad type: Transform - uid: 3168 type: TrashSpawner components: - - parent: 0 - pos: 14.5,-24.5 + - parent: 15 + pos: -0.5,-8.5 rot: -1.5707963267948966 rad type: Transform - uid: 3169 type: TrashSpawner components: - - parent: 0 - pos: 18.5,-25.5 + - parent: 15 + pos: 0.5,-6.5 rot: -1.5707963267948966 rad type: Transform - uid: 3170 type: TrashSpawner components: - - parent: 0 - pos: 22.5,-23.5 + - parent: 15 + pos: -11.5,-23.5 rot: -1.5707963267948966 rad type: Transform - uid: 3171 type: TrashSpawner components: - - parent: 0 - pos: 21.5,-20.5 + - parent: 15 + pos: -11.5,-27.5 rot: -1.5707963267948966 rad type: Transform - uid: 3172 type: TrashSpawner components: - - parent: 0 - pos: 21.5,-17.5 + - parent: 15 + pos: -9.5,-25.5 rot: -1.5707963267948966 rad type: Transform - uid: 3173 type: TrashSpawner components: - - parent: 0 - pos: 26.5,-17.5 + - parent: 15 + pos: -5.5,-27.5 rot: -1.5707963267948966 rad type: Transform - uid: 3174 type: TrashSpawner components: - - parent: 0 - pos: 27.5,-13.5 + - parent: 15 + pos: -2.5,-26.5 rot: -1.5707963267948966 rad type: Transform - uid: 3175 type: TrashSpawner components: - - parent: 0 - pos: 24.5,-9.5 + - parent: 15 + pos: -0.5,-22.5 rot: -1.5707963267948966 rad type: Transform - uid: 3176 type: TrashSpawner components: - - parent: 0 - pos: 27.5,-7.5 + - parent: 15 + pos: -10.5,-17.5 rot: -1.5707963267948966 rad type: Transform - uid: 3177 type: TrashSpawner components: - - parent: 0 - pos: 27.5,-3.5 + - parent: 15 + pos: 7.5,-18.5 rot: -1.5707963267948966 rad type: Transform - uid: 3178 type: TrashSpawner components: - - parent: 0 - pos: 25.5,-1.5 + - parent: 15 + pos: 12.5,-19.5 rot: -1.5707963267948966 rad type: Transform - uid: 3179 type: TrashSpawner components: - - parent: 0 - pos: 21.5,-2.5 + - parent: 15 + pos: 14.5,-21.5 rot: -1.5707963267948966 rad type: Transform - uid: 3180 type: TrashSpawner components: - - parent: 0 - pos: 20.5,0.5 + - parent: 15 + pos: 14.5,-24.5 rot: -1.5707963267948966 rad type: Transform - uid: 3181 type: TrashSpawner components: - - parent: 0 - pos: 32.5,-6.5 + - parent: 15 + pos: 18.5,-25.5 rot: -1.5707963267948966 rad type: Transform - uid: 3182 type: TrashSpawner components: - - parent: 0 - pos: 37.5,-7.5 + - parent: 15 + pos: 22.5,-23.5 rot: -1.5707963267948966 rad type: Transform - uid: 3183 type: TrashSpawner components: - - parent: 0 - pos: 37.5,-3.5 + - parent: 15 + pos: 21.5,-20.5 rot: -1.5707963267948966 rad type: Transform - uid: 3184 type: TrashSpawner components: - - parent: 0 - pos: 42.5,-2.5 + - parent: 15 + pos: 21.5,-17.5 rot: -1.5707963267948966 rad type: Transform - uid: 3185 type: TrashSpawner components: - - parent: 0 - pos: 44.5,6.5 + - parent: 15 + pos: 26.5,-17.5 rot: -1.5707963267948966 rad type: Transform - uid: 3186 type: TrashSpawner components: - - parent: 0 - pos: 35.5,2.5 + - parent: 15 + pos: 27.5,-13.5 rot: -1.5707963267948966 rad type: Transform - uid: 3187 type: TrashSpawner components: - - parent: 0 - pos: 27.5,0.5 + - parent: 15 + pos: 24.5,-9.5 rot: -1.5707963267948966 rad type: Transform - uid: 3188 type: TrashSpawner components: - - parent: 0 - pos: 28.5,8.5 + - parent: 15 + pos: 27.5,-7.5 rot: -1.5707963267948966 rad type: Transform - uid: 3189 type: TrashSpawner components: - - parent: 0 - pos: 26.5,10.5 + - parent: 15 + pos: 27.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 3190 type: TrashSpawner components: - - parent: 0 - pos: 27.5,13.5 + - parent: 15 + pos: 25.5,-1.5 rot: -1.5707963267948966 rad type: Transform - uid: 3191 type: TrashSpawner components: - - parent: 0 - pos: 24.5,11.5 + - parent: 15 + pos: 21.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 3192 type: TrashSpawner components: - - parent: 0 - pos: 12.5,12.5 + - parent: 15 + pos: 20.5,0.5 rot: -1.5707963267948966 rad type: Transform - uid: 3193 type: TrashSpawner components: - - parent: 0 - pos: 12.5,7.5 + - parent: 15 + pos: 32.5,-6.5 rot: -1.5707963267948966 rad type: Transform - uid: 3194 type: TrashSpawner components: - - parent: 0 - pos: 6.5,1.5 + - parent: 15 + pos: 37.5,-7.5 rot: -1.5707963267948966 rad type: Transform - uid: 3195 type: TrashSpawner components: - - parent: 0 - pos: 25.5,6.5 + - parent: 15 + pos: 37.5,-3.5 rot: -1.5707963267948966 rad type: Transform - uid: 3196 type: TrashSpawner components: - - parent: 0 - pos: 19.5,3.5 + - parent: 15 + pos: 42.5,-2.5 rot: -1.5707963267948966 rad type: Transform - uid: 3197 type: TrashSpawner components: - - parent: 0 - pos: -7.5,5.5 + - parent: 15 + pos: 44.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 3198 type: TrashSpawner components: - - parent: 0 - pos: -1.5,-0.5 + - parent: 15 + pos: 35.5,2.5 rot: -1.5707963267948966 rad type: Transform - uid: 3199 type: TrashSpawner components: - - parent: 0 - pos: -8.5,-1.5 + - parent: 15 + pos: 27.5,0.5 rot: -1.5707963267948966 rad type: Transform - uid: 3200 type: TrashSpawner components: - - parent: 0 - pos: -17.5,3.5 + - parent: 15 + pos: 28.5,8.5 rot: -1.5707963267948966 rad type: Transform - uid: 3201 type: TrashSpawner components: - - parent: 0 - pos: -25.5,0.5 + - parent: 15 + pos: 26.5,10.5 rot: -1.5707963267948966 rad type: Transform - uid: 3202 type: TrashSpawner components: - - parent: 0 - pos: -22.5,-6.5 + - parent: 15 + pos: 27.5,13.5 rot: -1.5707963267948966 rad type: Transform - uid: 3203 type: TrashSpawner components: - - parent: 0 - pos: 4.5,9.5 + - parent: 15 + pos: 24.5,11.5 rot: -1.5707963267948966 rad type: Transform - uid: 3204 type: TrashSpawner components: - - parent: 0 - pos: 1.5,16.5 + - parent: 15 + pos: 12.5,12.5 rot: -1.5707963267948966 rad type: Transform - uid: 3205 type: TrashSpawner components: - - parent: 0 - pos: 13.5,19.5 + - parent: 15 + pos: 12.5,7.5 rot: -1.5707963267948966 rad type: Transform - uid: 3206 type: TrashSpawner components: - - parent: 0 - pos: 12.5,15.5 + - parent: 15 + pos: 6.5,1.5 rot: -1.5707963267948966 rad type: Transform - uid: 3207 type: TrashSpawner components: - - parent: 0 - pos: 9.5,13.5 + - parent: 15 + pos: 25.5,6.5 rot: -1.5707963267948966 rad type: Transform - uid: 3208 type: TrashSpawner components: - - parent: 0 - pos: 7.5,13.5 + - parent: 15 + pos: 19.5,3.5 rot: -1.5707963267948966 rad type: Transform +- uid: 3209 + type: TrashSpawner + components: + - parent: 15 + pos: -7.5,5.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3210 + type: TrashSpawner + components: + - parent: 15 + pos: -1.5,-0.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3211 + type: TrashSpawner + components: + - parent: 15 + pos: -8.5,-1.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3212 + type: TrashSpawner + components: + - parent: 15 + pos: -17.5,3.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3213 + type: TrashSpawner + components: + - parent: 15 + pos: -25.5,0.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3214 + type: TrashSpawner + components: + - parent: 15 + pos: -22.5,-6.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3215 + type: TrashSpawner + components: + - parent: 15 + pos: 4.5,9.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3216 + type: TrashSpawner + components: + - parent: 15 + pos: 1.5,16.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3217 + type: TrashSpawner + components: + - parent: 15 + pos: 13.5,19.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3218 + type: TrashSpawner + components: + - parent: 15 + pos: 12.5,15.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3219 + type: TrashSpawner + components: + - parent: 15 + pos: 9.5,13.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3220 + type: solid_wall + components: + - parent: 15 + pos: -19.5,-15.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3221 + type: solid_wall + components: + - parent: 15 + pos: -19.5,-14.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3222 + type: solid_wall + components: + - parent: 15 + pos: -19.5,-13.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3223 + type: solid_wall + components: + - parent: 15 + pos: -19.5,-12.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3224 + type: solid_wall + components: + - parent: 15 + pos: -20.5,-12.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3225 + type: solid_wall + components: + - parent: 15 + pos: -21.5,-12.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3226 + type: solid_wall + components: + - parent: 15 + pos: -22.5,-12.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3227 + type: solid_wall + components: + - parent: 15 + pos: -23.5,-12.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3228 + type: AirlockMaintCommon + components: + - parent: 15 + pos: -24.5,-12.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3229 + type: DisposalUnit + components: + - parent: 15 + pos: -10.5,-17.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3230 + type: DisposalPipe + components: + - parent: 15 + pos: -24.5,-10.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3231 + type: DisposalPipe + components: + - parent: 15 + pos: -25.5,-10.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3232 + type: DisposalPipe + components: + - parent: 15 + pos: -26.5,-10.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3233 + type: DisposalUnit + components: + - parent: 15 + pos: -27.5,-8.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3234 + type: DisposalPipe + components: + - parent: 15 + pos: -28.5,-10.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3235 + type: DisposalPipe + components: + - parent: 15 + pos: -29.5,-10.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3236 + type: DisposalPipe + components: + - parent: 15 + pos: -30.5,-10.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3237 + type: DisposalPipe + components: + - parent: 15 + pos: -31.5,-10.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3238 + type: DisposalBend + components: + - parent: 15 + pos: -32.5,-10.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalBend: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3239 + type: DisposalPipe + components: + - parent: 15 + pos: -32.5,-9.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3240 + type: DisposalPipe + components: + - parent: 15 + pos: -32.5,-8.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3241 + type: DisposalPipe + components: + - parent: 15 + pos: -32.5,-7.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3242 + type: DisposalPipe + components: + - parent: 15 + pos: -32.5,-6.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3243 + type: DisposalPipe + components: + - parent: 15 + pos: -32.5,-5.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3244 + type: DisposalPipe + components: + - parent: 15 + pos: -32.5,-4.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3245 + type: DisposalPipe + components: + - parent: 15 + pos: -32.5,-3.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3246 + type: DisposalPipe + components: + - parent: 15 + pos: -32.5,-2.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3247 + type: DisposalPipe + components: + - parent: 15 + pos: -32.5,-1.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3248 + type: DisposalPipe + components: + - parent: 15 + pos: -32.5,-0.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3249 + type: DisposalPipe + components: + - parent: 15 + pos: -32.5,0.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3250 + type: DisposalPipe + components: + - parent: 15 + pos: -32.5,1.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3251 + type: DisposalPipe + components: + - parent: 15 + pos: -32.5,2.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3252 + type: DisposalPipe + components: + - parent: 15 + pos: -31.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3253 + type: DisposalPipe + components: + - parent: 15 + pos: -30.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3254 + type: DisposalPipe + components: + - parent: 15 + pos: -29.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3255 + type: DisposalPipe + components: + - parent: 15 + pos: -28.5,4.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3256 + type: DisposalPipe + components: + - parent: 15 + pos: -27.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3257 + type: DisposalPipe + components: + - parent: 15 + pos: -26.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3258 + type: DisposalPipe + components: + - parent: 15 + pos: -25.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3259 + type: DisposalPipe + components: + - parent: 15 + pos: -24.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3260 + type: DisposalPipe + components: + - parent: 15 + pos: -23.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3261 + type: DisposalUnit + components: + - parent: 15 + pos: -22.5,6.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3262 + type: DisposalPipe + components: + - parent: 15 + pos: -21.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3263 + type: DisposalPipe + components: + - parent: 15 + pos: -20.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3264 + type: DisposalPipe + components: + - parent: 15 + pos: -19.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3265 + type: DisposalPipe + components: + - parent: 15 + pos: -18.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3266 + type: DisposalPipe + components: + - parent: 15 + pos: -17.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3267 + type: DisposalPipe + components: + - parent: 15 + pos: -16.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3268 + type: DisposalPipe + components: + - parent: 15 + pos: -15.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3269 + type: DisposalPipe + components: + - parent: 15 + pos: -14.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3270 + type: DisposalPipe + components: + - parent: 15 + pos: -13.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3271 + type: DisposalUnit + components: + - parent: 15 + pos: -12.5,1.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3272 + type: DisposalPipe + components: + - parent: 15 + pos: -11.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3273 + type: DisposalPipe + components: + - parent: 15 + pos: -10.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3274 + type: DisposalPipe + components: + - parent: 15 + pos: -9.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3275 + type: DisposalPipe + components: + - parent: 15 + pos: -8.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3276 + type: DisposalPipe + components: + - parent: 15 + pos: 1.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3277 + type: DisposalPipe + components: + - parent: 15 + pos: 0.5,2.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3278 + type: DisposalPipe + components: + - parent: 15 + pos: -0.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3279 + type: DisposalPipe + components: + - parent: 15 + pos: -1.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3280 + type: DisposalPipe + components: + - parent: 15 + pos: -2.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3281 + type: DisposalPipe + components: + - parent: 15 + pos: -3.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3282 + type: DisposalPipe + components: + - parent: 15 + pos: -4.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3283 + type: DisposalPipe + components: + - parent: 15 + pos: -5.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3284 + type: DisposalPipe + components: + - parent: 15 + pos: -6.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3285 + type: DisposalPipe + components: + - parent: 15 + pos: -7.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3286 + type: DisposalBend + components: + - parent: 15 + pos: -17.5,-10.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalBend: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3287 + type: DisposalTrunk + components: + - parent: 15 + pos: -22.5,6.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3288 + type: DisposalPipe + components: + - parent: 15 + pos: -22.5,5.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3289 + type: DisposalPipe + components: + - parent: 15 + pos: -22.5,4.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3290 + type: DisposalBend + components: + - parent: 15 + pos: -32.5,3.5 + type: Transform + - containers: + DisposalBend: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3291 + type: DisposalPipe + components: + - parent: 15 + pos: -23.5,-11.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3292 + type: DisposalPipe + components: + - parent: 15 + pos: -23.5,-12.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3293 + type: DisposalPipe + components: + - parent: 15 + pos: -22.5,-10.5 + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3294 + type: DisposalTrunk + components: + - parent: 15 + pos: -12.5,1.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3295 + type: DisposalPipe + components: + - parent: 15 + pos: -12.5,2.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3296 + type: DisposalPipe + components: + - parent: 15 + pos: -21.5,-10.5 + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3297 + type: DisposalTrunk + components: + - parent: 15 + pos: -27.5,-8.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3298 + type: DisposalPipe + components: + - parent: 15 + pos: -27.5,-9.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3299 + type: DisposalUnit + components: + - parent: 15 + pos: 0.5,1.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3300 + type: DisposalTrunk + components: + - parent: 15 + pos: 0.5,1.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3301 + type: DisposalPipe + components: + - parent: 15 + pos: -20.5,-10.5 + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3302 + type: DisposalPipe + components: + - parent: 15 + pos: 2.5,4.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3303 + type: DisposalPipe + components: + - parent: 15 + pos: 3.5,-9.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3304 + type: DisposalPipe + components: + - parent: 15 + pos: 4.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3305 + type: DisposalPipe + components: + - parent: 15 + pos: 29.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3306 + type: DisposalPipe + components: + - parent: 15 + pos: 28.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3307 + type: DisposalPipe + components: + - parent: 15 + pos: 27.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3308 + type: DisposalPipe + components: + - parent: 15 + pos: 26.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3309 + type: DisposalPipe + components: + - parent: 15 + pos: 25.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3310 + type: DisposalPipe + components: + - parent: 15 + pos: 24.5,4.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3311 + type: DisposalPipe + components: + - parent: 15 + pos: 23.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3312 + type: DisposalPipe + components: + - parent: 15 + pos: 22.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3313 + type: DisposalPipe + components: + - parent: 15 + pos: 21.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3314 + type: DisposalPipe + components: + - parent: 15 + pos: 20.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3315 + type: DisposalPipe + components: + - parent: 15 + pos: 19.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3316 + type: DisposalPipe + components: + - parent: 15 + pos: 18.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3317 + type: DisposalPipe + components: + - parent: 15 + pos: 17.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3318 + type: DisposalPipe + components: + - parent: 15 + pos: 16.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3319 + type: DisposalPipe + components: + - parent: 15 + pos: 15.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3320 + type: DisposalPipe + components: + - parent: 15 + pos: 14.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3321 + type: DisposalPipe + components: + - parent: 15 + pos: 13.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3322 + type: DisposalPipe + components: + - parent: 15 + pos: 12.5,2.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3323 + type: DisposalPipe + components: + - parent: 15 + pos: 11.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3324 + type: DisposalPipe + components: + - parent: 15 + pos: 10.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3325 + type: DisposalPipe + components: + - parent: 15 + pos: 9.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3326 + type: DisposalPipe + components: + - parent: 15 + pos: 8.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3327 + type: DisposalPipe + components: + - parent: 15 + pos: 7.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3328 + type: DisposalPipe + components: + - parent: 15 + pos: 6.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3329 + type: DisposalPipe + components: + - parent: 15 + pos: 5.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3330 + type: DisposalUnit + components: + - parent: 15 + pos: 12.5,-2.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3331 + type: DisposalTrunk + components: + - parent: 15 + pos: 12.5,-2.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3332 + type: ConveyorBelt + components: + - parent: 15 + pos: -22.5,-13.5 + type: Transform +- uid: 3333 + type: DisposalPipe + components: + - parent: 15 + pos: 12.5,-0.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3334 + type: DisposalPipe + components: + - parent: 15 + pos: 12.5,0.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3335 + type: DisposalPipe + components: + - parent: 15 + pos: 12.5,1.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3336 + type: DisposalPipe + components: + - parent: 15 + pos: -19.5,-10.5 + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3337 + type: DisposalUnit + components: + - parent: 15 + pos: 11.5,-11.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3338 + type: DisposalTrunk + components: + - parent: 15 + pos: 11.5,-11.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3339 + type: DisposalPipe + components: + - parent: 15 + pos: 10.5,-11.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3340 + type: DisposalPipe + components: + - parent: 15 + pos: 9.5,-11.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3341 + type: DisposalPipe + components: + - parent: 15 + pos: 4.5,-11.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3342 + type: DisposalPipe + components: + - parent: 15 + pos: 8.5,-11.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3343 + type: DisposalPipe + components: + - parent: 15 + pos: 7.5,-11.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3344 + type: DisposalPipe + components: + - parent: 15 + pos: 6.5,-11.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3345 + type: DisposalPipe + components: + - parent: 15 + pos: 5.5,-11.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3346 + type: DisposalBend + components: + - parent: 15 + pos: 3.5,-11.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalBend: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3347 + type: DisposalPipe + components: + - parent: 15 + pos: 3.5,-10.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3348 + type: DisposalPipe + components: + - parent: 15 + pos: 3.5,2.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3349 + type: DisposalPipe + components: + - parent: 15 + pos: 3.5,1.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3350 + type: DisposalPipe + components: + - parent: 15 + pos: 3.5,0.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3351 + type: DisposalPipe + components: + - parent: 15 + pos: 3.5,-0.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3352 + type: DisposalPipe + components: + - parent: 15 + pos: 3.5,-1.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3353 + type: DisposalPipe + components: + - parent: 15 + pos: 3.5,-2.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3354 + type: DisposalPipe + components: + - parent: 15 + pos: 3.5,-3.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3355 + type: DisposalPipe + components: + - parent: 15 + pos: 3.5,-4.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3356 + type: DisposalPipe + components: + - parent: 15 + pos: 3.5,-5.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3357 + type: DisposalPipe + components: + - parent: 15 + pos: 3.5,-6.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3358 + type: DisposalPipe + components: + - parent: 15 + pos: 3.5,-7.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3359 + type: DisposalPipe + components: + - parent: 15 + pos: 3.5,-8.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3360 + type: DisposalPipe + components: + - parent: 15 + pos: -18.5,-10.5 + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3361 + type: DisposalUnit + components: + - parent: 15 + pos: -2.5,29.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3362 + type: DisposalTrunk + components: + - parent: 15 + pos: -2.5,29.5 + type: Transform + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3363 + type: DisposalPipe + components: + - parent: 15 + pos: -1.5,29.5 + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3364 + type: DisposalPipe + components: + - parent: 15 + pos: -0.5,29.5 + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3365 + type: DisposalPipe + components: + - parent: 15 + pos: 0.5,29.5 + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3366 + type: DisposalPipe + components: + - parent: 15 + pos: 1.5,29.5 + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3367 + type: DisposalPipe + components: + - parent: 15 + pos: -17.5,-21.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3368 + type: DisposalPipe + components: + - parent: 15 + pos: 2.5,28.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3369 + type: DisposalPipe + components: + - parent: 15 + pos: 2.5,27.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3370 + type: DisposalPipe + components: + - parent: 15 + pos: 2.5,26.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3371 + type: DisposalPipe + components: + - parent: 15 + pos: 2.5,25.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3372 + type: DisposalPipe + components: + - parent: 15 + pos: 2.5,24.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3373 + type: DisposalPipe + components: + - parent: 15 + pos: 2.5,23.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3374 + type: DisposalPipe + components: + - parent: 15 + pos: 2.5,22.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3375 + type: DisposalPipe + components: + - parent: 15 + pos: 2.5,21.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3376 + type: DisposalPipe + components: + - parent: 15 + pos: 2.5,20.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3377 + type: DisposalPipe + components: + - parent: 15 + pos: 2.5,19.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3378 + type: DisposalPipe + components: + - parent: 15 + pos: 2.5,18.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3379 + type: DisposalPipe + components: + - parent: 15 + pos: 1.5,17.5 + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3380 + type: DisposalPipe + components: + - parent: 15 + pos: 2.5,16.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3381 + type: DisposalPipe + components: + - parent: 15 + pos: 2.5,15.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3382 + type: DisposalPipe + components: + - parent: 15 + pos: 2.5,14.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3383 + type: DisposalPipe + components: + - parent: 15 + pos: 2.5,13.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3384 + type: DisposalPipe + components: + - parent: 15 + pos: 2.5,12.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3385 + type: DisposalPipe + components: + - parent: 15 + pos: 3.5,11.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3386 + type: DisposalPipe + components: + - parent: 15 + pos: 2.5,10.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3387 + type: DisposalPipe + components: + - parent: 15 + pos: 2.5,9.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3388 + type: DisposalPipe + components: + - parent: 15 + pos: 2.5,8.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3389 + type: DisposalPipe + components: + - parent: 15 + pos: 2.5,7.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3390 + type: DisposalPipe + components: + - parent: 15 + pos: 2.5,6.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3391 + type: DisposalPipe + components: + - parent: 15 + pos: 2.5,5.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3392 + type: DisposalBend + components: + - parent: 15 + pos: 2.5,29.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalBend: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3393 + type: DisposalUnit + components: + - parent: 15 + pos: 37.5,6.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3394 + type: DisposalTrunk + components: + - parent: 15 + pos: 37.5,6.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3395 + type: DisposalPipe + components: + - parent: 15 + pos: 37.5,5.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3396 + type: DisposalPipe + components: + - parent: 15 + pos: 37.5,4.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3397 + type: DisposalBend + components: + - parent: 15 + pos: 37.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalBend: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3398 + type: DisposalPipe + components: + - parent: 15 + pos: 31.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3399 + type: DisposalPipe + components: + - parent: 15 + pos: 32.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3400 + type: DisposalPipe + components: + - parent: 15 + pos: 33.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3401 + type: DisposalPipe + components: + - parent: 15 + pos: 34.5,2.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3402 + type: DisposalPipe + components: + - parent: 15 + pos: 35.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3403 + type: DisposalPipe + components: + - parent: 15 + pos: 36.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3404 + type: DisposalPipe + components: + - parent: 15 + pos: 30.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3405 + type: DisposalUnit + components: + - parent: 15 + pos: 34.5,-4.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3406 + type: DisposalTrunk + components: + - parent: 15 + pos: 34.5,-4.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3407 + type: DisposalPipe + components: + - parent: 15 + pos: 34.5,-3.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3408 + type: DisposalPipe + components: + - parent: 15 + pos: 34.5,-2.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3409 + type: DisposalPipe + components: + - parent: 15 + pos: 34.5,-1.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3410 + type: DisposalPipe + components: + - parent: 15 + pos: 34.5,-0.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3411 + type: DisposalPipe + components: + - parent: 15 + pos: 34.5,0.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3412 + type: DisposalPipe + components: + - parent: 15 + pos: 34.5,1.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3413 + type: DisposalPipe + components: + - parent: 15 + pos: -17.5,-20.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3414 + type: Recycler + components: + - parent: 15 + pos: -21.5,-13.5 + type: Transform +- uid: 3415 + type: DisposalPipe + components: + - parent: 15 + pos: -17.5,-19.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3416 + type: DisposalPipe + components: + - parent: 15 + pos: 15.5,-1.5 + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3417 + type: DisposalPipe + components: + - parent: 15 + pos: 14.5,-1.5 + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3418 + type: DisposalPipe + components: + - parent: 15 + pos: 13.5,-1.5 + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3419 + type: DisposalUnit + components: + - parent: 15 + pos: 24.5,8.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3420 + type: DisposalTrunk + components: + - parent: 15 + pos: 24.5,8.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3421 + type: DisposalPipe + components: + - parent: 15 + pos: 24.5,7.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3422 + type: DisposalPipe + components: + - parent: 15 + pos: 24.5,6.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3423 + type: DisposalPipe + components: + - parent: 15 + pos: 24.5,5.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3424 + type: DisposalPipe + components: + - parent: 15 + pos: -17.5,-18.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3425 + type: DisposalUnit + components: + - parent: 15 + pos: 6.5,11.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3426 + type: DisposalTrunk + components: + - parent: 15 + pos: 6.5,11.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3427 + type: DisposalPipe + components: + - parent: 15 + pos: 5.5,11.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3428 + type: DisposalPipe + components: + - parent: 15 + pos: 4.5,11.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3429 + type: DisposalPipe + components: + - parent: 15 + pos: -17.5,-17.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3430 + type: DisposalUnit + components: + - parent: 15 + pos: -5.5,17.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3431 + type: DisposalTrunk + components: + - parent: 15 + pos: -5.5,17.5 + type: Transform + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3432 + type: DisposalPipe + components: + - parent: 15 + pos: -4.5,17.5 + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3433 + type: DisposalPipe + components: + - parent: 15 + pos: -3.5,17.5 + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3434 + type: DisposalPipe + components: + - parent: 15 + pos: -2.5,17.5 + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3435 + type: DisposalPipe + components: + - parent: 15 + pos: -1.5,17.5 + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3436 + type: DisposalPipe + components: + - parent: 15 + pos: -0.5,17.5 + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3437 + type: DisposalPipe + components: + - parent: 15 + pos: 0.5,17.5 + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3438 + type: DisposalPipe + components: + - parent: 15 + pos: -17.5,-16.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3439 + type: DisposalBend + components: + - parent: 15 + pos: -8.5,-15.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalBend: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3440 + type: DisposalUnit + components: + - parent: 15 + pos: -29.5,11.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3441 + type: VendingMachineYouTool + components: + - parent: 15 + pos: -28.5,11.5 + rot: -1.5707963267948966 rad + type: Transform +- uid: 3442 + type: DisposalPipe + components: + - parent: 15 + pos: -28.5,9.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3443 + type: DisposalPipe + components: + - parent: 15 + pos: -28.5,8.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3444 + type: DisposalPipe + components: + - parent: 15 + pos: -28.5,7.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3445 + type: DisposalPipe + components: + - parent: 15 + pos: -28.5,6.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3446 + type: DisposalPipe + components: + - parent: 15 + pos: -28.5,5.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3447 + type: DisposalPipe + components: + - parent: 15 + pos: -16.5,-15.5 + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3448 + type: DisposalUnit + components: + - parent: 15 + pos: -17.5,-22.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3449 + type: DisposalTrunk + components: + - parent: 15 + pos: -17.5,-22.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3450 + type: DisposalPipe + components: + - parent: 15 + pos: -17.5,-11.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3451 + type: DisposalPipe + components: + - parent: 15 + pos: -17.5,-12.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3452 + type: DisposalPipe + components: + - parent: 15 + pos: -17.5,-13.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3453 + type: DisposalPipe + components: + - parent: 15 + pos: -17.5,-14.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3454 + type: DisposalJunctionFlipped + components: + - parent: 15 + pos: 3.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3455 + type: DisposalJunction + components: + - parent: 15 + pos: 2.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3456 + type: DisposalJunctionFlipped + components: + - parent: 15 + pos: 0.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3457 + type: DisposalJunctionFlipped + components: + - parent: 15 + pos: -12.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3458 + type: DisposalJunction + components: + - parent: 15 + pos: -22.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3459 + type: DisposalJunction + components: + - parent: 15 + pos: -28.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3460 + type: DisposalJunctionFlipped + components: + - parent: 15 + pos: -27.5,-10.5 + type: Transform + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3461 + type: DisposalYJunction + components: + - parent: 15 + pos: -23.5,-10.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3462 + type: DisposalJunction + components: + - parent: 15 + pos: -17.5,-15.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3463 + type: DisposalJunctionFlipped + components: + - parent: 15 + pos: -10.5,-15.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3464 + type: DisposalJunctionFlipped + components: + - parent: 15 + pos: 2.5,11.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3465 + type: DisposalJunction + components: + - parent: 15 + pos: 2.5,17.5 + rot: -1.5707963267948966 rad + type: Transform + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3466 + type: DisposalJunctionFlipped + components: + - parent: 15 + pos: 12.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3467 + type: DisposalJunction + components: + - parent: 15 + pos: 12.5,-1.5 + rot: 1.5707963267948966 rad + type: Transform + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3468 + type: DisposalJunction + components: + - parent: 15 + pos: 24.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3469 + type: DisposalJunctionFlipped + components: + - parent: 15 + pos: 34.5,3.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3470 + type: ConveyorSwitch + components: + - parent: 15 + pos: -23.467268,-14.347846 + rot: 3.141592653589793 rad + type: Transform + - id: 1 + type: ConveyorSwitch +- uid: 3471 + type: DisposalPipe + components: + - parent: 15 + pos: 16.5,-1.5 + type: Transform + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3472 + type: DisposalBend + components: + - parent: 15 + pos: 17.5,-1.5 + rot: 3.141592653589793 rad + type: Transform + - containers: + DisposalBend: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3473 + type: DisposalBend + components: + - parent: 15 + pos: 17.5,-0.5 + type: Transform + - containers: + DisposalBend: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - Anchored: True + type: Physics +- uid: 3474 + type: Beaker + components: + - parent: 15 + pos: 18.361881,1.6674205 + rot: 3.141592653589793 rad + type: Transform +- uid: 3475 + type: LargeBeaker + components: + - parent: 15 + pos: 18.611881,1.2455455 + rot: 3.141592653589793 rad + type: Transform +- uid: 3476 + type: ConveyorBelt + components: + - parent: 15 + pos: -23.5,-13.5 + type: Transform +- uid: 3477 + type: AirlockMaintCargo + components: + - parent: 15 + pos: -24.5,-12.5 + type: Transform ... diff --git a/Resources/Maps/stationstation.yml b/Resources/Maps/stationstation.yml index 45aea33f93..482b8325b1 100644 --- a/Resources/Maps/stationstation.yml +++ b/Resources/Maps/stationstation.yml @@ -3465,14 +3465,14 @@ entities: - parent: 384 type: Transform - uid: 386 - type: CableStack + type: CableStack1 components: - parent: 0 pos: -15.5,-0.5 rot: -1.5707963267949 rad type: Transform - uid: 387 - type: CableStack + type: CableStack1 components: - parent: 0 pos: -15.5,-0.5 @@ -3756,14 +3756,14 @@ entities: rot: -1.5707963267949 rad type: Transform - uid: 413 - type: CableStack + type: CableStack1 components: - parent: 0 pos: -15.5,0.5 rot: -1.5707963267949 rad type: Transform - uid: 414 - type: CableStack + type: CableStack1 components: - parent: 0 pos: -15.5,0.5 @@ -8567,13 +8567,13 @@ entities: pos: 9.654155,21.628613 type: Transform - uid: 947 - type: CableStack + type: CableStack1 components: - parent: 0 pos: 10.561831,21.767809 type: Transform - uid: 948 - type: CableStack + type: CableStack1 components: - parent: 0 pos: 10.577456,21.424059 diff --git a/Resources/Prototypes/Entities/Constructible/Power/gravity_generator.yml b/Resources/Prototypes/Entities/Constructible/Power/gravity_generator.yml index 7213d9bfb7..35c0b773cf 100644 --- a/Resources/Prototypes/Entities/Constructible/Power/gravity_generator.yml +++ b/Resources/Prototypes/Entities/Constructible/Power/gravity_generator.yml @@ -3,38 +3,38 @@ name: gravity generator description: It's what keeps you to the floor. components: - - type: Sprite - sprite: Constructible/Power/gravity_generator.rsi - layers: - - state: on - - sprite: Constructible/Power/gravity_generator_core.rsi - state: activated - shader: unshaded - - type: Icon - sprite: Constructible/Power/gravity_generator.rsi - state: on - - type: SnapGrid - offset: Center - - type: PowerReceiver - powerLoad: 500 - - type: Collidable - shapes: - - !type:PhysShapeAabb - bounds: "-1.5,-1.5,1.5,1.5" - layer: - - Opaque - - Impassable - - MobImpassable - - VaultImpassable - - type: Clickable - - type: InteractionOutline - - type: Damageable - - type: Breakable - threshold: 150 - - type: GravityGenerator - - type: UserInterface - interfaces: - - key: enum.GravityGeneratorUiKey.Key - type: GravityGeneratorBoundUserInterface + - type: Sprite + sprite: Constructible/Power/gravity_generator.rsi + layers: + - state: on + - sprite: Constructible/Power/gravity_generator_core.rsi + state: activated + shader: unshaded + - type: Icon + sprite: Constructible/Power/gravity_generator.rsi + state: on + - type: SnapGrid + offset: Center + - type: PowerReceiver + powerLoad: 500 + - type: Collidable + shapes: + - !type:PhysShapeAabb + bounds: "-1.5,-1.5,1.5,1.5" + layer: + - Opaque + - Impassable + - MobImpassable + - VaultImpassable + - type: Clickable + - type: InteractionOutline + - type: Damageable + - type: Breakable + threshold: 150 + - type: GravityGenerator + - type: UserInterface + interfaces: + - key: enum.GravityGeneratorUiKey.Key + type: GravityGeneratorBoundUserInterface placement: mode: AlignTileAny diff --git a/Resources/Prototypes/Entities/Constructible/Walls/low_wall.yml b/Resources/Prototypes/Entities/Constructible/Walls/low_wall.yml index 3fc92263b9..230c66d1d3 100644 --- a/Resources/Prototypes/Entities/Constructible/Walls/low_wall.yml +++ b/Resources/Prototypes/Entities/Constructible/Walls/low_wall.yml @@ -14,11 +14,9 @@ color: "#889192" drawdepth: Walls sprite: Constructible/Structures/Walls/low_wall.rsi - - type: Icon sprite: Constructible/Structures/Walls/low_wall.rsi state: metal - - type: Collidable shapes: - !type:PhysShapeAabb @@ -26,10 +24,8 @@ - type: Damageable - type: Destructible thresholdvalue: 100 - - type: SnapGrid offset: Center - - type: LowWall key: walls base: metal_ diff --git a/Resources/Prototypes/Entities/Constructible/Walls/walls.yml b/Resources/Prototypes/Entities/Constructible/Walls/walls.yml index 5189ff9e12..fb97f7198f 100644 --- a/Resources/Prototypes/Entities/Constructible/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Constructible/Walls/walls.yml @@ -13,10 +13,8 @@ - type: Sprite netsync: false drawdepth: Walls - - type: Icon state: full - - type: Collidable shapes: - !type:PhysShapeAabb @@ -33,10 +31,8 @@ - type: Occluder sizeX: 32 sizeY: 32 - - type: SnapGrid offset: Center - - type: IconSmooth key: walls base: solid diff --git a/Resources/Prototypes/Entities/Constructible/conveyor.yml b/Resources/Prototypes/Entities/Constructible/conveyor.yml new file mode 100644 index 0000000000..135cae7bec --- /dev/null +++ b/Resources/Prototypes/Entities/Constructible/conveyor.yml @@ -0,0 +1,61 @@ +- type: entity + id: ConveyorBelt + name: conveyor belt + description: A conveyor belt, commonly used to transport large numbers of items elsewhere quite quickly. + placement: + mode: SnapgridCenter + components: + - type: Clickable + - type: InteractionOutline + - type: Collidable + hard: false + shapes: + - !type:PhysShapeAabb + bounds: "-0.49,-0.49,0.49,0.49" + mask: + - Impassable + - MobImpassable + - VaultImpassable + - SmallImpassable + - type: SnapGrid + offset: Center + - type: Sprite + netsync: false + sprite: Constructible/Power/conveyor.rsi + state: conveyor_started_cw + drawdepth: FloorObjects + - type: Icon + sprite: Constructible/Power/conveyor.rsi + state: conveyor_started_cw + - type: Conveyor + - type: Appearance + visuals: + - type: ConveyorVisualizer + state_running: conveyor_started_cw + state_stopped: conveyor_stopped_cw + state_reversed: conveyor_started_cw_r + state_loose: conveyor_loose + - type: PowerReceiver + +- type: entity + id: ConveyorSwitch + name: conveyor switch + description: A conveyor control switch. + components: + - type: Clickable + - type: InteractionOutline + - type: Sprite + netsync: false + sprite: Constructible/Power/conveyor.rsi + state: switch-off + - type: Icon + sprite: Constructible/Power/conveyor.rsi + state: switch-off + - type: ConveyorSwitch + - type: Appearance + visuals: + - type: ConveyorSwitchVisualizer + state_forward: switch-fwd + state_off: switch-off + state_reversed: switch-rev + state_loose: switch diff --git a/Resources/Prototypes/Entities/Constructible/disposal.yml b/Resources/Prototypes/Entities/Constructible/disposal.yml new file mode 100644 index 0000000000..2ff9481c4c --- /dev/null +++ b/Resources/Prototypes/Entities/Constructible/disposal.yml @@ -0,0 +1,222 @@ +- type: entity + id: DisposalPipeBase + abstract: true + placement: + mode: SnapgridCenter + snap: + - Disposal + components: + - type: Clickable + - type: InteractionOutline + - type: Physics + anchored: true + - type: SnapGrid + offset: Center + - type: Anchorable + - type: Damageable + - type: Breakable + - type: Rotatable + +- type: entity + id: DisposalHolder + name: disposal holder + components: + - type: DisposalHolder + +- type: entity + id: DisposalPipe + parent: DisposalPipeBase + name: disposal pipe segment + description: A huge pipe segment used for constructing disposal systems + components: + - type: Sprite + drawdepth: BelowFloor + sprite: Constructible/Power/disposal.rsi + state: conpipe-s + - type: Icon + sprite: Constructible/Power/disposal.rsi + state: conpipe-s + - type: DisposalTransit + - type: Appearance + visuals: + - type: DisposalVisualizer + state_free: conpipe-s + state_anchored: pipe-s + state_broken: pipe-b + +- type: entity + id: DisposalTrunk + parent: DisposalPipeBase + name: disposal trunk + description: A pipe trunk used as an entry point for disposal systems + components: + - type: Sprite + drawdepth: BelowFloor + sprite: Constructible/Power/disposal.rsi + state: conpipe-t + - type: Icon + sprite: Constructible/Power/disposal.rsi + state: conpipe-t + - type: DisposalEntry + - type: Appearance + visuals: + - type: DisposalVisualizer + state_free: conpipe-t + state_anchored: pipe-t + state_broken: pipe-b + +- type: entity + id: DisposalUnit + name: disposal unit + description: A pneumatic waste disposal unit + placement: + mode: SnapgridCenter + snap: + - Disposal + components: + - type: Sprite + netsync: false + sprite: Constructible/Power/disposal.rsi + layers: + - state: condisposal + map: ["enum.DisposalUnitVisualLayers.Base"] + - state: dispover-handle + map: ["enum.DisposalUnitVisualLayers.Handle"] + - state: dispover-ready + map: ["enum.DisposalUnitVisualLayers.Light"] + - type: Icon + sprite: Constructible/Power/disposal.rsi + state: disposal + - type: PowerReceiver + - type: DisposalUnit + flushTime: 2 + - type: Clickable + - type: InteractionOutline + - type: Physics + anchored: true + shapes: + - !type:PhysShapeAabb + bounds: "-0.3,-0.3,0.3,0.3" + layer: + - Impassable + - MobImpassable + - type: SnapGrid + offset: Center + - type: Anchorable + - type: Destructible + thresholdvalue: 100 + - type: Appearance + visuals: + - type: DisposalUnitVisualizer + state_unanchored: condisposal + state_anchored: disposal + overlay_charging: dispover-charge + overlay_ready: dispover-ready + overlay_full: dispover-full + overlay_engaged: dispover-handle + state_flush: disposal-flush + flush_sound: /Audio/Machines/disposalflush.ogg + flush_time: 2 + - type: UserInterface + interfaces: + - key: enum.DisposalUnitUiKey.Key + type: DisposalUnitBoundUserInterface + +- type: entity + id: DisposalJunction + parent: DisposalPipeBase + name: disposal junction + description: A three-way junction. The arrow indicates where items exit + components: + - type: Sprite + drawdepth: BelowFloor + sprite: Constructible/Power/disposal.rsi + state: conpipe-j1 + - type: Icon + sprite: Constructible/Power/disposal.rsi + state: conpipe-j1 + - type: DisposalJunction + degrees: + - 0 + - -90 + - 180 + - type: Appearance + visuals: + - type: DisposalVisualizer + state_free: conpipe-j1 + state_anchored: pipe-j1 + state_broken: pipe-b + - type: Flippable + entity: DisposalJunctionFlipped + +- type: entity + id: DisposalJunctionFlipped + parent: DisposalJunction + name: flipped disposal junction + components: + - type: Sprite + drawdepth: BelowFloor + sprite: Constructible/Power/disposal.rsi + state: conpipe-j2 + - type: Icon + sprite: Constructible/Power/disposal.rsi + state: conpipe-j2 + - type: DisposalJunction + degrees: + - 0 + - 90 + - 180 + - type: Appearance + visuals: + - type: DisposalVisualizer + state_free: conpipe-j2 + state_anchored: pipe-j2 + state_broken: pipe-b + - type: Flippable + entity: DisposalJunction + +- type: entity + id: DisposalYJunction + parent: DisposalPipeBase + name: disposal y-junction + description: A three-way junction with another exit point. + components: + - type: Sprite + drawdepth: BelowFloor + sprite: Constructible/Power/disposal.rsi + state: conpipe-y + - type: Icon + sprite: Constructible/Power/disposal.rsi + state: conpipe-y + - type: DisposalJunction + degrees: + - 0 + - 90 + - -90 + - type: Appearance + visuals: + - type: DisposalVisualizer + state_free: conpipe-y + state_anchored: pipe-y + state_broken: pipe-b + +- type: entity + id: DisposalBend + parent: DisposalPipeBase + name: disposal bend + description: A tube bent at a 90 degree angle. + components: + - type: Sprite + drawdepth: BelowFloor + sprite: Constructible/Power/disposal.rsi + state: conpipe-c + - type: Icon + sprite: Constructible/Power/disposal.rsi + state: conpipe-c + - type: DisposalBend + - type: Appearance + visuals: + - type: DisposalVisualizer + state_free: conpipe-c + state_anchored: pipe-c + state_broken: pipe-b diff --git a/Resources/Prototypes/Entities/Constructible/recycler.yml b/Resources/Prototypes/Entities/Constructible/recycler.yml new file mode 100644 index 0000000000..e93749de34 --- /dev/null +++ b/Resources/Prototypes/Entities/Constructible/recycler.yml @@ -0,0 +1,37 @@ +- type: entity + id: Recycler + name: recycler + description: A large crushing machine used to recycle small items inefficiently. There are lights on the side. + placement: + mode: SnapgridCenter + components: + - type: Clickable + - type: InteractionOutline + - type: Collidable + hard: false + shapes: + - !type:PhysShapeAabb + bounds: "-0.49,-0.49,0.49,0.49" + layer: + - Opaque + - Impassable + - MobImpassable + - VaultImpassable + - type: SnapGrid + offset: Center + - type: Sprite + netsync: false + sprite: Constructible/Power/recycling.rsi + layers: + - state: grinder-o1 + map: ["enum.RecyclerVisualLayers.Bloody"] + - type: Icon + sprite: Constructible/Power/recycling.rsi + state: grinder-o0 + - type: Appearance + visuals: + - type: RecyclerVisualizer + state_clean: grinder-o1 + state_bloody: grinder-o1bld + - type: Recycler + - type: PowerReceiver diff --git a/Resources/Prototypes/Entities/Objects/materials.yml b/Resources/Prototypes/Entities/Objects/materials.yml index 4b8125064d..3ec6cfbf88 100644 --- a/Resources/Prototypes/Entities/Objects/materials.yml +++ b/Resources/Prototypes/Entities/Objects/materials.yml @@ -69,7 +69,8 @@ - type: entity abstract: true parent: BaseItem - id: CableStack + id: CableStack1 + name: cable stack 1 suffix: Full components: - type: Stack @@ -84,7 +85,7 @@ all: -0.15,-0.15,0.15,0.15 - type: entity - parent: CableStack + parent: CableStack1 id: HVWireStack name: HV Wire Coil components: @@ -95,7 +96,7 @@ blockingWireType: HighVoltage - type: entity - parent: CableStack + parent: CableStack1 id: MVWireStack name: MV Wire Coil components: @@ -106,7 +107,7 @@ blockingWireType: MediumVoltage - type: entity - parent: CableStack + parent: CableStack1 id: ApcExtensionCableStack name: Apc Extension Cable Coil components: @@ -115,7 +116,7 @@ - type: WirePlacer wirePrototypeID: ApcExtensionCable blockingWireType: Apc - + - type: entity parent: HVWireStack id: HVWireStack1 @@ -123,7 +124,7 @@ components: - type: Stack count: 1 - + - type: entity parent: MVWireStack id: MVWireStack1 @@ -131,7 +132,7 @@ components: - type: Stack count: 1 - + - type: entity parent: ApcExtensionCableStack id: ApcExtensionCableStack1 @@ -139,7 +140,7 @@ components: - type: Stack count: 1 - + - type: entity name: gold bar id: GoldStack diff --git a/Resources/Prototypes/Entities/item_base.yml b/Resources/Prototypes/Entities/item_base.yml index 60335dfa4a..014c2c445d 100644 --- a/Resources/Prototypes/Entities/item_base.yml +++ b/Resources/Prototypes/Entities/item_base.yml @@ -13,7 +13,6 @@ bounds: "-0.25,-0.25,0.25,0.25" layer: - Clickable - IsScrapingFloor: true - type: Physics mass: 5 diff --git a/Resources/Prototypes/Recipes/Construction/conveyor.yml b/Resources/Prototypes/Recipes/Construction/conveyor.yml new file mode 100644 index 0000000000..2cc45dee55 --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/conveyor.yml @@ -0,0 +1,19 @@ +- type: construction + name: conveyor belt + id: ConveyorBelt + category: Machines/Conveyor + keywords: [conveyor, belt] + placementMode: SnapgridCenter + description: A conveyor belt, commonly used to transport large numbers of items elsewhere quite quickly. + icon: + sprite: Constructible/Power/conveyor.rsi + state: conveyor_stopped_cw + result: ConveyorBelt + steps: + - material: Metal + amount: 1 + icon: + sprite: Constructible/Power/conveyor.rsi + state: conveyor_stopped_cw + - material: Cable + amount: 1 diff --git a/Resources/Prototypes/Recipes/Construction/machines.yml b/Resources/Prototypes/Recipes/Construction/machines.yml index 2a281e1ae3..f9e29725dc 100644 --- a/Resources/Prototypes/Recipes/Construction/machines.yml +++ b/Resources/Prototypes/Recipes/Construction/machines.yml @@ -9,7 +9,6 @@ icon: sprite: Constructible/Lighting/lighting.rsi state: on - result: Poweredlight steps: - material: Metal @@ -17,13 +16,10 @@ icon: sprite: Constructible/Lighting/lighting.rsi state: construct - - - material: Cable amount: 1 icon: sprite: Constructible/Lighting/lighting.rsi state: empty - - material: Glass amount: 1 diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index e555d83e01..8f5aed8c8a 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -15,7 +15,6 @@ icon: Constructible/Structures/Walls/wall_girder.png reverse: tool: Anchoring - - material: Metal amount: 2 reverse: @@ -90,7 +89,6 @@ amount: 2 reverse: tool: Anchoring - # Should be replaced with Metal Rods when someone puts them in. - material: Metal amount: 2 diff --git a/Resources/Textures/Constructible/Power/conveyor.rsi/conveyor_loose.png b/Resources/Textures/Constructible/Power/conveyor.rsi/conveyor_loose.png new file mode 100644 index 0000000000..97b955cc6e Binary files /dev/null and b/Resources/Textures/Constructible/Power/conveyor.rsi/conveyor_loose.png differ diff --git a/Resources/Textures/Constructible/Power/conveyor.rsi/conveyor_started_ccw.png b/Resources/Textures/Constructible/Power/conveyor.rsi/conveyor_started_ccw.png new file mode 100644 index 0000000000..7ad5f8fc70 Binary files /dev/null and b/Resources/Textures/Constructible/Power/conveyor.rsi/conveyor_started_ccw.png differ diff --git a/Resources/Textures/Constructible/Power/conveyor.rsi/conveyor_started_ccw_r.png b/Resources/Textures/Constructible/Power/conveyor.rsi/conveyor_started_ccw_r.png new file mode 100644 index 0000000000..8bd276e82e Binary files /dev/null and b/Resources/Textures/Constructible/Power/conveyor.rsi/conveyor_started_ccw_r.png differ diff --git a/Resources/Textures/Constructible/Power/conveyor.rsi/conveyor_started_cw.png b/Resources/Textures/Constructible/Power/conveyor.rsi/conveyor_started_cw.png new file mode 100644 index 0000000000..5625aa681d Binary files /dev/null and b/Resources/Textures/Constructible/Power/conveyor.rsi/conveyor_started_cw.png differ diff --git a/Resources/Textures/Constructible/Power/conveyor.rsi/conveyor_started_cw_r.png b/Resources/Textures/Constructible/Power/conveyor.rsi/conveyor_started_cw_r.png new file mode 100644 index 0000000000..d2e18ca0ca Binary files /dev/null and b/Resources/Textures/Constructible/Power/conveyor.rsi/conveyor_started_cw_r.png differ diff --git a/Resources/Textures/Constructible/Power/conveyor.rsi/conveyor_stopped_ccw.png b/Resources/Textures/Constructible/Power/conveyor.rsi/conveyor_stopped_ccw.png new file mode 100644 index 0000000000..cbdeaf6f8d Binary files /dev/null and b/Resources/Textures/Constructible/Power/conveyor.rsi/conveyor_stopped_ccw.png differ diff --git a/Resources/Textures/Constructible/Power/conveyor.rsi/conveyor_stopped_cw.png b/Resources/Textures/Constructible/Power/conveyor.rsi/conveyor_stopped_cw.png new file mode 100644 index 0000000000..116b3aed50 Binary files /dev/null and b/Resources/Textures/Constructible/Power/conveyor.rsi/conveyor_stopped_cw.png differ diff --git a/Resources/Textures/Constructible/Power/conveyor.rsi/greenlight.png b/Resources/Textures/Constructible/Power/conveyor.rsi/greenlight.png new file mode 100644 index 0000000000..afdc13ba05 Binary files /dev/null and b/Resources/Textures/Constructible/Power/conveyor.rsi/greenlight.png differ diff --git a/Resources/Textures/Constructible/Power/conveyor.rsi/meta.json b/Resources/Textures/Constructible/Power/conveyor.rsi/meta.json new file mode 100644 index 0000000000..34f444aea9 --- /dev/null +++ b/Resources/Textures/Constructible/Power/conveyor.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/blob/a846799c53f8ee9dcec4b075d7645f591f3ec19d/icons/obj/machines/conveyor.dmi", "states": [{"name": "conveyor_loose", "directions": 1, "delays": [[1.0]]}, {"name": "conveyor_started_ccw", "directions": 8, "delays": [[0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1]]}, {"name": "conveyor_started_ccw_r", "directions": 8, "delays": [[0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1]]}, {"name": "conveyor_started_cw", "directions": 8, "delays": [[0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1]]}, {"name": "conveyor_started_cw_r", "directions": 8, "delays": [[0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1]]}, {"name": "conveyor_stopped_ccw", "directions": 8, "delays": [[1.0], [1.0], [1.0], [1.0], [1.0], [1.0], [1.0], [1.0]]}, {"name": "conveyor_stopped_cw", "directions": 8, "delays": [[1.0], [1.0], [1.0], [1.0], [1.0], [1.0], [1.0], [1.0]]}, {"name": "greenlight", "directions": 1, "delays": [[1.0]]}, {"name": "redlight", "directions": 1, "delays": [[1.0]]}, {"name": "switch", "directions": 1, "delays": [[1.0]]}, {"name": "switch-fwd", "directions": 1, "delays": [[1.0]]}, {"name": "switch-off", "directions": 1, "delays": [[1.0]]}, {"name": "switch-rev", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Constructible/Power/conveyor.rsi/redlight.png b/Resources/Textures/Constructible/Power/conveyor.rsi/redlight.png new file mode 100644 index 0000000000..2c0a527254 Binary files /dev/null and b/Resources/Textures/Constructible/Power/conveyor.rsi/redlight.png differ diff --git a/Resources/Textures/Constructible/Power/conveyor.rsi/switch-fwd.png b/Resources/Textures/Constructible/Power/conveyor.rsi/switch-fwd.png new file mode 100644 index 0000000000..40853dd2ed Binary files /dev/null and b/Resources/Textures/Constructible/Power/conveyor.rsi/switch-fwd.png differ diff --git a/Resources/Textures/Constructible/Power/conveyor.rsi/switch-off.png b/Resources/Textures/Constructible/Power/conveyor.rsi/switch-off.png new file mode 100644 index 0000000000..75b9ff925b Binary files /dev/null and b/Resources/Textures/Constructible/Power/conveyor.rsi/switch-off.png differ diff --git a/Resources/Textures/Constructible/Power/conveyor.rsi/switch-rev.png b/Resources/Textures/Constructible/Power/conveyor.rsi/switch-rev.png new file mode 100644 index 0000000000..9a9b94400f Binary files /dev/null and b/Resources/Textures/Constructible/Power/conveyor.rsi/switch-rev.png differ diff --git a/Resources/Textures/Constructible/Power/conveyor.rsi/switch.png b/Resources/Textures/Constructible/Power/conveyor.rsi/switch.png new file mode 100644 index 0000000000..c08c986edf Binary files /dev/null and b/Resources/Textures/Constructible/Power/conveyor.rsi/switch.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/condisposal.png b/Resources/Textures/Constructible/Power/disposal.rsi/condisposal.png new file mode 100644 index 0000000000..70bcce3905 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/condisposal.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/conpipe-c.png b/Resources/Textures/Constructible/Power/disposal.rsi/conpipe-c.png new file mode 100644 index 0000000000..816f8f4b6e Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/conpipe-c.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/conpipe-j1.png b/Resources/Textures/Constructible/Power/disposal.rsi/conpipe-j1.png new file mode 100644 index 0000000000..67a3f19f54 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/conpipe-j1.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/conpipe-j1s.png b/Resources/Textures/Constructible/Power/disposal.rsi/conpipe-j1s.png new file mode 100644 index 0000000000..6867afa599 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/conpipe-j1s.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/conpipe-j2.png b/Resources/Textures/Constructible/Power/disposal.rsi/conpipe-j2.png new file mode 100644 index 0000000000..744974ebb1 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/conpipe-j2.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/conpipe-j2s.png b/Resources/Textures/Constructible/Power/disposal.rsi/conpipe-j2s.png new file mode 100644 index 0000000000..24cc445556 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/conpipe-j2s.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/conpipe-s.png b/Resources/Textures/Constructible/Power/disposal.rsi/conpipe-s.png new file mode 100644 index 0000000000..9efe40f749 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/conpipe-s.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/conpipe-t.png b/Resources/Textures/Constructible/Power/disposal.rsi/conpipe-t.png new file mode 100644 index 0000000000..f9af2e5386 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/conpipe-t.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/conpipe-y.png b/Resources/Textures/Constructible/Power/disposal.rsi/conpipe-y.png new file mode 100644 index 0000000000..72379282dd Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/conpipe-y.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/disposal-flush.png b/Resources/Textures/Constructible/Power/disposal.rsi/disposal-flush.png new file mode 100644 index 0000000000..9266d06092 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/disposal-flush.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/disposal.png b/Resources/Textures/Constructible/Power/disposal.rsi/disposal.png new file mode 100644 index 0000000000..b139c87b6e Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/disposal.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/dispover-charge.png b/Resources/Textures/Constructible/Power/disposal.rsi/dispover-charge.png new file mode 100644 index 0000000000..af6b416bdd Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/dispover-charge.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/dispover-full.png b/Resources/Textures/Constructible/Power/disposal.rsi/dispover-full.png new file mode 100644 index 0000000000..83948d521e Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/dispover-full.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/dispover-handle.png b/Resources/Textures/Constructible/Power/disposal.rsi/dispover-handle.png new file mode 100644 index 0000000000..d70edcba71 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/dispover-handle.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/dispover-ready.png b/Resources/Textures/Constructible/Power/disposal.rsi/dispover-ready.png new file mode 100644 index 0000000000..9e33f416c5 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/dispover-ready.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/intake-closing.png b/Resources/Textures/Constructible/Power/disposal.rsi/intake-closing.png new file mode 100644 index 0000000000..b26dd2445e Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/intake-closing.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/intake.png b/Resources/Textures/Constructible/Power/disposal.rsi/intake.png new file mode 100644 index 0000000000..735b4817d7 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/intake.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/meta.json b/Resources/Textures/Constructible/Power/disposal.rsi/meta.json new file mode 100644 index 0000000000..78444a552e --- /dev/null +++ b/Resources/Textures/Constructible/Power/disposal.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/blob/bbe32606902c90f5290b57d905a3f31b84dc6d7d/icons/obj/pipes/disposal.dmi and modified by DrSmugleaf", "states": [{"name": "condisposal", "directions": 1, "delays": [[1.0]]}, {"name": "conpipe-c", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "conpipe-j1", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "conpipe-j1s", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "conpipe-j2", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "conpipe-j2s", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "conpipe-s", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "conpipe-t", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "conpipe-y", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "disposal", "directions": 1, "delays": [[1.0]]}, {"name": "disposal-flush", "directions": 1, "delays": [[0.1, 0.1, 0.1, 0.1, 0.1, 0.5, 0.1, 0.1, 0.1]]}, {"name": "dispover-charge", "directions": 1, "delays": [[0.4, 0.4]]}, {"name": "dispover-full", "directions": 1, "delays": [[0.2, 0.2]]}, {"name": "dispover-handle", "directions": 1, "delays": [[1.0]]}, {"name": "dispover-ready", "directions": 1, "delays": [[1.0]]}, {"name": "intake", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "intake-closing", "directions": 4, "delays": [[0.5, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1], [0.5, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1], [0.5, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1], [0.5, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]]}, {"name": "outlet", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "outlet-open", "directions": 4, "delays": [[0.5, 0.5, 0.5, 0.5, 0.5, 0.1, 1.5, 0.1], [0.5, 0.5, 0.5, 0.5, 0.5, 0.1, 1.5, 0.1], [0.5, 0.5, 0.5, 0.5, 0.5, 0.1, 1.5, 0.1], [0.5, 0.5, 0.5, 0.5, 0.5, 0.1, 1.5, 0.1]]}, {"name": "pipe-b", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "pipe-bf", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "pipe-c", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "pipe-cf", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "pipe-d", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "pipe-j1", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "pipe-j1f", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "pipe-j1s", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "pipe-j1sf", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "pipe-j2", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "pipe-j2f", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "pipe-j2s", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "pipe-j2sf", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "pipe-s", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "pipe-sf", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "pipe-t", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "pipe-tagger", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "pipe-tagger-partial", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "pipe-tf", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "pipe-u", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "pipe-y", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "pipe-yf", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}]} diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/outlet-open.png b/Resources/Textures/Constructible/Power/disposal.rsi/outlet-open.png new file mode 100644 index 0000000000..7fb173d72a Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/outlet-open.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/outlet.png b/Resources/Textures/Constructible/Power/disposal.rsi/outlet.png new file mode 100644 index 0000000000..8f7302551f Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/outlet.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/pipe-b.png b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-b.png new file mode 100644 index 0000000000..9544c5ed20 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-b.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/pipe-bf.png b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-bf.png new file mode 100644 index 0000000000..cb954be2c9 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-bf.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/pipe-c.png b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-c.png new file mode 100644 index 0000000000..13854be256 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-c.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/pipe-cf.png b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-cf.png new file mode 100644 index 0000000000..3910b9de3a Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-cf.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/pipe-d.png b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-d.png new file mode 100644 index 0000000000..6d0bb7a1d2 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-d.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/pipe-j1.png b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-j1.png new file mode 100644 index 0000000000..e2f49dc367 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-j1.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/pipe-j1f.png b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-j1f.png new file mode 100644 index 0000000000..4c200b6775 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-j1f.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/pipe-j1s.png b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-j1s.png new file mode 100644 index 0000000000..7ba4abd994 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-j1s.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/pipe-j1sf.png b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-j1sf.png new file mode 100644 index 0000000000..b065f00d32 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-j1sf.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/pipe-j2.png b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-j2.png new file mode 100644 index 0000000000..6e5b15a7f1 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-j2.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/pipe-j2f.png b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-j2f.png new file mode 100644 index 0000000000..8c7c6d76de Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-j2f.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/pipe-j2s.png b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-j2s.png new file mode 100644 index 0000000000..efec527bce Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-j2s.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/pipe-j2sf.png b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-j2sf.png new file mode 100644 index 0000000000..3a6812f8e3 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-j2sf.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/pipe-s.png b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-s.png new file mode 100644 index 0000000000..1c6e7d9203 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-s.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/pipe-sf.png b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-sf.png new file mode 100644 index 0000000000..ef25a0dfc4 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-sf.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/pipe-t.png b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-t.png new file mode 100644 index 0000000000..021d067b7b Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-t.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/pipe-tagger-partial.png b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-tagger-partial.png new file mode 100644 index 0000000000..49ab4a3ad9 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-tagger-partial.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/pipe-tagger.png b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-tagger.png new file mode 100644 index 0000000000..a8463fd0c1 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-tagger.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/pipe-tf.png b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-tf.png new file mode 100644 index 0000000000..b5730c8a54 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-tf.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/pipe-u.png b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-u.png new file mode 100644 index 0000000000..021d067b7b Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-u.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/pipe-y.png b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-y.png new file mode 100644 index 0000000000..71b8e71f8f Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-y.png differ diff --git a/Resources/Textures/Constructible/Power/disposal.rsi/pipe-yf.png b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-yf.png new file mode 100644 index 0000000000..a9e37dff62 Binary files /dev/null and b/Resources/Textures/Constructible/Power/disposal.rsi/pipe-yf.png differ diff --git a/Resources/Textures/Constructible/Power/recycling.rsi/grinder-a0.png b/Resources/Textures/Constructible/Power/recycling.rsi/grinder-a0.png new file mode 100644 index 0000000000..6bb21ce603 Binary files /dev/null and b/Resources/Textures/Constructible/Power/recycling.rsi/grinder-a0.png differ diff --git a/Resources/Textures/Constructible/Power/recycling.rsi/grinder-a1.png b/Resources/Textures/Constructible/Power/recycling.rsi/grinder-a1.png new file mode 100644 index 0000000000..be3285003c Binary files /dev/null and b/Resources/Textures/Constructible/Power/recycling.rsi/grinder-a1.png differ diff --git a/Resources/Textures/Constructible/Power/recycling.rsi/grinder-b0.png b/Resources/Textures/Constructible/Power/recycling.rsi/grinder-b0.png new file mode 100644 index 0000000000..e4048bf4bf Binary files /dev/null and b/Resources/Textures/Constructible/Power/recycling.rsi/grinder-b0.png differ diff --git a/Resources/Textures/Constructible/Power/recycling.rsi/grinder-b1.png b/Resources/Textures/Constructible/Power/recycling.rsi/grinder-b1.png new file mode 100644 index 0000000000..1aff520b89 Binary files /dev/null and b/Resources/Textures/Constructible/Power/recycling.rsi/grinder-b1.png differ diff --git a/Resources/Textures/Constructible/Power/recycling.rsi/grinder-o0.png b/Resources/Textures/Constructible/Power/recycling.rsi/grinder-o0.png new file mode 100644 index 0000000000..96be34e2ca Binary files /dev/null and b/Resources/Textures/Constructible/Power/recycling.rsi/grinder-o0.png differ diff --git a/Resources/Textures/Constructible/Power/recycling.rsi/grinder-o0bld.png b/Resources/Textures/Constructible/Power/recycling.rsi/grinder-o0bld.png new file mode 100644 index 0000000000..715b003ca3 Binary files /dev/null and b/Resources/Textures/Constructible/Power/recycling.rsi/grinder-o0bld.png differ diff --git a/Resources/Textures/Constructible/Power/recycling.rsi/grinder-o1.png b/Resources/Textures/Constructible/Power/recycling.rsi/grinder-o1.png new file mode 100644 index 0000000000..697bb007d3 Binary files /dev/null and b/Resources/Textures/Constructible/Power/recycling.rsi/grinder-o1.png differ diff --git a/Resources/Textures/Constructible/Power/recycling.rsi/grinder-o1bld.png b/Resources/Textures/Constructible/Power/recycling.rsi/grinder-o1bld.png new file mode 100644 index 0000000000..b8c6ea7c68 Binary files /dev/null and b/Resources/Textures/Constructible/Power/recycling.rsi/grinder-o1bld.png differ diff --git a/Resources/Textures/Constructible/Power/recycling.rsi/meta.json b/Resources/Textures/Constructible/Power/recycling.rsi/meta.json new file mode 100644 index 0000000000..f2d7112d98 --- /dev/null +++ b/Resources/Textures/Constructible/Power/recycling.rsi/meta.json @@ -0,0 +1,174 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/01f7518e0f8177734a6579aba2bbf76024aa96c4/icons/obj/recycling.dmi", + "states": [ + { + "name": "grinder-a0", + "directions": 1, + "delays": [ + [ + 1.0 + ] + ] + }, + { + "name": "grinder-a1", + "directions": 1, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "grinder-b0", + "directions": 1, + "delays": [ + [ + 1.0 + ] + ] + }, + { + "name": "grinder-b1", + "directions": 1, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "grinder-o0", + "directions": 1, + "delays": [ + [ + 1.0 + ] + ] + }, + { + "name": "grinder-o0bld", + "directions": 1, + "delays": [ + [ + 1.0 + ] + ] + }, + { + "name": "grinder-o1", + "directions": 1, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "grinder-o1bld", + "directions": 1, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "separator-", + "directions": 1, + "delays": [ + [ + 1.0 + ] + ] + }, + { + "name": "separator-0", + "directions": 1, + "delays": [ + [ + 1.0 + ] + ] + }, + { + "name": "separator-A0", + "directions": 1, + "delays": [ + [ + 1.0 + ] + ] + }, + { + "name": "separator-A1", + "directions": 1, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "separator-AO0", + "directions": 1, + "delays": [ + [ + 1.0 + ] + ] + }, + { + "name": "separator-AO1", + "directions": 1, + "delays": [ + [ + 0.3, + 0.3, + 0.3 + ] + ] + }, + { + "name": "separator-B0", + "directions": 1, + "delays": [ + [ + 1.0 + ] + ] + }, + { + "name": "separator-BO0", + "directions": 1, + "delays": [ + [ + 1.0 + ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Constructible/Power/recycling.rsi/separator-.png b/Resources/Textures/Constructible/Power/recycling.rsi/separator-.png new file mode 100644 index 0000000000..3bd6e7d91e Binary files /dev/null and b/Resources/Textures/Constructible/Power/recycling.rsi/separator-.png differ diff --git a/Resources/Textures/Constructible/Power/recycling.rsi/separator-0.png b/Resources/Textures/Constructible/Power/recycling.rsi/separator-0.png new file mode 100644 index 0000000000..b8e23df780 Binary files /dev/null and b/Resources/Textures/Constructible/Power/recycling.rsi/separator-0.png differ diff --git a/Resources/Textures/Constructible/Power/recycling.rsi/separator-A0.png b/Resources/Textures/Constructible/Power/recycling.rsi/separator-A0.png new file mode 100644 index 0000000000..5be05f77cd Binary files /dev/null and b/Resources/Textures/Constructible/Power/recycling.rsi/separator-A0.png differ diff --git a/Resources/Textures/Constructible/Power/recycling.rsi/separator-A1.png b/Resources/Textures/Constructible/Power/recycling.rsi/separator-A1.png new file mode 100644 index 0000000000..7ba5e8619b Binary files /dev/null and b/Resources/Textures/Constructible/Power/recycling.rsi/separator-A1.png differ diff --git a/Resources/Textures/Constructible/Power/recycling.rsi/separator-AO0.png b/Resources/Textures/Constructible/Power/recycling.rsi/separator-AO0.png new file mode 100644 index 0000000000..32e0572262 Binary files /dev/null and b/Resources/Textures/Constructible/Power/recycling.rsi/separator-AO0.png differ diff --git a/Resources/Textures/Constructible/Power/recycling.rsi/separator-AO1.png b/Resources/Textures/Constructible/Power/recycling.rsi/separator-AO1.png new file mode 100644 index 0000000000..5ac3c2b183 Binary files /dev/null and b/Resources/Textures/Constructible/Power/recycling.rsi/separator-AO1.png differ diff --git a/Resources/Textures/Constructible/Power/recycling.rsi/separator-B0.png b/Resources/Textures/Constructible/Power/recycling.rsi/separator-B0.png new file mode 100644 index 0000000000..b8e23df780 Binary files /dev/null and b/Resources/Textures/Constructible/Power/recycling.rsi/separator-B0.png differ diff --git a/Resources/Textures/Constructible/Power/recycling.rsi/separator-BO0.png b/Resources/Textures/Constructible/Power/recycling.rsi/separator-BO0.png new file mode 100644 index 0000000000..3bd6e7d91e Binary files /dev/null and b/Resources/Textures/Constructible/Power/recycling.rsi/separator-BO0.png differ