diff --git a/Content.Client/Access/UI/AccessOverriderWindow.xaml.cs b/Content.Client/Access/UI/AccessOverriderWindow.xaml.cs index 092a0071fb..8e527d7343 100644 --- a/Content.Client/Access/UI/AccessOverriderWindow.xaml.cs +++ b/Content.Client/Access/UI/AccessOverriderWindow.xaml.cs @@ -29,7 +29,7 @@ namespace Content.Client.Access.UI foreach (var access in accessLevels) { - if (!protoManager.TryIndex(access, out var accessLevel)) + if (!protoManager.Resolve(access, out var accessLevel)) { continue; } diff --git a/Content.Client/Access/UI/GroupedAccessLevelChecklist.xaml.cs b/Content.Client/Access/UI/GroupedAccessLevelChecklist.xaml.cs index 4f07c31009..41d5a84654 100644 --- a/Content.Client/Access/UI/GroupedAccessLevelChecklist.xaml.cs +++ b/Content.Client/Access/UI/GroupedAccessLevelChecklist.xaml.cs @@ -57,7 +57,7 @@ public sealed partial class GroupedAccessLevelChecklist : BoxContainer foreach (var accessGroup in _accessGroups) { - if (!_protoManager.TryIndex(accessGroup, out var accessGroupProto)) + if (!_protoManager.Resolve(accessGroup, out var accessGroupProto)) continue; _groupedAccessLevels.Add(accessGroupProto, new()); @@ -65,13 +65,13 @@ public sealed partial class GroupedAccessLevelChecklist : BoxContainer // Ensure that the 'general' access group is added to handle // misc. access levels that aren't associated with any group - if (_protoManager.TryIndex(GeneralAccessGroup, out var generalAccessProto)) + if (_protoManager.Resolve(GeneralAccessGroup, out var generalAccessProto)) _groupedAccessLevels.TryAdd(generalAccessProto, new()); // Assign known access levels with their associated groups foreach (var accessLevel in _accessLevels) { - if (!_protoManager.TryIndex(accessLevel, out var accessLevelProto)) + if (!_protoManager.Resolve(accessLevel, out var accessLevelProto)) continue; var assigned = false; diff --git a/Content.Client/Access/UI/IdCardConsoleBoundUserInterface.cs b/Content.Client/Access/UI/IdCardConsoleBoundUserInterface.cs index f3a37f054e..801140f517 100644 --- a/Content.Client/Access/UI/IdCardConsoleBoundUserInterface.cs +++ b/Content.Client/Access/UI/IdCardConsoleBoundUserInterface.cs @@ -4,6 +4,7 @@ using Content.Shared.Access.Systems; using Content.Shared.CCVar; using Content.Shared.Containers.ItemSlots; using Content.Shared.CrewManifest; +using Content.Shared.Roles; using Robust.Shared.Configuration; using Robust.Shared.Prototypes; using static Content.Shared.Access.Components.IdCardConsoleComponent; @@ -74,7 +75,7 @@ namespace Content.Client.Access.UI _window?.UpdateState(castState); } - public void SubmitData(string newFullName, string newJobTitle, List> newAccessList, string newJobPrototype) + public void SubmitData(string newFullName, string newJobTitle, List> newAccessList, ProtoId newJobPrototype) { if (newFullName.Length > _maxNameLength) newFullName = newFullName[.._maxNameLength]; diff --git a/Content.Client/Access/UI/IdCardConsoleWindow.xaml.cs b/Content.Client/Access/UI/IdCardConsoleWindow.xaml.cs index 48ae1b0ced..202653f700 100644 --- a/Content.Client/Access/UI/IdCardConsoleWindow.xaml.cs +++ b/Content.Client/Access/UI/IdCardConsoleWindow.xaml.cs @@ -123,7 +123,7 @@ namespace Content.Client.Access.UI foreach (var group in job.AccessGroups) { - if (!_prototypeManager.TryIndex(group, out AccessGroupPrototype? groupPrototype)) + if (!_prototypeManager.Resolve(group, out AccessGroupPrototype? groupPrototype)) { continue; } diff --git a/Content.Client/Administration/UI/BanPanel/BanPanel.xaml.cs b/Content.Client/Administration/UI/BanPanel/BanPanel.xaml.cs index 46090a6f3d..c7aed30c1c 100644 --- a/Content.Client/Administration/UI/BanPanel/BanPanel.xaml.cs +++ b/Content.Client/Administration/UI/BanPanel/BanPanel.xaml.cs @@ -316,8 +316,9 @@ public sealed partial class BanPanel : DefaultWindow }; // This is adding the icon before the role name - // Yeah, this is sus, but having to split the functions up and stuff is worse imo. - if (_protoMan.TryIndex(role, out var jobPrototype) && _protoMan.TryIndex(jobPrototype.Icon, out var iconProto)) + // TODO: This should not be using raw strings for prototypes as it means it won't be validated at all. + // I know the ban manager is doing the same thing, but that should not leak into UI code. + if (_protoMan.TryIndex(role, out var jobPrototype) && _protoMan.Resolve(jobPrototype.Icon, out var iconProto)) { var jobIconTexture = new TextureRect { diff --git a/Content.Client/Atmos/AlignAtmosPipeLayers.cs b/Content.Client/Atmos/AlignAtmosPipeLayers.cs index 1bf3310a6c..51a6ce0c02 100644 --- a/Content.Client/Atmos/AlignAtmosPipeLayers.cs +++ b/Content.Client/Atmos/AlignAtmosPipeLayers.cs @@ -134,7 +134,7 @@ public sealed class AlignAtmosPipeLayers : SnapgridCenter var newProtoId = altPrototypes[(int)layer]; - if (!_protoManager.TryIndex(newProtoId, out var newProto)) + if (!_protoManager.Resolve(newProtoId, out var newProto)) return; if (newProto.Type != ConstructionType.Structure) diff --git a/Content.Client/Audio/Jukebox/JukeboxBoundUserInterface.cs b/Content.Client/Audio/Jukebox/JukeboxBoundUserInterface.cs index 865dfc478d..510b9d3def 100644 --- a/Content.Client/Audio/Jukebox/JukeboxBoundUserInterface.cs +++ b/Content.Client/Audio/Jukebox/JukeboxBoundUserInterface.cs @@ -58,7 +58,7 @@ public sealed class JukeboxBoundUserInterface : BoundUserInterface _menu.SetAudioStream(jukebox.AudioStream); - if (_protoManager.TryIndex(jukebox.SelectedSongId, out var songProto)) + if (_protoManager.Resolve(jukebox.SelectedSongId, out var songProto)) { var length = EntMan.System().GetAudioLength(songProto.Path.Path.ToString()); _menu.SetSelectedSong(songProto.Name, (float) length.TotalSeconds); diff --git a/Content.Client/BarSign/BarSignSystem.cs b/Content.Client/BarSign/BarSignSystem.cs index 02e33861b7..1ea99864a1 100644 --- a/Content.Client/BarSign/BarSignSystem.cs +++ b/Content.Client/BarSign/BarSignSystem.cs @@ -39,7 +39,7 @@ public sealed class BarSignSystem : VisualizerSystem if (powered && sign.Current != null - && _prototypeManager.TryIndex(sign.Current, out var proto)) + && _prototypeManager.Resolve(sign.Current, out var proto)) { SpriteSystem.LayerSetSprite((id, sprite), 0, proto.Icon); sprite.LayerSetShader(0, "unshaded"); diff --git a/Content.Client/BarSign/Ui/BarSignBoundUserInterface.cs b/Content.Client/BarSign/Ui/BarSignBoundUserInterface.cs index 1d1280b2f3..fe07f0f1d1 100644 --- a/Content.Client/BarSign/Ui/BarSignBoundUserInterface.cs +++ b/Content.Client/BarSign/Ui/BarSignBoundUserInterface.cs @@ -35,7 +35,7 @@ public sealed class BarSignBoundUserInterface(EntityUid owner, Enum uiKey) : Bou public void Update(ProtoId? sign) { - if (_prototype.TryIndex(sign, out var signPrototype)) + if (_prototype.Resolve(sign, out var signPrototype)) _menu?.UpdateState(signPrototype); } diff --git a/Content.Client/Cargo/UI/BountyEntry.xaml.cs b/Content.Client/Cargo/UI/BountyEntry.xaml.cs index 027d7b3e80..d813f70ff4 100644 --- a/Content.Client/Cargo/UI/BountyEntry.xaml.cs +++ b/Content.Client/Cargo/UI/BountyEntry.xaml.cs @@ -29,7 +29,7 @@ public sealed partial class BountyEntry : BoxContainer UntilNextSkip = untilNextSkip; - if (!_prototype.TryIndex(bounty.Bounty, out var bountyPrototype)) + if (!_prototype.Resolve(bounty.Bounty, out var bountyPrototype)) return; var items = new List(); diff --git a/Content.Client/Cargo/UI/BountyHistoryEntry.xaml.cs b/Content.Client/Cargo/UI/BountyHistoryEntry.xaml.cs index 54804be641..98658e5f0a 100644 --- a/Content.Client/Cargo/UI/BountyHistoryEntry.xaml.cs +++ b/Content.Client/Cargo/UI/BountyHistoryEntry.xaml.cs @@ -19,7 +19,7 @@ public sealed partial class BountyHistoryEntry : BoxContainer RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); - if (!_prototype.TryIndex(bounty.Bounty, out var bountyPrototype)) + if (!_prototype.Resolve(bounty.Bounty, out var bountyPrototype)) return; var items = new List(); diff --git a/Content.Client/Changeling/UI/ChangelingTransformBoundUserInterface.cs b/Content.Client/Changeling/UI/ChangelingTransformBoundUserInterface.cs index 8220e18708..97c07dd8c9 100644 --- a/Content.Client/Changeling/UI/ChangelingTransformBoundUserInterface.cs +++ b/Content.Client/Changeling/UI/ChangelingTransformBoundUserInterface.cs @@ -1,4 +1,7 @@ -using Content.Shared.Changeling.Systems; +using Content.Client.Stylesheets; +using Content.Client.UserInterface.Controls; +using Content.Shared.Changeling.Components; +using Content.Shared.Changeling.Systems; using JetBrains.Annotations; using Robust.Client.UserInterface; @@ -7,28 +10,58 @@ namespace Content.Client.Changeling.UI; [UsedImplicitly] public sealed partial class ChangelingTransformBoundUserInterface(EntityUid owner, Enum uiKey) : BoundUserInterface(owner, uiKey) { - private ChangelingTransformMenu? _window; + private SimpleRadialMenu? _menu; + private static readonly Color SelectedOptionBackground = StyleNano.ButtonColorGoodDefault.WithAlpha(128); + private static readonly Color SelectedOptionHoverBackground = StyleNano.ButtonColorGoodHovered.WithAlpha(128); protected override void Open() { base.Open(); - _window = this.CreateWindow(); - - _window.OnIdentitySelect += SendIdentitySelect; - - _window.Update(Owner); + _menu = this.CreateWindow(); + Update(); + _menu.OpenOverMouseScreenPosition(); } + public override void Update() { - if (_window == null) + if (_menu == null) return; - _window.Update(Owner); + if (!EntMan.TryGetComponent(Owner, out var lingIdentity)) + return; + + var models = ConvertToButtons(lingIdentity.ConsumedIdentities, lingIdentity?.CurrentIdentity); + + _menu.SetButtons(models); } - public void SendIdentitySelect(NetEntity identityId) + private IEnumerable ConvertToButtons( + IEnumerable identities, + EntityUid? currentIdentity + ) + { + var buttons = new List(); + foreach (var identity in identities) + { + if (!EntMan.TryGetComponent(identity, out var metadata)) + continue; + + var option = new RadialMenuActionOption(SendIdentitySelect, EntMan.GetNetEntity(identity)) + { + IconSpecifier = RadialMenuIconSpecifier.With(identity), + ToolTip = metadata.EntityName, + BackgroundColor = (currentIdentity == identity) ? SelectedOptionBackground : null, + HoverBackgroundColor = (currentIdentity == identity) ? SelectedOptionHoverBackground : null + }; + buttons.Add(option); + } + + return buttons; + } + + private void SendIdentitySelect(NetEntity identityId) { SendPredictedMessage(new ChangelingTransformIdentitySelectMessage(identityId)); } diff --git a/Content.Client/Changeling/UI/ChangelingTransformMenu.xaml b/Content.Client/Changeling/UI/ChangelingTransformMenu.xaml deleted file mode 100644 index 38ae0ec715..0000000000 --- a/Content.Client/Changeling/UI/ChangelingTransformMenu.xaml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/Content.Client/Changeling/UI/ChangelingTransformMenu.xaml.cs b/Content.Client/Changeling/UI/ChangelingTransformMenu.xaml.cs deleted file mode 100644 index ebd4e90440..0000000000 --- a/Content.Client/Changeling/UI/ChangelingTransformMenu.xaml.cs +++ /dev/null @@ -1,62 +0,0 @@ -using System.Numerics; -using Content.Client.UserInterface.Controls; -using Content.Shared.Changeling.Components; -using Robust.Client.AutoGenerated; -using Robust.Client.UserInterface.Controls; -using Robust.Client.UserInterface.XAML; - -namespace Content.Client.Changeling.UI; - -[GenerateTypedNameReferences] -public sealed partial class ChangelingTransformMenu : RadialMenu -{ - [Dependency] private readonly IEntityManager _entity = default!; - public event Action? OnIdentitySelect; - - public ChangelingTransformMenu() - { - RobustXamlLoader.Load(this); - IoCManager.InjectDependencies(this); - } - - public void Update(EntityUid uid) - { - Main.DisposeAllChildren(); - - if (!_entity.TryGetComponent(uid, out var identityComp)) - return; - - foreach (var identityUid in identityComp.ConsumedIdentities) - { - if (!_entity.TryGetComponent(identityUid, out var metadata)) - continue; - - var identityName = metadata.EntityName; - - var button = new ChangelingTransformMenuButton() - { - StyleClasses = { "RadialMenuButton" }, - SetSize = new Vector2(64, 64), - ToolTip = identityName, - }; - - var entView = new SpriteView() - { - SetSize = new Vector2(48, 48), - VerticalAlignment = VAlignment.Center, - HorizontalAlignment = HAlignment.Center, - Stretch = SpriteView.StretchMode.Fill, - }; - entView.SetEntity(identityUid); - button.OnButtonUp += _ => - { - OnIdentitySelect?.Invoke(_entity.GetNetEntity(identityUid)); - Close(); - }; - button.AddChild(entView); - Main.AddChild(button); - } - } -} - -public sealed class ChangelingTransformMenuButton : RadialMenuTextureButtonWithSector; diff --git a/Content.Client/Chat/TypingIndicator/TypingIndicatorVisualizerSystem.cs b/Content.Client/Chat/TypingIndicator/TypingIndicatorVisualizerSystem.cs index c4b0c8f282..e1197d4ac4 100644 --- a/Content.Client/Chat/TypingIndicator/TypingIndicatorVisualizerSystem.cs +++ b/Content.Client/Chat/TypingIndicator/TypingIndicatorVisualizerSystem.cs @@ -27,7 +27,7 @@ public sealed class TypingIndicatorVisualizerSystem : VisualizerSystem(); foreach (var target in targets) { - if (string.IsNullOrEmpty(target) || !_proto.TryIndex(target, out EntityPrototype? proto)) + if (string.IsNullOrEmpty(target) || !_proto.Resolve(target, out EntityPrototype? proto)) continue; if (!proto.TryGetComponent(out TagComponent? tag, EntMan.ComponentFactory) || !_tag.HasTag(tag, st.RequiredTag)) diff --git a/Content.Client/Clothing/UI/ChameleonMenu.xaml.cs b/Content.Client/Clothing/UI/ChameleonMenu.xaml.cs index c6dce10776..fb4447bdf9 100644 --- a/Content.Client/Clothing/UI/ChameleonMenu.xaml.cs +++ b/Content.Client/Clothing/UI/ChameleonMenu.xaml.cs @@ -54,7 +54,7 @@ public sealed partial class ChameleonMenu : DefaultWindow foreach (var id in _possibleIds) { - if (!_prototypeManager.TryIndex(id, out EntityPrototype? proto)) + if (!_prototypeManager.Resolve(id, out EntityPrototype? proto)) continue; var lowId = id.Id.ToLowerInvariant(); diff --git a/Content.Client/Construction/ConstructionSystem.cs b/Content.Client/Construction/ConstructionSystem.cs index 0e7557724f..d693f4ac47 100644 --- a/Content.Client/Construction/ConstructionSystem.cs +++ b/Content.Client/Construction/ConstructionSystem.cs @@ -80,7 +80,7 @@ namespace Content.Client.Construction { foreach (var constructionProto in PrototypeManager.EnumeratePrototypes()) { - if (!PrototypeManager.TryIndex(constructionProto.Graph, out var graphProto)) + if (!PrototypeManager.Resolve(constructionProto.Graph, out var graphProto)) continue; if (constructionProto.TargetNode is not { } targetNodeId) @@ -121,17 +121,14 @@ namespace Content.Client.Construction // If we got the id of the prototype, we exit the “recursion” by clearing the stack. stack.Clear(); - if (!PrototypeManager.TryIndex(constructionProto.ID, out ConstructionPrototype? recipe)) + if (!PrototypeManager.Resolve(entityId, out var proto)) continue; - if (!PrototypeManager.TryIndex(entityId, out var proto)) - continue; + var name = constructionProto.SetName.HasValue ? Loc.GetString(constructionProto.SetName) : proto.Name; + var desc = constructionProto.SetDescription.HasValue ? Loc.GetString(constructionProto.SetDescription) : proto.Description; - var name = recipe.SetName.HasValue ? Loc.GetString(recipe.SetName) : proto.Name; - var desc = recipe.SetDescription.HasValue ? Loc.GetString(recipe.SetDescription) : proto.Description; - - recipe.Name = name; - recipe.Description = desc; + constructionProto.Name = name; + constructionProto.Description = desc; _recipesMetadataCache.Add(constructionProto.ID, entityId); } while (stack.Count > 0); @@ -172,7 +169,7 @@ namespace Content.Client.Construction "construction-ghost-examine-message", ("name", component.Prototype.Name))); - if (!PrototypeManager.TryIndex(component.Prototype.Graph, out var graph)) + if (!PrototypeManager.Resolve(component.Prototype.Graph, out var graph)) return; var startNode = graph.Nodes[component.Prototype.StartNode]; diff --git a/Content.Client/Construction/UI/ConstructionMenuPresenter.cs b/Content.Client/Construction/UI/ConstructionMenuPresenter.cs index 119e92fc6f..d5fee2bdda 100644 --- a/Content.Client/Construction/UI/ConstructionMenuPresenter.cs +++ b/Content.Client/Construction/UI/ConstructionMenuPresenter.cs @@ -510,7 +510,7 @@ namespace Content.Client.Construction.UI foreach (var id in favorites) { - if (_prototypeManager.TryIndex(id, out ConstructionPrototype? recipe, logError: false)) + if (_prototypeManager.TryIndex(id, out ConstructionPrototype? recipe)) _favoritedRecipes.Add(recipe); } diff --git a/Content.Client/Damage/DamageVisualsSystem.cs b/Content.Client/Damage/DamageVisualsSystem.cs index de866ca9a4..065bf628bc 100644 --- a/Content.Client/Damage/DamageVisualsSystem.cs +++ b/Content.Client/Damage/DamageVisualsSystem.cs @@ -150,7 +150,7 @@ public sealed class DamageVisualsSystem : VisualizerSystem(damageComponent.DamageContainerID, out var damageContainer)) + && _prototypeManager.Resolve(damageComponent.DamageContainerID, out var damageContainer)) { // Are we using damage overlay sprites by group? // Check if the container matches the supported groups, diff --git a/Content.Client/DisplacementMap/DisplacementMapSystem.cs b/Content.Client/DisplacementMap/DisplacementMapSystem.cs index 94dbc7f00c..6986e1c868 100644 --- a/Content.Client/DisplacementMap/DisplacementMapSystem.cs +++ b/Content.Client/DisplacementMap/DisplacementMapSystem.cs @@ -1,3 +1,4 @@ +using System.Diagnostics.CodeAnalysis; using Content.Shared.DisplacementMap; using Robust.Client.GameObjects; using Robust.Client.Graphics; @@ -10,6 +11,11 @@ public sealed class DisplacementMapSystem : EntitySystem [Dependency] private readonly ISerializationManager _serialization = default!; [Dependency] private readonly SpriteSystem _sprite = default!; + private static string? BuildDisplacementLayerKey(object key) + { + return key.ToString() is null ? null : $"{key}-displacement"; + } + /// /// Attempting to apply a displacement map to a specific layer of SpriteComponent /// @@ -19,21 +25,22 @@ public sealed class DisplacementMapSystem : EntitySystem /// Unique layer key, which will determine which layer to apply displacement map to /// The key of the new displacement map layer added by this function. /// - public bool TryAddDisplacement(DisplacementData data, + public bool TryAddDisplacement( + DisplacementData data, Entity sprite, int index, object key, - out string displacementKey) + [NotNullWhen(true)] out string? displacementKey + ) { - displacementKey = $"{key}-displacement"; - - if (key.ToString() is null) + displacementKey = BuildDisplacementLayerKey(key); + if (displacementKey is null) return false; - if (data.ShaderOverride != null) - sprite.Comp.LayerSetShader(index, data.ShaderOverride); + EnsureDisplacementIsNotOnSprite(sprite, key); - _sprite.RemoveLayer(sprite.AsNullable(), displacementKey, false); + if (data.ShaderOverride is not null) + sprite.Comp.LayerSetShader(index, data.ShaderOverride); //allows you not to write it every time in the YML foreach (var pair in data.SizeMaps) @@ -70,7 +77,11 @@ public sealed class DisplacementMapSystem : EntitySystem } var displacementLayer = _serialization.CreateCopy(displacementDataLayer, notNullableOverride: true); - displacementLayer.CopyToShaderParameters!.LayerKey = key.ToString() ?? "this is impossible"; + + // This previously assigned a string reading "this is impossible" if key.ToString eval'd to false. + // However, for the sake of sanity, we've changed this to assert non-null - !. + // If this throws an error, we're not sorry. Nanotrasen thanks you for your service fixing this bug. + displacementLayer.CopyToShaderParameters!.LayerKey = key.ToString()!; _sprite.AddLayer(sprite.AsNullable(), displacementLayer, index); _sprite.LayerMapSet(sprite.AsNullable(), displacementKey, index); @@ -78,14 +89,18 @@ public sealed class DisplacementMapSystem : EntitySystem return true; } - /// - [Obsolete("Use the Entity overload")] - public bool TryAddDisplacement(DisplacementData data, - SpriteComponent sprite, - int index, - object key, - out string displacementKey) + /// + /// Ensures that the displacement map associated with the given layer key is not in the Sprite's LayerMap. + /// + /// The sprite to remove the displacement layer from. + /// The key of the layer that is referenced by the displacement layer we want to remove. + /// Whether to report an error if the displacement map isn't on the sprite. + public void EnsureDisplacementIsNotOnSprite(Entity sprite, object key) { - return TryAddDisplacement(data, (sprite.Owner, sprite), index, key, out displacementKey); + var displacementLayerKey = BuildDisplacementLayerKey(key); + if (displacementLayerKey is null) + return; + + _sprite.RemoveLayer(sprite.AsNullable(), displacementLayerKey, false); } } diff --git a/Content.Client/Doors/DoorSystem.cs b/Content.Client/Doors/DoorSystem.cs index 3d9a3e2a9a..f1697b820d 100644 --- a/Content.Client/Doors/DoorSystem.cs +++ b/Content.Client/Doors/DoorSystem.cs @@ -142,7 +142,7 @@ public sealed class DoorSystem : SharedDoorSystem private void UpdateSpriteLayers(Entity sprite, string targetProto) { - if (!_prototypeManager.TryIndex(targetProto, out var target)) + if (!_prototypeManager.Resolve(targetProto, out var target)) return; if (!target.TryGetComponent(out SpriteComponent? targetSprite, _componentFactory)) diff --git a/Content.Client/Ghost/GhostRoleRadioBoundUserInterface.cs b/Content.Client/Ghost/GhostRoleRadioBoundUserInterface.cs index 52ea835f4a..9334c85536 100644 --- a/Content.Client/Ghost/GhostRoleRadioBoundUserInterface.cs +++ b/Content.Client/Ghost/GhostRoleRadioBoundUserInterface.cs @@ -1,25 +1,58 @@ +using Content.Client.UserInterface.Controls; using Content.Shared.Ghost.Roles; +using Content.Shared.Ghost.Roles.Components; using Robust.Client.UserInterface; using Robust.Shared.Prototypes; namespace Content.Client.Ghost; -public sealed class GhostRoleRadioBoundUserInterface : BoundUserInterface +public sealed class GhostRoleRadioBoundUserInterface(EntityUid owner, Enum uiKey) : BoundUserInterface(owner, uiKey) { - private GhostRoleRadioMenu? _ghostRoleRadioMenu; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - public GhostRoleRadioBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) - { - IoCManager.InjectDependencies(this); - } + private SimpleRadialMenu? _ghostRoleRadioMenu; protected override void Open() { base.Open(); - _ghostRoleRadioMenu = this.CreateWindow(); - _ghostRoleRadioMenu.SetEntity(Owner); - _ghostRoleRadioMenu.SendGhostRoleRadioMessageAction += SendGhostRoleRadioMessage; + _ghostRoleRadioMenu = this.CreateWindow(); + + // The purpose of this radial UI is for ghost role radios that allow you to select + // more than one potential option, such as with kobolds/lizards. + // This means that it won't show anything if SelectablePrototypes is empty. + if (!EntMan.TryGetComponent(Owner, out var comp)) + return; + + var list = ConvertToButtons(comp.SelectablePrototypes); + + _ghostRoleRadioMenu.SetButtons(list); + } + + private IEnumerable ConvertToButtons(List> protoIds) + { + var list = new List(); + foreach (var ghostRoleProtoId in protoIds) + { + // For each prototype we find we want to create a button that uses the name of the ghost role + // as the hover tooltip, and the icon is taken from either the ghost role entityprototype + // or the indicated icon entityprototype. + if (!_prototypeManager.Resolve(ghostRoleProtoId, out var ghostRoleProto)) + continue; + + var option = new RadialMenuActionOption>(SendGhostRoleRadioMessage, ghostRoleProtoId) + { + ToolTip = Loc.GetString(ghostRoleProto.Name), + // pick the icon if it exists, otherwise fallback to the ghost role's entity + IconSpecifier = ghostRoleProto.IconPrototype != null + && _prototypeManager.Resolve(ghostRoleProto.IconPrototype, out var iconProto) + ? RadialMenuIconSpecifier.With(iconProto) + : RadialMenuIconSpecifier.With(ghostRoleProto.EntityPrototype) + }; + list.Add(option); + } + + return list; } private void SendGhostRoleRadioMessage(ProtoId protoId) diff --git a/Content.Client/Ghost/GhostRoleRadioMenu.xaml b/Content.Client/Ghost/GhostRoleRadioMenu.xaml deleted file mode 100644 index c35ee128c5..0000000000 --- a/Content.Client/Ghost/GhostRoleRadioMenu.xaml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/Content.Client/Ghost/GhostRoleRadioMenu.xaml.cs b/Content.Client/Ghost/GhostRoleRadioMenu.xaml.cs deleted file mode 100644 index 1b65eac6ed..0000000000 --- a/Content.Client/Ghost/GhostRoleRadioMenu.xaml.cs +++ /dev/null @@ -1,105 +0,0 @@ -using Content.Client.UserInterface.Controls; -using Content.Shared.Ghost.Roles; -using Content.Shared.Ghost.Roles.Components; -using Robust.Client.UserInterface; -using Robust.Client.UserInterface.Controls; -using Robust.Client.UserInterface.XAML; -using Robust.Shared.Prototypes; -using System.Numerics; - -namespace Content.Client.Ghost; - -public sealed partial class GhostRoleRadioMenu : RadialMenu -{ - [Dependency] private readonly EntityManager _entityManager = default!; - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - - public event Action>? SendGhostRoleRadioMessageAction; - - public EntityUid Entity { get; set; } - - public GhostRoleRadioMenu() - { - IoCManager.InjectDependencies(this); - RobustXamlLoader.Load(this); - } - - public void SetEntity(EntityUid uid) - { - Entity = uid; - RefreshUI(); - } - - private void RefreshUI() - { - // The main control that will contain all the clickable options - var main = FindControl("Main"); - - // The purpose of this radial UI is for ghost role radios that allow you to select - // more than one potential option, such as with kobolds/lizards. - // This means that it won't show anything if SelectablePrototypes is empty. - if (!_entityManager.TryGetComponent(Entity, out var comp)) - return; - - foreach (var ghostRoleProtoString in comp.SelectablePrototypes) - { - // For each prototype we find we want to create a button that uses the name of the ghost role - // as the hover tooltip, and the icon is taken from either the ghost role entityprototype - // or the indicated icon entityprototype. - if (!_prototypeManager.TryIndex(ghostRoleProtoString, out var ghostRoleProto)) - continue; - - var button = new GhostRoleRadioMenuButton() - { - SetSize = new Vector2(64, 64), - ToolTip = Loc.GetString(ghostRoleProto.Name), - ProtoId = ghostRoleProto.ID, - }; - - var entProtoView = new EntityPrototypeView() - { - SetSize = new Vector2(48, 48), - VerticalAlignment = VAlignment.Center, - HorizontalAlignment = HAlignment.Center, - Stretch = SpriteView.StretchMode.Fill - }; - - // pick the icon if it exists, otherwise fallback to the ghost role's entity - if (_prototypeManager.TryIndex(ghostRoleProto.IconPrototype, out var iconProto)) - entProtoView.SetPrototype(iconProto); - else - entProtoView.SetPrototype(ghostRoleProto.EntityPrototype); - - button.AddChild(entProtoView); - main.AddChild(button); - AddGhostRoleRadioMenuButtonOnClickActions(main); - } - } - - private void AddGhostRoleRadioMenuButtonOnClickActions(Control control) - { - var mainControl = control as RadialContainer; - - if (mainControl == null) - return; - - foreach (var child in mainControl.Children) - { - var castChild = child as GhostRoleRadioMenuButton; - - if (castChild == null) - continue; - - castChild.OnButtonUp += _ => - { - SendGhostRoleRadioMessageAction?.Invoke(castChild.ProtoId); - Close(); - }; - } - } -} - -public sealed class GhostRoleRadioMenuButton : RadialMenuTextureButtonWithSector -{ - public ProtoId ProtoId { get; set; } -} diff --git a/Content.Client/Guidebook/Controls/GuideReagentEmbed.xaml.cs b/Content.Client/Guidebook/Controls/GuideReagentEmbed.xaml.cs index 29569e40e6..dbfd36daea 100644 --- a/Content.Client/Guidebook/Controls/GuideReagentEmbed.xaml.cs +++ b/Content.Client/Guidebook/Controls/GuideReagentEmbed.xaml.cs @@ -5,14 +5,17 @@ using Content.Client.Guidebook.Richtext; using Content.Client.Message; using Content.Client.UserInterface.ControlExtensions; using Content.Shared.Body.Prototypes; +using Content.Shared.CCVar; using Content.Shared.Chemistry.Reaction; using Content.Shared.Chemistry.Reagent; +using Content.Shared.Contraband; using JetBrains.Annotations; using Robust.Client.AutoGenerated; using Robust.Client.Graphics; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; +using Robust.Shared.Configuration; using Robust.Shared.Prototypes; using Robust.Shared.Utility; @@ -27,8 +30,10 @@ public sealed partial class GuideReagentEmbed : BoxContainer, IDocumentTag, ISea [Dependency] private readonly IEntitySystemManager _systemManager = default!; [Dependency] private readonly ILogManager _logManager = default!; [Dependency] private readonly IPrototypeManager _prototype = default!; + [Dependency] private readonly IConfigurationManager _config = default!; private readonly ChemistryGuideDataSystem _chemistryGuideData; + private readonly ContrabandSystem _contraband; private readonly ISawmill _sawmill; public IPrototype? RepresentedPrototype { get; private set; } @@ -39,6 +44,7 @@ public sealed partial class GuideReagentEmbed : BoxContainer, IDocumentTag, ISea IoCManager.InjectDependencies(this); _sawmill = _logManager.GetSawmill("guidebook.reagent"); _chemistryGuideData = _systemManager.GetEntitySystem(); + _contraband = _systemManager.GetEntitySystem(); MouseFilter = MouseFilterMode.Stop; } @@ -204,6 +210,25 @@ public sealed partial class GuideReagentEmbed : BoxContainer, IDocumentTag, ISea description.PushNewline(); description.AddMarkupOrThrow(Loc.GetString("guidebook-reagent-physical-description", ("description", reagent.LocalizedPhysicalDescription))); + + if (_config.GetCVar(CCVars.ContrabandExamine)) + { + // Department-restricted text + if (reagent.AllowedJobs.Count > 0 || reagent.AllowedDepartments.Count > 0) + { + description.PushNewline(); + description.AddMarkupPermissive( + _contraband.GenerateDepartmentExamineMessage(reagent.AllowedDepartments, reagent.AllowedJobs, ContrabandItemType.Reagent)); + } + // Other contraband text + else if (reagent.ContrabandSeverity != null && + _prototype.Resolve(reagent.ContrabandSeverity.Value, out var severity)) + { + description.PushNewline(); + description.AddMarkupPermissive(Loc.GetString(severity.ExamineText, ("type", ContrabandItemType.Reagent))); + } + } + ReagentDescription.SetMessage(description); } diff --git a/Content.Client/Guidebook/DocumentParsingManager.cs b/Content.Client/Guidebook/DocumentParsingManager.cs index ecf11d4725..8bc1a834fc 100644 --- a/Content.Client/Guidebook/DocumentParsingManager.cs +++ b/Content.Client/Guidebook/DocumentParsingManager.cs @@ -53,7 +53,7 @@ public sealed partial class DocumentParsingManager public bool TryAddMarkup(Control control, ProtoId entryId, bool log = true) { - if (!_prototype.TryIndex(entryId, out var entry)) + if (!_prototype.Resolve(entryId, out var entry)) return false; using var file = _resourceManager.ContentFileReadText(entry.Text); diff --git a/Content.Client/Humanoid/HumanoidAppearanceSystem.cs b/Content.Client/Humanoid/HumanoidAppearanceSystem.cs index 6700cf2a18..54c2801e33 100644 --- a/Content.Client/Humanoid/HumanoidAppearanceSystem.cs +++ b/Content.Client/Humanoid/HumanoidAppearanceSystem.cs @@ -289,25 +289,26 @@ public sealed class HumanoidAppearanceSystem : SharedHumanoidAppearanceSystem private void RemoveMarking(Marking marking, Entity spriteEnt) { if (!_markingManager.TryGetMarking(marking, out var prototype)) - { return; - } foreach (var sprite in prototype.Sprites) { if (sprite is not SpriteSpecifier.Rsi rsi) - { continue; - } var layerId = $"{marking.MarkingId}-{rsi.RsiState}"; if (!_sprite.LayerMapTryGet(spriteEnt.AsNullable(), layerId, out var index, false)) - { continue; - } _sprite.LayerMapRemove(spriteEnt.AsNullable(), layerId); _sprite.RemoveLayer(spriteEnt.AsNullable(), index); + + // If this marking is one that can be displaced, we need to remove the displacement as well; otherwise + // altering a marking at runtime can lead to the renderer falling over. + // The Vulps must be shaved. + // (https://github.com/space-wizards/space-station-14/issues/40135). + if (prototype.CanBeDisplaced) + _displacement.EnsureDisplacementIsNotOnSprite(spriteEnt, layerId); } } @@ -346,9 +347,7 @@ public sealed class HumanoidAppearanceSystem : SharedHumanoidAppearanceSystem var sprite = entity.Comp2; if (!_sprite.LayerMapTryGet((entity.Owner, sprite), markingPrototype.BodyPart, out var targetLayer, false)) - { return; - } visible &= !IsHidden(humanoid, markingPrototype.BodyPart); visible &= humanoid.BaseLayers.TryGetValue(markingPrototype.BodyPart, out var setting) @@ -359,9 +358,7 @@ public sealed class HumanoidAppearanceSystem : SharedHumanoidAppearanceSystem var markingSprite = markingPrototype.Sprites[j]; if (markingSprite is not SpriteSpecifier.Rsi rsi) - { - continue; - } + return; var layerId = $"{markingPrototype.ID}-{rsi.RsiState}"; @@ -375,26 +372,18 @@ public sealed class HumanoidAppearanceSystem : SharedHumanoidAppearanceSystem _sprite.LayerSetVisible((entity.Owner, sprite), layerId, visible); if (!visible || setting == null) // this is kinda implied - { continue; - } // Okay so if the marking prototype is modified but we load old marking data this may no longer be valid // and we need to check the index is correct. // So if that happens just default to white? if (colors != null && j < colors.Count) - { _sprite.LayerSetColor((entity.Owner, sprite), layerId, colors[j]); - } else - { _sprite.LayerSetColor((entity.Owner, sprite), layerId, Color.White); - } if (humanoid.MarkingsDisplacement.TryGetValue(markingPrototype.BodyPart, out var displacementData) && markingPrototype.CanBeDisplaced) - { _displacement.TryAddDisplacement(displacementData, (entity.Owner, sprite), targetLayer + j + 1, layerId, out _); - } } } diff --git a/Content.Client/Implants/ImplanterSystem.cs b/Content.Client/Implants/ImplanterSystem.cs index 4ba4d015ca..a8c501daf1 100644 --- a/Content.Client/Implants/ImplanterSystem.cs +++ b/Content.Client/Implants/ImplanterSystem.cs @@ -28,7 +28,7 @@ public sealed class ImplanterSystem : SharedImplanterSystem Dictionary implants = new(); foreach (var implant in component.DeimplantWhitelist) { - if (_proto.TryIndex(implant, out var proto)) + if (_proto.Resolve(implant, out var proto)) implants.Add(proto.ID, proto.Name); } diff --git a/Content.Client/Implants/UI/ChameleonControllerMenu.xaml.cs b/Content.Client/Implants/UI/ChameleonControllerMenu.xaml.cs index a41e2e9293..c12ddb9319 100644 --- a/Content.Client/Implants/UI/ChameleonControllerMenu.xaml.cs +++ b/Content.Client/Implants/UI/ChameleonControllerMenu.xaml.cs @@ -62,7 +62,7 @@ public sealed partial class ChameleonControllerMenu : FancyWindow // Go through every outfit and add them to the correct department. foreach (var outfit in _outfits) { - _prototypeManager.TryIndex(outfit.Job, out var jobProto); + _prototypeManager.Resolve(outfit.Job, out var jobProto); var name = outfit.LoadoutName ?? outfit.Name ?? jobProto?.Name ?? "Prototype has no name or job."; diff --git a/Content.Client/Implants/UI/ImplanterStatusControl.cs b/Content.Client/Implants/UI/ImplanterStatusControl.cs index 569dd785d7..24445eeecf 100644 --- a/Content.Client/Implants/UI/ImplanterStatusControl.cs +++ b/Content.Client/Implants/UI/ImplanterStatusControl.cs @@ -49,7 +49,7 @@ public sealed class ImplanterStatusControl : Control if (_parent.CurrentMode == ImplanterToggleMode.Draw) { string implantName = _parent.DeimplantChosen != null - ? (_prototype.TryIndex(_parent.DeimplantChosen.Value, out EntityPrototype? implantProto) ? implantProto.Name : Loc.GetString("implanter-empty-text")) + ? (_prototype.Resolve(_parent.DeimplantChosen.Value, out EntityPrototype? implantProto) ? implantProto.Name : Loc.GetString("implanter-empty-text")) : Loc.GetString("implanter-empty-text"); _label.SetMarkup(Loc.GetString("implanter-label-draw", diff --git a/Content.Client/Lathe/UI/LatheMenu.xaml.cs b/Content.Client/Lathe/UI/LatheMenu.xaml.cs index a0dc241c29..f6688a63af 100644 --- a/Content.Client/Lathe/UI/LatheMenu.xaml.cs +++ b/Content.Client/Lathe/UI/LatheMenu.xaml.cs @@ -97,7 +97,7 @@ public sealed partial class LatheMenu : DefaultWindow var recipesToShow = new List(); foreach (var recipe in Recipes) { - if (!_prototypeManager.TryIndex(recipe, out var proto)) + if (!_prototypeManager.Resolve(recipe, out var proto)) continue; // Category filtering @@ -183,7 +183,7 @@ public sealed partial class LatheMenu : DefaultWindow foreach (var (id, amount) in prototype.Materials) { - if (!_prototypeManager.TryIndex(id, out var proto)) + if (!_prototypeManager.Resolve(id, out var proto)) continue; var adjustedAmount = SharedLatheSystem.AdjustMaterial(amount, prototype.ApplyMaterialDiscount, multiplier); diff --git a/Content.Client/Lobby/LobbyUIController.cs b/Content.Client/Lobby/LobbyUIController.cs index ec052adea5..e36a2cd174 100644 --- a/Content.Client/Lobby/LobbyUIController.cs +++ b/Content.Client/Lobby/LobbyUIController.cs @@ -362,7 +362,7 @@ public sealed class LobbyUIController : UIController, IOnStateEntered(species)) page = new ProtoId(species.Id); // Gross. See above todo comment. - if (_prototypeManager.TryIndex(DefaultSpeciesGuidebook, out var guideRoot)) + if (_prototypeManager.Resolve(DefaultSpeciesGuidebook, out var guideRoot)) { var dict = new Dictionary, GuideEntry>(); dict.Add(DefaultSpeciesGuidebook, guideRoot); @@ -1291,7 +1291,7 @@ namespace Content.Client.Lobby.UI var sexes = new List(); // add species sex options, default to just none if we are in bizzaro world and have no species - if (_prototypeManager.TryIndex(Profile.Species, out var speciesProto)) + if (_prototypeManager.Resolve(Profile.Species, out var speciesProto)) { foreach (var sex in speciesProto.Sexes) { @@ -1384,7 +1384,7 @@ namespace Content.Client.Lobby.UI if (species is null) return; - if (!_prototypeManager.TryIndex(species, out var speciesProto)) + if (!_prototypeManager.Resolve(species, out var speciesProto)) return; // Don't display the info button if no guide entry is found diff --git a/Content.Client/Lobby/UI/Loadouts/LoadoutContainer.xaml.cs b/Content.Client/Lobby/UI/Loadouts/LoadoutContainer.xaml.cs index 2264cecd23..035f4a3c1a 100644 --- a/Content.Client/Lobby/UI/Loadouts/LoadoutContainer.xaml.cs +++ b/Content.Client/Lobby/UI/Loadouts/LoadoutContainer.xaml.cs @@ -40,7 +40,7 @@ public sealed partial class LoadoutContainer : BoxContainer SelectButton.TooltipSupplier = _ => tooltip; } - if (_protoManager.TryIndex(proto, out var loadProto)) + if (_protoManager.Resolve(proto, out var loadProto)) { var ent = loadProto.DummyEntity ?? _entManager.System().GetFirstOrNull(loadProto); diff --git a/Content.Client/Lobby/UI/Loadouts/LoadoutGroupContainer.xaml.cs b/Content.Client/Lobby/UI/Loadouts/LoadoutGroupContainer.xaml.cs index b06e7e41d1..644910db60 100644 --- a/Content.Client/Lobby/UI/Loadouts/LoadoutGroupContainer.xaml.cs +++ b/Content.Client/Lobby/UI/Loadouts/LoadoutGroupContainer.xaml.cs @@ -62,7 +62,7 @@ public sealed partial class LoadoutGroupContainer : BoxContainer }); } - if (protoMan.TryIndex(loadout.Role, out var roleProto) && roleProto.Points != null && loadout.Points != null) + if (protoMan.Resolve(loadout.Role, out var roleProto) && roleProto.Points != null && loadout.Points != null) { RestrictionsContainer.AddChild(new Label() { @@ -112,14 +112,14 @@ public sealed partial class LoadoutGroupContainer : BoxContainer }) .ToList(); - /* - * Determine which element should be displayed first: - * - If any element is currently selected (its button is pressed), use it. - * - Otherwise, fallback to the first element in the list. - * - * This moves the selected item outside of the sublist for better usability, - * making it easier for players to quickly toggle loadout options (e.g. clothing, accessories) - * without having to search inside expanded subgroups. + /* + * Determine which element should be displayed first: + * - If any element is currently selected (its button is pressed), use it. + * - Otherwise, fallback to the first element in the list. + * + * This moves the selected item outside of the sublist for better usability, + * making it easier for players to quickly toggle loadout options (e.g. clothing, accessories) + * without having to search inside expanded subgroups. */ var firstElement = uiElements.FirstOrDefault(e => e.Select.Pressed) ?? uiElements[0]; @@ -195,8 +195,8 @@ public sealed partial class LoadoutGroupContainer : BoxContainer /// /// Creates a UI container for a single Loadout item. /// - /// This method was extracted from RefreshLoadouts because the logic for creating - /// individual loadout items is used multiple times inside that method, and duplicating + /// This method was extracted from RefreshLoadouts because the logic for creating + /// individual loadout items is used multiple times inside that method, and duplicating /// the code made it harder to maintain. /// /// Logic: diff --git a/Content.Client/Lobby/UI/Loadouts/LoadoutWindow.xaml.cs b/Content.Client/Lobby/UI/Loadouts/LoadoutWindow.xaml.cs index 68e1ecbeae..50860b349a 100644 --- a/Content.Client/Lobby/UI/Loadouts/LoadoutWindow.xaml.cs +++ b/Content.Client/Lobby/UI/Loadouts/LoadoutWindow.xaml.cs @@ -68,7 +68,7 @@ public sealed partial class LoadoutWindow : FancyWindow { foreach (var group in proto.Groups) { - if (!protoManager.TryIndex(group, out var groupProto)) + if (!protoManager.Resolve(group, out var groupProto)) continue; if (groupProto.Hidden) diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringNavMapControl.cs b/Content.Client/Medical/CrewMonitoring/CrewMonitoringNavMapControl.cs index 340cc9af89..651c76e61f 100644 --- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringNavMapControl.cs +++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringNavMapControl.cs @@ -64,7 +64,9 @@ public sealed partial class CrewMonitoringNavMapControl : NavMapControl if (!LocalizedNames.TryGetValue(netEntity, out var name)) name = "Unknown"; - var message = name + "\nLocation: [x = " + MathF.Round(blip.Coordinates.X) + ", y = " + MathF.Round(blip.Coordinates.Y) + "]"; + var message = name + "\n" + Loc.GetString("navmap-location", + ("x", MathF.Round(blip.Coordinates.X)), + ("y", MathF.Round(blip.Coordinates.Y))); _trackedEntityLabel.Text = message; _trackedEntityPanel.Visible = true; diff --git a/Content.Client/Overlays/EntityHealthBarOverlay.cs b/Content.Client/Overlays/EntityHealthBarOverlay.cs index 9ff0422aba..cf9d879844 100644 --- a/Content.Client/Overlays/EntityHealthBarOverlay.cs +++ b/Content.Client/Overlays/EntityHealthBarOverlay.cs @@ -57,7 +57,7 @@ public sealed class EntityHealthBarOverlay : Overlay const float scale = 1f; var scaleMatrix = Matrix3Helpers.CreateScale(new Vector2(scale, scale)); var rotationMatrix = Matrix3Helpers.CreateRotation(-rotation); - _prototype.TryIndex(StatusIcon, out var statusIcon); + _prototype.Resolve(StatusIcon, out var statusIcon); var query = _entManager.AllEntityQueryEnumerator(); while (query.MoveNext(out var uid, diff --git a/Content.Client/Overlays/ShowCriminalRecordIconsSystem.cs b/Content.Client/Overlays/ShowCriminalRecordIconsSystem.cs index c353b17272..9a84defba0 100644 --- a/Content.Client/Overlays/ShowCriminalRecordIconsSystem.cs +++ b/Content.Client/Overlays/ShowCriminalRecordIconsSystem.cs @@ -22,7 +22,7 @@ public sealed class ShowCriminalRecordIconsSystem : EquipmentHudSystem(entity, out var state)) { // Since there is no MobState for a rotting mob, we have to deal with this case first. - if (HasComp(entity) && _prototypeMan.TryIndex(damageableComponent.RottingIcon, out var rottingIcon)) + if (HasComp(entity) && _prototypeMan.Resolve(damageableComponent.RottingIcon, out var rottingIcon)) result.Add(rottingIcon); - else if (damageableComponent.HealthIcons.TryGetValue(state.CurrentState, out var value) && _prototypeMan.TryIndex(value, out var icon)) + else if (damageableComponent.HealthIcons.TryGetValue(state.CurrentState, out var value) && _prototypeMan.Resolve(value, out var icon)) result.Add(icon); } } diff --git a/Content.Client/Overlays/ShowJobIconsSystem.cs b/Content.Client/Overlays/ShowJobIconsSystem.cs index d0d14449f6..faf4024c2f 100644 --- a/Content.Client/Overlays/ShowJobIconsSystem.cs +++ b/Content.Client/Overlays/ShowJobIconsSystem.cs @@ -51,7 +51,7 @@ public sealed class ShowJobIconsSystem : EquipmentHudSystem(proto, out var weatherProto)) + if (!_protoManager.Resolve(proto, out var weatherProto)) continue; var alpha = _weather.GetPercent(weather, mapUid); diff --git a/Content.Client/Power/APC/UI/ApcMenu.xaml b/Content.Client/Power/APC/UI/ApcMenu.xaml index 0ce4a943da..6cb46a4360 100644 --- a/Content.Client/Power/APC/UI/ApcMenu.xaml +++ b/Content.Client/Power/APC/UI/ApcMenu.xaml @@ -20,7 +20,7 @@ [Virtual] -public class RadialMenuTextureButtonBase : TextureButton +public abstract class RadialMenuButtonBase : BaseButton { /// - protected RadialMenuTextureButtonBase() + protected RadialMenuButtonBase() { EnableAllKeybinds = true; } @@ -242,7 +242,9 @@ public class RadialMenuTextureButtonBase : TextureButton { if (args.Function == EngineKeyFunctions.UIClick || args.Function == ContentKeyFunctions.AltActivateItemInWorld) + { base.KeyBindUp(args); + } } } @@ -253,8 +255,14 @@ public class RadialMenuTextureButtonBase : TextureButton /// works only if control have parent, and ActiveContainer property is set. /// Also considers all space outside of radial menu buttons as itself for clicking. /// -public sealed class RadialMenuContextualCentralTextureButton : RadialMenuTextureButtonBase +public sealed class RadialMenuContextualCentralTextureButton : TextureButton { + /// + public RadialMenuContextualCentralTextureButton() + { + EnableAllKeybinds = true; + } + public float InnerRadius { get; set; } public Vector2? ParentCenter { get; set; } @@ -271,15 +279,25 @@ public sealed class RadialMenuContextualCentralTextureButton : RadialMenuTexture var innerRadiusSquared = InnerRadius * InnerRadius; - // comparing to squared values is faster then making sqrt + // comparing to squared values is faster, then making sqrt return distSquared < innerRadiusSquared; } + + /// + protected override void KeyBindUp(GUIBoundKeyEventArgs args) + { + if (args.Function == EngineKeyFunctions.UIClick + || args.Function == ContentKeyFunctions.AltActivateItemInWorld) + { + base.KeyBindUp(args); + } + } } /// /// Menu button for outer area of radial menu (covers everything 'outside'). /// -public sealed class RadialMenuOuterAreaButton : RadialMenuTextureButtonBase +public sealed class RadialMenuOuterAreaButton : RadialMenuButtonBase { public float OuterRadius { get; set; } @@ -303,7 +321,7 @@ public sealed class RadialMenuOuterAreaButton : RadialMenuTextureButtonBase } [Virtual] -public class RadialMenuTextureButton : RadialMenuTextureButtonBase +public class RadialMenuButton : RadialMenuButtonBase { /// /// Upon clicking this button the radial menu will be moved to the layer of this control. @@ -319,9 +337,8 @@ public class RadialMenuTextureButton : RadialMenuTextureButtonBase /// /// A simple texture button that can move the user to a different layer within a radial menu /// - public RadialMenuTextureButton() + public RadialMenuButton() { - EnableAllKeybinds = true; OnButtonUp += OnClicked; } @@ -391,7 +408,7 @@ public interface IRadialMenuItemWithSector } [Virtual] -public class RadialMenuTextureButtonWithSector : RadialMenuTextureButton, IRadialMenuItemWithSector +public class RadialMenuButtonWithSector : RadialMenuButton, IRadialMenuItemWithSector { private Vector2[]? _sectorPointsForDrawing; @@ -500,7 +517,7 @@ public class RadialMenuTextureButtonWithSector : RadialMenuTextureButton, IRadia /// /// A simple texture button that can move the user to a different layer within a radial menu /// - public RadialMenuTextureButtonWithSector() + public RadialMenuButtonWithSector() { } diff --git a/Content.Client/UserInterface/Controls/SimpleRadialMenu.xaml.cs b/Content.Client/UserInterface/Controls/SimpleRadialMenu.xaml.cs index 31d7eab340..ec7dcbbb5a 100644 --- a/Content.Client/UserInterface/Controls/SimpleRadialMenu.xaml.cs +++ b/Content.Client/UserInterface/Controls/SimpleRadialMenu.xaml.cs @@ -7,6 +7,8 @@ using Robust.Client.GameObjects; using Robust.Shared.Timing; using Robust.Client.UserInterface.XAML; using Robust.Client.Input; +using Robust.Client.UserInterface.Controls; +using Robust.Shared.Prototypes; namespace Content.Client.UserInterface.Controls; @@ -30,7 +32,7 @@ public sealed partial class SimpleRadialMenu : RadialMenu _attachMenuToEntity = owner; } - public void SetButtons(IEnumerable models, SimpleRadialMenuSettings? settings = null) + public void SetButtons(IEnumerable models, SimpleRadialMenuSettings? settings = null) { ClearExistingChildrenRadialButtons(); @@ -45,7 +47,7 @@ public sealed partial class SimpleRadialMenu : RadialMenu } private void Fill( - IEnumerable models, + IEnumerable models, SpriteSystem sprites, ICollection rootControlChildren, SimpleRadialMenuSettings settings @@ -77,7 +79,7 @@ public sealed partial class SimpleRadialMenu : RadialMenu } } - private RadialMenuTextureButton RecursiveContainerExtraction( + private RadialMenuButton RecursiveContainerExtraction( SpriteSystem sprites, ICollection rootControlChildren, RadialMenuNestedLayerOption model, @@ -112,8 +114,8 @@ public sealed partial class SimpleRadialMenu : RadialMenu return thisLayerLinkButton; } - private RadialMenuTextureButton ConvertToButton( - RadialMenuOption model, + private RadialMenuButton ConvertToButton( + RadialMenuOptionBase model, SpriteSystem sprites, SimpleRadialMenuSettings settings, bool haveNested @@ -121,29 +123,26 @@ public sealed partial class SimpleRadialMenu : RadialMenu { var button = settings.UseSectors ? ConvertToButtonWithSector(model, settings) - : new RadialMenuTextureButton(); + : new RadialMenuButton(); button.SetSize = new Vector2(64f, 64f); button.ToolTip = model.ToolTip; - if (model.Sprite != null) + var imageControl = model.IconSpecifier switch { - var scale = Vector2.One; + RadialMenuTextureIconSpecifier textureSpecifier => CreateTexture(textureSpecifier.Sprite, sprites), + RadialMenuEntityIconSpecifier entitySpecifier => CreateSpriteView(entitySpecifier.Entity), + RadialMenuEntityPrototypeIconSpecifier entProtoSpecifier => CreateEntityPrototypeView(entProtoSpecifier.ProtoId), + _ => null + }; - var texture = sprites.Frame0(model.Sprite); - if (texture.Width <= 32) - { - scale *= 2; - } + if(imageControl != null) + button.AddChild(imageControl); - button.TextureNormal = texture; - button.Scale = scale; - } - - if (model is RadialMenuActionOption actionOption) + if (model is RadialMenuActionOptionBase actionOption) { button.OnPressed += _ => { actionOption.OnPressed?.Invoke(); - if(!haveNested) + if (!haveNested) Close(); }; } @@ -151,9 +150,53 @@ public sealed partial class SimpleRadialMenu : RadialMenu return button; } - private static RadialMenuTextureButtonWithSector ConvertToButtonWithSector(RadialMenuOption model, SimpleRadialMenuSettings settings) + private Control CreateEntityPrototypeView(EntProtoId protoId) { - var button = new RadialMenuTextureButtonWithSector + var entProtoView = new EntityPrototypeView + { + SetSize = new Vector2(48, 48), + VerticalAlignment = VAlignment.Center, + HorizontalAlignment = HAlignment.Center, + Stretch = SpriteView.StretchMode.Fill, + }; + entProtoView.SetPrototype(protoId); + return entProtoView; + } + + private static Control CreateSpriteView(EntityUid entityForSpriteView) + { + var entView = new SpriteView + { + SetSize = new Vector2(48, 48), + VerticalAlignment = VAlignment.Center, + HorizontalAlignment = HAlignment.Center, + Stretch = SpriteView.StretchMode.Fill, + }; + entView.SetEntity(entityForSpriteView); + return entView; + } + + private static Control CreateTexture(SpriteSpecifier spriteSpecifier, SpriteSystem sprites) + { + var scale = Vector2.One; + + var texture = sprites.Frame0(spriteSpecifier); + if (texture.Width <= 32) + { + scale *= 2; + } + + var imageControl = new TextureRect() + { + Texture = texture, + TextureScale = scale + }; + return imageControl; + } + + private static RadialMenuButtonWithSector ConvertToButtonWithSector(RadialMenuOptionBase model, SimpleRadialMenuSettings settings) + { + var button = new RadialMenuButtonWithSector { DrawBorder = settings.DisplayBorders, DrawBackground = !settings.NoBackground @@ -228,32 +271,99 @@ public sealed partial class SimpleRadialMenu : RadialMenu } - -public abstract class RadialMenuOption +/// +/// Abstract representation of a way to specify icon in radial menu. +/// +public abstract record RadialMenuIconSpecifier { - public string? ToolTip { get; init; } + /// Use entity prototype viewer. + public static RadialMenuIconSpecifier? With(EntProtoId? protoId) + { + if (protoId is null) + return null; - public SpriteSpecifier? Sprite { get; init; } - public Color? BackgroundColor { get; set; } - public Color? HoverBackgroundColor { get; set; } + return new RadialMenuEntityPrototypeIconSpecifier(protoId.Value); + } + + /// Use simple texture icon. + public static RadialMenuIconSpecifier? With(SpriteSpecifier? sprite) + { + if (sprite == null) + return null; + + return new RadialMenuTextureIconSpecifier(sprite); + } + + /// Use entity sprite viewer. + public static RadialMenuIconSpecifier? With(EntityUid? entity) + { + if (entity == null) + return null; + + return new RadialMenuEntityIconSpecifier(entity.Value); + } } -public abstract class RadialMenuActionOption(Action onPressed) : RadialMenuOption +/// Marker that should be used to display radial menu icon. +public sealed record RadialMenuEntityIconSpecifier(EntityUid Entity) : RadialMenuIconSpecifier; + +/// Marker that should be used to display radial menu icon. +public sealed record RadialMenuTextureIconSpecifier(SpriteSpecifier Sprite) : RadialMenuIconSpecifier; + +/// Marker that should be used to display radial menu icon. +public sealed record RadialMenuEntityPrototypeIconSpecifier(EntProtoId ProtoId) : RadialMenuIconSpecifier; + +/// Container for common options for radial menu button. +public abstract class RadialMenuOptionBase { + /// Tooltip to be displayed when button is hovered. + public string? ToolTip { get; init; } + + /// + /// Color for button background. + /// Is used only with sector radial (). + /// + public Color? BackgroundColor { get; set; } + /// + /// Color for button background when it is hovered. + /// Is used only with sector radial (). + /// + public Color? HoverBackgroundColor { get; set; } + + /// + /// Specifier that describes icon to be used for radial menu button. + /// + public RadialMenuIconSpecifier? IconSpecifier { get; set; } +} + +/// Base type for model of radial menu button with some action on button pressed. +/// +public abstract class RadialMenuActionOptionBase(Action onPressed) : RadialMenuOptionBase +{ + /// Action to be executed on button press. public Action OnPressed { get; } = onPressed; } -public sealed class RadialMenuActionOption(Action onPressed, T data) - : RadialMenuActionOption(onPressed: () => onPressed(data)); +/// Strong-typed model for radial menu button with action, stores provided data to be used upon button press. +public sealed class RadialMenuActionOption(Action onPressed, T data) : RadialMenuActionOptionBase(onPressed: () => onPressed(data)); -public sealed class RadialMenuNestedLayerOption(IReadOnlyCollection nested, float containerRadius = 100) - : RadialMenuOption +/// +/// Model for radial menu button that represents reference for next layer of radial buttons. +/// +/// List of button models for next layer of menu. +/// Radius for radial menu buttons of next layer. +public sealed class RadialMenuNestedLayerOption(IReadOnlyCollection nested, float containerRadius = 100) : RadialMenuOptionBase { + /// Radius for radial menu buttons of next layer. public float? ContainerRadius { get; } = containerRadius; - public IReadOnlyCollection Nested { get; } = nested; + /// List of button models for next layer of menu. + public IReadOnlyCollection Nested { get; } = nested; } +/// +/// Additional settings for radial menu render. +/// public sealed class SimpleRadialMenuSettings { /// diff --git a/Content.Client/UserInterface/Systems/Emotes/EmotesUIController.cs b/Content.Client/UserInterface/Systems/Emotes/EmotesUIController.cs index 8d74e2efe7..fdcc3c45a2 100644 --- a/Content.Client/UserInterface/Systems/Emotes/EmotesUIController.cs +++ b/Content.Client/UserInterface/Systems/Emotes/EmotesUIController.cs @@ -18,7 +18,6 @@ namespace Content.Client.UserInterface.Systems.Emotes; [UsedImplicitly] public sealed class EmotesUIController : UIController, IOnStateChanged { - [Dependency] private readonly IEntityManager _entityManager = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; @@ -133,12 +132,12 @@ public sealed class EmotesUIController : UIController, IOnStateChanged ConvertToButtons(IEnumerable emotePrototypes) + private IEnumerable ConvertToButtons(IEnumerable emotePrototypes) { var whitelistSystem = EntitySystemManager.GetEntitySystem(); var player = _playerManager.LocalSession?.AttachedEntity; - Dictionary> emotesByCategory = new(); + Dictionary> emotesByCategory = new(); foreach (var emote in emotePrototypes) { if(emote.Category == EmoteCategory.Invalid) @@ -158,19 +157,19 @@ public sealed class EmotesUIController : UIController, IOnStateChanged(); + list = new List(); emotesByCategory.Add(emote.Category, list); } var actionOption = new RadialMenuActionOption(HandleRadialButtonClick, emote) { - Sprite = emote.Icon, + IconSpecifier = RadialMenuIconSpecifier.With(emote.Icon), ToolTip = Loc.GetString(emote.Name) }; list.Add(actionOption); } - var models = new RadialMenuOption[emotesByCategory.Count]; + var models = new RadialMenuOptionBase[emotesByCategory.Count]; var i = 0; foreach (var (key, list) in emotesByCategory) { @@ -178,7 +177,7 @@ public sealed class EmotesUIController : UIController, IOnStateChanged(player); damageableComp = entManager.GetComponent(player); - if (protoMan.TryIndex(DamageType, out var slashProto)) - damageableSystem.TryChangeDamage(player, new DamageSpecifier(slashProto, FixedPoint2.New(46.5))); + var slashProto = protoMan.Index(DamageType); + damageableSystem.TryChangeDamage(player, new DamageSpecifier(slashProto, FixedPoint2.New(46.5))); }); // Check that running the suicide command kills the player diff --git a/Content.IntegrationTests/Tests/ContrabandTest.cs b/Content.IntegrationTests/Tests/ContrabandTest.cs index a33e7c2067..c52ef293e1 100644 --- a/Content.IntegrationTests/Tests/ContrabandTest.cs +++ b/Content.IntegrationTests/Tests/ContrabandTest.cs @@ -27,8 +27,11 @@ public sealed class ContrabandTest if (!proto.TryGetComponent(out var contraband, componentFactory)) continue; - Assert.That(protoMan.TryIndex(contraband.Severity, out var severity, false), - @$"{proto.ID} has a ContrabandComponent with a unknown severity."); + if (!protoMan.TryIndex(contraband.Severity, out var severity)) + { + Assert.Fail($"{proto.ID} has a ContrabandComponent with a unknown severity."); + continue; + } if (!severity.ShowDepartmentsAndJobs) continue; diff --git a/Content.IntegrationTests/Tests/Lathe/LatheTest.cs b/Content.IntegrationTests/Tests/Lathe/LatheTest.cs index 2fe347f636..c335f8d6c8 100644 --- a/Content.IntegrationTests/Tests/Lathe/LatheTest.cs +++ b/Content.IntegrationTests/Tests/Lathe/LatheTest.cs @@ -88,14 +88,18 @@ public sealed class LatheTest // Check each recipe assigned to this lathe foreach (var recipeId in recipes) { - Assert.That(protoMan.TryIndex(recipeId, out var recipeProto)); + if (!protoMan.TryIndex(recipeId, out var recipeProto)) + { + Assert.Fail($"Lathe recipe '{recipeId}' does not exist"); + continue; + } // Track the total material volume of the recipe var totalQuantity = 0; // Check each material called for by the recipe foreach (var (materialId, quantity) in recipeProto.Materials) { - Assert.That(protoMan.TryIndex(materialId, out var materialProto)); + Assert.That(protoMan.HasIndex(materialId), $"Material '{materialId}' does not exist"); // Make sure the material is accepted by the lathe Assert.That(acceptedMaterials, Does.Contain(materialId), $"Lathe {latheProto.ID} has recipe {recipeId} but does not accept any materials containing {materialId}"); totalQuantity += quantity; diff --git a/Content.IntegrationTests/Tests/Minds/MindTests.cs b/Content.IntegrationTests/Tests/Minds/MindTests.cs index 2f77519829..1bda6fd4db 100644 --- a/Content.IntegrationTests/Tests/Minds/MindTests.cs +++ b/Content.IntegrationTests/Tests/Minds/MindTests.cs @@ -145,10 +145,7 @@ public sealed partial class MindTests await server.WaitAssertion(() => { var damageable = entMan.GetComponent(entity); - if (!protoMan.TryIndex(BluntDamageType, out var prototype)) - { - return; - } + var prototype = protoMan.Index(BluntDamageType); damageableSystem.SetDamage(entity, damageable, new DamageSpecifier(prototype, FixedPoint2.New(401))); Assert.That(mindSystem.GetMind(entity, mindContainerComp), Is.EqualTo(mindId)); diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index a7a50a5270..f6a9061186 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -1,6 +1,7 @@ using System.Collections.Generic; using System.IO; using System.Linq; +using System.Text.RegularExpressions; using Content.Server.Administration.Systems; using Content.Server.GameTicking; using Content.Server.Maps; @@ -44,17 +45,44 @@ namespace Content.IntegrationTests.Tests AdminTestArenaSystem.ArenaMapPath }; + /// + /// A dictionary linking maps to collections of entity prototype ids that should be exempt from "DoNotMap" restrictions. + /// + /// + /// This declares that the listed entity prototypes are allowed to be present on the map + /// despite being categorized as "DoNotMap", while any unlisted prototypes will still + /// cause the test to fail. + /// + private static readonly Dictionary> DoNotMapWhitelistSpecific = new() + { + {"/Maps/bagel.yml", ["RubberStampMime"]}, + {"/Maps/reach.yml", ["HandheldCrewMonitor"]}, + {"/Maps/Shuttles/ShuttleEvent/honki.yml", ["GoldenBikeHorn", "RubberStampClown"]}, + {"/Maps/Shuttles/ShuttleEvent/syndie_evacpod.yml", ["RubberStampSyndicate"]}, + {"/Maps/Shuttles/ShuttleEvent/cruiser.yml", ["ShuttleGunPerforator"]}, + {"/Maps/Shuttles/ShuttleEvent/instigator.yml", ["ShuttleGunFriendship"]}, + }; + + /// + /// Maps listed here are given blanket freedom to contain "DoNotMap" entities. Use sparingly. + /// + /// + /// It is also possible to whitelist entire directories here. For example, adding + /// "/Maps/Shuttles/**" will whitelist all shuttle maps. + /// private static readonly string[] DoNotMapWhitelist = { "/Maps/centcomm.yml", - "/Maps/bagel.yml", // Contains mime's rubber stamp --> Either fix this, remove the category, or remove this comment if intentional. - "/Maps/reach.yml", // Contains handheld crew monitor - "/Maps/Shuttles/ShuttleEvent/cruiser.yml", // Contains LSE-1200c "Perforator" - "/Maps/Shuttles/ShuttleEvent/honki.yml", // Contains golden honker, clown's rubber stamp - "/Maps/Shuttles/ShuttleEvent/instigator.yml", // Contains EXP-320g "Friendship" - "/Maps/Shuttles/ShuttleEvent/syndie_evacpod.yml", // Contains syndicate rubber stamp + "/Maps/Shuttles/AdminSpawn/**" // admin gaming }; + /// + /// Converts the above globs into regex so your eyes dont bleed trying to add filepaths. + /// + private static readonly Regex[] DoNotMapWhiteListRegexes = DoNotMapWhitelist + .Select(glob => new Regex(GlobToRegex(glob), RegexOptions.IgnoreCase | RegexOptions.Compiled)) + .ToArray(); + private static readonly string[] GameMaps = { "Dev", @@ -247,18 +275,30 @@ namespace Content.IntegrationTests.Tests await pair.CleanReturnAsync(); } + private bool IsWhitelistedForMap(EntProtoId protoId, ResPath map) + { + if (!DoNotMapWhitelistSpecific.TryGetValue(map.ToString(), out var allowedProtos)) + return false; + + return allowedProtos.Contains(protoId); + } + /// /// Check that maps do not have any entities that belong to the DoNotMap entity category /// private void CheckDoNotMap(ResPath map, YamlNode node, IPrototypeManager protoManager) { - if (DoNotMapWhitelist.Contains(map.ToString())) - return; + foreach (var regex in DoNotMapWhiteListRegexes) + { + if (regex.IsMatch(map.ToString())) + return; + } var yamlEntities = node["entities"]; - if (!protoManager.TryIndex(DoNotMapCategory, out var dnmCategory)) - return; + var dnmCategory = protoManager.Index(DoNotMapCategory); + // Make a set containing all the specific whitelisted proto ids for this map + HashSet unusedExemptions = DoNotMapWhitelistSpecific.TryGetValue(map.ToString(), out var exemptions) ? new(exemptions) : []; Assert.Multiple(() => { foreach (var yamlEntity in (YamlSequenceNode)yamlEntities) @@ -266,13 +306,20 @@ namespace Content.IntegrationTests.Tests var protoId = yamlEntity["proto"].AsString(); // This doesn't properly handle prototype migrations, but thats not a significant issue. - if (!protoManager.TryIndex(protoId, out var proto, false)) + if (!protoManager.TryIndex(protoId, out var proto)) continue; - Assert.That(!proto.Categories.Contains(dnmCategory), + Assert.That(!proto.Categories.Contains(dnmCategory) || IsWhitelistedForMap(protoId, map), $"\nMap {map} contains entities in the DO NOT MAP category ({proto.Name})"); + + // The proto id is used on this map, so remove it from the set + unusedExemptions.Remove(protoId); } }); + + // If there are any proto ids left, they must not have been used in the map! + Assert.That(unusedExemptions, Is.Empty, + $"Map {map} has DO NOT MAP entities whitelisted that are not present in the map: {string.Join(", ", unusedExemptions)}"); } private bool IsPreInit(ResPath map, @@ -333,7 +380,7 @@ namespace Content.IntegrationTests.Tests MapId mapId; try { - var opts = DeserializationOptions.Default with {InitializeMaps = true}; + var opts = DeserializationOptions.Default with { InitializeMaps = true }; ticker.LoadGameMap(protoManager.Index(mapProto), out mapId, opts); } catch (Exception ex) @@ -440,7 +487,7 @@ namespace Content.IntegrationTests.Tests #nullable enable while (queryPoint.MoveNext(out T? comp, out var xform)) { - var spawner = (ISpawnPoint) comp; + var spawner = (ISpawnPoint)comp; if (spawner.SpawnType is not SpawnPointType.LateJoin || xform.GridUid == null @@ -554,5 +601,20 @@ namespace Content.IntegrationTests.Tests await server.WaitRunTicks(1); await pair.CleanReturnAsync(); } + + /// + /// Lets us the convert the filepaths to regex without eyeglaze trying to add new paths. + /// + private static string GlobToRegex(string glob) + { + var regex = Regex.Escape(glob) + .Replace(@"\*\*", "**") // replace ** + .Replace(@"\*", "*") // replace * + .Replace("**", ".*") // ** → match across folders + .Replace("*", @"[^/]*") // * → match within a single folder + .Replace(@"\?", "."); // ? → any single character + + return $"^{regex}$"; + } } } diff --git a/Content.IntegrationTests/Tests/Toolshed/AdminTest.cs b/Content.IntegrationTests/Tests/Toolshed/AdminTest.cs index ecb11fc1ba..ca70120ee9 100644 --- a/Content.IntegrationTests/Tests/Toolshed/AdminTest.cs +++ b/Content.IntegrationTests/Tests/Toolshed/AdminTest.cs @@ -25,6 +25,11 @@ public sealed class AdminTest : ToolshedTest if (ignored.Contains(cmd.Cmd.GetType().Assembly)) continue; + // Only care about content commands. + var assemblyName = cmd.Cmd.GetType().Assembly.FullName; + if (assemblyName == null || !assemblyName.StartsWith("Content.")) + continue; + Assert.That(admin.TryGetCommandFlags(cmd, out _), $"Command does not have admin permissions set up: {cmd.FullName()}"); } }); diff --git a/Content.Server/Access/Systems/AgentIDCardSystem.cs b/Content.Server/Access/Systems/AgentIDCardSystem.cs index 0df760baef..1706908e72 100644 --- a/Content.Server/Access/Systems/AgentIDCardSystem.cs +++ b/Content.Server/Access/Systems/AgentIDCardSystem.cs @@ -45,7 +45,7 @@ namespace Content.Server.Access.Systems if (!TryComp(ent, out var idCardComp)) return; - _prototypeManager.TryIndex(args.Args.ChameleonOutfit.Job, out var jobProto); + _prototypeManager.Resolve(args.Args.ChameleonOutfit.Job, out var jobProto); var jobIcon = args.Args.ChameleonOutfit.Icon ?? jobProto?.Icon; var jobName = args.Args.ChameleonOutfit.Name ?? jobProto?.Name ?? ""; @@ -130,7 +130,7 @@ namespace Content.Server.Access.Systems if (!TryComp(uid, out var idCard)) return; - if (!_prototypeManager.TryIndex(args.JobIconId, out var jobIcon)) + if (!_prototypeManager.Resolve(args.JobIconId, out var jobIcon)) return; _cardSystem.TryChangeJobIcon(uid, jobIcon, idCard); diff --git a/Content.Server/Access/Systems/IdCardConsoleSystem.cs b/Content.Server/Access/Systems/IdCardConsoleSystem.cs index 62dfddbb58..13f2430b3d 100644 --- a/Content.Server/Access/Systems/IdCardConsoleSystem.cs +++ b/Content.Server/Access/Systems/IdCardConsoleSystem.cs @@ -98,7 +98,7 @@ public sealed class IdCardConsoleSystem : SharedIdCardConsoleSystem var targetIdComponent = Comp(targetId); var targetAccessComponent = Comp(targetId); - var jobProto = targetIdComponent.JobPrototype ?? new ProtoId(string.Empty); + var jobProto = targetIdComponent.JobPrototype ?? new ProtoId(string.Empty); if (TryComp(targetId, out var keyStorage) && keyStorage.Key is { } key && _record.TryGetRecord(key, out var record)) @@ -130,7 +130,7 @@ public sealed class IdCardConsoleSystem : SharedIdCardConsoleSystem string newFullName, string newJobTitle, List> newAccessList, - ProtoId newJobProto, + ProtoId newJobProto, EntityUid player, IdCardConsoleComponent? component = null) { @@ -144,7 +144,7 @@ public sealed class IdCardConsoleSystem : SharedIdCardConsoleSystem _idCard.TryChangeJobTitle(targetId, newJobTitle, player: player); if (_prototype.TryIndex(newJobProto, out var job) - && _prototype.TryIndex(job.Icon, out var jobIcon)) + && _prototype.Resolve(job.Icon, out var jobIcon)) { _idCard.TryChangeJobIcon(targetId, jobIcon, player: player); _idCard.TryChangeJobDepartment(targetId, job); diff --git a/Content.Server/Access/Systems/PresetIdCardSystem.cs b/Content.Server/Access/Systems/PresetIdCardSystem.cs index 426e523243..6d9f61d941 100644 --- a/Content.Server/Access/Systems/PresetIdCardSystem.cs +++ b/Content.Server/Access/Systems/PresetIdCardSystem.cs @@ -82,7 +82,7 @@ public sealed class PresetIdCardSystem : EntitySystem _cardSystem.TryChangeJobTitle(uid, job.LocalizedName); _cardSystem.TryChangeJobDepartment(uid, job); - if (_prototypeManager.TryIndex(job.Icon, out var jobIcon)) + if (_prototypeManager.Resolve(job.Icon, out var jobIcon)) _cardSystem.TryChangeJobIcon(uid, jobIcon); } } diff --git a/Content.Server/Administration/Commands/ExplosionCommand.cs b/Content.Server/Administration/Commands/ExplosionCommand.cs index 787886f164..6f9e89243d 100644 --- a/Content.Server/Administration/Commands/ExplosionCommand.cs +++ b/Content.Server/Administration/Commands/ExplosionCommand.cs @@ -118,7 +118,7 @@ public sealed class ExplosionCommand : LocalizedEntityCommands return; } } - else if (!_prototypeManager.TryIndex(ExplosionSystem.DefaultExplosionPrototypeId, out type)) + else if (!_prototypeManager.Resolve(ExplosionSystem.DefaultExplosionPrototypeId, out type)) { // no prototype was specified, so lets default to whichever one was defined first type = _prototypeManager.EnumeratePrototypes().FirstOrDefault(); diff --git a/Content.Server/Advertise/EntitySystems/SpeakOnUIClosedSystem.cs b/Content.Server/Advertise/EntitySystems/SpeakOnUIClosedSystem.cs index 3fca640d4a..94b20c7b77 100644 --- a/Content.Server/Advertise/EntitySystems/SpeakOnUIClosedSystem.cs +++ b/Content.Server/Advertise/EntitySystems/SpeakOnUIClosedSystem.cs @@ -38,7 +38,7 @@ public sealed partial class SpeakOnUIClosedSystem : SharedSpeakOnUIClosedSystem if (!entity.Comp.Enabled) return false; - if (!_prototypeManager.TryIndex(entity.Comp.Pack, out var messagePack)) + if (!_prototypeManager.Resolve(entity.Comp.Pack, out var messagePack)) return false; var message = Loc.GetString(_random.Pick(messagePack.Values), ("name", Name(entity))); diff --git a/Content.Server/Anomaly/Effects/InnerBodyAnomalySystem.cs b/Content.Server/Anomaly/Effects/InnerBodyAnomalySystem.cs index bed2499298..d6039fac01 100644 --- a/Content.Server/Anomaly/Effects/InnerBodyAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/InnerBodyAnomalySystem.cs @@ -86,7 +86,7 @@ public sealed class InnerBodyAnomalySystem : SharedInnerBodyAnomalySystem private void AddAnomalyToBody(Entity ent) { - if (!_proto.TryIndex(ent.Comp.InjectionProto, out var injectedAnom)) + if (!_proto.Resolve(ent.Comp.InjectionProto, out var injectedAnom)) return; if (ent.Comp.Injected) @@ -210,7 +210,7 @@ public sealed class InnerBodyAnomalySystem : SharedInnerBodyAnomalySystem if (!ent.Comp.Injected) return; - if (_proto.TryIndex(ent.Comp.InjectionProto, out var injectedAnom)) + if (_proto.Resolve(ent.Comp.InjectionProto, out var injectedAnom)) EntityManager.RemoveComponents(ent, injectedAnom.Components); _stun.TryUpdateParalyzeDuration(ent, TimeSpan.FromSeconds(ent.Comp.StunDuration)); diff --git a/Content.Server/Atmos/Components/DeltaPressureComponent.cs b/Content.Server/Atmos/Components/DeltaPressureComponent.cs index f90c133dea..8031cd876d 100644 --- a/Content.Server/Atmos/Components/DeltaPressureComponent.cs +++ b/Content.Server/Atmos/Components/DeltaPressureComponent.cs @@ -1,6 +1,7 @@ using Content.Server.Atmos.EntitySystems; using Content.Shared.Damage; using Content.Shared.FixedPoint; +using Content.Shared.Guidebook; namespace Content.Server.Atmos.Components; @@ -87,6 +88,7 @@ public sealed partial class DeltaPressureComponent : Component /// The minimum difference in pressure between any side required for the entity to start taking damage. /// [DataField] + [GuidebookData] public float MinPressureDelta = 7500; /// diff --git a/Content.Server/Audio/Jukebox/JukeboxSystem.cs b/Content.Server/Audio/Jukebox/JukeboxSystem.cs index 3535f6b238..81d71894b8 100644 --- a/Content.Server/Audio/Jukebox/JukeboxSystem.cs +++ b/Content.Server/Audio/Jukebox/JukeboxSystem.cs @@ -51,7 +51,7 @@ public sealed class JukeboxSystem : SharedJukeboxSystem component.AudioStream = Audio.Stop(component.AudioStream); if (string.IsNullOrEmpty(component.SelectedSongId) || - !_protoManager.TryIndex(component.SelectedSongId, out var jukeboxProto)) + !_protoManager.Resolve(component.SelectedSongId, out var jukeboxProto)) { return; } diff --git a/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs b/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs index 934517eadc..c2c2a8365c 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs @@ -113,7 +113,7 @@ public sealed partial class CargoSystem public void SetupBountyLabel(EntityUid uid, EntityUid stationId, CargoBountyData bounty, PaperComponent? paper = null, CargoBountyLabelComponent? label = null) { - if (!Resolve(uid, ref paper, ref label) || !_protoMan.TryIndex(bounty.Bounty, out var prototype)) + if (!Resolve(uid, ref paper, ref label) || !_protoMan.Resolve(bounty.Bounty, out var prototype)) return; label.Id = bounty.Id; @@ -156,7 +156,7 @@ public sealed partial class CargoSystem if (!TryGetBountyFromId(station, component.Id, out var bounty, database)) return; - if (!_protoMan.TryIndex(bounty.Value.Bounty, out var bountyPrototype) || + if (!_protoMan.Resolve(bounty.Value.Bounty, out var bountyPrototype) || !IsBountyComplete(container.Owner, bountyPrototype)) return; @@ -275,7 +275,7 @@ public sealed partial class CargoSystem public bool IsBountyComplete(EntityUid container, CargoBountyData data, out HashSet bountyEntities) { - if (!_protoMan.TryIndex(data.Bounty, out var proto)) + if (!_protoMan.Resolve(data.Bounty, out var proto)) { bountyEntities = new(); return false; diff --git a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs index febe093d98..0b5f015593 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs @@ -167,7 +167,7 @@ namespace Content.Server.Cargo.Systems // Find our order again. It might have been dispatched or approved already var order = orderDatabase.Orders[component.Account].Find(order => args.OrderId == order.OrderId && !order.Approved); - if (order == null || !_protoMan.TryIndex(order.Account, out var account)) + if (order == null || !_protoMan.Resolve(order.Account, out var account)) { return; } @@ -322,7 +322,7 @@ namespace Content.Server.Cargo.Systems private void OnAddOrderMessageSlipPrinter(EntityUid uid, CargoOrderConsoleComponent component, CargoConsoleAddOrderMessage args, CargoProductPrototype product) { - if (!_protoMan.TryIndex(component.Account, out var account)) + if (!_protoMan.Resolve(component.Account, out var account)) return; if (Timing.CurTime < component.NextPrintTime) diff --git a/Content.Server/Chat/Managers/ChatSanitizationManager.cs b/Content.Server/Chat/Managers/ChatSanitizationManager.cs index 106e5313e6..caf084446e 100644 --- a/Content.Server/Chat/Managers/ChatSanitizationManager.cs +++ b/Content.Server/Chat/Managers/ChatSanitizationManager.cs @@ -78,7 +78,6 @@ public sealed class ChatSanitizationManager : IChatSanitizationManager Entry("rofl", "chatsan-laughs"), Entry("o7", "chatsan-salutes"), Entry(";_;7", "chatsan-tearfully-salutes"), - Entry("idk", "chatsan-shrugs"), Entry(";)", "chatsan-winks"), Entry(";]", "chatsan-winks"), Entry("(;", "chatsan-winks"), diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index 2dc001a9c9..b073cc0e69 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -433,7 +433,7 @@ public sealed partial class ChatSystem : SharedChatSystem RaiseLocalEvent(source, nameEv); name = nameEv.VoiceName; // Check for a speech verb override - if (nameEv.SpeechVerb != null && _prototypeManager.TryIndex(nameEv.SpeechVerb, out var proto)) + if (nameEv.SpeechVerb != null && _prototypeManager.Resolve(nameEv.SpeechVerb, out var proto)) speech = proto; } diff --git a/Content.Server/Chemistry/EntitySystems/TransformableContainerSystem.cs b/Content.Server/Chemistry/EntitySystems/TransformableContainerSystem.cs index 48d547d1e0..d5b220c3e8 100644 --- a/Content.Server/Chemistry/EntitySystems/TransformableContainerSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/TransformableContainerSystem.cs @@ -66,7 +66,7 @@ public sealed class TransformableContainerSystem : EntitySystem private void OnRefreshNameModifiers(Entity entity, ref RefreshNameModifiersEvent args) { - if (_prototypeManager.TryIndex(entity.Comp.CurrentReagent, out var currentReagent)) + if (_prototypeManager.Resolve(entity.Comp.CurrentReagent, out var currentReagent)) { args.AddModifier("transformable-container-component-glass", priority: -1, ("reagent", currentReagent.LocalizedName)); } diff --git a/Content.Server/Cloning/CloningSystem.cs b/Content.Server/Cloning/CloningSystem.cs index b0d62be523..6e0f38ad51 100644 --- a/Content.Server/Cloning/CloningSystem.cs +++ b/Content.Server/Cloning/CloningSystem.cs @@ -43,13 +43,13 @@ public sealed partial class CloningSystem : SharedCloningSystem public bool TryCloning(EntityUid original, MapCoordinates? coords, ProtoId settingsId, [NotNullWhen(true)] out EntityUid? clone) { clone = null; - if (!_prototype.TryIndex(settingsId, out var settings)) + if (!_prototype.Resolve(settingsId, out var settings)) return false; // invalid settings if (!TryComp(original, out var humanoid)) return false; // whatever body was to be cloned, was not a humanoid - if (!_prototype.TryIndex(humanoid.Species, out var speciesPrototype)) + if (!_prototype.Resolve(humanoid.Species, out var speciesPrototype)) return false; // invalid species var attemptEv = new CloningAttemptEvent(settings); diff --git a/Content.Server/Construction/ConstructionSystem.Guided.cs b/Content.Server/Construction/ConstructionSystem.Guided.cs index 157e421158..42c64db991 100644 --- a/Content.Server/Construction/ConstructionSystem.Guided.cs +++ b/Content.Server/Construction/ConstructionSystem.Guided.cs @@ -145,7 +145,7 @@ namespace Content.Server.Construction return guide; // If the graph doesn't actually exist, do nothing. - if (!PrototypeManager.TryIndex(construction.Graph, out ConstructionGraphPrototype? graph)) + if (!PrototypeManager.Resolve(construction.Graph, out ConstructionGraphPrototype? graph)) return null; // If either the start node or the target node are missing, do nothing. diff --git a/Content.Server/Damage/ForceSay/DamageForceSaySystem.cs b/Content.Server/Damage/ForceSay/DamageForceSaySystem.cs index 8dfe665541..a46d42f3e3 100644 --- a/Content.Server/Damage/ForceSay/DamageForceSaySystem.cs +++ b/Content.Server/Damage/ForceSay/DamageForceSaySystem.cs @@ -61,7 +61,7 @@ public sealed class DamageForceSaySystem : EntitySystem var ev = new BeforeForceSayEvent(component.ForceSayStringDataset); RaiseLocalEvent(uid, ev); - if (!_prototype.TryIndex(ev.Prefix, out var prefixList)) + if (!_prototype.Resolve(ev.Prefix, out var prefixList)) return; var suffix = Loc.GetString(_random.Pick(prefixList.Values)); diff --git a/Content.Server/Damage/Systems/ExaminableDamageSystem.cs b/Content.Server/Damage/Systems/ExaminableDamageSystem.cs index 155cf08962..b0dfae71b7 100644 --- a/Content.Server/Damage/Systems/ExaminableDamageSystem.cs +++ b/Content.Server/Damage/Systems/ExaminableDamageSystem.cs @@ -20,7 +20,7 @@ public sealed class ExaminableDamageSystem : EntitySystem private void OnExamine(Entity ent, ref ExaminedEvent args) { - if (!_prototype.TryIndex(ent.Comp.Messages, out var proto) || proto.Values.Count == 0) + if (!_prototype.Resolve(ent.Comp.Messages, out var proto) || proto.Values.Count == 0) return; var percent = GetDamagePercent(ent); diff --git a/Content.Server/Delivery/DeliverySystem.cs b/Content.Server/Delivery/DeliverySystem.cs index 5fc9b53316..72d9427dff 100644 --- a/Content.Server/Delivery/DeliverySystem.cs +++ b/Content.Server/Delivery/DeliverySystem.cs @@ -102,7 +102,7 @@ public sealed partial class DeliverySystem : SharedDeliverySystem if (ent.Comp.WasPenalized) return; - if (!_protoMan.TryIndex(ent.Comp.PenaltyBankAccount, out var accountInfo)) + if (!_protoMan.Resolve(ent.Comp.PenaltyBankAccount, out var accountInfo)) return; var multiplier = GetDeliveryMultiplier(ent); diff --git a/Content.Server/Destructible/Thresholds/Behaviors/WeightedSpawnEntityBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/WeightedSpawnEntityBehavior.cs index 96fa4dd438..4a275ac895 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/WeightedSpawnEntityBehavior.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/WeightedSpawnEntityBehavior.cs @@ -66,7 +66,7 @@ public sealed partial class WeightedSpawnEntityBehavior : IThresholdBehavior if (SpawnAfter != 0) { // if it fails to get the spawner, this won't ever work so just return - if (!system.PrototypeManager.TryIndex(TempEntityProtoId, out var tempSpawnerProto)) + if (!system.PrototypeManager.Resolve(TempEntityProtoId, out var tempSpawnerProto)) return; // spawn the spawner, assign it a lifetime, and assign the entity that it will spawn when despawned diff --git a/Content.Server/EntityEffects/EntityEffectSystem.cs b/Content.Server/EntityEffects/EntityEffectSystem.cs index f423a43261..4e447c7fab 100644 --- a/Content.Server/EntityEffects/EntityEffectSystem.cs +++ b/Content.Server/EntityEffects/EntityEffectSystem.cs @@ -949,9 +949,7 @@ public sealed class EntityEffectSystem : EntitySystem return; var targetProto = _random.Pick(plantholder.Seed.MutationPrototypes); - _protoManager.TryIndex(targetProto, out SeedPrototype? protoSeed); - - if (protoSeed == null) + if (!_protoManager.TryIndex(targetProto, out SeedPrototype? protoSeed)) { Log.Error($"Seed prototype could not be found: {targetProto}!"); return; diff --git a/Content.Server/GameTicking/Rules/AntagLoadProfileRuleSystem.cs b/Content.Server/GameTicking/Rules/AntagLoadProfileRuleSystem.cs index 3527e2a11c..84f87a487b 100644 --- a/Content.Server/GameTicking/Rules/AntagLoadProfileRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/AntagLoadProfileRuleSystem.cs @@ -32,7 +32,7 @@ public sealed class AntagLoadProfileRuleSystem : GameRuleSystem(SharedHumanoidAppearanceSystem.DefaultSpecies); } diff --git a/Content.Server/GameTicking/Rules/VariationPass/PuddleMessVariationPassSystem.cs b/Content.Server/GameTicking/Rules/VariationPass/PuddleMessVariationPassSystem.cs index 2895416a7f..c81001daac 100644 --- a/Content.Server/GameTicking/Rules/VariationPass/PuddleMessVariationPassSystem.cs +++ b/Content.Server/GameTicking/Rules/VariationPass/PuddleMessVariationPassSystem.cs @@ -17,7 +17,7 @@ public sealed class PuddleMessVariationPassSystem : VariationPassSystem entity, ref GhostRoleRadioMessage args) { - if (!_prototype.TryIndex(args.ProtoId, out var ghostRoleProto)) + if (!_prototype.Resolve(args.ProtoId, out var ghostRoleProto)) return; // if the prototype chosen isn't actually part of the selectable options, ignore it diff --git a/Content.Server/Ghost/SpookySpeakerSystem.cs b/Content.Server/Ghost/SpookySpeakerSystem.cs index 5a83ca39b1..ce3a2705a0 100644 --- a/Content.Server/Ghost/SpookySpeakerSystem.cs +++ b/Content.Server/Ghost/SpookySpeakerSystem.cs @@ -32,7 +32,7 @@ public sealed class SpookySpeakerSystem : EntitySystem if (curTime < entity.Comp.NextSpeakTime) return; - if (!_proto.TryIndex(entity.Comp.MessageSet, out var messages)) + if (!_proto.Resolve(entity.Comp.MessageSet, out var messages)) return; // Grab a random localized message from the set diff --git a/Content.Server/Implants/ChameleonControllerSystem.cs b/Content.Server/Implants/ChameleonControllerSystem.cs index 930f2e3156..e884e181ee 100644 --- a/Content.Server/Implants/ChameleonControllerSystem.cs +++ b/Content.Server/Implants/ChameleonControllerSystem.cs @@ -49,8 +49,8 @@ public sealed class ChameleonControllerSystem : SharedChameleonControllerSystem { var outfitPrototype = _proto.Index(outfit); - _proto.TryIndex(outfitPrototype.Job, out var jobPrototype); - _proto.TryIndex(outfitPrototype.StartingGear, out var startingGearPrototype); + _proto.Resolve(outfitPrototype.Job, out var jobPrototype); + _proto.Resolve(outfitPrototype.StartingGear, out var startingGearPrototype); GetJobEquipmentInformation(jobPrototype, user, out var customRoleLoadout, out var defaultRoleLoadout, out var jobStartingGearPrototype); @@ -81,7 +81,7 @@ public sealed class ChameleonControllerSystem : SharedChameleonControllerSystem if (jobPrototype == null) return; - _proto.TryIndex(jobPrototype.StartingGear, out jobStartingGearPrototype); + _proto.Resolve(jobPrototype.StartingGear, out jobStartingGearPrototype); if (!TryComp(user, out var actorComponent)) return; diff --git a/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs b/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs index f5c8c4d0d8..c2d2614a0a 100644 --- a/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs @@ -725,7 +725,7 @@ namespace Content.Server.Kitchen.EntitySystems { foreach (ProtoId recipeId in ent.Comp.ProvidedRecipes) { - if (_prototype.TryIndex(recipeId, out var recipeProto)) + if (_prototype.Resolve(recipeId, out var recipeProto)) { args.Recipes.Add(recipeProto); } diff --git a/Content.Server/Lathe/LatheSystem.cs b/Content.Server/Lathe/LatheSystem.cs index 02abb07791..97602ad2ba 100644 --- a/Content.Server/Lathe/LatheSystem.cs +++ b/Content.Server/Lathe/LatheSystem.cs @@ -137,7 +137,7 @@ namespace Content.Server.Lathe var recipes = GetAvailableRecipes(uid, component, true); foreach (var id in recipes) { - if (!_proto.TryIndex(id, out var proto)) + if (!_proto.Resolve(id, out var proto)) continue; foreach (var (mat, _) in proto.Materials) { diff --git a/Content.Server/NameIdentifier/NameIdentifierSystem.cs b/Content.Server/NameIdentifier/NameIdentifierSystem.cs index c0b9beaa9a..27e25a4b4f 100644 --- a/Content.Server/NameIdentifier/NameIdentifierSystem.cs +++ b/Content.Server/NameIdentifier/NameIdentifierSystem.cs @@ -92,7 +92,7 @@ public sealed class NameIdentifierSystem : EntitySystem if (ent.Comp.Group is null) return; - if (!_prototypeManager.TryIndex(ent.Comp.Group, out var group)) + if (!_prototypeManager.Resolve(ent.Comp.Group, out var group)) return; int id; @@ -131,7 +131,7 @@ public sealed class NameIdentifierSystem : EntitySystem if (ent.Comp.LifeStage > ComponentLifeStage.Running) return; - if (!_prototypeManager.TryIndex(ent.Comp.Group, out var group)) + if (!_prototypeManager.Resolve(ent.Comp.Group, out var group)) return; var format = group.FullName ? "name-identifier-format-full" : "name-identifier-format-append"; diff --git a/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs b/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs index e85393e6f7..7164c701f5 100644 --- a/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs @@ -21,12 +21,13 @@ namespace Content.Server.Nutrition.EntitySystems [UsedImplicitly] public sealed class CreamPieSystem : SharedCreamPieSystem { - [Dependency] private readonly SharedSolutionContainerSystem _solutions = default!; - [Dependency] private readonly PuddleSystem _puddle = default!; + [Dependency] private readonly IngestionSystem _ingestion = default!; [Dependency] private readonly ItemSlotsSystem _itemSlots = default!; - [Dependency] private readonly TriggerSystem _trigger = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly PuddleSystem _puddle = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedSolutionContainerSystem _solutions = default!; + [Dependency] private readonly TriggerSystem _trigger = default!; public override void Initialize() { @@ -39,26 +40,23 @@ namespace Content.Server.Nutrition.EntitySystems SubscribeLocalEvent(OnRejuvenate); } - protected override void SplattedCreamPie(EntityUid uid, CreamPieComponent creamPie) + protected override void SplattedCreamPie(Entity entity) { // The entity is deleted, so play the sound at its position rather than parenting - var coordinates = Transform(uid).Coordinates; - _audio.PlayPvs(_audio.ResolveSound(creamPie.Sound), coordinates, AudioParams.Default.WithVariation(0.125f)); + var coordinates = Transform(entity).Coordinates; + _audio.PlayPvs(_audio.ResolveSound(entity.Comp1.Sound), coordinates, AudioParams.Default.WithVariation(0.125f)); - if (TryComp(uid, out FoodComponent? foodComp)) + if (Resolve(entity, ref entity.Comp2, false)) { - if (_solutions.TryGetSolution(uid, foodComp.Solution, out _, out var solution)) - { - _puddle.TrySpillAt(uid, solution, out _, false); - } - foreach (var trash in foodComp.Trash) - { - Spawn(trash, Transform(uid).Coordinates); - } - } - ActivatePayload(uid); + if (_solutions.TryGetSolution(entity.Owner, entity.Comp2.Solution, out _, out var solution)) + _puddle.TrySpillAt(entity.Owner, solution, out _, false); - QueueDel(uid); + _ingestion.SpawnTrash((entity, entity.Comp2)); + } + + ActivatePayload(entity); + + QueueDel(entity); } private void OnConsume(Entity entity, ref ConsumeDoAfterEvent args) diff --git a/Content.Server/Parallax/BiomeSystem.cs b/Content.Server/Parallax/BiomeSystem.cs index 496cb387e8..6974bc1fda 100644 --- a/Content.Server/Parallax/BiomeSystem.cs +++ b/Content.Server/Parallax/BiomeSystem.cs @@ -127,7 +127,7 @@ public sealed partial class BiomeSystem : SharedBiomeSystem SetSeed(uid, component, _random.Next()); } - if (_proto.TryIndex(component.Template, out var biome)) + if (_proto.Resolve(component.Template, out var biome)) SetTemplate(uid, component, biome); var xform = Transform(uid); diff --git a/Content.Server/Players/JobWhitelist/JobWhitelistManager.cs b/Content.Server/Players/JobWhitelist/JobWhitelistManager.cs index 04289a4098..72f18e00cb 100644 --- a/Content.Server/Players/JobWhitelist/JobWhitelistManager.cs +++ b/Content.Server/Players/JobWhitelist/JobWhitelistManager.cs @@ -63,7 +63,7 @@ public sealed class JobWhitelistManager : IPostInjectInit if (!_config.GetCVar(CCVars.GameRoleWhitelist)) return true; - if (!_prototypes.TryIndex(job, out var jobPrototype) || + if (!_prototypes.Resolve(job, out var jobPrototype) || !jobPrototype.Whitelisted) { return true; diff --git a/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs b/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs index e75801d6de..d55920f83c 100644 --- a/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs +++ b/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs @@ -238,7 +238,7 @@ public sealed class PlayTimeTrackingSystem : EntitySystem for (var i = 0; i < jobs.Count; i++) { - if (_prototypes.TryIndex(jobs[i], out var job) + if (_prototypes.Resolve(jobs[i], out var job) && JobRequirements.TryRequirementsMet(job, playTimes, out _, EntityManager, _prototypes, (HumanoidCharacterProfile?) _preferencesManager.GetPreferences(userId).SelectedCharacter)) { continue; diff --git a/Content.Server/Polymorph/Components/PolymorphedEntityComponent.cs b/Content.Server/Polymorph/Components/PolymorphedEntityComponent.cs index 7e3437a908..03ab7b6c1f 100644 --- a/Content.Server/Polymorph/Components/PolymorphedEntityComponent.cs +++ b/Content.Server/Polymorph/Components/PolymorphedEntityComponent.cs @@ -20,6 +20,12 @@ public sealed partial class PolymorphedEntityComponent : Component [DataField(required: true)] public EntityUid? Parent; + /// + /// Whether this polymorph has been reverted. + /// + [DataField] + public bool Reverted; + /// /// The amount of time that has passed since the entity was created /// used for tracking the duration diff --git a/Content.Server/Polymorph/Systems/PolymorphSystem.cs b/Content.Server/Polymorph/Systems/PolymorphSystem.cs index ee7fdf2b22..9547bc1ea5 100644 --- a/Content.Server/Polymorph/Systems/PolymorphSystem.cs +++ b/Content.Server/Polymorph/Systems/PolymorphSystem.cs @@ -112,7 +112,7 @@ public sealed partial class PolymorphSystem : EntitySystem private void OnPolymorphActionEvent(Entity ent, ref PolymorphActionEvent args) { - if (!_proto.TryIndex(args.ProtoId, out var prototype) || args.Handled) + if (!_proto.Resolve(args.ProtoId, out var prototype) || args.Handled) return; PolymorphEntity(ent, prototype.Configuration); @@ -128,12 +128,11 @@ public sealed partial class PolymorphSystem : EntitySystem private void OnBeforeFullySliced(Entity ent, ref BeforeFullySlicedEvent args) { - var (_, comp) = ent; - if (comp.Configuration.RevertOnEat) - { - args.Cancel(); - Revert((ent, ent)); - } + if (ent.Comp.Reverted || !ent.Comp.Configuration.RevertOnEat) + return; + + args.Cancel(); + Revert((ent, ent)); } /// @@ -142,14 +141,17 @@ public sealed partial class PolymorphSystem : EntitySystem /// private void OnDestruction(Entity ent, ref DestructionEventArgs args) { - if (ent.Comp.Configuration.RevertOnDeath) - { - Revert((ent, ent)); - } + if (ent.Comp.Reverted || !ent.Comp.Configuration.RevertOnDeath) + return; + + Revert((ent, ent)); } private void OnPolymorphedTerminating(Entity ent, ref EntityTerminatingEvent args) { + if (ent.Comp.Reverted) + return; + if (ent.Comp.Configuration.RevertOnDelete) Revert(ent.AsNullable()); @@ -298,8 +300,6 @@ public sealed partial class PolymorphSystem : EntitySystem if (component.Parent is not { } parent) return null; - // Clear our reference to the original entity - component.Parent = null; if (Deleted(parent)) return null; @@ -316,6 +316,8 @@ public sealed partial class PolymorphSystem : EntitySystem _transform.SetParent(parent, parentXform, uidXform.ParentUid); _transform.SetCoordinates(parent, parentXform, uidXform.Coordinates, uidXform.LocalRotation); + component.Reverted = true; + if (component.Configuration.TransferDamage && TryComp(parent, out var damageParent) && _mobThreshold.GetScaledDamage(uid, parent, out var damage) && @@ -387,7 +389,7 @@ public sealed partial class PolymorphSystem : EntitySystem if (target.Comp.PolymorphActions.ContainsKey(id)) return; - if (!_proto.TryIndex(id, out var polyProto)) + if (!_proto.Resolve(id, out var polyProto)) return; var entProto = _proto.Index(polyProto.Configuration.Entity); diff --git a/Content.Server/Polymorph/Toolshed/PolymorphCommand.cs b/Content.Server/Polymorph/Toolshed/PolymorphCommand.cs index db1e1faad6..23caff1e5d 100644 --- a/Content.Server/Polymorph/Toolshed/PolymorphCommand.cs +++ b/Content.Server/Polymorph/Toolshed/PolymorphCommand.cs @@ -25,8 +25,7 @@ public sealed class PolymorphCommand : ToolshedCommand { _system ??= GetSys(); - if (!_proto.TryIndex(protoId, out var prototype)) - return null; + var prototype = _proto.Index(protoId); return _system.PolymorphEntity(input, prototype.Configuration); } diff --git a/Content.Server/Power/Components/ApcPowerReceiverComponent.cs b/Content.Server/Power/Components/ApcPowerReceiverComponent.cs index bfd096a253..80be62eaec 100644 --- a/Content.Server/Power/Components/ApcPowerReceiverComponent.cs +++ b/Content.Server/Power/Components/ApcPowerReceiverComponent.cs @@ -33,8 +33,6 @@ namespace Content.Server.Power.Components set { _needsPower = value; - // Reset this so next tick will do a power update. - Recalculate = true; } } @@ -51,9 +49,6 @@ namespace Content.Server.Power.Components set => NetworkLoad.Enabled = !value; } - // TODO Is this needed? It forces a PowerChangedEvent when NeedsPower is toggled even if it changes to the same state. - public bool Recalculate; - [ViewVariables] public PowerState.Load NetworkLoad { get; } = new PowerState.Load { diff --git a/Content.Server/Power/EntitySystems/PowerNetSystem.cs b/Content.Server/Power/EntitySystems/PowerNetSystem.cs index 1262e231d7..6a69550fcf 100644 --- a/Content.Server/Power/EntitySystems/PowerNetSystem.cs +++ b/Content.Server/Power/EntitySystems/PowerNetSystem.cs @@ -347,6 +347,10 @@ namespace Content.Server.Power.EntitySystems // Check if the entity has an internal battery if (_apcBatteryQuery.TryComp(uid, out var apcBattery) && _batteryQuery.TryComp(uid, out var battery)) { + metadata = MetaData(uid); + if (Paused(uid, metadata)) + continue; + apcReceiver.Load = apcBattery.IdleLoad; // Try to draw power from the battery if there isn't sufficient external power @@ -369,7 +373,6 @@ namespace Content.Server.Power.EntitySystems if (apcBattery.Enabled != enableBattery) { apcBattery.Enabled = enableBattery; - metadata = MetaData(uid); Dirty(uid, apcBattery, metadata); var apcBatteryEv = new ApcPowerReceiverBatteryChangedEvent(enableBattery); @@ -382,14 +385,13 @@ namespace Content.Server.Power.EntitySystems } // If new value is the same as the old, then exit - if (!apcReceiver.Recalculate && apcReceiver.Powered == powered) + if (apcReceiver.Powered == powered) continue; metadata ??= MetaData(uid); if (Paused(uid, metadata)) continue; - apcReceiver.Recalculate = false; apcReceiver.Powered = powered; Dirty(uid, apcReceiver, metadata); diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.Biome.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.Biome.cs index 48adb8af18..10f11bb854 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.Biome.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.Biome.cs @@ -16,7 +16,7 @@ public sealed partial class DungeonJob /// private async Task PostGen(BiomeDunGen dunGen, Dungeon dungeon, HashSet reservedTiles, Random random) { - if (!_prototype.TryIndex(dunGen.BiomeTemplate, out var indexedBiome)) + if (!_prototype.Resolve(dunGen.BiomeTemplate, out var indexedBiome)) return; var biomeSystem = _entManager.System(); diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.MiddleConnection.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.MiddleConnection.cs index d6e3c09d62..451bb8baee 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.MiddleConnection.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.MiddleConnection.cs @@ -57,7 +57,7 @@ public sealed partial class DungeonJob var roomConnections = new Dictionary>(); var tileDef = _tileDefManager[gen.Tile]; - _prototype.TryIndex(gen.Flank, out var flankContents); + _prototype.Resolve(gen.Flank, out var flankContents); var contents = _prototype.Index(gen.Contents); foreach (var (room, border) in roomBorders) diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.Ore.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.Ore.cs index 78ab2b7a0d..9253191272 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.Ore.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.Ore.cs @@ -72,7 +72,7 @@ public sealed partial class DungeonJob var remapping = new Dictionary(); // TODO: Move this to engine - if (_prototype.TryIndex(gen.Entity, out var proto) && + if (_prototype.Resolve(gen.Entity, out var proto) && proto.Components.TryGetComponent("EntityRemap", out var comps)) { var remappingComp = (EntityRemapComponent) comps; diff --git a/Content.Server/Radiation/Systems/RadiationProtectionSystem.cs b/Content.Server/Radiation/Systems/RadiationProtectionSystem.cs index 5222c31bfe..a32fa810c9 100644 --- a/Content.Server/Radiation/Systems/RadiationProtectionSystem.cs +++ b/Content.Server/Radiation/Systems/RadiationProtectionSystem.cs @@ -17,7 +17,7 @@ public sealed class RadiationProtectionSystem : EntitySystem private void OnInit(EntityUid uid, RadiationProtectionComponent component, ComponentInit args) { - if (!_prototypeManager.TryIndex(component.RadiationProtectionModifierSetId, out var modifier)) + if (!_prototypeManager.Resolve(component.RadiationProtectionModifierSetId, out var modifier)) return; var buffComp = EnsureComp(uid); // add the damage modifier if it isn't in the dict yet diff --git a/Content.Server/Radio/EntitySystems/RadioSystem.cs b/Content.Server/Radio/EntitySystems/RadioSystem.cs index bdc368fa93..6af52b980f 100644 --- a/Content.Server/Radio/EntitySystems/RadioSystem.cs +++ b/Content.Server/Radio/EntitySystems/RadioSystem.cs @@ -84,7 +84,7 @@ public sealed class RadioSystem : EntitySystem name = FormattedMessage.EscapeText(name); SpeechVerbPrototype speech; - if (evt.SpeechVerb != null && _prototype.TryIndex(evt.SpeechVerb, out var evntProto)) + if (evt.SpeechVerb != null && _prototype.Resolve(evt.SpeechVerb, out var evntProto)) speech = evntProto; else speech = _chat.GetSpeechVerb(messageSource, message); diff --git a/Content.Server/Roles/RoleSystem.cs b/Content.Server/Roles/RoleSystem.cs index 346e13bd07..71fb8a9cb5 100644 --- a/Content.Server/Roles/RoleSystem.cs +++ b/Content.Server/Roles/RoleSystem.cs @@ -49,7 +49,7 @@ public sealed class RoleSystem : SharedRoleSystem if (!Player.TryGetSessionById(mind.UserId, out var session)) return; - if (!_proto.TryIndex(mind.RoleType, out var proto)) + if (!_proto.Resolve(mind.RoleType, out var proto)) return; var roleText = Loc.GetString(proto.Name); diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs index e07b522c5a..c8cdf17d30 100644 --- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs +++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs @@ -9,9 +9,9 @@ using Content.Shared.DeviceNetwork; using Content.Shared.DeviceNetwork.Components; using Content.Shared.Popups; using Content.Shared.Shuttles.BUIStates; +using Content.Shared.Shuttles.Components; using Content.Shared.Shuttles.Events; using Content.Shared.Shuttles.Systems; -using Content.Shared.UserInterface; using Robust.Shared.Map; using Robust.Shared.Player; using Robust.Shared.Prototypes; @@ -86,24 +86,13 @@ public sealed partial class EmergencyShuttleSystem private void InitializeEmergencyConsole() { - Subs.CVar(_configManager, CCVars.EmergencyShuttleMinTransitTime, SetMinTransitTime, true); - Subs.CVar(_configManager, CCVars.EmergencyShuttleMaxTransitTime, SetMaxTransitTime, true); - Subs.CVar(_configManager, CCVars.EmergencyShuttleAuthorizeTime, SetAuthorizeTime, true); + Subs.CVar(ConfigManager, CCVars.EmergencyShuttleMinTransitTime, SetMinTransitTime, true); + Subs.CVar(ConfigManager, CCVars.EmergencyShuttleMaxTransitTime, SetMaxTransitTime, true); + Subs.CVar(ConfigManager, CCVars.EmergencyShuttleAuthorizeTime, SetAuthorizeTime, true); SubscribeLocalEvent(OnEmergencyStartup); SubscribeLocalEvent(OnEmergencyAuthorize); SubscribeLocalEvent(OnEmergencyRepeal); SubscribeLocalEvent(OnEmergencyRepealAll); - SubscribeLocalEvent(OnEmergencyOpenAttempt); - } - - private void OnEmergencyOpenAttempt(EntityUid uid, EmergencyShuttleConsoleComponent component, ActivatableUIOpenAttemptEvent args) - { - // I'm hoping ActivatableUI checks it's open before allowing these messages. - if (!_configManager.GetCVar(CCVars.EmergencyEarlyLaunchAllowed)) - { - args.Cancel(); - _popup.PopupEntity(Loc.GetString("emergency-shuttle-console-no-early-launches"), uid, args.User); - } } private void SetAuthorizeTime(float obj) @@ -248,7 +237,7 @@ public sealed partial class EmergencyShuttleSystem if (!_reader.FindAccessTags(player).Contains(EmergencyRepealAllAccess)) { - _popup.PopupCursor(Loc.GetString("emergency-shuttle-console-denied"), player, PopupType.Medium); + Popup.PopupCursor(Loc.GetString("emergency-shuttle-console-denied"), player, PopupType.Medium); return; } @@ -267,7 +256,7 @@ public sealed partial class EmergencyShuttleSystem if (!_idSystem.TryFindIdCard(player, out var idCard) || !_reader.IsAllowed(idCard, uid)) { - _popup.PopupCursor(Loc.GetString("emergency-shuttle-console-denied"), player, PopupType.Medium); + Popup.PopupCursor(Loc.GetString("emergency-shuttle-console-denied"), player, PopupType.Medium); return; } @@ -288,7 +277,7 @@ public sealed partial class EmergencyShuttleSystem if (!_idSystem.TryFindIdCard(player, out var idCard) || !_reader.IsAllowed(idCard, uid)) { - _popup.PopupCursor(Loc.GetString("emergency-shuttle-console-denied"), args.Actor, PopupType.Medium); + Popup.PopupCursor(Loc.GetString("emergency-shuttle-console-denied"), args.Actor, PopupType.Medium); return; } diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs index e0bbc9d090..1b2f343052 100644 --- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs @@ -10,7 +10,6 @@ using Content.Server.DeviceNetwork.Systems; using Content.Server.GameTicking; using Content.Server.GameTicking.Events; using Content.Server.Pinpointer; -using Content.Server.Popups; using Content.Server.RoundEnd; using Content.Server.Screens.Components; using Content.Server.Shuttles.Components; @@ -26,11 +25,11 @@ using Content.Shared.GameTicking; using Content.Shared.Localizations; using Content.Shared.Shuttles.Components; using Content.Shared.Shuttles.Events; +using Content.Shared.Shuttles.Systems; using Content.Shared.Tag; using Content.Shared.Tiles; using Robust.Server.GameObjects; using Robust.Shared.Audio.Systems; -using Robust.Shared.Configuration; using Robust.Shared.EntitySerialization.Systems; using Robust.Shared.Map.Components; using Robust.Shared.Player; @@ -41,7 +40,7 @@ using Robust.Shared.Utility; namespace Content.Server.Shuttles.Systems; -public sealed partial class EmergencyShuttleSystem : EntitySystem +public sealed partial class EmergencyShuttleSystem : SharedEmergencyShuttleSystem { /* * Handles the escape shuttle + CentCom. @@ -49,7 +48,6 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem [Dependency] private readonly IAdminLogManager _logger = default!; [Dependency] private readonly IAdminManager _admin = default!; - [Dependency] private readonly IConfigurationManager _configManager = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly SharedMapSystem _mapSystem = default!; @@ -63,7 +61,6 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem [Dependency] private readonly NavMapSystem _navMap = default!; [Dependency] private readonly MapLoaderSystem _loader = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; - [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly RoundEndSystem _roundEnd = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly ShuttleSystem _shuttle = default!; @@ -79,9 +76,11 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem public override void Initialize() { - _emergencyShuttleEnabled = _configManager.GetCVar(CCVars.EmergencyShuttleEnabled); + base.Initialize(); + + _emergencyShuttleEnabled = ConfigManager.GetCVar(CCVars.EmergencyShuttleEnabled); // Don't immediately invoke as roundstart will just handle it. - Subs.CVar(_configManager, CCVars.EmergencyShuttleEnabled, SetEmergencyShuttleEnabled); + Subs.CVar(ConfigManager, CCVars.EmergencyShuttleEnabled, SetEmergencyShuttleEnabled); SubscribeLocalEvent(OnRoundStart); SubscribeLocalEvent(OnRoundCleanup); @@ -229,7 +228,7 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem /// private void OnEmergencyFTLComplete(EntityUid uid, EmergencyShuttleComponent component, ref FTLCompletedEvent args) { - var countdownTime = TimeSpan.FromSeconds(_configManager.GetCVar(CCVars.RoundRestartTime)); + var countdownTime = TimeSpan.FromSeconds(ConfigManager.GetCVar(CCVars.RoundRestartTime)); var shuttle = args.Entity; if (TryComp(shuttle, out var net)) { @@ -440,7 +439,7 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem return; } - _consoleAccumulator = _configManager.GetCVar(CCVars.EmergencyShuttleDockTime); + _consoleAccumulator = ConfigManager.GetCVar(CCVars.EmergencyShuttleDockTime); EmergencyShuttleArrived = true; var query = AllEntityQuery(); @@ -459,9 +458,9 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem var worstResult = dockResults.Max(x => x.ResultType); var multiplier = worstResult switch { - ShuttleDockResultType.OtherDock => _configManager.GetCVar( + ShuttleDockResultType.OtherDock => ConfigManager.GetCVar( CCVars.EmergencyShuttleDockTimeMultiplierOtherDock), - ShuttleDockResultType.NoDock => _configManager.GetCVar( + ShuttleDockResultType.NoDock => ConfigManager.GetCVar( CCVars.EmergencyShuttleDockTimeMultiplierNoDock), // GoodLuck doesn't get a multiplier. // Quite frankly at that point the round is probably so fucked that you'd rather it be over ASAP. diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs index 2e6ebe396c..ca704d8e50 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs @@ -89,7 +89,7 @@ public sealed partial class ShuttleSystem var dungeonProtoId = _random.Pick(group.Protos); - if (!_protoManager.TryIndex(dungeonProtoId, out var dungeonProto)) + if (!_protoManager.Resolve(dungeonProtoId, out var dungeonProto)) { return false; } @@ -192,7 +192,7 @@ public sealed partial class ShuttleSystem throw new NotImplementedException(); } - if (_protoManager.TryIndex(group.NameDataset, out var dataset)) + if (_protoManager.Resolve(group.NameDataset, out var dataset)) { _metadata.SetEntityName(spawned, _salvage.GetFTLName(dataset, _random.Next())); } diff --git a/Content.Server/Silicons/Borgs/BorgSwitchableTypeSystem.cs b/Content.Server/Silicons/Borgs/BorgSwitchableTypeSystem.cs index d1a32a6a5b..e90acf1b80 100644 --- a/Content.Server/Silicons/Borgs/BorgSwitchableTypeSystem.cs +++ b/Content.Server/Silicons/Borgs/BorgSwitchableTypeSystem.cs @@ -60,7 +60,7 @@ public sealed class BorgSwitchableTypeSystem : SharedBorgSwitchableTypeSystem } // Configure special components - if (Prototypes.TryIndex(ent.Comp.SelectedBorgType, out var previousPrototype)) + if (Prototypes.Resolve(ent.Comp.SelectedBorgType, out var previousPrototype)) { if (previousPrototype.AddComponents is { } removeComponents) EntityManager.RemoveComponents(ent, removeComponents); diff --git a/Content.Server/Spawners/EntitySystems/ContainerSpawnPointSystem.cs b/Content.Server/Spawners/EntitySystems/ContainerSpawnPointSystem.cs index db82dc70a2..1a592b9929 100644 --- a/Content.Server/Spawners/EntitySystems/ContainerSpawnPointSystem.cs +++ b/Content.Server/Spawners/EntitySystems/ContainerSpawnPointSystem.cs @@ -32,7 +32,7 @@ public sealed class ContainerSpawnPointSystem : EntitySystem // If it's just a spawn pref check if it's for cryo (silly). if (args.HumanoidCharacterProfile?.SpawnPriority != SpawnPriorityPreference.Cryosleep && - (!_proto.TryIndex(args.Job, out var jobProto) || jobProto.JobEntity == null)) + (!_proto.Resolve(args.Job, out var jobProto) || jobProto.JobEntity == null)) { return; } diff --git a/Content.Server/Speech/EmotesMenuSystem.cs b/Content.Server/Speech/EmotesMenuSystem.cs index a69b5a65e4..5f91742eb1 100644 --- a/Content.Server/Speech/EmotesMenuSystem.cs +++ b/Content.Server/Speech/EmotesMenuSystem.cs @@ -22,7 +22,7 @@ public sealed partial class EmotesMenuSystem : EntitySystem if (!player.HasValue) return; - if (!_prototypeManager.TryIndex(msg.ProtoId, out var proto) || proto.ChatTriggers.Count == 0) + if (!_prototypeManager.Resolve(msg.ProtoId, out var proto) || proto.ChatTriggers.Count == 0) return; _chat.TryEmoteWithChat(player.Value, msg.ProtoId); diff --git a/Content.Server/Spreader/SpreaderSystem.cs b/Content.Server/Spreader/SpreaderSystem.cs index 328f4f0504..2bc067542d 100644 --- a/Content.Server/Spreader/SpreaderSystem.cs +++ b/Content.Server/Spreader/SpreaderSystem.cs @@ -181,7 +181,7 @@ public sealed class SpreaderSystem : EntitySystem occupiedTiles = []; neighbors = []; // TODO remove occupiedTiles -- its currently unused and just slows this method down. - if (!_prototype.TryIndex(prototype, out var spreaderPrototype)) + if (!_prototype.Resolve(prototype, out var spreaderPrototype)) return; if (!TryComp(comp.GridUid, out var grid)) diff --git a/Content.Server/Station/Systems/StationJobsSystem.Roundstart.cs b/Content.Server/Station/Systems/StationJobsSystem.Roundstart.cs index c6c682bcf3..3510aca85e 100644 --- a/Content.Server/Station/Systems/StationJobsSystem.Roundstart.cs +++ b/Content.Server/Station/Systems/StationJobsSystem.Roundstart.cs @@ -362,7 +362,7 @@ public sealed partial class StationJobsSystem if (!(priority == selectedPriority || selectedPriority is null)) continue; - if (!_prototypeManager.TryIndex(jobId, out var job)) + if (!_prototypeManager.Resolve(jobId, out var job)) continue; if (!job.CanBeAntag && (!_player.TryGetSessionById(player, out var session) || antagBlocked.Contains(session))) diff --git a/Content.Server/Station/Systems/StationSpawningSystem.cs b/Content.Server/Station/Systems/StationSpawningSystem.cs index 46d2e308d0..3967e320a8 100644 --- a/Content.Server/Station/Systems/StationSpawningSystem.cs +++ b/Content.Server/Station/Systems/StationSpawningSystem.cs @@ -88,7 +88,7 @@ public sealed class StationSpawningSystem : SharedStationSpawningSystem EntityUid? station, EntityUid? entity = null) { - _prototypeManager.TryIndex(job ?? string.Empty, out var prototype); + _prototypeManager.Resolve(job, out var prototype); RoleLoadout? loadout = null; // Need to get the loadout up-front to handle names if we use an entity spawn override. @@ -168,7 +168,7 @@ public sealed class StationSpawningSystem : SharedStationSpawningSystem private void DoJobSpecials(ProtoId? job, EntityUid entity) { - if (!_prototypeManager.TryIndex(job ?? string.Empty, out JobPrototype? prototype)) + if (!_prototypeManager.Resolve(job, out JobPrototype? prototype)) return; foreach (var jobSpecial in prototype.Special) @@ -199,7 +199,7 @@ public sealed class StationSpawningSystem : SharedStationSpawningSystem _cardSystem.TryChangeFullName(cardId, characterName, card); _cardSystem.TryChangeJobTitle(cardId, jobPrototype.LocalizedName, card); - if (_prototypeManager.TryIndex(jobPrototype.Icon, out var jobIcon)) + if (_prototypeManager.Resolve(jobPrototype.Icon, out var jobIcon)) _cardSystem.TryChangeJobIcon(cardId, jobIcon, card); var extendedAccess = false; diff --git a/Content.Server/StationEvents/EventManagerSystem.cs b/Content.Server/StationEvents/EventManagerSystem.cs index 6585fe3248..b86d30e2e7 100644 --- a/Content.Server/StationEvents/EventManagerSystem.cs +++ b/Content.Server/StationEvents/EventManagerSystem.cs @@ -71,7 +71,7 @@ public sealed class EventManagerSystem : EntitySystem return; } - if (!_prototype.TryIndex(randomLimitedEvent, out _)) + if (!_prototype.Resolve(randomLimitedEvent, out _)) { Log.Warning("A requested event is not available!"); return; @@ -104,7 +104,7 @@ public sealed class EventManagerSystem : EntitySystem foreach (var eventid in selectedEvents) { - if (!_prototype.TryIndex(eventid, out var eventproto)) + if (!_prototype.Resolve(eventid, out var eventproto)) { Log.Warning("An event ID has no prototype index!"); continue; diff --git a/Content.Server/StationEvents/Events/GreytideVirusRule.cs b/Content.Server/StationEvents/Events/GreytideVirusRule.cs index 8d33b858de..dba21911dc 100644 --- a/Content.Server/StationEvents/Events/GreytideVirusRule.cs +++ b/Content.Server/StationEvents/Events/GreytideVirusRule.cs @@ -54,7 +54,7 @@ public sealed class GreytideVirusRule : StationEventSystem>(); foreach (var group in chosen) { - if (_prototype.TryIndex(group, out var proto)) + if (_prototype.Resolve(group, out var proto)) accessIds.UnionWith(proto.Tags); } diff --git a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraRouterSystem.cs b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraRouterSystem.cs index 32e42a52dd..d4af86cd71 100644 --- a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraRouterSystem.cs +++ b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraRouterSystem.cs @@ -121,7 +121,7 @@ public sealed class SurveillanceCameraRouterSystem : EntitySystem return; } - if (!_prototypeManager.TryIndex(component.AvailableNetworks[args.Network], + if (!_prototypeManager.Resolve(component.AvailableNetworks[args.Network], out var frequency)) { return; diff --git a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSystem.cs b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSystem.cs index 2a288d9017..7f7dbc6c97 100644 --- a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSystem.cs +++ b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSystem.cs @@ -190,7 +190,7 @@ public sealed class SurveillanceCameraSystem : EntitySystem return; } - if (!_prototypeManager.TryIndex(component.AvailableNetworks[args.Network], + if (!_prototypeManager.Resolve(component.AvailableNetworks[args.Network], out var frequency)) { return; diff --git a/Content.Server/Telephone/TelephoneSystem.cs b/Content.Server/Telephone/TelephoneSystem.cs index 46f45d1286..0e3090c77e 100644 --- a/Content.Server/Telephone/TelephoneSystem.cs +++ b/Content.Server/Telephone/TelephoneSystem.cs @@ -340,7 +340,7 @@ public sealed class TelephoneSystem : SharedTelephoneSystem name = FormattedMessage.EscapeText(name); SpeechVerbPrototype speech; - if (ev.SpeechVerb != null && _prototype.TryIndex(ev.SpeechVerb, out var evntProto)) + if (ev.SpeechVerb != null && _prototype.Resolve(ev.SpeechVerb, out var evntProto)) speech = evntProto; else speech = _chat.GetSpeechVerb(messageSource, message); diff --git a/Content.Server/Traitor/Uplink/UplinkSystem.cs b/Content.Server/Traitor/Uplink/UplinkSystem.cs index f4a9ca75fd..e4aa7b5ec1 100644 --- a/Content.Server/Traitor/Uplink/UplinkSystem.cs +++ b/Content.Server/Traitor/Uplink/UplinkSystem.cs @@ -88,7 +88,7 @@ public sealed class UplinkSystem : EntitySystem /// private bool ImplantUplink(EntityUid user, FixedPoint2 balance, bool giveDiscounts) { - if (!_proto.TryIndex(FallbackUplinkCatalog, out var catalog)) + if (!_proto.Resolve(FallbackUplinkCatalog, out var catalog)) return false; if (!catalog.Cost.TryGetValue(TelecrystalCurrencyPrototype, out var cost)) diff --git a/Content.Server/Traits/TraitSystem.cs b/Content.Server/Traits/TraitSystem.cs index 59cb9537f2..d6035f887b 100644 --- a/Content.Server/Traits/TraitSystem.cs +++ b/Content.Server/Traits/TraitSystem.cs @@ -26,7 +26,7 @@ public sealed class TraitSystem : EntitySystem { // Check if player's job allows to apply traits if (args.JobId == null || - !_prototypeManager.TryIndex(args.JobId ?? string.Empty, out var protoJob) || + !_prototypeManager.Resolve(args.JobId, out var protoJob) || !protoJob.ApplyTraits) { return; @@ -36,7 +36,7 @@ public sealed class TraitSystem : EntitySystem { if (!_prototypeManager.TryIndex(traitId, out var traitPrototype)) { - Log.Warning($"No trait found with ID {traitId}!"); + Log.Error($"No trait found with ID {traitId}!"); return; } diff --git a/Content.Server/Trigger/Systems/SpeakOnTriggerSystem.cs b/Content.Server/Trigger/Systems/SpeakOnTriggerSystem.cs index 6da6f707c1..1e08587ce7 100644 --- a/Content.Server/Trigger/Systems/SpeakOnTriggerSystem.cs +++ b/Content.Server/Trigger/Systems/SpeakOnTriggerSystem.cs @@ -34,7 +34,7 @@ public sealed class SpeakOnTriggerSystem : EntitySystem message = Loc.GetString(ent.Comp.Text); else { - if (!_prototypeManager.TryIndex(ent.Comp.Pack, out var messagePack)) + if (!_prototypeManager.Resolve(ent.Comp.Pack, out var messagePack)) return; message = Loc.GetString(_random.Pick(messagePack.Values)); } diff --git a/Content.Server/Wires/WiresSystem.cs b/Content.Server/Wires/WiresSystem.cs index fef52a5b5d..c9fd429c47 100644 --- a/Content.Server/Wires/WiresSystem.cs +++ b/Content.Server/Wires/WiresSystem.cs @@ -73,7 +73,7 @@ public sealed class WiresSystem : SharedWiresSystem List wireActions = new(); var dummyWires = 0; - if (!_protoMan.TryIndex(wires.LayoutId, out WireLayoutPrototype? layoutPrototype)) + if (!_protoMan.Resolve(wires.LayoutId, out WireLayoutPrototype? layoutPrototype)) { return; } diff --git a/Content.Server/Zombies/ZombieSystem.cs b/Content.Server/Zombies/ZombieSystem.cs index f4ff5dd60c..5107a87c2a 100644 --- a/Content.Server/Zombies/ZombieSystem.cs +++ b/Content.Server/Zombies/ZombieSystem.cs @@ -183,7 +183,7 @@ namespace Content.Server.Zombies if (args.Handled) return; - _protoManager.TryIndex(component.EmoteSoundsId, out var sounds); + _protoManager.Resolve(component.EmoteSoundsId, out var sounds); args.Handled = _chat.TryPlayEmoteSound(uid, sounds, args.Emote); } diff --git a/Content.Shared/Access/Components/AccessComponent.cs b/Content.Shared/Access/Components/AccessComponent.cs index 00ee87b3b6..dce9d4b76b 100644 --- a/Content.Shared/Access/Components/AccessComponent.cs +++ b/Content.Shared/Access/Components/AccessComponent.cs @@ -51,7 +51,7 @@ public record struct GetAccessTagsEvent(HashSet> T { public void AddGroup(ProtoId group) { - if (!PrototypeManager.TryIndex(group, out var groupPrototype)) + if (!PrototypeManager.Resolve(group, out var groupPrototype)) return; Tags.UnionWith(groupPrototype.Tags); diff --git a/Content.Shared/Access/Components/IdCardComponent.cs b/Content.Shared/Access/Components/IdCardComponent.cs index 9ca82b67b4..93c61ea9f0 100644 --- a/Content.Shared/Access/Components/IdCardComponent.cs +++ b/Content.Shared/Access/Components/IdCardComponent.cs @@ -41,7 +41,7 @@ public sealed partial class IdCardComponent : Component /// [DataField] [AutoNetworkedField] - public ProtoId? JobPrototype; + public ProtoId? JobPrototype; /// /// The proto IDs of the departments associated with the job diff --git a/Content.Shared/Access/Components/IdCardConsoleComponent.cs b/Content.Shared/Access/Components/IdCardConsoleComponent.cs index 8d54024f72..8c965971a8 100644 --- a/Content.Shared/Access/Components/IdCardConsoleComponent.cs +++ b/Content.Shared/Access/Components/IdCardConsoleComponent.cs @@ -1,5 +1,6 @@ using Content.Shared.Access.Systems; using Content.Shared.Containers.ItemSlots; +using Content.Shared.Roles; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; @@ -25,9 +26,9 @@ public sealed partial class IdCardConsoleComponent : Component public readonly string FullName; public readonly string JobTitle; public readonly List> AccessList; - public readonly ProtoId JobPrototype; + public readonly ProtoId JobPrototype; - public WriteToTargetIdMessage(string fullName, string jobTitle, List> accessList, ProtoId jobPrototype) + public WriteToTargetIdMessage(string fullName, string jobTitle, List> accessList, ProtoId jobPrototype) { FullName = fullName; JobTitle = jobTitle; @@ -85,7 +86,7 @@ public sealed partial class IdCardConsoleComponent : Component public readonly string? TargetIdJobTitle; public readonly List>? TargetIdAccessList; public readonly List>? AllowedModifyAccessList; - public readonly ProtoId TargetIdJobPrototype; + public readonly ProtoId TargetIdJobPrototype; public IdCardConsoleBoundUserInterfaceState(bool isPrivilegedIdPresent, bool isPrivilegedIdAuthorized, @@ -94,7 +95,7 @@ public sealed partial class IdCardConsoleComponent : Component string? targetIdJobTitle, List>? targetIdAccessList, List>? allowedModifyAccessList, - ProtoId targetIdJobPrototype, + ProtoId targetIdJobPrototype, string privilegedIdName, string targetIdName) { diff --git a/Content.Shared/Access/Systems/SharedAccessSystem.cs b/Content.Shared/Access/Systems/SharedAccessSystem.cs index a4b04c3559..e161d90e91 100644 --- a/Content.Shared/Access/Systems/SharedAccessSystem.cs +++ b/Content.Shared/Access/Systems/SharedAccessSystem.cs @@ -23,7 +23,7 @@ namespace Content.Shared.Access.Systems // Add all tags in groups to the list of tags. foreach (var group in component.Groups) { - if (!_prototypeManager.TryIndex(group, out var proto)) + if (!_prototypeManager.Resolve(group, out var proto)) continue; component.Tags.UnionWith(proto.Tags); @@ -79,7 +79,7 @@ namespace Content.Shared.Access.Systems foreach (var group in newGroups) { - if (!_prototypeManager.TryIndex(group, out var proto)) + if (!_prototypeManager.Resolve(group, out var proto)) continue; access.Tags.UnionWith(proto.Tags); diff --git a/Content.Shared/Actions/Events/ActionDoAfterEvent.cs b/Content.Shared/Actions/Events/ActionDoAfterEvent.cs new file mode 100644 index 0000000000..3ce2e364f4 --- /dev/null +++ b/Content.Shared/Actions/Events/ActionDoAfterEvent.cs @@ -0,0 +1,35 @@ +using Content.Shared.DoAfter; +using Robust.Shared.Serialization; + +namespace Content.Shared.Actions.Events; + +/// +/// The event that triggers when an action doafter is completed or cancelled +/// +[Serializable, NetSerializable] +public sealed partial class ActionDoAfterEvent : DoAfterEvent +{ + /// + /// The action performer + /// + public readonly NetEntity Performer; + + /// + /// The original action use delay, used for repeating actions + /// + public readonly TimeSpan? OriginalUseDelay; + + /// + /// The original request, for validating + /// + public readonly RequestPerformActionEvent Input; + + public ActionDoAfterEvent(NetEntity performer, TimeSpan? originalUseDelay, RequestPerformActionEvent input) + { + Performer = performer; + OriginalUseDelay = originalUseDelay; + Input = input; + } + + public override DoAfterEvent Clone() => this; +} diff --git a/Content.Shared/Actions/SharedActionsSystem.DoAfter.cs b/Content.Shared/Actions/SharedActionsSystem.DoAfter.cs new file mode 100644 index 0000000000..51e4b6e560 --- /dev/null +++ b/Content.Shared/Actions/SharedActionsSystem.DoAfter.cs @@ -0,0 +1,85 @@ +using Content.Shared.Actions.Events; +using Content.Shared.DoAfter; + +namespace Content.Shared.Actions; + +public abstract partial class SharedActionsSystem +{ + protected void InitializeActionDoAfter() + { + SubscribeLocalEvent(OnActionDoAfter); + } + + private bool TryStartActionDoAfter(Entity ent, Entity performer, TimeSpan? originalUseDelay, RequestPerformActionEvent input) + { + // relay to user + if (!Resolve(performer, ref performer.Comp)) + return false; + + var delay = ent.Comp.Delay; + + var netEnt = GetNetEntity(performer); + + var actionDoAfterEvent = new ActionDoAfterEvent(netEnt, originalUseDelay, input); + + var doAfterArgs = new DoAfterArgs(EntityManager, performer, delay, actionDoAfterEvent, ent.Owner, performer) + { + AttemptFrequency = ent.Comp.AttemptFrequency, + Broadcast = ent.Comp.Broadcast, + Hidden = ent.Comp.Hidden, + NeedHand = ent.Comp.NeedHand, + BreakOnHandChange = ent.Comp.BreakOnHandChange, + BreakOnDropItem = ent.Comp.BreakOnDropItem, + BreakOnMove = ent.Comp.BreakOnMove, + BreakOnWeightlessMove = ent.Comp.BreakOnWeightlessMove, + MovementThreshold = ent.Comp.MovementThreshold, + DistanceThreshold = ent.Comp.DistanceThreshold, + BreakOnDamage = ent.Comp.BreakOnDamage, + DamageThreshold = ent.Comp.DamageThreshold, + RequireCanInteract = ent.Comp.RequireCanInteract + }; + + return _doAfter.TryStartDoAfter(doAfterArgs, performer); + } + + private void OnActionDoAfter(Entity ent, ref ActionDoAfterEvent args) + { + if (!_actionQuery.TryComp(ent, out var actionComp)) + return; + + var performer = GetEntity(args.Performer); + var action = (ent, actionComp); + + // If this doafter is on repeat and was cancelled, start use delay as expected + if (args.Cancelled && ent.Comp.Repeat) + { + SetUseDelay(action, args.OriginalUseDelay); + RemoveCooldown(action); + StartUseDelay(action); + UpdateAction(action); + return; + } + + args.Repeat = ent.Comp.Repeat; + + // Set the use delay to 0 so this can repeat properly + if (ent.Comp.Repeat) + { + SetUseDelay(action, TimeSpan.Zero); + } + + if (args.Cancelled) + return; + + // Post original doafter, reduce the time on it now for other casts if ables + if (ent.Comp.DelayReduction != null) + args.Args.Delay = ent.Comp.DelayReduction.Value; + + // Validate again for charges, blockers, etc + if (TryPerformAction(args.Input, performer, skipDoActionRequest: true)) + return; + + // Cancel this doafter if we can't validate the action + _doAfter.Cancel(args.DoAfter.Id, force: true); + } +} diff --git a/Content.Shared/Actions/SharedActionsSystem.cs b/Content.Shared/Actions/SharedActionsSystem.cs index c4581cfbff..a8201cbede 100644 --- a/Content.Shared/Actions/SharedActionsSystem.cs +++ b/Content.Shared/Actions/SharedActionsSystem.cs @@ -5,6 +5,7 @@ using Content.Shared.Actions.Components; using Content.Shared.Actions.Events; using Content.Shared.Administration.Logs; using Content.Shared.Database; +using Content.Shared.DoAfter; using Content.Shared.Hands; using Content.Shared.Interaction; using Content.Shared.Inventory.Events; @@ -19,7 +20,7 @@ using Robust.Shared.Utility; namespace Content.Shared.Actions; -public abstract class SharedActionsSystem : EntitySystem +public abstract partial class SharedActionsSystem : EntitySystem { [Dependency] protected readonly IGameTiming GameTiming = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; @@ -30,6 +31,7 @@ public abstract class SharedActionsSystem : EntitySystem [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedInteractionSystem _interaction = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; private EntityQuery _actionQuery; private EntityQuery _actionsQuery; @@ -38,6 +40,7 @@ public abstract class SharedActionsSystem : EntitySystem public override void Initialize() { base.Initialize(); + InitializeActionDoAfter(); _actionQuery = GetEntityQuery(); _actionsQuery = GetEntityQuery(); @@ -256,20 +259,31 @@ public abstract class SharedActionsSystem : EntitySystem #region Execution /// /// When receiving a request to perform an action, this validates whether the action is allowed. If it is, it - /// will raise the relevant + /// will raise the relevant action event /// private void OnActionRequest(RequestPerformActionEvent ev, EntitySessionEventArgs args) { if (args.SenderSession.AttachedEntity is not { } user) return; + TryPerformAction(ev, user); + } + + /// + /// + /// + /// The Request Perform Action Event + /// The user/performer of the action + /// Should this skip the initial doaction request? + private bool TryPerformAction(RequestPerformActionEvent ev, EntityUid user, bool skipDoActionRequest = false) + { if (!_actionsQuery.TryComp(user, out var component)) - return; + return false; var actionEnt = GetEntity(ev.Action); if (!TryComp(actionEnt, out MetaDataComponent? metaData)) - return; + return false; var name = Name(actionEnt, metaData); @@ -278,26 +292,25 @@ public abstract class SharedActionsSystem : EntitySystem { _adminLogger.Add(LogType.Action, $"{ToPrettyString(user):user} attempted to perform an action that they do not have: {name}."); - return; + return false; } if (GetAction(actionEnt) is not {} action) - return; + return false; DebugTools.Assert(action.Comp.AttachedEntity == user); if (!action.Comp.Enabled) - return; + return false; var curTime = GameTiming.CurTime; if (IsCooldownActive(action, curTime)) - return; + return false; // check for action use prevention - // TODO: make code below use this event with a dedicated component var attemptEv = new ActionAttemptEvent(user); RaiseLocalEvent(action, ref attemptEv); if (attemptEv.Cancelled) - return; + return false; // Validate request by checking action blockers and the like var provider = action.Comp.Container ?? user; @@ -309,10 +322,16 @@ public abstract class SharedActionsSystem : EntitySystem }; RaiseLocalEvent(action, ref validateEv); if (validateEv.Invalid) - return; + return false; + + if (TryComp(action, out var actionDoAfterComp) && TryComp(user, out var performerDoAfterComp) && !skipDoActionRequest) + { + return TryStartActionDoAfter((action, actionDoAfterComp), (user, performerDoAfterComp), action.Comp.UseDelay, ev); + } // All checks passed. Perform the action! PerformAction((user, component), action); + return true; } private void OnValidate(Entity ent, ref ActionValidateEvent args) @@ -530,8 +549,6 @@ public abstract class SharedActionsSystem : EntitySystem { var handled = false; - var toggledBefore = action.Comp.Toggled; - // Note that attached entity and attached container are allowed to be null here. if (action.Comp.AttachedEntity != null && action.Comp.AttachedEntity != performer) { @@ -552,6 +569,7 @@ public abstract class SharedActionsSystem : EntitySystem ev.Performer = performer; ev.Action = action; + // TODO: This is where we'd add support for event lists if (!action.Comp.RaiseOnUser && action.Comp.Container is {} container && !_mindQuery.HasComp(container)) target = container; @@ -564,13 +582,12 @@ public abstract class SharedActionsSystem : EntitySystem if (!handled) return; // no interaction occurred. - // play sound, reduce charges, start cooldown - if (ev?.Toggle == true) + // play sound, start cooldown + if (ev.Toggle) SetToggled((action, action), !action.Comp.Toggled); _audio.PlayPredicted(action.Comp.Sound, performer, predicted ? performer : null); - // TODO: move to ActionCooldown ActionPerformedEvent? RemoveCooldown((action, action)); StartUseDelay((action, action)); diff --git a/Content.Shared/Administration/Logs/LogStringHandler.cs b/Content.Shared/Administration/Logs/LogStringHandler.cs index 4dbbcf089c..9b65c6d723 100644 --- a/Content.Shared/Administration/Logs/LogStringHandler.cs +++ b/Content.Shared/Administration/Logs/LogStringHandler.cs @@ -50,8 +50,8 @@ public ref struct LogStringHandler var i = 2; format = $"{originalFormat}_{i}"; - while (!Values.TryAdd(Logger.ConvertName(format), value) - || Values[format] is T val2 && val2.Equals(value)) + while (!(Values.TryAdd(Logger.ConvertName(format), value) + || Values[format] is T val2 && val2.Equals(value))) { format = $"{originalFormat}_{i}"; i++; diff --git a/Content.Shared/Atmos/EntitySystems/SharedAtmosPipeLayersSystem.cs b/Content.Shared/Atmos/EntitySystems/SharedAtmosPipeLayersSystem.cs index f6ec1c5799..708f8ecb3f 100644 --- a/Content.Shared/Atmos/EntitySystems/SharedAtmosPipeLayersSystem.cs +++ b/Content.Shared/Atmos/EntitySystems/SharedAtmosPipeLayersSystem.cs @@ -52,7 +52,7 @@ public abstract partial class SharedAtmosPipeLayersSystem : EntitySystem if (ent.Comp.NumberOfPipeLayers <= 1 || ent.Comp.PipeLayersLocked) return; - if (!_protoManager.TryIndex(ent.Comp.Tool, out var toolProto)) + if (!_protoManager.Resolve(ent.Comp.Tool, out var toolProto)) return; var user = args.User; @@ -138,7 +138,7 @@ public abstract partial class SharedAtmosPipeLayersSystem : EntitySystem if (!TryGetHeldTool(args.User, ent.Comp.Tool, out var tool)) { - if (_protoManager.TryIndex(ent.Comp.Tool, out var toolProto)) + if (_protoManager.Resolve(ent.Comp.Tool, out var toolProto)) { var toolName = Loc.GetString(toolProto.ToolName).ToLower(); var message = Loc.GetString("atmos-pipe-layers-component-tool-missing", ("toolName", toolName)); diff --git a/Content.Shared/BarSign/BarSignSystem.cs b/Content.Shared/BarSign/BarSignSystem.cs index bf28cfe6b7..0c9770bfe9 100644 --- a/Content.Shared/BarSign/BarSignSystem.cs +++ b/Content.Shared/BarSign/BarSignSystem.cs @@ -31,7 +31,7 @@ public sealed class BarSignSystem : EntitySystem private void OnSetBarSignMessage(Entity ent, ref SetBarSignMessage args) { - if (!_prototypeManager.TryIndex(args.Sign, out var signPrototype)) + if (!_prototypeManager.Resolve(args.Sign, out var signPrototype)) return; SetBarSign(ent, signPrototype); diff --git a/Content.Shared/Body/Systems/SharedBloodstreamSystem.cs b/Content.Shared/Body/Systems/SharedBloodstreamSystem.cs index 4b3270f1ed..3b46d3913c 100644 --- a/Content.Shared/Body/Systems/SharedBloodstreamSystem.cs +++ b/Content.Shared/Body/Systems/SharedBloodstreamSystem.cs @@ -191,7 +191,7 @@ public abstract class SharedBloodstreamSystem : EntitySystem } // TODO probably cache this or something. humans get hurt a lot - if (!_prototypeManager.TryIndex(ent.Comp.DamageBleedModifiers, out var modifiers)) + if (!_prototypeManager.Resolve(ent.Comp.DamageBleedModifiers, out var modifiers)) return; // some reagents may deal and heal different damage types in the same tick, which means DamageIncreased will be true diff --git a/Content.Shared/CCVar/CCVars.Shuttle.cs b/Content.Shared/CCVar/CCVars.Shuttle.cs index eb6e70579c..28ed146eaf 100644 --- a/Content.Shared/CCVar/CCVars.Shuttle.cs +++ b/Content.Shared/CCVar/CCVars.Shuttle.cs @@ -117,7 +117,7 @@ public sealed partial class CCVars /// Is the emergency shuttle allowed to be early launched. /// public static readonly CVarDef EmergencyEarlyLaunchAllowed = - CVarDef.Create("shuttle.emergency_early_launch_allowed", false, CVar.SERVERONLY); + CVarDef.Create("shuttle.emergency_early_launch_allowed", false, CVar.SERVER | CVar.REPLICATED); /// /// How long the emergency shuttle remains docked with the station, in seconds. diff --git a/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs b/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs index d98c9bd8f7..46a3a0de13 100644 --- a/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs +++ b/Content.Shared/Cargo/Prototypes/CargoProductPrototype.cs @@ -36,7 +36,7 @@ namespace Content.Shared.Cargo.Prototypes if (_name.Trim().Length != 0) return _name; - if (IoCManager.Resolve().TryIndex(Product, out EntityPrototype? prototype)) + if (IoCManager.Resolve().Resolve(Product, out EntityPrototype? prototype)) { _name = prototype.Name; } @@ -56,7 +56,7 @@ namespace Content.Shared.Cargo.Prototypes if (_description.Trim().Length != 0) return _description; - if (IoCManager.Resolve().TryIndex(Product, out EntityPrototype? prototype)) + if (IoCManager.Resolve().Resolve(Product, out EntityPrototype? prototype)) { _description = prototype.Description; } diff --git a/Content.Shared/Chasm/ChasmSystem.cs b/Content.Shared/Chasm/ChasmSystem.cs index 86b8d4fc4d..ab5c32eddd 100644 --- a/Content.Shared/Chasm/ChasmSystem.cs +++ b/Content.Shared/Chasm/ChasmSystem.cs @@ -1,11 +1,9 @@ using Content.Shared.ActionBlocker; -using Content.Shared.Buckle.Components; using Content.Shared.Movement.Events; using Content.Shared.StepTrigger.Systems; -using Robust.Shared.Audio; +using Content.Shared.Weapons.Misc; using Robust.Shared.Audio.Systems; using Robust.Shared.Network; -using Robust.Shared.Physics.Components; using Robust.Shared.Timing; namespace Content.Shared.Chasm; @@ -19,6 +17,7 @@ public sealed class ChasmSystem : EntitySystem [Dependency] private readonly ActionBlockerSystem _blocker = default!; [Dependency] private readonly INetManager _net = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedGrapplingGunSystem _grapple = default!; public override void Initialize() { @@ -69,6 +68,12 @@ public sealed class ChasmSystem : EntitySystem private void OnStepTriggerAttempt(EntityUid uid, ChasmComponent component, ref StepTriggerAttemptEvent args) { + if (_grapple.IsEntityHooked(args.Tripper)) + { + args.Cancelled = true; + return; + } + args.Continue = true; } diff --git a/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs b/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs index 4224fa4bc7..b999d8df61 100644 --- a/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs +++ b/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs @@ -6,10 +6,12 @@ using Content.Shared.Administration.Logs; using Content.Shared.Body.Prototypes; using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.Reaction; +using Content.Shared.Contraband; using Content.Shared.EntityEffects; using Content.Shared.Database; using Content.Shared.Nutrition; using Content.Shared.Prototypes; +using Content.Shared.Roles; using Content.Shared.Slippery; using Robust.Shared.Audio; using Robust.Shared.Map; @@ -57,6 +59,25 @@ namespace Content.Shared.Chemistry.Reagent [ViewVariables(VVAccess.ReadOnly)] public string LocalizedPhysicalDescription => Loc.GetString(PhysicalDescription); + /// + /// The degree of contraband severity this reagent is considered to have. + /// If AllowedDepartments or AllowedJobs are set, they take precedent and override this value. + /// + [DataField] + public ProtoId? ContrabandSeverity = null; + + /// + /// Which departments is this reagent restricted to, if any? + /// + [DataField] + public HashSet> AllowedDepartments = new(); + + /// + /// Which jobs is this reagent restricted to, if any? + /// + [DataField] + public HashSet> AllowedJobs = new(); + /// /// Is this reagent recognizable to the average spaceman (water, welding fuel, ketchup, etc)? /// diff --git a/Content.Shared/Clothing/EntitySystems/FoldableClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/FoldableClothingSystem.cs index 7c6810140c..76de205a7b 100644 --- a/Content.Shared/Clothing/EntitySystems/FoldableClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/FoldableClothingSystem.cs @@ -65,9 +65,9 @@ public sealed class FoldableClothingSystem : EntitySystem // This should instead work via an event or something that gets raised to optionally modify the currently hidden layers. // Or at the very least it should stash the old layers and restore them when unfolded. // TODO CLOTHING fix this. - if (ent.Comp.FoldedHideLayers.Count != 0 && TryComp(ent.Owner, out var hideLayerComp)) + if ((ent.Comp.FoldedHideLayers.Count != 0 || ent.Comp.UnfoldedHideLayers.Count != 0) && + TryComp(ent.Owner, out var hideLayerComp)) hideLayerComp.Slots = ent.Comp.FoldedHideLayers; - } else { @@ -81,9 +81,9 @@ public sealed class FoldableClothingSystem : EntitySystem _itemSystem.SetHeldPrefix(ent.Owner, null, false, itemComp); // TODO CLOTHING fix this. - if (ent.Comp.UnfoldedHideLayers.Count != 0 && TryComp(ent.Owner, out var hideLayerComp)) + if ((ent.Comp.FoldedHideLayers.Count != 0 || ent.Comp.UnfoldedHideLayers.Count != 0) && + TryComp(ent.Owner, out var hideLayerComp)) hideLayerComp.Slots = ent.Comp.UnfoldedHideLayers; - } } } diff --git a/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs index 4b38d926f6..18b79bf52b 100644 --- a/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs @@ -74,7 +74,7 @@ public abstract class SharedChameleonClothingSystem : EntitySystem protected void UpdateVisuals(EntityUid uid, ChameleonClothingComponent component) { if (string.IsNullOrEmpty(component.Default) || - !_proto.TryIndex(component.Default, out EntityPrototype? proto)) + !_proto.Resolve(component.Default, out EntityPrototype? proto)) return; // world sprite icon diff --git a/Content.Shared/Clothing/LoadoutSystem.cs b/Content.Shared/Clothing/LoadoutSystem.cs index 08b4f5f763..dfe6d1377b 100644 --- a/Content.Shared/Clothing/LoadoutSystem.cs +++ b/Content.Shared/Clothing/LoadoutSystem.cs @@ -44,7 +44,7 @@ public sealed class LoadoutSystem : EntitySystem { EntProtoId? proto = null; - if (_protoMan.TryIndex(loadout.StartingGear, out var gear)) + if (_protoMan.Resolve(loadout.StartingGear, out var gear)) { proto = GetFirstOrNull(gear); } @@ -65,12 +65,12 @@ public sealed class LoadoutSystem : EntitySystem if (count == 1) { - if (gear.Equipment.Count == 1 && _protoMan.TryIndex(gear.Equipment.Values.First(), out var proto)) + if (gear.Equipment.Count == 1 && _protoMan.Resolve(gear.Equipment.Values.First(), out var proto)) { return proto.ID; } - if (gear.Inhand.Count == 1 && _protoMan.TryIndex(gear.Inhand[0], out proto)) + if (gear.Inhand.Count == 1 && _protoMan.Resolve(gear.Inhand[0], out proto)) { return proto.ID; } @@ -90,10 +90,10 @@ public sealed class LoadoutSystem : EntitySystem public string GetName(LoadoutPrototype loadout) { - if (loadout.DummyEntity is not null && _protoMan.TryIndex(loadout.DummyEntity, out var proto)) + if (loadout.DummyEntity is not null && _protoMan.Resolve(loadout.DummyEntity, out var proto)) return proto.Name; - if (_protoMan.TryIndex(loadout.StartingGear, out var gear)) + if (_protoMan.Resolve(loadout.StartingGear, out var gear)) { return GetName(gear); } diff --git a/Content.Shared/ComponentTable/SharedComponentTableSystem.cs b/Content.Shared/ComponentTable/SharedComponentTableSystem.cs index cdb1b2dc74..e4ff855352 100644 --- a/Content.Shared/ComponentTable/SharedComponentTableSystem.cs +++ b/Content.Shared/ComponentTable/SharedComponentTableSystem.cs @@ -24,7 +24,7 @@ public sealed class SharedComponentTableSystem : EntitySystem foreach (var entity in spawns) { - if (_proto.TryIndex(entity, out var entProto)) + if (_proto.Resolve(entity, out var entProto)) { EntityManager.AddComponents(ent, entProto.Components); } diff --git a/Content.Shared/Construction/MachinePartSystem.cs b/Content.Shared/Construction/MachinePartSystem.cs index f3314dfc11..7ac9fde94c 100644 --- a/Content.Shared/Construction/MachinePartSystem.cs +++ b/Content.Shared/Construction/MachinePartSystem.cs @@ -109,7 +109,7 @@ namespace Content.Shared.Construction materials[mat] += matAmount * amount * coefficient; } } - else if (_prototype.TryIndex(defaultProtoId, out var defaultProto) && + else if (_prototype.Resolve(defaultProtoId, out var defaultProto) && defaultProto.TryGetComponent(out var physComp, EntityManager.ComponentFactory)) { foreach (var (mat, matAmount) in physComp.MaterialComposition) diff --git a/Content.Shared/Containers/ContainerCompSystem.cs b/Content.Shared/Containers/ContainerCompSystem.cs index 75908efea3..d9eac28dab 100644 --- a/Content.Shared/Containers/ContainerCompSystem.cs +++ b/Content.Shared/Containers/ContainerCompSystem.cs @@ -24,7 +24,7 @@ public sealed class ContainerCompSystem : EntitySystem if (args.Container.ID != ent.Comp.Container || _timing.ApplyingState) return; - if (_proto.TryIndex(ent.Comp.Proto, out var entProto)) + if (_proto.Resolve(ent.Comp.Proto, out var entProto)) { EntityManager.RemoveComponents(args.Entity, entProto.Components); } @@ -35,7 +35,7 @@ public sealed class ContainerCompSystem : EntitySystem if (args.Container.ID != ent.Comp.Container || _timing.ApplyingState) return; - if (_proto.TryIndex(ent.Comp.Proto, out var entProto)) + if (_proto.Resolve(ent.Comp.Proto, out var entProto)) { EntityManager.AddComponents(args.Entity, entProto.Components); } diff --git a/Content.Shared/Contraband/ContrabandSystem.cs b/Content.Shared/Contraband/ContrabandSystem.cs index 2c2495ba9a..2f654e80d0 100644 --- a/Content.Shared/Contraband/ContrabandSystem.cs +++ b/Content.Shared/Contraband/ContrabandSystem.cs @@ -66,17 +66,13 @@ public sealed class ContrabandSystem : EntitySystem // two strings: // one, the actual informative 'this is restricted' // then, the 'you can/shouldn't carry this around' based on the ID the user is wearing - var localizedDepartments = component.AllowedDepartments.Select(p => Loc.GetString("contraband-department-plural", ("department", Loc.GetString(_proto.Index(p).Name)))); - var jobs = component.AllowedJobs.Select(p => _proto.Index(p).LocalizedName).ToArray(); - var localizedJobs = jobs.Select(p => Loc.GetString("contraband-job-plural", ("job", p))); var severity = _proto.Index(component.Severity); String departmentExamineMessage; if (severity.ShowDepartmentsAndJobs) { - //creating a combined list of jobs and departments for the restricted text - var list = ContentLocalizationManager.FormatList(localizedDepartments.Concat(localizedJobs).ToList()); // department restricted text - departmentExamineMessage = Loc.GetString("contraband-examine-text-Restricted-department", ("departments", list)); + departmentExamineMessage = + GenerateDepartmentExamineMessage(component.AllowedDepartments, component.AllowedJobs); } else { @@ -95,6 +91,7 @@ public sealed class ContrabandSystem : EntitySystem } } + var jobs = component.AllowedJobs.Select(p => _proto.Index(p).LocalizedName).ToArray(); // if it is fully restricted, you're department-less, or your department isn't in the allowed list, you cannot carry it. Otherwise, you can. var carryingMessage = Loc.GetString("contraband-examine-text-avoid-carrying-around"); var iconTexture = "/Textures/Interface/VerbIcons/lock-red.svg.192dpi.png"; @@ -112,6 +109,19 @@ public sealed class ContrabandSystem : EntitySystem iconTexture); } + public string GenerateDepartmentExamineMessage(HashSet> allowedDepartments, HashSet> allowedJobs, ContrabandItemType itemType = ContrabandItemType.Item) + { + var localizedDepartments = allowedDepartments.Select(p => Loc.GetString("contraband-department-plural", ("department", Loc.GetString(_proto.Index(p).Name)))); + var jobs = allowedJobs.Select(p => _proto.Index(p).LocalizedName).ToArray(); + var localizedJobs = jobs.Select(p => Loc.GetString("contraband-job-plural", ("job", p))); + + //creating a combined list of jobs and departments for the restricted text + var list = ContentLocalizationManager.FormatList(localizedDepartments.Concat(localizedJobs).ToList()); + + // department restricted text + return Loc.GetString("contraband-examine-text-Restricted-department", ("departments", list), ("type", itemType)); + } + private FormattedMessage GetContrabandExamine(String deptMessage, String carryMessage) { var msg = new FormattedMessage(); @@ -131,3 +141,12 @@ public sealed class ContrabandSystem : EntitySystem _contrabandExamineOnlyInHudEnabled = val; } } + +/// +/// The item type that the contraband text should follow in the description text. +/// +public enum ContrabandItemType +{ + Item, + Reagent +} diff --git a/Content.Shared/Damage/Systems/DamageableSystem.cs b/Content.Shared/Damage/Systems/DamageableSystem.cs index 70fbc46806..f3a4f37830 100644 --- a/Content.Shared/Damage/Systems/DamageableSystem.cs +++ b/Content.Shared/Damage/Systems/DamageableSystem.cs @@ -92,7 +92,7 @@ namespace Content.Shared.Damage private void DamageableInit(EntityUid uid, DamageableComponent component, ComponentInit _) { if (component.DamageContainerID != null && - _prototypeManager.TryIndex(component.DamageContainerID, + _prototypeManager.Resolve(component.DamageContainerID, out var damageContainerPrototype)) { // Initialize damage dictionary, using the types and groups from the damage @@ -195,7 +195,7 @@ namespace Content.Shared.Damage if (!ignoreResistances) { if (damageable.DamageModifierSetId != null && - _prototypeManager.TryIndex(damageable.DamageModifierSetId, out var modifierSet)) + _prototypeManager.Resolve(damageable.DamageModifierSetId, out var modifierSet)) { // TODO DAMAGE PERFORMANCE // use a local private field instead of creating a new dictionary here.. diff --git a/Content.Shared/DoAfter/DoAfterArgs.cs b/Content.Shared/DoAfter/DoAfterArgs.cs index ba2b38ab5d..4452f71829 100644 --- a/Content.Shared/DoAfter/DoAfterArgs.cs +++ b/Content.Shared/DoAfter/DoAfterArgs.cs @@ -319,6 +319,7 @@ public enum DuplicateConditions : byte All = SameTool | SameTarget | SameEvent, } +[Serializable, NetSerializable] public enum AttemptFrequency : byte { /// diff --git a/Content.Shared/DoAfter/DoAfterArgsComponent.cs b/Content.Shared/DoAfter/DoAfterArgsComponent.cs new file mode 100644 index 0000000000..bae1d37983 --- /dev/null +++ b/Content.Shared/DoAfter/DoAfterArgsComponent.cs @@ -0,0 +1,116 @@ +using Content.Shared.FixedPoint; +using Robust.Shared.GameStates; + +namespace Content.Shared.DoAfter; + +/// +/// For setting DoAfterArgs on an entity level +/// Would require some setup, will require a rework eventually +/// +[RegisterComponent, NetworkedComponent] +[Access(typeof(SharedDoAfterSystem))] +public sealed partial class DoAfterArgsComponent : Component +{ + #region DoAfterArgsSettings + /// + /// + /// + [DataField] + public AttemptFrequency AttemptFrequency; + + /// + /// + /// + [DataField] + public bool Broadcast; + + /// + /// + /// + [DataField] + public TimeSpan Delay = TimeSpan.FromSeconds(2); + + /// + /// + /// + [DataField] + public bool Hidden; + + /// + /// Should this DoAfter repeat after being completed? + /// + [DataField] + public bool Repeat; + + #region Break/Cancellation Options + /// + /// + /// + [DataField] + public bool NeedHand; + + /// + /// + /// + [DataField] + public bool BreakOnHandChange = true; + + /// + /// + /// + [DataField] + public bool BreakOnDropItem = true; + + /// + /// + /// + [DataField] + public bool BreakOnMove; + + /// + /// + /// + [DataField] + public bool BreakOnWeightlessMove = true; + + /// + /// + /// + [DataField] + public float MovementThreshold = 0.3f; + + /// + /// + /// + [DataField] + public float? DistanceThreshold; + + /// + /// + /// + [DataField] + public bool BreakOnDamage; + + /// + /// + /// + [DataField] + public FixedPoint2 DamageThreshold = 1; + + /// + /// + /// + [DataField] + public bool RequireCanInteract = true; + // End Break/Cancellation Options + #endregion + + /// + /// What should the delay be reduced to after completion? + /// + [DataField] + public TimeSpan? DelayReduction; + + // End DoAfterArgsSettings + #endregion +} diff --git a/Content.Shared/DoAfter/DoAfterComponent.cs b/Content.Shared/DoAfter/DoAfterComponent.cs index ce45e35c59..ffe575ebc7 100644 --- a/Content.Shared/DoAfter/DoAfterComponent.cs +++ b/Content.Shared/DoAfter/DoAfterComponent.cs @@ -1,4 +1,5 @@ using System.Threading.Tasks; +using Content.Shared.FixedPoint; using Robust.Shared.GameStates; using Robust.Shared.Serialization; @@ -8,10 +9,16 @@ namespace Content.Shared.DoAfter; [Access(typeof(SharedDoAfterSystem))] public sealed partial class DoAfterComponent : Component { - [DataField("nextId")] + /// + /// The id of the next doafter + /// + [DataField] public ushort NextId; - [DataField("doAfters")] + /// + /// collection of id + doafter + /// + [DataField] public Dictionary DoAfters = new(); // Used by obsolete async do afters diff --git a/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs b/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs index c70c7ab61e..283a08df08 100644 --- a/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs +++ b/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs @@ -188,7 +188,7 @@ public abstract partial class SharedDoAfterSystem : EntitySystem { if (args.DistanceThreshold != null) { - if (!_interaction.InRangeUnobstructed(args.User, args.Target.Value, args.DistanceThreshold.Value)) + if (!_interaction.InRangeAndAccessible(args.User, args.Target.Value, args.DistanceThreshold.Value)) return true; } } diff --git a/Content.Shared/DoAfter/SharedDoAfterSystem.cs b/Content.Shared/DoAfter/SharedDoAfterSystem.cs index 1dc1e58be6..c1a3d6ecee 100644 --- a/Content.Shared/DoAfter/SharedDoAfterSystem.cs +++ b/Content.Shared/DoAfter/SharedDoAfterSystem.cs @@ -29,6 +29,7 @@ public abstract partial class SharedDoAfterSystem : EntitySystem public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(OnDamage); SubscribeLocalEvent(OnUnpaused); SubscribeLocalEvent(OnDoAfterGetState); @@ -313,16 +314,16 @@ public abstract partial class SharedDoAfterSystem : EntitySystem /// /// Cancels an active DoAfter. /// - public void Cancel(DoAfterId? id, DoAfterComponent? comp = null) + public void Cancel(DoAfterId? id, DoAfterComponent? comp = null, bool force = false) { if (id != null) - Cancel(id.Value.Uid, id.Value.Index, comp); + Cancel(id.Value.Uid, id.Value.Index, comp, force); } /// /// Cancels an active DoAfter. /// - public void Cancel(EntityUid entity, ushort id, DoAfterComponent? comp = null) + public void Cancel(EntityUid entity, ushort id, DoAfterComponent? comp = null, bool force = false) { if (!Resolve(entity, ref comp, false)) return; @@ -333,13 +334,13 @@ public abstract partial class SharedDoAfterSystem : EntitySystem return; } - InternalCancel(doAfter, comp); + InternalCancel(doAfter, comp, force: force); Dirty(entity, comp); } - private void InternalCancel(DoAfter doAfter, DoAfterComponent component) + private void InternalCancel(DoAfter doAfter, DoAfterComponent component, bool force = false) { - if (doAfter.Cancelled || doAfter.Completed) + if (doAfter.Cancelled || (doAfter.Completed && !force)) return; // Caller is responsible for dirtying the component. diff --git a/Content.Shared/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs b/Content.Shared/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs index 2e44effad9..6984be91f9 100644 --- a/Content.Shared/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs +++ b/Content.Shared/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs @@ -3,7 +3,7 @@ using Robust.Shared.Prototypes; namespace Content.Shared.Ghost.Roles.Components { /// - /// Allows a ghost to take this role, spawning a new entity. + /// Allows a ghost to take this role, spawning a new entity. /// [RegisterComponent, EntityCategory("Spawner")] public sealed partial class GhostRoleMobSpawnerComponent : Component @@ -21,9 +21,9 @@ namespace Content.Shared.Ghost.Roles.Components public EntProtoId? Prototype; /// - /// If this ghostrole spawner has multiple selectable ghostrole prototypes. + /// If this ghostrole spawner has multiple selectable ghostrole prototypes. /// [DataField] - public List SelectablePrototypes = []; + public List> SelectablePrototypes = []; } } diff --git a/Content.Shared/Humanoid/Markings/MarkingManager.cs b/Content.Shared/Humanoid/Markings/MarkingManager.cs index e844dc2280..28637f9303 100644 --- a/Content.Shared/Humanoid/Markings/MarkingManager.cs +++ b/Content.Shared/Humanoid/Markings/MarkingManager.cs @@ -254,9 +254,9 @@ namespace Content.Shared.Humanoid.Markings IoCManager.Resolve(ref prototypeManager); var speciesProto = prototypeManager.Index(species); if ( - !prototypeManager.TryIndex(speciesProto.SpriteSet, out var baseSprites) || + !prototypeManager.Resolve(speciesProto.SpriteSet, out var baseSprites) || !baseSprites.Sprites.TryGetValue(layer, out var spriteName) || - !prototypeManager.TryIndex(spriteName, out HumanoidSpeciesSpriteLayer? sprite) || + !prototypeManager.Resolve(spriteName, out HumanoidSpeciesSpriteLayer? sprite) || sprite == null || !sprite.MarkingsMatchSkin ) diff --git a/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs b/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs index 1df46e53d6..7a22c0c29e 100644 --- a/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs +++ b/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs @@ -91,7 +91,7 @@ public abstract class SharedHumanoidAppearanceSystem : EntitySystem } if (string.IsNullOrEmpty(humanoid.Initial) - || !_proto.TryIndex(humanoid.Initial, out HumanoidProfilePrototype? startingSet)) + || !_proto.Resolve(humanoid.Initial, out HumanoidProfilePrototype? startingSet)) { LoadProfile(uid, HumanoidCharacterProfile.DefaultWithSpecies(humanoid.Species), humanoid); return; @@ -292,7 +292,7 @@ public abstract class SharedHumanoidAppearanceSystem : EntitySystem if (!Resolve(uid, ref humanoid)) return; - if (!_proto.TryIndex(humanoid.Species, out var species)) + if (!_proto.Resolve(humanoid.Species, out var species)) { return; } diff --git a/Content.Shared/Light/EntitySystems/UnpoweredFlashlightSystem.cs b/Content.Shared/Light/EntitySystems/UnpoweredFlashlightSystem.cs index 6dc6cbfe0b..ce3c016080 100644 --- a/Content.Shared/Light/EntitySystems/UnpoweredFlashlightSystem.cs +++ b/Content.Shared/Light/EntitySystems/UnpoweredFlashlightSystem.cs @@ -86,7 +86,7 @@ public sealed class UnpoweredFlashlightSystem : EntitySystem if (!_light.TryGetLight(uid, out var light)) return; - if (_prototypeManager.TryIndex(component.EmaggedColorsPrototype, out var possibleColors)) + if (_prototypeManager.Resolve(component.EmaggedColorsPrototype, out var possibleColors)) { var pick = _random.Pick(possibleColors.Colors.Values); _light.SetColor(uid, pick, light); diff --git a/Content.Shared/Nutrition/EntitySystems/FoodSequenceSystem.cs b/Content.Shared/Nutrition/EntitySystems/FoodSequenceSystem.cs index 7b50ae2c8b..0e87278466 100644 --- a/Content.Shared/Nutrition/EntitySystems/FoodSequenceSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/FoodSequenceSystem.cs @@ -15,14 +15,15 @@ namespace Content.Shared.Nutrition.EntitySystems; public sealed class FoodSequenceSystem : SharedFoodSequenceSystem { - [Dependency] private readonly SharedSolutionContainerSystem _solutionContainer = default!; - [Dependency] private readonly SharedPopupSystem _popup = default!; - [Dependency] private readonly MetaDataSystem _metaData = default!; - [Dependency] private readonly MobStateSystem _mobState = default!; - [Dependency] private readonly TagSystem _tag = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; + [Dependency] private readonly IngestionSystem _ingestion = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedSolutionContainerSystem _solutionContainer = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly TagSystem _tag = default!; public override void Initialize() { @@ -44,7 +45,7 @@ public sealed class FoodSequenceSystem : SharedFoodSequenceSystem if (!TryComp(args.Start, out var start)) return; - if (!_proto.TryIndex(args.Proto, out var elementProto)) + if (!_proto.Resolve(args.Proto, out var elementProto)) return; if (!ent.Comp.OnlyFinal || elementProto.Final || start.FoodLayers.Count == start.MaxLayers) @@ -78,13 +79,13 @@ public sealed class FoodSequenceSystem : SharedFoodSequenceSystem return true; Metamorf(start, _random.Pick(availableRecipes)); //In general, if there's more than one recipe, the yml-guys screwed up. Maybe some kind of unit test is needed. - QueueDel(start); + PredictedQueueDel(start.Owner); return true; } private void Metamorf(Entity start, MetamorphRecipePrototype recipe) { - var result = SpawnAtPosition(recipe.Result, Transform(start).Coordinates); + var result = PredictedSpawnNextToOrDrop(recipe.Result, start); //Try putting in container _transform.DropNextTo(result, (start, Transform(start))); @@ -100,22 +101,24 @@ public sealed class FoodSequenceSystem : SharedFoodSequenceSystem _solutionContainer.TryAddSolution(resultSoln.Value, startSolution); MergeFlavorProfiles(start, result); - MergeTrash(start, result); + MergeTrash(start.Owner, result); MergeTags(start, result); } - private bool TryAddFoodElement(Entity start, Entity element, EntityUid? user = null) + private bool TryAddFoodElement(Entity start, Entity element, EntityUid? user = null) { // we can't add a live mouse to a burger. - if (!TryComp(element, out var elementFood)) + if (!Resolve(element, ref element.Comp2, false)) return false; - if (elementFood.RequireDead && _mobState.IsAlive(element)) + + if (element.Comp2.RequireDead && _mobState.IsAlive(element)) return false; //looking for a suitable FoodSequence prototype - if (!element.Comp.Entries.TryGetValue(start.Comp.Key, out var elementProto)) + if (!element.Comp1.Entries.TryGetValue(start.Comp.Key, out var elementProto)) return false; - if (!_proto.TryIndex(elementProto, out var elementIndexed)) + + if (!_proto.Resolve(elementProto, out var elementIndexed)) return false; //if we run out of space, we can still put in one last, final finishing element. @@ -150,15 +153,15 @@ public sealed class FoodSequenceSystem : SharedFoodSequenceSystem start.Comp.Finished = true; UpdateFoodName(start); - MergeFoodSolutions(start, element); + MergeFoodSolutions(start.Owner, element.Owner); MergeFlavorProfiles(start, element); - MergeTrash(start, element); + MergeTrash(start.Owner, element.Owner); MergeTags(start, element); var ev = new FoodSequenceIngredientAddedEvent(start, element, elementProto, user); RaiseLocalEvent(start, ev); - QueueDel(element); + PredictedQueueDel(element.Owner); return true; } @@ -182,7 +185,7 @@ public sealed class FoodSequenceSystem : SharedFoodSequenceSystem var nameCounter = 1; foreach (var proto in existedContentNames) { - if (!_proto.TryIndex(proto, out var protoIndexed)) + if (!_proto.Resolve(proto, out var protoIndexed)) continue; if (protoIndexed.Name is null) @@ -203,18 +206,18 @@ public sealed class FoodSequenceSystem : SharedFoodSequenceSystem _metaData.SetEntityName(start, newName); } - private void MergeFoodSolutions(EntityUid start, EntityUid element) + private void MergeFoodSolutions(Entity start, Entity element) { - if (!TryComp(start, out var startFood)) + if (!Resolve(start, ref start.Comp, false)) return; - if (!TryComp(element, out var elementFood)) + if (!Resolve(element, ref element.Comp, false)) return; - if (!_solutionContainer.TryGetSolution(start, startFood.Solution, out var startSolutionEntity, out var startSolution)) + if (!_solutionContainer.TryGetSolution(start.Owner, start.Comp.Solution, out var startSolutionEntity, out var startSolution)) return; - if (!_solutionContainer.TryGetSolution(element, elementFood.Solution, out _, out var elementSolution)) + if (!_solutionContainer.TryGetSolution(element.Owner, element.Comp.Solution, out _, out var elementSolution)) return; startSolution.MaxVolume += elementSolution.MaxVolume; @@ -236,18 +239,15 @@ public sealed class FoodSequenceSystem : SharedFoodSequenceSystem } } - private void MergeTrash(EntityUid start, EntityUid element) + private void MergeTrash(Entity start, Entity element) { - if (!TryComp(start, out var startFood)) + if (!Resolve(start, ref start.Comp, false)) return; - if (!TryComp(element, out var elementFood)) + if (!Resolve(element, ref element.Comp, false)) return; - foreach (var trash in elementFood.Trash) - { - startFood.Trash.Add(trash); - } + _ingestion.AddTrash((start, start.Comp), element.Comp.Trash); } private void MergeTags(EntityUid start, EntityUid element) diff --git a/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs b/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs index bd869c6415..559a6a1019 100644 --- a/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs @@ -237,13 +237,13 @@ public sealed class HungerSystem : EntitySystem switch (component.CurrentThreshold) { case HungerThreshold.Overfed: - _prototype.TryIndex(HungerIconOverfedId, out prototype); + _prototype.Resolve(HungerIconOverfedId, out prototype); break; case HungerThreshold.Peckish: - _prototype.TryIndex(HungerIconPeckishId, out prototype); + _prototype.Resolve(HungerIconPeckishId, out prototype); break; case HungerThreshold.Starving: - _prototype.TryIndex(HungerIconStarvingId, out prototype); + _prototype.Resolve(HungerIconStarvingId, out prototype); break; default: prototype = null; diff --git a/Content.Shared/Nutrition/EntitySystems/IngestionSystem.API.cs b/Content.Shared/Nutrition/EntitySystems/IngestionSystem.API.cs index 3a8ef333d7..990c8105c5 100644 --- a/Content.Shared/Nutrition/EntitySystems/IngestionSystem.API.cs +++ b/Content.Shared/Nutrition/EntitySystems/IngestionSystem.API.cs @@ -1,4 +1,5 @@ -using System.Diagnostics.CodeAnalysis; +using System.Diagnostics; +using System.Diagnostics.CodeAnalysis; using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.Components.SolutionManager; using Content.Shared.Chemistry.Reagent; @@ -140,25 +141,35 @@ public sealed partial class IngestionSystem #region EdibleComponent - public void SpawnTrash(Entity entity, EntityUid user) + public void SpawnTrash(Entity entity, EntityUid? user = null) { if (entity.Comp.Trash.Count == 0) return; var position = _transform.GetMapCoordinates(entity); var trashes = entity.Comp.Trash; - var tryPickup = _hands.IsHolding(user, entity, out _); + var pickup = user != null && _hands.IsHolding(user.Value, entity, out _); foreach (var trash in trashes) { var spawnedTrash = EntityManager.PredictedSpawn(trash, position); // If the user is holding the item - if (tryPickup) - { - // Put the trash in the user's hand - _hands.TryPickupAnyHand(user, spawnedTrash); - } + if (!pickup) + continue; + + // Put the trash in the user's hand + // I am 100% confident we don't need this check but rider gets made at me if it's not here. + if (user != null) + _hands.TryPickupAnyHand(user.Value, spawnedTrash); + } + } + + public void AddTrash(Entity entity, List newTrash) + { + foreach (var trash in newTrash) + { + entity.Comp.Trash.Add(trash); } } diff --git a/Content.Shared/Nutrition/EntitySystems/SharedCreamPieSystem.cs b/Content.Shared/Nutrition/EntitySystems/SharedCreamPieSystem.cs index 86eec26bfd..a0a82d63ef 100644 --- a/Content.Shared/Nutrition/EntitySystems/SharedCreamPieSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/SharedCreamPieSystem.cs @@ -20,18 +20,18 @@ namespace Content.Shared.Nutrition.EntitySystems SubscribeLocalEvent(OnCreamPiedHitBy); } - public void SplatCreamPie(EntityUid uid, CreamPieComponent creamPie) + public void SplatCreamPie(Entity creamPie) { // Already splatted! Do nothing. - if (creamPie.Splatted) + if (creamPie.Comp.Splatted) return; - creamPie.Splatted = true; + creamPie.Comp.Splatted = true; - SplattedCreamPie(uid, creamPie); + SplattedCreamPie(creamPie); } - protected virtual void SplattedCreamPie(EntityUid uid, CreamPieComponent creamPie) {} + protected virtual void SplattedCreamPie(Entity entity) { } public void SetCreamPied(EntityUid uid, CreamPiedComponent creamPied, bool value) { @@ -46,14 +46,14 @@ namespace Content.Shared.Nutrition.EntitySystems } } - private void OnCreamPieLand(EntityUid uid, CreamPieComponent component, ref LandEvent args) + private void OnCreamPieLand(Entity entity, ref LandEvent args) { - SplatCreamPie(uid, component); + SplatCreamPie(entity); } - private void OnCreamPieHit(EntityUid uid, CreamPieComponent component, ThrowDoHitEvent args) + private void OnCreamPieHit(Entity entity, ref ThrowDoHitEvent args) { - SplatCreamPie(uid, component); + SplatCreamPie(entity); } private void OnCreamPiedHitBy(EntityUid uid, CreamPiedComponent creamPied, ThrowHitByEvent args) diff --git a/Content.Shared/Nutrition/EntitySystems/ThirstSystem.cs b/Content.Shared/Nutrition/EntitySystems/ThirstSystem.cs index 808337639a..ff0ce54953 100644 --- a/Content.Shared/Nutrition/EntitySystems/ThirstSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/ThirstSystem.cs @@ -126,15 +126,15 @@ public sealed class ThirstSystem : EntitySystem switch (component.CurrentThirstThreshold) { case ThirstThreshold.OverHydrated: - _prototype.TryIndex(ThirstIconOverhydratedId, out prototype); + _prototype.Resolve(ThirstIconOverhydratedId, out prototype); break; case ThirstThreshold.Thirsty: - _prototype.TryIndex(ThirstIconThirstyId, out prototype); + _prototype.Resolve(ThirstIconThirstyId, out prototype); break; case ThirstThreshold.Parched: - _prototype.TryIndex(ThirstIconParchedId, out prototype); + _prototype.Resolve(ThirstIconParchedId, out prototype); break; default: diff --git a/Content.Shared/Nutrition/FoodMetamorphRules/FoodMetamorphRule.cs b/Content.Shared/Nutrition/FoodMetamorphRules/FoodMetamorphRule.cs index 9e59573ff8..b5c8ad08c5 100644 --- a/Content.Shared/Nutrition/FoodMetamorphRules/FoodMetamorphRule.cs +++ b/Content.Shared/Nutrition/FoodMetamorphRules/FoodMetamorphRule.cs @@ -53,7 +53,7 @@ public sealed partial class LastElementHasTags : FoodMetamorphRule { var lastIngredient = ingredients[ingredients.Count - 1]; - if (!protoMan.TryIndex(lastIngredient.Proto, out var protoIndexed)) + if (!protoMan.Resolve(lastIngredient.Proto, out var protoIndexed)) return false; foreach (var tag in Tags) @@ -96,7 +96,7 @@ public sealed partial class ElementHasTags : FoodMetamorphRule if (ingredients.Count < ElementNumber + 1) return false; - if (!protoMan.TryIndex(ingredients[ElementNumber].Proto, out var protoIndexed)) + if (!protoMan.Resolve(ingredients[ElementNumber].Proto, out var protoIndexed)) return false; foreach (var tag in Tags) @@ -180,7 +180,7 @@ public sealed partial class IngredientsWithTags : FoodMetamorphRule var count = 0; foreach (var ingredient in ingredients) { - if (!protoMan.TryIndex(ingredient.Proto, out var protoIndexed)) + if (!protoMan.Resolve(ingredient.Proto, out var protoIndexed)) continue; var allowed = false; diff --git a/Content.Shared/Popups/SharedPopupSystem.cs b/Content.Shared/Popups/SharedPopupSystem.cs index b57ed6659e..b2be7509f5 100644 --- a/Content.Shared/Popups/SharedPopupSystem.cs +++ b/Content.Shared/Popups/SharedPopupSystem.cs @@ -73,7 +73,7 @@ namespace Content.Shared.Popups /// /// Variant of for use with prediction. The local client will /// the popup to the recipient, and the server will show it to every other player in PVS range. If recipient is null, the local - // client will do nothing and the server will show the message to every player in PVS range. + /// client will do nothing and the server will show the message to every player in PVS range. /// public abstract void PopupPredictedCoordinates(string? message, EntityCoordinates coordinates, EntityUid? recipient, PopupType type = PopupType.Small); diff --git a/Content.Shared/Preferences/HumanoidCharacterProfile.cs b/Content.Shared/Preferences/HumanoidCharacterProfile.cs index f22669ddc7..098f65ef18 100644 --- a/Content.Shared/Preferences/HumanoidCharacterProfile.cs +++ b/Content.Shared/Preferences/HumanoidCharacterProfile.cs @@ -399,7 +399,7 @@ namespace Content.Shared.Preferences // Category not found so dump it. TraitCategoryPrototype? traitCategory = null; - if (category != null && !protoManager.TryIndex(category, out traitCategory)) + if (category != null && !protoManager.Resolve(category, out traitCategory)) return new(this); var list = new HashSet>(_traitPreferences) { traitId }; @@ -631,6 +631,9 @@ namespace Content.Shared.Preferences continue; } + // This happens after we verify the prototype exists + // These values are set equal in the database and we need to make sure they're equal here too! + loadouts.Role = roleName; loadouts.EnsureValid(this, session, collection); } @@ -662,7 +665,7 @@ namespace Content.Shared.Preferences } // No category so dump it. - if (!protoManager.TryIndex(traitProto.Category, out var category)) + if (!protoManager.Resolve(traitProto.Category, out var category)) continue; var existing = groups.GetOrNew(category.ID); diff --git a/Content.Shared/RCD/Systems/RCDSystem.cs b/Content.Shared/RCD/Systems/RCDSystem.cs index cb8450a500..2e638d7c13 100644 --- a/Content.Shared/RCD/Systems/RCDSystem.cs +++ b/Content.Shared/RCD/Systems/RCDSystem.cs @@ -111,7 +111,7 @@ public sealed class RCDSystem : EntitySystem var name = Loc.GetString(prototype.SetName); if (prototype.Prototype != null && - _protoManager.TryIndex(prototype.Prototype, out var proto)) + _protoManager.Resolve(prototype.Prototype, out var proto)) name = proto.Name; msg = Loc.GetString("rcd-component-examine-build-details", ("name", name)); @@ -178,7 +178,7 @@ public sealed class RCDSystem : EntitySystem var deconstructedTile = _mapSystem.GetTileRef(gridUid.Value, mapGrid, location); var protoName = !_turf.IsSpace(deconstructedTile) ? _deconstructTileProto : _deconstructLatticeProto; - if (_protoManager.TryIndex(protoName, out var deconProto)) + if (_protoManager.Resolve(protoName, out var deconProto)) { cost = deconProto.Cost; delay = deconProto.Delay; diff --git a/Content.Shared/Roles/JobRequirement/DepartmentTimeRequirement.cs b/Content.Shared/Roles/JobRequirement/DepartmentTimeRequirement.cs index 8c86299210..4034b8b419 100644 --- a/Content.Shared/Roles/JobRequirement/DepartmentTimeRequirement.cs +++ b/Content.Shared/Roles/JobRequirement/DepartmentTimeRequirement.cs @@ -53,7 +53,7 @@ public sealed partial class DepartmentTimeRequirement : JobRequirement var formattedDeptDiff = ContentLocalizationManager.FormatPlaytime(deptDiffSpan); var nameDepartment = "role-timer-department-unknown"; - if (protoManager.TryIndex(Department, out var departmentIndexed)) + if (protoManager.Resolve(Department, out var departmentIndexed)) { nameDepartment = departmentIndexed.Name; } diff --git a/Content.Shared/Roles/Jobs/SharedJobSystem.cs b/Content.Shared/Roles/Jobs/SharedJobSystem.cs index 6526a3237a..867842308e 100644 --- a/Content.Shared/Roles/Jobs/SharedJobSystem.cs +++ b/Content.Shared/Roles/Jobs/SharedJobSystem.cs @@ -161,7 +161,7 @@ public abstract class SharedJobSystem : EntitySystem prototype = null; MindTryGetJobId(mindId, out var protoId); - return _prototypes.TryIndex(protoId, out prototype) || prototype is not null; + return _prototypes.Resolve(protoId, out prototype) || prototype is not null; } public bool MindTryGetJobId( diff --git a/Content.Shared/Roles/SharedRoleSystem.cs b/Content.Shared/Roles/SharedRoleSystem.cs index d1afae9fd1..ea25555257 100644 --- a/Content.Shared/Roles/SharedRoleSystem.cs +++ b/Content.Shared/Roles/SharedRoleSystem.cs @@ -140,7 +140,7 @@ public abstract class SharedRoleSystem : EntitySystem return; } - if (!_prototypes.TryIndex(protoId, out var protoEnt)) + if (!_prototypes.Resolve(protoId, out var protoEnt)) { Log.Error($"Failed to add role {protoId} to {ToPrettyString(mindId)} : Role prototype does not exist"); return; diff --git a/Content.Server/Shuttles/Components/EmergencyShuttleConsoleComponent.cs b/Content.Shared/Shuttles/Components/EmergencyShuttleConsoleComponent.cs similarity index 81% rename from Content.Server/Shuttles/Components/EmergencyShuttleConsoleComponent.cs rename to Content.Shared/Shuttles/Components/EmergencyShuttleConsoleComponent.cs index 6379a76f55..d851056208 100644 --- a/Content.Server/Shuttles/Components/EmergencyShuttleConsoleComponent.cs +++ b/Content.Shared/Shuttles/Components/EmergencyShuttleConsoleComponent.cs @@ -1,6 +1,8 @@ -namespace Content.Server.Shuttles.Components; +using Robust.Shared.GameStates; -[RegisterComponent] +namespace Content.Shared.Shuttles.Components; + +[RegisterComponent, NetworkedComponent] public sealed partial class EmergencyShuttleConsoleComponent : Component { // TODO: Okay doing it by string is kinda suss but also ID card tracking doesn't seem to be robust enough diff --git a/Content.Shared/Shuttles/Systems/SharedEmergencyShuttleSystem.cs b/Content.Shared/Shuttles/Systems/SharedEmergencyShuttleSystem.cs new file mode 100644 index 0000000000..7f818767ea --- /dev/null +++ b/Content.Shared/Shuttles/Systems/SharedEmergencyShuttleSystem.cs @@ -0,0 +1,34 @@ +using Content.Shared.CCVar; +using Content.Shared.Popups; +using Content.Shared.Shuttles.Components; +using Content.Shared.UserInterface; +using Robust.Shared.Configuration; + +namespace Content.Shared.Shuttles.Systems; + +public abstract class SharedEmergencyShuttleSystem : EntitySystem +{ + [Dependency] protected readonly IConfigurationManager ConfigManager = default!; + [Dependency] protected readonly SharedPopupSystem Popup = default!; + + private bool _emergencyEarlyLaunchAllowed; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnEmergencyOpenAttempt); + + Subs.CVar(ConfigManager, CCVars.EmergencyEarlyLaunchAllowed, value => _emergencyEarlyLaunchAllowed = value, true); + } + + private void OnEmergencyOpenAttempt(Entity ent, ref ActivatableUIOpenAttemptEvent args) + { + // I'm hoping ActivatableUI checks it's open before allowing these messages. + if (_emergencyEarlyLaunchAllowed) + return; + + args.Cancel(); + Popup.PopupClient(Loc.GetString("emergency-shuttle-console-no-early-launches"), ent, args.User); + } +} diff --git a/Content.Shared/Silicons/Borgs/SharedBorgSwitchableTypeSystem.cs b/Content.Shared/Silicons/Borgs/SharedBorgSwitchableTypeSystem.cs index 914470e3c9..12a7928c0b 100644 --- a/Content.Shared/Silicons/Borgs/SharedBorgSwitchableTypeSystem.cs +++ b/Content.Shared/Silicons/Borgs/SharedBorgSwitchableTypeSystem.cs @@ -100,7 +100,7 @@ public abstract class SharedBorgSwitchableTypeSystem : EntitySystem protected void UpdateEntityAppearance(Entity entity) { - if (!Prototypes.TryIndex(entity.Comp.SelectedBorgType, out var proto)) + if (!Prototypes.Resolve(entity.Comp.SelectedBorgType, out var proto)) return; UpdateEntityAppearance(entity, proto); diff --git a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Customization.cs b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Customization.cs index d3f3fe4297..7a5131c9a1 100644 --- a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Customization.cs +++ b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Customization.cs @@ -15,7 +15,7 @@ public abstract partial class SharedStationAiSystem private void OnStationAiCustomization(Entity entity, ref StationAiCustomizationMessage args) { - if (!_protoManager.TryIndex(args.GroupProtoId, out var groupPrototype) || !_protoManager.TryIndex(args.CustomizationProtoId, out var customizationProto)) + if (!_protoManager.Resolve(args.GroupProtoId, out var groupPrototype) || !_protoManager.Resolve(args.CustomizationProtoId, out var customizationProto)) return; if (!TryGetHeld((entity, entity.Comp), out var held)) @@ -48,7 +48,7 @@ public abstract partial class SharedStationAiSystem if (!entity.Comp.ProtoIds.TryGetValue(_stationAiHologramCustomGroupProtoId, out var protoId)) return; - if (!_protoManager.TryIndex(protoId, out var prototype)) + if (!_protoManager.Resolve(protoId, out var prototype)) return; if (!prototype.LayerData.TryGetValue(StationAiState.Hologram.ToString(), out var layerData)) @@ -70,7 +70,7 @@ public abstract partial class SharedStationAiSystem if (!TryComp(stationAi, out var stationAiCustomization) || !stationAiCustomization.ProtoIds.TryGetValue(_stationAiCoreCustomGroupProtoId, out var protoId) || - !_protoManager.TryIndex(protoId, out var prototype) || + !_protoManager.Resolve(protoId, out var prototype) || !prototype.LayerData.TryGetValue(state.ToString(), out var layerData)) { return; diff --git a/Content.Shared/SprayPainter/SharedSprayPainterSystem.cs b/Content.Shared/SprayPainter/SharedSprayPainterSystem.cs index 0a766df348..a1316e3565 100644 --- a/Content.Shared/SprayPainter/SharedSprayPainterSystem.cs +++ b/Content.Shared/SprayPainter/SharedSprayPainterSystem.cs @@ -181,7 +181,7 @@ public abstract class SharedSprayPainterSystem : EntitySystem if (ent.Comp.Group is not { } group || !painter.StylesByGroup.TryGetValue(group, out var selectedStyle) - || !Proto.TryIndex(group, out PaintableGroupPrototype? targetGroup)) + || !Proto.Resolve(group, out PaintableGroupPrototype? targetGroup)) return; // Valid paint target. diff --git a/Content.Shared/Station/SharedStationSpawningSystem.cs b/Content.Shared/Station/SharedStationSpawningSystem.cs index ac65bd5584..4ed0da5b9e 100644 --- a/Content.Shared/Station/SharedStationSpawningSystem.cs +++ b/Content.Shared/Station/SharedStationSpawningSystem.cs @@ -73,7 +73,7 @@ public abstract class SharedStationSpawningSystem : EntitySystem name = loadout.EntityName; } - if (string.IsNullOrEmpty(name) && PrototypeManager.TryIndex(roleProto.NameDataset, out var nameData)) + if (string.IsNullOrEmpty(name) && PrototypeManager.Resolve(roleProto.NameDataset, out var nameData)) { name = Loc.GetString(_random.Pick(nameData.Values)); } @@ -95,7 +95,7 @@ public abstract class SharedStationSpawningSystem : EntitySystem /// public void EquipStartingGear(EntityUid entity, ProtoId? startingGear, bool raiseEvent = true) { - PrototypeManager.TryIndex(startingGear, out var gearProto); + PrototypeManager.Resolve(startingGear, out var gearProto); EquipStartingGear(entity, gearProto, raiseEvent); } @@ -198,7 +198,7 @@ public abstract class SharedStationSpawningSystem : EntitySystem { foreach (var items in group.Value) { - if (!PrototypeManager.TryIndex(items.Prototype, out var loadoutPrototype)) + if (!PrototypeManager.Resolve(items.Prototype, out var loadoutPrototype)) return null; var gear = ((IEquipmentLoadout) loadoutPrototype).GetGear(slot); diff --git a/Content.Shared/StatusEffectNew/StatusEffectsSystem.cs b/Content.Shared/StatusEffectNew/StatusEffectsSystem.cs index 750868481e..446b3fd3b1 100644 --- a/Content.Shared/StatusEffectNew/StatusEffectsSystem.cs +++ b/Content.Shared/StatusEffectNew/StatusEffectsSystem.cs @@ -123,7 +123,7 @@ public sealed partial class StatusEffectsSystem : EntitySystem public bool CanAddStatusEffect(EntityUid uid, EntProtoId effectProto) { - if (!_proto.TryIndex(effectProto, out var effectProtoData)) + if (!_proto.Resolve(effectProto, out var effectProtoData)) return false; if (!effectProtoData.TryGetComponent(out var effectProtoComp, Factory)) diff --git a/Content.Shared/Storage/EntitySystems/DumpableSystem.cs b/Content.Shared/Storage/EntitySystems/DumpableSystem.cs index 6c0cc2d656..0d744a4fe9 100644 --- a/Content.Shared/Storage/EntitySystems/DumpableSystem.cs +++ b/Content.Shared/Storage/EntitySystems/DumpableSystem.cs @@ -108,7 +108,7 @@ public sealed class DumpableSystem : EntitySystem foreach (var entity in storage.Container.ContainedEntities) { if (!_itemQuery.TryGetComponent(entity, out var itemComp) || - !_prototypeManager.TryIndex(itemComp.Size, out var itemSize)) + !_prototypeManager.Resolve(itemComp.Size, out var itemSize)) { continue; } diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index 74c47bbb25..e4f0aa8b23 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -579,7 +579,7 @@ public abstract class SharedStorageSystem : EntitySystem { if (entity == args.User || !_itemQuery.TryGetComponent(entity, out var itemComp) // Need comp to get item size to get weight - || !_prototype.TryIndex(itemComp.Size, out var itemSize) + || !_prototype.Resolve(itemComp.Size, out var itemSize) || !CanInsert(uid, entity, out _, storageComp, item: itemComp) || !_interactionSystem.InRangeUnobstructed(args.User, entity)) { @@ -1822,7 +1822,7 @@ public abstract class SharedStorageSystem : EntitySystem // If we specify a max item size, use that if (uid.Comp.MaxItemSize != null) { - if (_prototype.TryIndex(uid.Comp.MaxItemSize.Value, out var proto)) + if (_prototype.Resolve(uid.Comp.MaxItemSize.Value, out var proto)) return proto; Log.Error($"{ToPrettyString(uid.Owner)} tried to get invalid item size prototype: {uid.Comp.MaxItemSize.Value}. Stack trace:\\n{Environment.StackTrace}"); diff --git a/Content.Shared/StoryGen/EntitySystems/StoryGeneratorSystem.cs b/Content.Shared/StoryGen/EntitySystems/StoryGeneratorSystem.cs index 51ad85730c..07699fa372 100644 --- a/Content.Shared/StoryGen/EntitySystems/StoryGeneratorSystem.cs +++ b/Content.Shared/StoryGen/EntitySystems/StoryGeneratorSystem.cs @@ -24,7 +24,7 @@ public sealed partial class StoryGeneratorSystem : EntitySystem public bool TryGenerateStoryFromTemplate(ProtoId template, [NotNullWhen(true)] out string? story, int? seed = null) { // Get the story template prototype from the ID - if (!_protoMan.TryIndex(template, out var templateProto)) + if (!_protoMan.Resolve(template, out var templateProto)) { story = null; return false; @@ -39,7 +39,7 @@ public sealed partial class StoryGeneratorSystem : EntitySystem foreach (var (name, list) in templateProto.Variables) { // Get the prototype for the world list dataset - if (!_protoMan.TryIndex(list, out var listProto)) + if (!_protoMan.Resolve(list, out var listProto)) continue; // Missed one, but keep going with the rest of the story // Pick a random word from the dataset and localize it diff --git a/Content.Shared/Trigger/Components/Effects/PopupOnTriggerComponent.cs b/Content.Shared/Trigger/Components/Effects/PopupOnTriggerComponent.cs new file mode 100644 index 0000000000..0f85da81c3 --- /dev/null +++ b/Content.Shared/Trigger/Components/Effects/PopupOnTriggerComponent.cs @@ -0,0 +1,51 @@ +using Content.Shared.Popups; +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Effects; + +/// +/// Displays a popup on the target when triggered. +/// Will display the popup on the user when is true. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class PopupOnTriggerComponent : BaseXOnTriggerComponent +{ + /// + /// The text this popup will display to the recipient. + /// + [DataField(required: true), AutoNetworkedField] + public LocId Text; + + /// + /// The text this popup will display to everything but the recipient. + /// If left null this will reuse . + /// + [DataField, AutoNetworkedField] + public LocId? OtherText; + + /// + /// The size and color of the popup. + /// + [DataField, AutoNetworkedField] + public PopupType PopupType = PopupType.Small; + + /// + /// If true, the user is the recipient of the popup. + /// If false, this entity is the recipient. + /// + [DataField, AutoNetworkedField] + public bool UserIsRecipient = true; + + /// + /// If true, this popup will only play for the recipient and ignore prediction. + /// + [DataField, AutoNetworkedField] + public bool Quiet; + + /// + /// Whether to use predicted popups. + /// + /// If false, this will spam any client that causes this trigger. + [DataField, AutoNetworkedField] + public bool Predicted = true; +} diff --git a/Content.Shared/Trigger/Components/Effects/SpawnEntityTableOnTriggerComponent.cs b/Content.Shared/Trigger/Components/Effects/SpawnEntityTableOnTriggerComponent.cs new file mode 100644 index 0000000000..41cb785c05 --- /dev/null +++ b/Content.Shared/Trigger/Components/Effects/SpawnEntityTableOnTriggerComponent.cs @@ -0,0 +1,33 @@ +using Content.Shared.EntityTable.EntitySelectors; +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Effects; + +/// +/// Spawns an entity table at this entity when triggered. +/// If TargetUser is true it will be spawned at their location. +/// +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class SpawnEntityTableOnTriggerComponent : BaseXOnTriggerComponent +{ + /// + /// The table to spawn. + /// + [DataField(required: true), AutoNetworkedField] + public EntityTableSelector Table; + + /// + /// Use MapCoordinates for spawning? + /// Set to true if you don't want the new entity parented to the spawner. + /// + [DataField, AutoNetworkedField] + public bool UseMapCoords; + + /// + /// Whether to use predicted spawning. + /// + /// Randomization in EntityTables is not currently predicted! Use with caution. + [DataField, AutoNetworkedField] + public bool Predicted; +} diff --git a/Content.Shared/Trigger/Components/Effects/SpawnOnTriggerComponent.cs b/Content.Shared/Trigger/Components/Effects/SpawnOnTriggerComponent.cs index 782626f479..e1c7dad0b8 100644 --- a/Content.Shared/Trigger/Components/Effects/SpawnOnTriggerComponent.cs +++ b/Content.Shared/Trigger/Components/Effects/SpawnOnTriggerComponent.cs @@ -7,6 +7,7 @@ namespace Content.Shared.Trigger.Components.Effects; /// Spawns a protoype when triggered. /// If TargetUser is true it will be spawned at their location. /// +/// [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class SpawnOnTriggerComponent : BaseXOnTriggerComponent { diff --git a/Content.Shared/Trigger/Systems/PopupOnTriggerSystem.cs b/Content.Shared/Trigger/Systems/PopupOnTriggerSystem.cs new file mode 100644 index 0000000000..65ed216af1 --- /dev/null +++ b/Content.Shared/Trigger/Systems/PopupOnTriggerSystem.cs @@ -0,0 +1,62 @@ +using Content.Shared.Popups; +using Content.Shared.Trigger.Components.Effects; + +namespace Content.Shared.Trigger.Systems; + +/// +/// This handles +/// +public sealed class PopupOnTriggerSystem : EntitySystem +{ + [Dependency] private readonly SharedPopupSystem _popup = default!; + + /// + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnTrigger); + } + + private void OnTrigger(Entity ent, ref TriggerEvent args) + { + if (args.Key != null && !ent.Comp.KeysIn.Contains(args.Key)) + return; + + var target = ent.Comp.TargetUser ? args.User : ent.Owner; + + if (target == null) + return; + + // Popups only play for one entity + if (ent.Comp.Quiet) + { + if (ent.Comp.Predicted) + _popup.PopupClient(Loc.GetString(ent.Comp.Text), + target.Value, + ent.Comp.UserIsRecipient ? args.User : ent.Owner, + ent.Comp.PopupType); + + else if (args.User != null) + _popup.PopupEntity(Loc.GetString(ent.Comp.OtherText ?? ent.Comp.Text), + target.Value, + args.User.Value, + ent.Comp.PopupType); + + return; + } + + // Popups play for all entities + if (ent.Comp.Predicted) + _popup.PopupPredicted(Loc.GetString(ent.Comp.Text), + Loc.GetString(ent.Comp.OtherText ?? ent.Comp.Text), + target.Value, + ent.Comp.UserIsRecipient ? args.User : ent.Owner, + ent.Comp.PopupType); + + else + _popup.PopupEntity(Loc.GetString(ent.Comp.OtherText ?? ent.Comp.Text), + target.Value, + ent.Comp.PopupType); + } +} diff --git a/Content.Shared/Trigger/Systems/TriggerSystem.Spawn.cs b/Content.Shared/Trigger/Systems/TriggerSystem.Spawn.cs index edcdd03894..83457361fd 100644 --- a/Content.Shared/Trigger/Systems/TriggerSystem.Spawn.cs +++ b/Content.Shared/Trigger/Systems/TriggerSystem.Spawn.cs @@ -1,16 +1,17 @@ using Content.Shared.Trigger.Components.Effects; using Content.Shared.Trigger.Components.Triggers; +using Robust.Shared.Prototypes; namespace Content.Shared.Trigger.Systems; public sealed partial class TriggerSystem { - private void InitializeSpawn() { SubscribeLocalEvent(OnSpawnInit); SubscribeLocalEvent(HandleSpawnOnTrigger); + SubscribeLocalEvent(HandleSpawnTableOnTrigger); SubscribeLocalEvent(HandleDeleteOnTrigger); } @@ -30,27 +31,55 @@ public sealed partial class TriggerSystem return; var xform = Transform(target.Value); + SpawnTriggerHelper((target.Value, xform), ent.Comp.Proto, ent.Comp.UseMapCoords, ent.Comp.Predicted); + } - if (ent.Comp.UseMapCoords) + private void HandleSpawnTableOnTrigger(Entity ent, ref TriggerEvent args) + { + if (args.Key != null && !ent.Comp.KeysIn.Contains(args.Key)) + return; + + var target = ent.Comp.TargetUser ? args.User : ent.Owner; + + if (target == null) + return; + + var xform = Transform(target.Value); + var spawns = _entityTable.GetSpawns(ent.Comp.Table); + foreach (var proto in spawns) { - var mapCoords = _transform.GetMapCoordinates(target.Value, xform); - if (ent.Comp.Predicted) - EntityManager.PredictedSpawn(ent.Comp.Proto, mapCoords); - else if (_net.IsServer) - Spawn(ent.Comp.Proto, mapCoords); - + SpawnTriggerHelper((target.Value, xform), proto, ent.Comp.UseMapCoords, ent.Comp.Predicted); } + } + + /// + /// Helper function to combine HandleSpawnOnTrigger and HandleSpawnTableOnTrigger. + /// + /// The entity to spawn attached to or at the feet of. + /// The entity to spawn. + /// If true, spawn at target's MapCoordinates. If false, spawn attached to target. + /// Whether to use predicted spawning. + private void SpawnTriggerHelper(Entity target, EntProtoId proto, bool useMapCoords, bool predicted) + { + if (useMapCoords) + { + var mapCoords = _transform.GetMapCoordinates(target); + if (predicted) + EntityManager.PredictedSpawn(proto, mapCoords); + else if (_net.IsServer) + Spawn(proto, mapCoords); + } + else { - var coords = xform.Coordinates; + var coords = target.Comp.Coordinates; if (!coords.IsValid(EntityManager)) return; - if (ent.Comp.Predicted) - PredictedSpawnAttachedTo(ent.Comp.Proto, coords); + if (predicted) + PredictedSpawnAttachedTo(proto, coords); else if (_net.IsServer) - SpawnAttachedTo(ent.Comp.Proto, coords); - + SpawnAttachedTo(proto, coords); } } diff --git a/Content.Shared/Trigger/Systems/TriggerSystem.cs b/Content.Shared/Trigger/Systems/TriggerSystem.cs index 6a749b87ab..ca60901a79 100644 --- a/Content.Shared/Trigger/Systems/TriggerSystem.cs +++ b/Content.Shared/Trigger/Systems/TriggerSystem.cs @@ -1,6 +1,7 @@ using Content.Shared.Administration.Logs; using Content.Shared.Database; using Content.Shared.DeviceLinking; +using Content.Shared.EntityTable; using Content.Shared.Item.ItemToggle; using Content.Shared.Popups; using Content.Shared.Timing; @@ -38,6 +39,7 @@ public sealed partial class TriggerSystem : EntitySystem [Dependency] private readonly EntityWhitelistSystem _whitelist = default!; [Dependency] private readonly ItemToggleSystem _itemToggle = default!; [Dependency] private readonly SharedDeviceLinkSystem _deviceLink = default!; + [Dependency] private readonly EntityTableSystem _entityTable = default!; public const string DefaultTriggerKey = "trigger"; diff --git a/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs b/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs index d27efa4d76..1a0a31d4b1 100644 --- a/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs +++ b/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs @@ -40,6 +40,7 @@ public abstract class SharedGrapplingGunSystem : EntitySystem SubscribeLocalEvent(OnWeightlessMove); SubscribeAllEvent(OnGrapplingReel); + // TODO: After step trigger refactor, dropping a grappling gun should manually try and activate step triggers it's suppressing. SubscribeLocalEvent(OnGrapplingShot); SubscribeLocalEvent(OnGunActivate); SubscribeLocalEvent(OnGrapplingDeselected); @@ -117,7 +118,7 @@ public abstract class SharedGrapplingGunSystem : EntitySystem private void OnGunActivate(EntityUid uid, GrapplingGunComponent component, ActivateInWorldEvent args) { - if (!Timing.IsFirstTimePredicted || args.Handled || !args.Complex || component.Projectile is not {} projectile) + if (!Timing.IsFirstTimePredicted || args.Handled || !args.Complex || component.Projectile is not { } projectile) return; _audio.PlayPredicted(component.CycleSound, uid, args.User); @@ -128,7 +129,7 @@ public abstract class SharedGrapplingGunSystem : EntitySystem component.Projectile = null; SetReeling(uid, component, false, args.User); - _gun.ChangeBasicEntityAmmoCount(uid, 1); + _gun.ChangeBasicEntityAmmoCount(uid, 1); args.Handled = true; } @@ -203,6 +204,25 @@ public abstract class SharedGrapplingGunSystem : EntitySystem } } + /// + /// Checks whether the entity is hooked to something via grappling gun. + /// + /// Entity to check. + /// True if hooked, false otherwise. + public bool IsEntityHooked(Entity entity) + { + if (!Resolve(entity, ref entity.Comp, false)) + return false; + + foreach (var uid in entity.Comp.Relayed) + { + if (HasComp(uid)) + return true; + } + + return false; + } + private void OnGrappleCollide(EntityUid uid, GrapplingProjectileComponent component, ref ProjectileEmbedEvent args) { if (!Timing.IsFirstTimePredicted) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 3c8158186a..2c7da86ad2 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,156 +1,4 @@ Entries: -- author: B-Kirill - changes: - - message: Added a search by profession and species in station records. - type: Add - id: 8422 - time: '2025-05-06T16:21:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37213 -- author: Cojoke-dot - changes: - - message: Pacifists can now throw bola - type: Tweak - id: 8423 - time: '2025-05-06T16:55:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37188 -- author: themias - changes: - - message: Fixed being unable to roll dough flat - type: Fix - id: 8424 - time: '2025-05-06T16:57:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37183 -- author: Quantum-cross - changes: - - message: Hosted anomaly effects not appearing at host when host is in container - or buckled - type: Fix - id: 8425 - time: '2025-05-06T17:01:37.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37179 -- author: ScarKy0 - changes: - - message: Borgs, brains, zombies and similiar now correctly count as "marooned" - even while on the evac shuttle. - type: Fix - id: 8426 - time: '2025-05-06T17:24:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37148 -- author: B-Kirill - changes: - - message: Added a collapse button for the lobby right panel, improving visibility - of the background artwork. - type: Add - id: 8427 - time: '2025-05-06T17:24:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37140 -- author: Morty, lzk228 - changes: - - message: Speech bubbles now indicate when a person is thinking of what to say. - type: Tweak - id: 8428 - time: '2025-05-06T17:49:42.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29349 -- author: Prole0 - changes: - - message: Water bottles now fit in dispensers! - type: Tweak - id: 8429 - time: '2025-05-06T18:13:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37108 -- author: OnyxTheBrave - changes: - - message: Holy water now correctly metabolizes at .5 unites per second - type: Fix - id: 8430 - time: '2025-05-06T18:31:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37106 -- author: sowelipililimute - changes: - - message: Departmental cargo request computers now print slips that can be given - to Cargo for final approval, rather than directly approving the orders themselves - type: Tweak - id: 8431 - time: '2025-05-06T19:04:19.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36944 -- author: Ghagliiarghii - changes: - - message: Fixed a bug which allowed Janitor borgs to delete a held item and acquire - an empty hand. - type: Fix - id: 8432 - time: '2025-05-06T19:10:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36961 -- author: UpAndLeaves - changes: - - message: wearing an elite web vest and an atmos fire helmet will no longer heal - your burn damage when on fire. - type: Fix - id: 8433 - time: '2025-05-07T02:03:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37241 -- author: Flareguy - changes: - - message: Moth clothing now visually conforms to their body type, similar to Vox. - type: Add - id: 8434 - time: '2025-05-07T10:06:42.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37231 -- author: K-Dynamic - changes: - - message: Disposal x-junctions can be constructed, which feeds from three directions - towards one. - type: Add - - message: Disposal junctions now properly swap to all other possible junctions - when a screwdriver is applied - disposal junction -> y-junction -> flipped junction - -> x-junction -> disposal junction... - type: Fix - id: 8435 - time: '2025-05-07T11:37:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37092 -- author: Zalycon - changes: - - message: Raised limit of species chest markings to 2 - type: Tweak - id: 8436 - time: '2025-05-07T12:44:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37065 -- author: themias - changes: - - message: Genpop prisoner closets can be ordered from cargo - type: Tweak - id: 8437 - time: '2025-05-07T20:28:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37237 -- author: JuneSzalkowska, SlamBamActionman - changes: - - message: 3 new exomorph-themed posters have been added! - type: Add - id: 8438 - time: '2025-05-07T23:26:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37260 -- author: B-Kirill - changes: - - message: AI context menu buttons now only appear on objects with valid interactions. - type: Fix - id: 8439 - time: '2025-05-07T23:48:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37224 -- author: Krunklehorn - changes: - - message: Cyborg chassis now properly drop their contents when gibbed. - type: Fix - id: 8440 - time: '2025-05-08T14:28:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37276 -- author: Thinbug0 - changes: - - message: The push horn lost its ability to push items, in exchange of a bigger - range - type: Tweak - id: 8441 - time: '2025-05-08T16:49:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37281 - author: MureixloL changes: - message: Changed sprite of mime satchel! @@ -3943,3 +3791,158 @@ id: 8933 time: '2025-09-05T20:03:10.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/40133 +- author: ArtisticRoomba + changes: + - message: Resin windows (exo windows) now inherit Delta-Pressure damage values + and pressure thresholds from reinforced windows. + type: Fix + id: 8934 + time: '2025-09-06T08:02:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40151 +- author: ScarKy0 + changes: + - message: The size of the antique laser pistol and appraisal tool have been reverted + to an L and 1x2 respectfully. + type: Tweak + id: 8935 + time: '2025-09-06T15:13:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40158 +- author: ToastEnjoyer + changes: + - message: On box, fixed a bug where there was a disconnected grid at the tesla + engine spot. + type: Fix + id: 8936 + time: '2025-09-06T16:00:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40161 +- author: Dutch-VanDerLinde + changes: + - message: Some jumpsuits may now be folded to give them an alternate look. + type: Add + id: 8937 + time: '2025-09-06T17:55:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31213 +- author: Crude Oil + changes: + - message: Regular syringes no longer have the 1u transfer amount + type: Fix + id: 8938 + time: '2025-09-07T14:01:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40197 +- author: FairlySadPanda + changes: + - message: Removing displaced markings no longer makes the renderer give up. + type: Fix + - message: Vulpkanin can once again use normal human hair. + type: Fix + id: 8939 + time: '2025-09-07T14:36:38.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40171 +- author: ArtisticRoomba + changes: + - message: Atmospherics Delta-Pressure now has a short guidebook entry. You can + find it in Jobs > Engineering > Atmospherics > Atmospheric Upsets > Delta Pressure. + type: Add + id: 8940 + time: '2025-09-07T15:10:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40194 +- author: Banditoz + changes: + - message: You can cross chasms with the grapple gun. + type: Add + id: 8941 + time: '2025-09-08T00:34:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39983 +- author: Orbitsystem + changes: + - message: Diona sap can now trigger artifact nodes that require blood. + type: Fix + id: 8942 + time: '2025-09-08T13:56:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40211 +- author: Centronias + changes: + - message: Derelict Mediborgs can determine solution contents and see mob health + in their HUD, like their non-derelict counterparts. + type: Fix + id: 8943 + time: '2025-09-09T02:44:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40206 +- author: Kittygyat + changes: + - message: Changed the Galoshes description to be more descriptive of what they + actually do. + type: Tweak + id: 8944 + time: '2025-09-09T02:47:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40200 +- author: Steffo99 + changes: + - message: Fixed the RGB staff not working. + type: Fix + id: 8945 + time: '2025-09-10T11:42:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40258 +- author: insoPL + changes: + - message: Doafters are now cancalled when the target/user is enclosed in a container + during it. + type: Fix + id: 8946 + time: '2025-09-10T19:22:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39880 +- author: SweetAplle + changes: + - message: Saying "idk" now no longer forces the shrug emote, instead expanding + to "I don't know". + type: Tweak + id: 8947 + time: '2025-09-10T20:09:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39024 +- author: imatsoup + changes: + - message: Butterflies can no longer be infected by Romerol or become Romerol zombies. + type: Tweak + id: 8948 + time: '2025-09-10T21:48:53.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40265 +- author: Princess-Cheeseballs + changes: + - message: Cardboard boxes can no longer freely move in space. + type: Fix + id: 8949 + time: '2025-09-10T22:13:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40260 +- author: TsjipTsjip LuckyShotPictures IProduceWidgets + changes: + - message: Admin shuttles have been added to the repo, and can be found in /Maps/Shuttles/AdminSpawn/.. + type: Add + id: 8950 + time: '2025-09-11T01:01:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32139 +- author: ToastEnjoyer + changes: + - message: Fixed the laser carbine not being labeled as contraband + type: Fix + id: 8951 + time: '2025-09-11T02:37:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40253 +- author: IProduceWidgets + changes: + - message: Tennis balls! Found in arcade machines, maintenance and the cargo toy + crate! + type: Add + id: 8952 + time: '2025-09-11T10:57:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40143 +- author: 5tickman + changes: + - message: Food and ingredient item sizes have been adjusted. + type: Tweak + - message: Mimes now start with a Nutribrick instead of a Baguette. + type: Tweak + - message: The combat bakery kit is now a 4x4 sized box. + type: Tweak + id: 8953 + time: '2025-09-11T11:37:25.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39203 diff --git a/Resources/Changelog/Maps.yml b/Resources/Changelog/Maps.yml index 96df89da2e..24c4c8ced9 100644 --- a/Resources/Changelog/Maps.yml +++ b/Resources/Changelog/Maps.yml @@ -645,4 +645,24 @@ id: 77 time: '2025-09-01T23:13:52.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/40059 +- author: ArtisticRoomba + changes: + - message: On Exo, the main atmospherics burn chamber is now made out of reinforced + plasma glass instead of resin. + type: Fix + id: 78 + time: '2025-09-06T06:02:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40152 +- author: SlamBamActionman + changes: + - message: 'Exo: Moved the Common Telecoms from the AI Core to Bridge.' + type: Tweak + - message: 'Exo: Changed the station lighting to reduce the visual impact for colorblind + users.' + type: Fix + - message: 'Exo: Minor map fixes in various areas.' + type: Fix + id: 79 + time: '2025-09-11T01:46:55.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40199 Order: 1 diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index a874621bc7..89ab56e595 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0leshe, 0tito, 0x6273, 12rabbits, 1337dakota, 13spacemen, 154942, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, 96flo, aaron, abadaba695, Ablankmann, abregado, Absolute-Potato, Absotively, achookh, Acruid, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, adm2play, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aearo-Deepwater, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, AgentSmithRadio, Agoichi, Ahion, aiden, Aidenkrz, Aisu9, ajcm, AJCM-git, AjexRose, Alekshhh, alex, alexalexmax, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alice4267, Alithsko, Alkheemist, alliephante, ALMv1, Alpaccalypse, Alpha-Two, AlphaQwerty, Altoids1, amatwiedle, amylizzle, ancientpower, Andre19926, Andrew-Fall, AndrewEyeke, AndreyCamper, Anzarot121, ApolloVector, Appiah, ar4ill, Arcane-Waffle, archee1, ArchPigeon, ArchRBX, areitpog, Arendian, areyouconfused, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, Artxmisery, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, AverageNotDoingAnythingEnjoyer, avghdev, Awlod, AzzyIsNotHere, azzyisnothere, B-Kirill, B3CKDOOR, baa14453, BackeTako, BadaBoomie, Bakke, BananaFlambe, Baptr0b0t, BarryNorfolk, BasedUser, beck-thompson, beesterman, bellwetherlogic, ben, benbryant0, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BigfootBravo, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, blitzthesquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Bokser815, bolantej, Booblesnoot42, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, BWTCK, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, Camdot, capnsockless, CaptainMaru, captainsqrbeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, catdotjs, catlord, Catofquestionableethics, CatTheSystem, Centronias, Chaboricks, chairbender, Chaoticaa, Charlese2, charlie, chartman, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, CheesePlated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, ciaran, citrea, civilCornball, claustro305, Clement-O, clyf, Clyybber, CMDR-Piboy314, cnv41, coco, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, Compilatron144, CookieMasterT, coolboy911, CoolioDudio, coolmankid12345, Coolsurf6, cooperwallace, corentt, CormosLemming, CrafterKolyan, crazybrain23, Crazydave91920, creadth, CrigCrag, CroilBird, Crotalus, CrudeWax, cryals, CrzyPotato, cubixthree, cutemoongod, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, dan, dangerrevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, DeepwaterCreations, Deerstop, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, devinschubert14, dexlerxd, dffdff2423, DieselMohawk, DieselMohawkTheSequel, digitalic, Dimastra, DinnerCalzone, DinoWattz, Disp-Dev, DisposableCrewmember42, dissidentbullet, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, DR-DOCTOR-EVIL-EVIL, Dragonjspider, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, DuckManZach, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, dylanwhittingham, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, EnrichedCaramel, Entvari, eoineoineoin, ephememory, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, farrellka-dev, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, Firewars763, FirinMaLazors, Fishfish458, fl-oz, Flareguy, flashgnash, FlipBrooke, FluffiestFloof, FluffMe, FluidRock, flymo5678, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, foxhorn, freeman2651, freeze2222, frobnic8, Froffy025, Fromoriss, froozigiusz, FrostMando, FrostRibbon, Funce, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, Gamewar360, gansulalan, GaussiArson, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, Gentleman-Bird, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GnarpGnarp, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, golubgik, GoodWheatley, Gorox221, GR1231, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GrownSamoyedDog, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Helix-ctrl, helm4142, Henry, HerCoyote23, HighTechPuddle, Hitlinemoss, hiucko, hivehum, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hoshizora, Hreno, Hrosts, htmlsystem, hubismal, Hugal31, Huxellberger, Hyenh, hyperb1, hyperDelegate, hyphenationc, i-justuser-i, iaada, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imatsoup, IMCB, impubbi, imrenq, imweax, indeano, Injazz, Insineer, insoPL, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jacktastic09, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, JCGWE30, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jkwookee, jmcb, JohnGinnane, johnku1, Jophire, joshepvodka, JpegOfAFrog, jproads, JrInventor05, Jrpl, jukereise, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, JustinWinningham, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, kaiserbirch, KaiShibaa, kalane15, kalanosh, KamTheSythe, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, KieueCaprie, Killerqu00, Kimpes, KingFroozy, kira-er, kiri-yoshikage, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, Kittygyat, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kontakt, kosticia, koteq, kotobdev, Kowlin, KrasnoshchekovPavel, Krosus777, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, LaCumbiaDelCoronavirus, lajolico, Lamrr, lanedon, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, lettern, LetterN, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, linkbro1, LinkUyx, Litraxx, little-meow-meow, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, ljm862, lmsnoise, localcc, lokachop, lolman360, Lomcastar, LordCarve, LordEclipse, lucas, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, Lusatia, Luxeator, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M1tht1c, M3739, M4rchy-S, M87S, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, maland1, malchanceux, MaloTV, manelnavola, ManelNavola, Mangohydra, marboww, Markek1, MarkerWicker, marlyn, matt, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, memeproof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, mifia, MilenVolf, MilonPL, Minemoder5000, Minty642, minus1over12, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterImp, MisterMecky, Mith-randalf, Mixelz, mjarduk, MjrLandWhale, mkanke-real, MLGTASTICa, mnva0, moderatelyaware, modern-nm, mokiros, momo, Moneyl, monotheonist, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, murolem, musicmanvr, MWKane, Myakot, Myctai, N3X15, nabegator, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikitosych, nikthechampiongr, Nimfar11, ninruB, Nirnael, NIXC, nkokic, NkoKirkto, nmajask, noctyrnal, noelkathegod, noirogen, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, Nox38, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, Nyxilath, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OneZerooo0, OnyxTheBrave, Orange-Winds, OrangeMoronage9622, Orsoniks, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paige404, paigemaeforrest, pali6, Palladinium, Pangogie, panzer-iv1, partyaddict, patrikturi, PaulRitter, pavlockblaine03, peccneck, Peptide90, peptron1, perryprog, PeterFuto, PetMudstone, pewter-wiz, PGrayCS, pgraycs, Pgriha, Phantom-Lily, pheenty, philingham, Phill101, Phooooooooooooooooooooooooooooooosphate, phunnyguy, PicklOH, PilgrimViis, Pill-U, pinkbat5, Piras314, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, poklj, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, PotRoastPiggy, Princess-Cheeseballs, ProfanedBane, PROG-MohamedDwidar, Prole0, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykana, psykzz, PuceTint, pumkin69, PuroSlavKing, PursuitInAshes, Putnam3145, py01, Pyrovi, qrtDaniil, qrwas, Quantum-cross, quatre, QueerNB, QuietlyWhisper, qwerltaz, Radezolid, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, ReeZer2, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rhsvenson, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, rlebell33, RobbyTheFish, robinthedragon, Rockdtben, Rohesie, rok-povsic, rokudara-sen, rolfero, RomanNovo, rosieposieeee, Roudenn, router, ruddygreat, rumaks, RumiTiger, Ruzihm, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, Samuka-C, SaphireLattice, SapphicOverload, sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, ScholarNZL, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, SeamLesss, Segonist, semensponge, sephtasm, ser1-1y, Serkket, sewerpig, SG6732, sh18rw, Shaddap1, ShadeAware, ShadowCommander, shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SharkSnake98, shibechef, Siginanto, SignalWalker, siigiil, silicon14wastaken, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skybailey-dev, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, slimmslamm, Slyfox333, Smugman, snebl, snicket, sniperchance, Snowni, snowsignal, SolidSyn, SolidusSnek, solstar2, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, soupkilove, southbridge-fur, sowelipililimute, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, Spangs04, spanky-spanky, Sparlight, spartak, SpartanKadence, spderman3333, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, starbuckss14, Stealthbomber16, stellar-novas, stewie523, stomf, Stop-Signs, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, supergdpwyl, superjj18, Supernorn, SweptWasTaken, SyaoranFox, Sybil, SYNCHRONIC, Szunti, t, Tainakov, takemysoult, taonewt, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TeenSarlacc, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, Tezzaide, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, TheBlueYowie, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheFlyingSentry, TheIntoxicatedCat, thekilk, themias, theomund, TheProNoob678, TherapyGoth, ThereDrD0, TheShuEd, thetolbean, thevinter, TheWaffleJesus, thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, TiniestShark, Titian3, tk-a369, tkdrg, tmtmtl30, ToastEnjoyer, Toby222, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, tornado-technology, TornadoTechnology, tosatur, TotallyLemon, ToxicSonicFan04, Tr1bute, treytipton, trixxedbit, TrixxedHeart, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, TytosB, Tyzemol, UbaserB, ubis1, UBlueberry, uhbg, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, unusualcrow, Uriende, UristMcDorf, user424242420, Utmanarn, Vaaankas, valentfingerov, valquaint, Varen, Vasilis, VasilisThePikachu, veliebm, Velken, VelonacepsCalyxEggs, veprolet, VerinSenpai, veritable-calamity, Veritius, Vermidia, vero5123, verslebas, vexerot, viceemargo, VigersRay, violet754, Visne, vitusveit, vlad, vlados1408, VMSolidus, vmzd, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, Vortebo, vulppine, wafehling, walksanatora, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, whatston3, widgetbeck, Will-Oliver-Br, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, Wolfkey-SomeoneElseTookMyUsername, wrexbe, wtcwr68, xeri7, xkreksx, xprospero, xRiriq, xsainteer, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, YoungThugSS14, Yousifb26, youtissoum, yunii, yuriykiss, YuriyKiss, zach-hill, Zadeon, Zalycon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, ZeWaka, zHonys, zionnBE, ZNixian, Zokkie, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex +0leshe, 0tito, 0x6273, 12rabbits, 1337dakota, 13spacemen, 154942, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, 96flo, aaron, abadaba695, Ablankmann, abregado, Absolute-Potato, Absotively, achookh, Acruid, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, adm2play, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aearo-Deepwater, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, AgentSmithRadio, Agoichi, Ahion, aiden, Aidenkrz, Aisu9, ajcm, AJCM-git, AjexRose, Alekshhh, alex, alexalexmax, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alice4267, Alithsko, Alkheemist, alliephante, ALMv1, Alpaccalypse, Alpha-Two, AlphaQwerty, Altoids1, amatwiedle, amylizzle, ancientpower, Andre19926, Andrew-Fall, AndrewEyeke, AndrewFenriz, AndreyCamper, Anzarot121, ApolloVector, Appiah, ar4ill, Arcane-Waffle, archee1, ArchPigeon, ArchRBX, areitpog, Arendian, areyouconfused, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, Artxmisery, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, AverageNotDoingAnythingEnjoyer, avghdev, Awlod, AzzyIsNotHere, azzyisnothere, B-Kirill, B3CKDOOR, baa14453, BackeTako, BadaBoomie, Bakke, BananaFlambe, Baptr0b0t, BarryNorfolk, BasedUser, beck-thompson, beesterman, bellwetherlogic, ben, benbryant0, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BigfootBravo, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, blitzthesquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Bokser815, bolantej, Booblesnoot42, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, breeplayx3, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, BWTCK, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, Camdot, capnsockless, CaptainMaru, captainsqrbeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, catdotjs, catlord, Catofquestionableethics, CatTheSystem, CawsForConcern, Centronias, Chaboricks, chairbender, Chaoticaa, Charlese2, charlie, chartman, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, CheesePlated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, ciaran, citrea, civilCornball, claustro305, Clement-O, clyf, Clyybber, CMDR-Piboy314, cnv41, coco, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, Compilatron144, CookieMasterT, coolboy911, CoolioDudio, coolmankid12345, Coolsurf6, cooperwallace, corentt, CormosLemming, CrafterKolyan, crazybrain23, Crazydave91920, creadth, CrigCrag, CroilBird, Crotalus, CrudeWax, cryals, CrzyPotato, cubixthree, cutemoongod, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, dan, dangerrevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, ddeegan, de0rix, Deahaka, dean, DEATHB4DEFEAT, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, DeepwaterCreations, Deerstop, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, devinschubert14, dexlerxd, dffdff2423, DieselMohawk, DieselMohawkTheSequel, digitalic, Dimastra, DinnerCalzone, DinoWattz, Disp-Dev, DisposableCrewmember42, dissidentbullet, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, DR-DOCTOR-EVIL-EVIL, Dragonjspider, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, DuckManZach, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, dylanwhittingham, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, EnrichedCaramel, Entvari, eoineoineoin, ephememory, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, farrellka-dev, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, Firewars763, FirinMaLazors, Fishfish458, fl-oz, Flareguy, flashgnash, FlipBrooke, FluffiestFloof, FluffMe, FluidRock, flymo5678, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, foxhorn, freeman2651, freeze2222, frobnic8, Froffy025, Fromoriss, froozigiusz, FrostMando, FrostRibbon, Funce, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, Gamewar360, gansulalan, GaussiArson, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, Gentleman-Bird, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GnarpGnarp, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, golubgik, GoodWheatley, Gorox221, GR1231, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GrownSamoyedDog, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Helix-ctrl, helm4142, Henry, HerCoyote23, HighTechPuddle, Hitlinemoss, hiucko, hivehum, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hoshizora, Hreno, Hrosts, htmlsystem, hubismal, Hugal31, Huxellberger, Hyenh, hyperb1, hyperDelegate, hyphenationc, i-justuser-i, iaada, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imatsoup, IMCB, impubbi, imrenq, imweax, indeano, Injazz, Insineer, insoPL, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jacktastic09, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, JCGWE30, JerryImMouse, jerryimmouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jkwookee, jmcb, JohnGinnane, johnku1, Jophire, joshepvodka, JpegOfAFrog, jproads, JrInventor05, Jrpl, jukereise, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, JustinWinningham, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, kaiserbirch, KaiShibaa, kalane15, kalanosh, KamTheSythe, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, KieueCaprie, Killerqu00, Kimpes, KingFroozy, kira-er, kiri-yoshikage, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, Kittygyat, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kontakt, kosticia, koteq, kotobdev, Kowlin, KrasnoshchekovPavel, Krosus777, Krunklehorn, Kupie, kxvvv, Kyoth25f, kyupolaris, kzhanik, LaCumbiaDelCoronavirus, lajolico, Lamrr, lanedon, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, LetterN, lettern, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, linkbro1, LinkUyx, Litraxx, little-meow-meow, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, ljm862, lmsnoise, localcc, lokachop, lolman360, Lomcastar, LordCarve, LordEclipse, lucas, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, Lusatia, Luxeator, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M1tht1c, M3739, M4rchy-S, M87S, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, maland1, malchanceux, MaloTV, ManelNavola, manelnavola, Mangohydra, marboww, Markek1, MarkerWicker, marlyn, matt, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, memeproof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, mifia, MilenVolf, MilonPL, Minemoder5000, Minty642, minus1over12, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterImp, MisterMecky, Mith-randalf, Mixelz, mjarduk, MjrLandWhale, mkanke-real, MLGTASTICa, mnva0, moderatelyaware, modern-nm, mokiros, momo, Moneyl, monotheonist, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, murolem, musicmanvr, MWKane, Myakot, Myctai, N3X15, nabegator, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikitosych, nikthechampiongr, Nimfar11, ninruB, Nirnael, NIXC, nkokic, NkoKirkto, nmajask, noctyrnal, noelkathegod, noirogen, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, notsodana, noudoit, noverd, Nox38, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, Nyxilath, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OneZerooo0, OnyxTheBrave, opl-, Orange-Winds, OrangeMoronage9622, Orsoniks, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paige404, paigemaeforrest, pali6, Palladinium, Pangogie, panzer-iv1, partyaddict, patrikturi, PaulRitter, pavlockblaine03, peccneck, Peptide90, peptron1, perryprog, PeterFuto, PetMudstone, pewter-wiz, pgraycs, PGrayCS, Pgriha, Phantom-Lily, pheenty, philingham, Phill101, Phooooooooooooooooooooooooooooooosphate, phunnyguy, PicklOH, PilgrimViis, Pill-U, pinkbat5, Piras314, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, poklj, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, PotRoastPiggy, Princess-Cheeseballs, ProfanedBane, PROG-MohamedDwidar, Prole0, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykana, psykzz, PuceTint, pumkin69, PuroSlavKing, PursuitInAshes, Putnam3145, py01, Pyrovi, qrtDaniil, qrwas, Quantum-cross, quasr-9, quatre, QueerNB, QuietlyWhisper, qwerltaz, Radezolid, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, ReeZer2, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rhsvenson, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, rlebell33, RobbyTheFish, robinthedragon, Rockdtben, Rohesie, rok-povsic, rokudara-sen, rolfero, RomanNovo, rosieposieeee, Roudenn, router, ruddygreat, rumaks, RumiTiger, Ruzihm, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, Samuka-C, SaphireLattice, SapphicOverload, sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, ScholarNZL, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, SeamLesss, Segonist, semensponge, sephtasm, ser1-1y, Serkket, sewerpig, SG6732, sh18rw, Shaddap1, ShadeAware, ShadowCommander, shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SharkSnake98, shibechef, Siginanto, SignalWalker, siigiil, silicon14wastaken, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skybailey-dev, skye, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, slimmslamm, Slyfox333, Smugman, snebl, snicket, sniperchance, Snowni, snowsignal, SolidSyn, SolidusSnek, solstar2, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, soupkilove, southbridge-fur, sowelipililimute, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, Spangs04, spanky-spanky, Sparlight, spartak, SpartanKadence, spderman3333, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, starbuckss14, Stealthbomber16, stellar-novas, stewie523, stomf, Stop-Signs, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, supergdpwyl, superjj18, Supernorn, SweptWasTaken, SyaoranFox, Sybil, SYNCHRONIC, Szunti, t, Tainakov, takemysoult, taonewt, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TeenSarlacc, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, Tezzaide, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, TheBlueYowie, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheFlyingSentry, TheIntoxicatedCat, thekilk, themias, theomund, TheProNoob678, TherapyGoth, ThereDrD0, TheShuEd, thetolbean, thevinter, TheWaffleJesus, thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, TiniestShark, Titian3, tk-a369, tkdrg, tmtmtl30, ToastEnjoyer, Toby222, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, tornado-technology, TornadoTechnology, tosatur, TotallyLemon, ToxicSonicFan04, Tr1bute, travis-g-reid, treytipton, trixxedbit, TrixxedHeart, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, TytosB, Tyzemol, UbaserB, ubis1, UBlueberry, uhbg, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, unusualcrow, Uriende, UristMcDorf, user424242420, Utmanarn, Vaaankas, valentfingerov, valquaint, Varen, Vasilis, VasilisThePikachu, veliebm, Velken, VelonacepsCalyxEggs, veprolet, VerinSenpai, veritable-calamity, Veritius, Vermidia, vero5123, verslebas, vexerot, viceemargo, VigersRay, violet754, Visne, vitopigno, vitusveit, vlad, vlados1408, VMSolidus, vmzd, VoidMeticulous, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, Vortebo, vulppine, wachte1, wafehling, walksanatora, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, whatston3, widgetbeck, Will-Oliver-Br, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, Wolfkey-SomeoneElseTookMyUsername, wrexbe, wtcwr68, xeri7, xkreksx, xprospero, xRiriq, xsainteer, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, YoungThugSS14, Yousifb26, youtissoum, yunii, yuriykiss, YuriyKiss, zach-hill, Zadeon, Zalycon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, ZeWaka, zHonys, zionnBE, ZNixian, Zokkie, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex diff --git a/Resources/Locale/en-US/chat/sanitizer-replacements.ftl b/Resources/Locale/en-US/chat/sanitizer-replacements.ftl index d12f101ade..9d22f3e8a3 100644 --- a/Resources/Locale/en-US/chat/sanitizer-replacements.ftl +++ b/Resources/Locale/en-US/chat/sanitizer-replacements.ftl @@ -18,6 +18,5 @@ chatsan-unimpressed = seems unimpressed chatsan-waves = waves chatsan-salutes = salutes chatsan-tearfully-salutes = tearfully salutes -chatsan-shrugs = shrugs chatsan-tearfully-smiles = tearfully smiles chatsan-winks = winks diff --git a/Resources/Locale/en-US/contraband/contraband-severity.ftl b/Resources/Locale/en-US/contraband/contraband-severity.ftl index 7f0a1854eb..f5a77d08fa 100644 --- a/Resources/Locale/en-US/contraband/contraband-severity.ftl +++ b/Resources/Locale/en-US/contraband/contraband-severity.ftl @@ -1,11 +1,50 @@ -contraband-examine-text-Minor = [color=yellow]This item is considered minor contraband.[/color] -contraband-examine-text-Restricted = [color=yellow]This item is departmentally restricted.[/color] -contraband-examine-text-Restricted-department = [color=yellow]This item is restricted to {$departments}, and may be considered contraband.[/color] -contraband-examine-text-Major = [color=red]This item is considered major contraband.[/color] -contraband-examine-text-GrandTheft = [color=red]This item is a highly valuable target for Syndicate agents![/color] -contraband-examine-text-Highly-Illegal = [color=red]This item is highly illegal contraband![/color] -contraband-examine-text-Syndicate = [color=crimson]This item is highly illegal Syndicate contraband![/color] -contraband-examine-text-Magical = [color=#b337b3]This item is highly illegal magical contraband![/color] +contraband-examine-text-Minor = + { $type -> + *[item] [color=yellow]This item is considered minor contraband.[/color] + [reagent] [color=yellow]This reagent is considered minor contraband.[/color] + } + +contraband-examine-text-Restricted = + { $type -> + *[item] [color=yellow]This item is departmentally restricted.[/color] + [reagent] [color=yellow]This reagent is departmentally restricted.[/color] + } + +contraband-examine-text-Restricted-department = + { $type -> + *[item] [color=yellow]This item is restricted to {$departments}, and may be considered contraband.[/color] + [reagent] [color=yellow]This reagent is restricted to {$departments}, and may be considered contraband.[/color] + } + +contraband-examine-text-Major = + { $type -> + *[item] [color=red]This item is considered major contraband.[/color] + [reagent] [color=red]This reagent is considered major contraband.[/color] + } + +contraband-examine-text-GrandTheft = + { $type -> + *[item] [color=red]This item is a highly valuable target for Syndicate agents![/color] + [reagent] [color=red]This reagent is a highly valuable target for Syndicate agents![/color] + } + +contraband-examine-text-Highly-Illegal = + { $type -> + *[item] [color=crimson]This item is highly illegal contraband![/color] + [reagent] [color=crimson]This reagent is highly illegal contraband![/color] + } + +contraband-examine-text-Syndicate = + { $type -> + *[item] [color=crimson]This item is highly illegal Syndicate contraband![/color] + [reagent] [color=crimson]This reagent is highly illegal Syndicate contraband![/color] + } + +contraband-examine-text-Magical = + { $type -> + *[item] [color=#b337b3]This item is highly illegal magical contraband![/color] + [reagent] [color=#b337b3]This reagent is highly illegal magical contraband![/color] + } contraband-examine-text-avoid-carrying-around = [color=red][italic]You probably want to avoid visibly carrying this around without a good reason.[/italic][/color] contraband-examine-text-in-the-clear = [color=green][italic]You should be in the clear to visibly carry this around.[/italic][/color] diff --git a/Resources/Locale/en-US/foldable/components/foldable-component.ftl b/Resources/Locale/en-US/foldable/components/foldable-component.ftl index 1221efbdf0..70f996414a 100644 --- a/Resources/Locale/en-US/foldable/components/foldable-component.ftl +++ b/Resources/Locale/en-US/foldable/components/foldable-component.ftl @@ -11,3 +11,6 @@ fold-flip-verb = Flip fold-zip-verb = Zip up fold-unzip-verb = Unzip + +fold-verb-clothing-jacket = Take off jacket +unfold-verb-clothing-jacket = Put on jacket \ No newline at end of file diff --git a/Resources/Locale/en-US/guidebook/guides.ftl b/Resources/Locale/en-US/guidebook/guides.ftl index b55193fef6..a148c3aba8 100644 --- a/Resources/Locale/en-US/guidebook/guides.ftl +++ b/Resources/Locale/en-US/guidebook/guides.ftl @@ -37,6 +37,7 @@ guide-entry-gasminingandstorage = Gas Mining and Storage guide-entry-atmosphericupsets = Atmospheric Upsets guide-entry-fires = Fires guide-entry-spacing = Spacing +guide-entry-deltapressure = Delta Pressure guide-entry-atmostools = Atmos Tools guide-entry-gasses = Gasses guide-entry-botany = Botany diff --git a/Resources/Locale/en-US/speech/speech-chatsan.ftl b/Resources/Locale/en-US/speech/speech-chatsan.ftl index 6e883fe185..606bcd49e0 100644 --- a/Resources/Locale/en-US/speech/speech-chatsan.ftl +++ b/Resources/Locale/en-US/speech/speech-chatsan.ftl @@ -189,3 +189,6 @@ chatsan-replacement-66 = something chatsan-word-67 = allg chatsan-replacement-67 = all good + +chatsan-word-68 = idk +chatsan-replacement-68 = i don't know diff --git a/Resources/Locale/en-US/ui/navmap.ftl b/Resources/Locale/en-US/ui/navmap.ftl index 3c2aad1271..30f1da56b8 100644 --- a/Resources/Locale/en-US/ui/navmap.ftl +++ b/Resources/Locale/en-US/ui/navmap.ftl @@ -1,3 +1,4 @@ navmap-zoom = Zoom: {$value}x navmap-recenter = Recenter navmap-toggle-beacons = Show departments +navmap-location = Location: [x = {$x}, y = {$y}] diff --git a/Resources/Maps/Shuttles/AdminSpawn/ERT-Large-Base.yml b/Resources/Maps/Shuttles/AdminSpawn/ERT-Large-Base.yml new file mode 100644 index 0000000000..dda7ec880a --- /dev/null +++ b/Resources/Maps/Shuttles/AdminSpawn/ERT-Large-Base.yml @@ -0,0 +1,3407 @@ +meta: + format: 7 + category: Grid + engineVersion: 254.1.0 + forkId: "" + forkVersion: "" + time: 04/21/2025 18:26:24 + entityCount: 517 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 0: Space + 1: FloorDark + 2: FloorMetalDiamond + 89: FloorSteel + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: NT-Chimaera + - type: Transform + parent: invalid + - type: MapGrid + chunks: + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAQAAAAAAAQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAB + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: WQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAWQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + tiles: + -2,0: + 0: 61166 + -2,1: + 0: 61166 + -2,2: + 0: 12014 + -2,3: + 1: 4369 + 0: 36044 + -2,-1: + 0: 61439 + -2,4: + 1: 2 + -1,0: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 16383 + -1,3: + 0: 65535 + -1,-1: + 0: 65535 + 0,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 4095 + 0,3: + 0: 32767 + -2,-3: + 1: 275 + 0: 61120 + -2,-2: + 0: 59630 + -2,-4: + 1: 57344 + -1,-4: + 1: 61440 + -1,-3: + 0: 13104 + 2: 64 + 3: 16384 + -1,-2: + 0: 61747 + 1: 64 + 0,-4: + 0: 28672 + 1: 32768 + 0,-3: + 0: 65527 + 0,-2: + 0: 65535 + 0,-1: + 0: 65535 + 1,-4: + 1: 4096 + 1,-3: + 1: 547 + 0: 4352 + 1,-2: + 0: 4369 + 1,-1: + 0: 4915 + 1,0: + 0: 4369 + 1,1: + 0: 4369 + 1,2: + 0: 4369 + 1,3: + 1: 8738 + 1,4: + 1: 1 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay + - type: SpreaderGrid + - type: GridPathfinding +- proto: AirlockCentralCommandLocked + entities: + - uid: 409 + components: + - type: Transform + pos: -3.5,11.5 + parent: 1 + - uid: 410 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 +- proto: AirlockEngineeringLocked + entities: + - uid: 364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 1 + - uid: 365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 1 +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 4 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 8 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 13 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 15 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 16 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 1 + - uid: 17 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 + - uid: 19 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - uid: 22 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 23 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 24 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 1 +- proto: AtmosFixOxygenMarker + entities: + - uid: 25 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 2 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -7.5,9.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -6.5,14.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -6.5,15.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -5.5,15.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -5.5,16.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: -0.5,16.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: -1.5,16.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 2.5,16.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: -3.5,16.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: -2.5,16.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: -4.5,16.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: -3.5,13.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: -5.5,9.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: -1.5,13.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 2.5,13.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: 3.5,15.5 + parent: 1 + - uid: 352 + components: + - type: Transform + pos: 3.5,16.5 + parent: 1 + - uid: 374 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - uid: 379 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 1 + - uid: 380 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - uid: 381 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 382 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 383 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 384 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 386 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 387 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 388 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 389 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 390 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 392 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 393 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 395 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 396 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 397 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 398 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 399 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: -2.5,12.5 + parent: 1 +- proto: CableHV + entities: + - uid: 39 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 1 +- proto: CableMV + entities: + - uid: 50 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 53 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 54 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,14.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,14.5 + parent: 1 + - uid: 57 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,14.5 + parent: 1 + - uid: 58 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 1 +- proto: ComputerAlert + entities: + - uid: 61 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,14.5 + parent: 1 +- proto: ComputerComms + entities: + - uid: 62 + components: + - type: Transform + pos: -2.5,15.5 + parent: 1 +- proto: ComputerId + entities: + - uid: 63 + components: + - type: Transform + pos: -4.5,15.5 + parent: 1 +- proto: ComputerRadar + entities: + - uid: 65 + components: + - type: Transform + pos: -1.5,15.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 66 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1 +- proto: EmergencyLight + entities: + - uid: 67 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 1 +- proto: GasMinerNitrogen + entities: + - uid: 68 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 1 +- proto: GasMinerOxygen + entities: + - uid: 69 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 1 +- proto: GasMixer + entities: + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 1 + - type: GasMixer + inletTwoConcentration: 0.78 + inletOneConcentration: 0.22 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasPassiveVent + entities: + - uid: 45 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 71 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 72 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 90 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPipeFourway + entities: + - uid: 420 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 428 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 435 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 443 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 75 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 78 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 79 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 80 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 83 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 84 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 85 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 252 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 322 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 497 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 498 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 499 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 500 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 501 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 502 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 503 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 504 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 505 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 506 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 507 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 508 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 509 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 510 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 511 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 512 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 513 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPipeTJunction + entities: + - uid: 3 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 86 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 449 + components: + - type: Transform + pos: -3.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 470 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 476 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPressurePump + entities: + - uid: 87 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 89 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasVentPump + entities: + - uid: 92 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 1 + - uid: 93 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 1 + - uid: 94 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 452 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 464 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasVentScrubber + entities: + - uid: 96 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 97 + components: + - type: Transform + pos: -4.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 459 + components: + - type: Transform + pos: 2.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 100 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 59 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 1 +- proto: Grille + entities: + - uid: 34 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,16.5 + parent: 1 + - uid: 35 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,16.5 + parent: 1 + - uid: 103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 1 + - uid: 104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + - uid: 106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 1 + - uid: 107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1 + - uid: 108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 1 + - uid: 112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,15.5 + parent: 1 + - uid: 115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + - uid: 116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,16.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: -5.5,15.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: -6.5,15.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: -6.5,14.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + - uid: 129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,9.5 + parent: 1 + - uid: 130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + - uid: 131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 1 + - uid: 133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,7.5 + parent: 1 + - uid: 135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1 + - uid: 136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,10.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,5.5 + parent: 1 + - uid: 139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,15.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,16.5 + parent: 1 + - uid: 171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + - uid: 353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,16.5 + parent: 1 + - uid: 354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,16.5 + parent: 1 + - uid: 355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,16.5 + parent: 1 + - uid: 356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,16.5 + parent: 1 + - uid: 359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,16.5 + parent: 1 + - uid: 360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,16.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 37 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 1 + - uid: 183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-6.5 + parent: 1 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 1 + - uid: 144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 146 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,13.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,13.5 + parent: 1 + - uid: 188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,4.5 + parent: 1 + - uid: 190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,8.5 + parent: 1 + - uid: 228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + - uid: 240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 + - uid: 247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 + - uid: 258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 370 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 371 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 32 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,16.5 + parent: 1 + - uid: 33 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,16.5 + parent: 1 + - uid: 91 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,16.5 + parent: 1 + - uid: 95 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,16.5 + parent: 1 + - uid: 114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,16.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,16.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - uid: 155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,5.5 + parent: 1 + - uid: 157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,7.5 + parent: 1 + - uid: 158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,9.5 + parent: 1 + - uid: 159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,16.5 + parent: 1 + - uid: 162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: -6.5,14.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -5.5,15.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 1 + - uid: 172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1 + - uid: 173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 1 + - uid: 174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 1 + - uid: 176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -6.5,15.5 + parent: 1 + - uid: 179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + - uid: 180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,16.5 + parent: 1 + - uid: 181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,15.5 + parent: 1 + - uid: 182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,15.5 + parent: 1 + - uid: 185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + - uid: 186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 1 + - uid: 187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 1 + - uid: 189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1 + - uid: 357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,16.5 + parent: 1 + - uid: 358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,16.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 191 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 192 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 193 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 1 +- proto: Thruster + entities: + - uid: 73 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-12.5 + parent: 1 + - uid: 74 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-12.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-12.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: -6.5,16.5 + parent: 1 + - uid: 197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 1 + - uid: 198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-12.5 + parent: 1 + - uid: 199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,13.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 1 + - uid: 201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-12.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 1 + - uid: 203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,13.5 + parent: 1 + - uid: 204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,14.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: 5.5,15.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: 4.5,16.5 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: -7.5,15.5 + parent: 1 + - uid: 209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,14.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,11.5 + parent: 1 + - uid: 169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,8.5 + parent: 1 + - uid: 175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 1 + - uid: 210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 + - uid: 211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,11.5 + parent: 1 + - uid: 212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + - uid: 213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + - uid: 214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 1 + - uid: 215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1 + - uid: 217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 1 + - uid: 218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - uid: 220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 1 + - uid: 221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 1 + - uid: 222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + - uid: 223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 + - uid: 224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 1 + - uid: 229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 1 + - uid: 241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,13.5 + parent: 1 + - uid: 242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 1 + - uid: 243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 1 + - uid: 244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + - uid: 245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1 + - uid: 363 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,11.5 + parent: 1 + - uid: 369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,11.5 + parent: 1 + - uid: 372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,11.5 + parent: 1 + - uid: 373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,11.5 + parent: 1 + - uid: 376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,11.5 + parent: 1 + - uid: 377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,11.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 1 + - uid: 250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-11.5 + parent: 1 + - uid: 251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 1 + - uid: 253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: -7.5,12.5 + parent: 1 + - uid: 255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-9.5 + parent: 1 + - uid: 256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,12.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,12.5 + parent: 1 + - uid: 367 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1 +- proto: WarningAir + entities: + - uid: 321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 1 +- proto: WarningN2 + entities: + - uid: 516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 +- proto: WarningO2 + entities: + - uid: 517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 1 +- proto: WindoorSecureCentralCommandLocked + entities: + - uid: 77 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 + - uid: 81 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 1 + - uid: 261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - uid: 265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 1 + - uid: 518 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 +... diff --git a/Resources/Maps/Shuttles/AdminSpawn/ERT-Large-Med-Sec.yml b/Resources/Maps/Shuttles/AdminSpawn/ERT-Large-Med-Sec.yml new file mode 100644 index 0000000000..e06cb56902 --- /dev/null +++ b/Resources/Maps/Shuttles/AdminSpawn/ERT-Large-Med-Sec.yml @@ -0,0 +1,7556 @@ +meta: + format: 7 + category: Grid + engineVersion: 266.0.0 + forkId: "" + forkVersion: "" + time: 09/10/2025 21:12:07 + entityCount: 984 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 0: Space + 29: FloorDark + 34: FloorDarkMono + 47: FloorGrass + 1: FloorMetalDiamond + 89: FloorSteel + 96: FloorSteelDirty + 108: FloorWhite + 113: FloorWhiteMono + 115: FloorWhitePavement + 116: FloorWhitePavementVertical + 118: FloorWood + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: NT-Hygieia + - type: Transform + parent: invalid + - type: MapGrid + chunks: + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAHQAAAAAAAAdAAAAAAAAWQAAAAAAAHEAAAAAAABxAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHEAAAAAAAB0AAAAAAAAcQAAAAAAAB0AAAAAAABsAAAAAAAAbAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABxAAAAAAAAdAAAAAAAAHEAAAAAAABZAAAAAAAAbAAAAAAAAGwAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAcQAAAAAAAHQAAAAAAABxAAAAAAAAHQAAAAAAAGwAAAAAAABsAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAABsAAAAAAAAbAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABxAAAAAAAAdAAAAAAAAHEAAAAAAAAdAAAAAAAAbAAAAAAAAGwAAAAAAABZAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAcQAAAAAAAHQAAAAAAABzAAAAAAAAcwAAAAAAAGwAAAAAAABsAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHEAAAAAAABxAAAAAAAAcQAAAAAAAFkAAAAAAABsAAAAAAAAbAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAAAcQAAAAAAAHEAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAcQAAAAAAAHEAAAAAAABxAAAAAAAAcQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHEAAAAAAABsAAAAAAAAbAAAAAAAAHEAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABxAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAcQAAAAAAAGwAAAAAAABsAAAAAAAAcQAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAAiAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAAiAAAAAAAAIgAAAAAAACIAAAAAAAAiAAAAAAAAdgAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB4AAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAWQAAAAAAAFkAAAAAAAAdAAAAAAAAHQAAAAAAAFkAAAAAAAAdAAAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAFkAAAAAAgBZAAAAAAAALwAAAAAAAC8AAAAAAABZAAAAAAAALwAAAAAAAC8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAABZAAAAAAAAWQAAAAADAB0AAAAAAAAdAAAAAAAAWQAAAAADAB0AAAAAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAHQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAABAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB2AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAdgAAAAAAAHYAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAAAAHYAAAAAAAB2AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAAB2AAAAAAAAdgAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAAAdgAAAAAAAHYAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAAAAHYAAAAAAAB2AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAHQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAB0AAAAAAAAdAAAAAAAAWQAAAAAAAFkAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAAvAAAAAAAALwAAAAAAAFkAAAAAAABZAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAHQAAAAAAAB0AAAAAAABZAAAAAAAAWQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAAAAB0AAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,0: + ind: 0,0 + tiles: HQAAAAAAAB0AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAGAAAAAAAABgAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAABgAAAAAAAAYAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAAB0AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAGAAAAAAAABgAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAABgAAAAAAAAYAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAAB0AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAGAAAAAAAABgAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAABgAAAAAAAAYAAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAAB0AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAACIAAAAAAAAiAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAiAAAAAAAAIgAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAAB0AAAAAAAAdAAAAAAAAIgAAAAAAACIAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHYAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB2AAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAAHYAAAAAAAB2AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,1: + ind: 0,1 + tiles: eQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 138: 0,-7 + 139: 0,-8 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 181: 2,10 + - node: + color: '#FFFFFFD9' + id: BrickTileDarkInnerNe + decals: + 225: 3,-2 + 226: 0,-5 + 242: -3,-5 + 243: -6,-5 + - node: + color: '#FFFFFFD9' + id: BrickTileDarkInnerNw + decals: + 222: 0,-5 + 223: 3,-5 + 224: -6,-2 + 245: -3,-5 + - node: + color: '#FFFFFFD9' + id: BrickTileDarkInnerSe + decals: + 214: -3,-1 + 215: 0,-1 + 216: 3,-4 + 228: -6,-1 + - node: + color: '#FFFFFFD9' + id: BrickTileDarkInnerSw + decals: + 219: -3,-1 + 220: 0,-1 + 221: 3,-1 + 244: -6,-4 + - node: + color: '#FFFFFFD9' + id: BrickTileDarkLineE + decals: + 197: 0,-4 + 198: 0,-3 + 199: 0,-2 + 200: -3,-2 + 201: -3,-3 + 202: -3,-4 + 203: -6,-3 + 204: -6,-2 + 205: 3,-1 + 206: 3,-5 + 241: -6,-4 + - node: + color: '#FFFFFFD9' + id: BrickTileDarkLineN + decals: + 190: -7,-2 + 191: -5,-5 + 192: -4,-5 + 193: -2,-5 + 194: -1,-5 + 195: 2,-5 + 196: 4,-2 + 227: 1,-5 + - node: + color: '#FFFFFFD9' + id: BrickTileDarkLineS + decals: + 183: -4,-1 + 184: -5,-1 + 185: -2,-1 + 186: -1,-1 + 187: 1,-1 + 188: 2,-1 + 189: 4,-4 + 240: -7,-4 + - node: + color: '#FFFFFFD9' + id: BrickTileDarkLineW + decals: + 207: 3,-4 + 208: 0,-4 + 209: 0,-3 + 210: 0,-2 + 211: -3,-2 + 212: -3,-3 + 213: -3,-4 + 217: 3,-3 + 218: 3,-2 + 229: -6,-1 + 239: -6,-5 + - node: + color: '#00FFFFFF' + id: BrickTileSteelCornerNe + decals: + 171: 4,5 + - node: + color: '#32CD32FF' + id: BrickTileSteelCornerNe + decals: + 167: 4,2 + - node: + color: '#A020F0FF' + id: BrickTileSteelCornerNe + decals: + 176: 4,8 + - node: + color: '#DE3A3ADC' + id: BrickTileSteelCornerNe + decals: + 165: 4,-1 + - node: + color: '#00FFFFFF' + id: BrickTileSteelCornerNw + decals: + 174: 3,5 + - node: + color: '#32CD32FF' + id: BrickTileSteelCornerNw + decals: + 168: 3,2 + - node: + color: '#52B4E9CD' + id: BrickTileSteelCornerNw + decals: + 157: -7,-1 + - node: + color: '#A020F0FF' + id: BrickTileSteelCornerNw + decals: + 175: 3,8 + - node: + color: '#00FFFFFF' + id: BrickTileSteelCornerSe + decals: + 173: 4,4 + - node: + color: '#32CD32FF' + id: BrickTileSteelCornerSe + decals: + 170: 4,1 + - node: + color: '#A020F0FF' + id: BrickTileSteelCornerSe + decals: + 177: 4,7 + - node: + color: '#00FFFFFF' + id: BrickTileSteelCornerSw + decals: + 172: 3,4 + - node: + color: '#32CD32FF' + id: BrickTileSteelCornerSw + decals: + 169: 3,1 + - node: + color: '#A020F0FF' + id: BrickTileSteelCornerSw + decals: + 178: 3,7 + - node: + color: '#52B4E996' + id: BrickTileSteelLineN + decals: + 230: -6,-1 + 231: -6,-1 + - node: + color: '#52B4E9CD' + id: BrickTileSteelLineN + decals: + 158: -3,-1 + 159: -4,-1 + 160: -5,-1 + 161: -2,-1 + - node: + color: '#DE3A3A96' + id: BrickTileSteelLineN + decals: + 232: 3,-1 + 233: 3,-1 + - node: + color: '#DE3A3ADC' + id: BrickTileSteelLineN + decals: + 162: 0,-1 + 163: 1,-1 + 164: 2,-1 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNe + decals: + 7: -2,14 + 13: 2,12 + - node: + color: '#52B4E9E3' + id: BrickTileWhiteCornerNe + decals: + 97: -2,7 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe + decals: + 61: 1,8 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNe + decals: + 124: -3,-7 + - node: + color: '#F9801DE6' + id: BrickTileWhiteCornerNe + decals: + 90: -4,12 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 6: -5,14 + 12: 1,12 + - node: + color: '#52B4E9E3' + id: BrickTileWhiteCornerNw + decals: + 98: -3,7 + 119: -5,5 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 60: 0,8 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNw + decals: + 123: -7,-7 + - node: + color: '#F9801DEC' + id: BrickTileWhiteCornerNw + decals: + 76: -6,12 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSe + decals: + 9: -2,9 + 10: 2,10 + - node: + color: '#52B4E9E3' + id: BrickTileWhiteCornerSe + decals: + 109: -2,1 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerSe + decals: + 248: 4,-5 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 62: 1,1 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSe + decals: + 132: -3,-11 + - node: + color: '#F9801DEC' + id: BrickTileWhiteCornerSe + decals: + 78: -4,9 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSw + decals: + 8: -3,9 + 11: -5,13 + - node: + color: '#52B4E9E3' + id: BrickTileWhiteCornerSw + decals: + 110: -3,1 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 63: 0,1 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSw + decals: + 133: -6,-11 + 134: -7,-10 + 247: -7,-5 + - node: + color: '#F9801DE6' + id: BrickTileWhiteCornerSw + decals: + 95: -6,9 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNe + decals: + 30: -2,11 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNw + decals: + 29: 1,11 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSe + decals: + 28: -2,10 + - node: + color: '#52B4E9E3' + id: BrickTileWhiteInnerSe + decals: + 122: -7,7 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerSe + decals: + 141: 2,-5 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSw + decals: + 31: -3,13 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerSw + decals: + 182: 0,-5 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 25: -2,12 + 26: -2,13 + 27: 2,11 + - node: + color: '#52B4E9E3' + id: BrickTileWhiteLineE + decals: + 99: -2,6 + 100: -2,5 + 101: -2,4 + 102: -2,3 + 103: -2,2 + 111: -7,5 + 112: -7,6 + 113: -7,3 + 114: -7,2 + 115: -7,1 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineE + decals: + 143: 2,-6 + 144: 2,-7 + 145: 2,-11 + 146: 2,-12 + 147: 2,-10 + 148: 2,-9 + 149: 2,-8 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 64: 1,2 + 65: 1,3 + 66: 1,4 + 67: 1,5 + 68: 1,6 + 69: 1,7 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 125: -3,-8 + 126: -3,-9 + 127: -3,-10 + - node: + color: '#F9801DE6' + id: BrickTileWhiteLineE + decals: + 92: -4,11 + 93: -4,10 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineN + decals: + 17: 0,11 + 18: -1,11 + 19: -3,14 + 20: -4,14 + 166: -1,-1 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineN + decals: + 129: -6,-7 + 130: -5,-7 + 131: -4,-7 + - node: + color: '#F9801DE6' + id: BrickTileWhiteLineN + decals: + 91: -5,12 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineS + decals: + 14: -1,10 + 15: 0,10 + 16: 1,10 + 21: -4,13 + - node: + color: '#52B4E9E3' + id: BrickTileWhiteLineS + decals: + 120: -5,7 + 121: -6,7 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineS + decals: + 179: -2,-5 + 180: -1,-5 + 234: 3,-5 + 235: 3,-5 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 136: -4,-11 + 137: -5,-11 + 236: -3,-5 + 237: -4,-5 + 238: -5,-5 + 246: -6,-5 + - node: + color: '#F9801DE6' + id: BrickTileWhiteLineS + decals: + 96: -5,9 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 22: -3,10 + 23: -3,11 + 24: -3,12 + - node: + color: '#52B4E9E3' + id: BrickTileWhiteLineW + decals: + 104: -3,6 + 105: -3,5 + 106: -3,4 + 107: -3,3 + 108: -3,2 + 116: -5,1 + 117: -5,2 + 118: -5,3 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineW + decals: + 150: 0,-12 + 151: 0,-11 + 152: 0,-10 + 153: 0,-9 + 154: 0,-8 + 155: 0,-6 + 156: 0,-7 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 70: 0,2 + 71: 0,3 + 72: 0,4 + 73: 0,5 + 74: 0,6 + 75: 0,7 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 128: -7,-8 + 135: -7,-9 + 258: -6,-10 + - node: + color: '#F9801DE6' + id: BrickTileWhiteLineW + decals: + 94: -6,10 + - node: + color: '#F9801DEC' + id: BrickTileWhiteLineW + decals: + 77: -6,11 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Caution + decals: + 142: 1,-12 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Caution + decals: + 140: 4,-3 + - node: + color: '#52B4E996' + id: DeliveryGreyscale + decals: + 253: -3,0 + 254: -2,0 + 255: -3,8 + 256: -2,8 + - node: + color: '#DE3A3A7F' + id: DeliveryGreyscale + decals: + 249: 0,9 + 250: 1,9 + 251: 0,0 + 252: 1,0 + - node: + color: '#FFFFFFFF' + id: FlowersBRTwo + decals: + 0: -4,-3 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 4: 2,-3 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 5: -2,-3 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 2: 1,-3 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 1: -5,-3 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 3: -1,-3 + - node: + color: '#EFB34196' + id: FullTileOverlayGreyscale + decals: + 257: -7,-10 + - node: + color: '#F9801DC0' + id: FullTileOverlayGreyscale + decals: + 87: -6,9 + 88: -5,10 + 89: -4,11 + - node: + color: '#334E6DC8' + id: MiniTileWhiteBox + decals: + 33: -6,13 + 34: -6,14 + 35: -5,15 + 36: -4,15 + 37: -3,15 + 38: -2,15 + - node: + color: '#334E6DC8' + id: MonoOverlay + decals: + 32: -1,9 + 39: -1,12 + 40: 0,12 + - node: + color: '#F9801DC0' + id: ThreeQuarterTileOverlayGreyscale + decals: + 85: -5,9 + 86: -4,10 + - node: + color: '#F9801DC0' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 82: -4,12 + 83: -5,11 + 84: -6,10 + - node: + color: '#D4D4D496' + id: WarnFullGreyscale + decals: + 56: 3,12 + - node: + color: '#DE3A3A96' + id: WarnFullGreyscale + decals: + 57: 2,8 + 58: 2,5 + 59: 2,2 + - node: + color: '#F9801DEC' + id: WarnFullGreyscale + decals: + 79: -7,10 + 80: -7,9 + 81: -7,11 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 50: 2,15 + 265: 4,-6 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 42: -1,15 + 259: 3,-6 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 51: 2,13 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 41: -1,13 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndN + decals: + 46: 3,14 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndS + decals: + 47: 3,13 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 49: 2,14 + 266: 4,-7 + 267: 4,-8 + 268: 4,-9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 43: 0,15 + 52: 1,15 + 53: 0,15 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 44: 0,13 + 45: 1,13 + 54: 1,13 + 55: 0,13 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 48: -1,14 + 260: 3,-7 + 261: 3,-8 + 262: 3,-9 + 263: 3,-10 + 264: 3,-11 + - type: GridAtmosphere + version: 2 + data: + tiles: + -2,0: + 0: 61156 + -2,1: + 0: 61156 + -2,2: + 0: 61152 + -2,3: + 1: 4368 + 0: 36044 + -2,-1: + 0: 61439 + -2,4: + 1: 2 + -1,1: + 0: 26470 + -1,2: + 0: 65526 + -1,3: + 0: 65535 + -1,-1: + 0: 65535 + -1,0: + 0: 26214 + 0,0: + 0: 16307 + 0,1: + 0: 46075 + 0,2: + 0: 65343 + 0,3: + 0: 32767 + -2,-3: + 1: 275 + 0: 61120 + -2,-2: + 0: 59630 + -2,-4: + 1: 57344 + -1,-4: + 1: 61440 + -1,-3: + 0: 13104 + 2: 64 + 3: 16384 + -1,-2: + 0: 61747 + 1: 64 + 0,-4: + 0: 28672 + 1: 32768 + 0,-3: + 0: 65527 + 0,-2: + 0: 65535 + 0,-1: + 0: 65535 + 1,-4: + 1: 4096 + 1,-3: + 1: 547 + 0: 4352 + 1,-2: + 0: 4369 + 1,-1: + 0: 4915 + 1,0: + 0: 272 + 1,1: + 0: 4113 + 1,2: + 0: 4353 + 1,3: + 1: 8736 + 1,4: + 1: 1 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + Oxygen: 21.824879 + Nitrogen: 82.10312 + - volume: 2500 + immutable: True + moles: {} + - volume: 2500 + temperature: 293.15 + moles: + Oxygen: 6666.982 + - volume: 2500 + temperature: 293.15 + moles: + Nitrogen: 6666.982 + chunkSize: 4 + - type: OccluderTree + - type: Shuttle + dampingModifier: 0.25 + - type: RadiationGridResistance + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay + - type: SpreaderGrid + - type: GridPathfinding + - type: ImplicitRoof +- proto: AirAlarm + entities: + - uid: 399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - type: DeviceList + devices: + - 432 + - 436 + - 426 + - 438 + - 937 + - 940 + - type: Fixtures + fixtures: {} + - uid: 400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - type: DeviceList + devices: + - 430 + - 431 + - 434 + - 437 + - 402 + - 404 + - 410 + - 944 + - 985 + - 947 + - 983 + - 932 + - type: Fixtures + fixtures: {} + - uid: 936 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1 + - type: DeviceList + devices: + - 422 + - 421 + - 424 + - 425 + - 426 + - 438 + - 430 + - 431 + - 630 + - 624 + - 614 + - 606 + - 423 + - 420 + - 623 + - 605 + - 627 + - 612 + - type: Fixtures + fixtures: {} + - uid: 986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + - type: DeviceList + devices: + - 433 + - 435 + - 406 + - 414 + - 405 + - 418 + - 429 + - 436 + - 432 + - 413 + - 412 + - 415 + - 417 + - 409 + - 434 + - 437 + - 419 + - 408 + - 416 + - 622 + - 611 + - 607 + - 620 + - type: Fixtures + fixtures: {} + - uid: 987 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - type: DeviceList + devices: + - 618 + - 621 + - 433 + - 435 + - type: Fixtures + fixtures: {} + - uid: 988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 + - type: DeviceList + devices: + - 628 + - 609 + - 416 + - 408 + - 419 + - type: Fixtures + fixtures: {} + - uid: 989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - type: DeviceList + devices: + - 427 + - 429 + - 604 + - 633 + - type: Fixtures + fixtures: {} + - uid: 990 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - type: DeviceList + devices: + - 632 + - 608 + - 428 + - 427 + - type: Fixtures + fixtures: {} +- proto: AirlockEngineeringLocked + entities: + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 1 +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 6 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + - uid: 8 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 13 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 +- proto: AirlockMedical + entities: + - uid: 15 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,4.5 + parent: 1 + - uid: 16 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 19 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 +- proto: AirlockSecurityLocked + entities: + - uid: 22 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 25 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 26 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 27 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 28 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: AtmosDeviceFanDirectional + entities: + - uid: 30 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - uid: 34 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 35 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 38 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 39 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 1 +- proto: AtmosFixOxygenMarker + entities: + - uid: 40 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 1 +- proto: BaseGasCondenser + entities: + - uid: 560 + components: + - type: Transform + pos: -5.5,12.5 + parent: 1 +- proto: Bed + entities: + - uid: 41 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 +- proto: BedsheetMedical + entities: + - uid: 44 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,3.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 50 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,7.5 + parent: 1 +- proto: BedsheetOrange + entities: + - uid: 51 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + - uid: 52 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 +- proto: BluespaceBeaker + entities: + - uid: 55 + components: + - type: Transform + parent: 999 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 56 + components: + - type: Transform + parent: 999 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxFlashbang + entities: + - uid: 67 + components: + - type: Transform + pos: 4.680676,10.896025 + parent: 1 +- proto: BoxFolderBlack + entities: + - uid: 68 + components: + - type: Transform + pos: 0.7460346,14.873093 + parent: 1 +- proto: BoxFolderRed + entities: + - uid: 69 + components: + - type: Transform + pos: 0.43353462,14.888718 + parent: 1 +- proto: BoxHandcuff + entities: + - uid: 70 + components: + - type: Transform + pos: 4.508801,10.59915 + parent: 1 +- proto: BoxZiptie + entities: + - uid: 71 + components: + - type: Transform + pos: 4.258801,10.833525 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 72 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -7.5,9.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 2.5,14.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 1.5,14.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: -1.5,12.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: -1.5,13.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: -3.5,13.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 2.5,11.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 2.5,13.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: -4.5,12.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: -7.5,5.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: -7.5,7.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: -7.5,9.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 1 +- proto: CableHV + entities: + - uid: 84 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 1 +- proto: CableMV + entities: + - uid: 232 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: -1.5,12.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: -1.5,13.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: -3.5,13.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: -6.5,14.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: -6.5,15.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: -5.5,15.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: -5.5,16.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: -4.5,16.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -3.5,16.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: -2.5,16.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: -1.5,16.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: -0.5,16.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: 2.5,16.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: 3.5,16.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: 3.5,15.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 2.5,13.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 2.5,11.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: 5.5,11.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: 5.5,10.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 1 +- proto: ChairOfficeDark + entities: + - uid: 718 + components: + - type: Transform + pos: -4.887356,10.663563 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 1 + - uid: 345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,15.5 + parent: 1 + - uid: 346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - uid: 347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,14.5 + parent: 1 + - uid: 348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 1 + - uid: 349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,14.5 + parent: 1 + - uid: 350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + - uid: 351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,14.5 + parent: 1 + - uid: 352 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,14.5 + parent: 1 + - uid: 354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + - uid: 358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,14.5 + parent: 1 + - uid: 359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,15.5 + parent: 1 + - uid: 360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 1 + - uid: 361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 + - uid: 364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 1 + - uid: 365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 366 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 367 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + - uid: 370 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 1 + - uid: 372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 1 + - uid: 374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,14.5 + parent: 1 +- proto: ChemDispenser + entities: + - uid: 376 + components: + - type: Transform + pos: -5.5,9.5 + parent: 1 +- proto: ChemistryHotplate + entities: + - uid: 377 + components: + - type: Transform + pos: -3.5,12.5 + parent: 1 +- proto: ChemMaster + entities: + - uid: 375 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 31 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 37 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 943 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-5.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: ClosetWallFireFilledRandom + entities: + - uid: 993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: ComfyChair + entities: + - uid: 378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 1 + - uid: 379 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 + - uid: 381 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 +- proto: ComputerAlert + entities: + - uid: 382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,14.5 + parent: 1 +- proto: ComputerComms + entities: + - uid: 383 + components: + - type: Transform + pos: -2.5,15.5 + parent: 1 +- proto: ComputerId + entities: + - uid: 384 + components: + - type: Transform + pos: -4.5,15.5 + parent: 1 +- proto: ComputerRadar + entities: + - uid: 386 + components: + - type: Transform + pos: -1.5,15.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 387 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1 +- proto: CrateEmergencyExplosive + entities: + - uid: 388 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + Oxygen: 1.8856695 + Nitrogen: 7.0937095 +- proto: CrateEmergencyInternalsLarge + entities: + - uid: 389 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + Oxygen: 1.7459903 + Nitrogen: 6.568249 + - uid: 390 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + Oxygen: 1.7459903 + Nitrogen: 6.568249 +- proto: CrateSecurityTrackingMindshieldImplants + entities: + - uid: 83 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 +- proto: DefibrillatorCabinet + entities: + - uid: 391 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,7.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: DrinkMugGreen + entities: + - uid: 393 + components: + - type: Transform + pos: 3.7066736,14.779343 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: 3.3703594,14.794968 + parent: 1 +- proto: DrinkWaterJug + entities: + - uid: 57 + components: + - type: Transform + parent: 999 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 58 + components: + - type: Transform + parent: 999 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 59 + components: + - type: Transform + parent: 999 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 60 + components: + - type: Transform + parent: 999 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: EmergencyLight + entities: + - uid: 395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 1 +- proto: EmergencyRollerBed + entities: + - uid: 396 + components: + - type: Transform + pos: -1.5180254,6.168866 + parent: 1 + - uid: 397 + components: + - type: Transform + pos: -1.5803733,2.965352 + parent: 1 + - uid: 398 + components: + - type: Transform + pos: -1.5492754,2.4657412 + parent: 1 + - uid: 948 + components: + - type: Transform + pos: -1.5508257,3.7665472 + parent: 1 + - uid: 984 + components: + - type: Transform + pos: -1.5091591,5.47488 + parent: 1 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: FaxMachineBase + entities: + - uid: 401 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1 + - type: FaxMachine + name: NT-Hygieia +- proto: FirelockEdge + entities: + - uid: 402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 400 + - uid: 404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 400 + - uid: 405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 986 + - uid: 406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 986 + - uid: 408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 986 + - 988 + - uid: 409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 986 + - uid: 410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 400 + - uid: 412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 986 + - uid: 413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 986 + - uid: 414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 986 + - uid: 415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 986 + - uid: 416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 986 + - 988 + - uid: 417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 986 + - uid: 418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 986 + - uid: 419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 986 + - 988 + - uid: 420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 936 + - uid: 421 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 936 + - uid: 422 + components: + - type: Transform + pos: 2.5,13.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 936 + - uid: 423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,11.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 936 + - uid: 424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,12.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 936 + - uid: 425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,12.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 936 +- proto: FirelockGlass + entities: + - uid: 426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 936 + - 399 + - uid: 427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 990 + - 989 + - uid: 428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 990 + - uid: 429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 986 + - 989 + - uid: 430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 936 + - 400 + - uid: 431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 936 + - 400 + - uid: 432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 986 + - 399 + - uid: 433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 987 + - 986 + - uid: 434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 986 + - 400 + - uid: 435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 987 + - 986 + - uid: 436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 986 + - 399 + - uid: 437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 986 + - 400 + - uid: 438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 936 + - 399 +- proto: FloorDrain + entities: + - uid: 941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: FoodBoxDonut + entities: + - uid: 439 + components: + - type: Transform + pos: 0.4396093,12.674404 + parent: 1 + - uid: 440 + components: + - type: Transform + pos: 3.5285802,14.419968 + parent: 1 +- proto: GasMinerNitrogen + entities: + - uid: 441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 1 +- proto: GasMinerOxygen + entities: + - uid: 442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 1 +- proto: GasMixer + entities: + - uid: 443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 1 + - type: GasMixer + inletTwoConcentration: 0.78 + inletOneConcentration: 0.22 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasPassiveVent + entities: + - uid: 619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 450 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeFourway + entities: + - uid: 451 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 577 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 579 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 591 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 452 + components: + - type: Transform + pos: -4.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 453 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 454 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 455 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 460 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 462 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 463 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 466 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 468 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 475 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 477 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 480 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 483 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 487 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 489 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 498 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 502 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 504 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 505 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 507 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 511 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 512 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 513 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 516 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 518 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 520 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 530 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 540 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 542 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 544 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 551 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 553 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 554 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 555 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 557 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 558 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 570 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 572 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 578 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 582 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 584 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 590 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 592 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 596 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPort + entities: + - uid: 939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,11.5 + parent: 1 +- proto: GasPressurePump + entities: + - uid: 600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasVentPump + entities: + - uid: 604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 989 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,13.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 936 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,10.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 936 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 986 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 990 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 988 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 611 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 986 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 936 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,13.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 936 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 1 + - uid: 616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 1 + - uid: 618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 987 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 399 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 400 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 400 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasVentScrubber + entities: + - uid: 620 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 986 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 987 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 622 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 986 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 936 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 624 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 936 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 627 + components: + - type: Transform + pos: -1.5,15.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 936 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 988 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,11.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 936 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 990 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 989 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 400 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 399 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 400 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 400 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 991 + components: + - type: Transform + pos: -3.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 29 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 1 + - uid: 635 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 1 + - uid: 636 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 637 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 1 +- proto: Grille + entities: + - uid: 638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 1 + - uid: 639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + - uid: 640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,16.5 + parent: 1 + - uid: 641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + - uid: 642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 1 + - uid: 643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 1 + - uid: 644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1 + - uid: 645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + - uid: 646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - uid: 647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 1 + - uid: 648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - uid: 649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - uid: 650 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 651 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 652 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 1 + - uid: 653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,15.5 + parent: 1 + - uid: 654 + components: + - type: Transform + pos: -2.5,16.5 + parent: 1 + - uid: 655 + components: + - type: Transform + pos: -3.5,16.5 + parent: 1 + - uid: 656 + components: + - type: Transform + pos: -4.5,16.5 + parent: 1 + - uid: 657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,16.5 + parent: 1 + - uid: 658 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1 + - uid: 659 + components: + - type: Transform + pos: -5.5,15.5 + parent: 1 + - uid: 660 + components: + - type: Transform + pos: -6.5,15.5 + parent: 1 + - uid: 661 + components: + - type: Transform + pos: -6.5,14.5 + parent: 1 + - uid: 662 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 663 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1 + - uid: 664 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 1 + - uid: 665 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 1 + - uid: 666 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 667 + components: + - type: Transform + pos: -1.5,16.5 + parent: 1 + - uid: 668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,16.5 + parent: 1 + - uid: 669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + - uid: 670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,9.5 + parent: 1 + - uid: 671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + - uid: 672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 1 + - uid: 673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,8.5 + parent: 1 + - uid: 674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 1 + - uid: 675 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,7.5 + parent: 1 + - uid: 677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1 + - uid: 678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,10.5 + parent: 1 + - uid: 679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,11.5 + parent: 1 + - uid: 680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,5.5 + parent: 1 + - uid: 681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,15.5 + parent: 1 + - uid: 682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,16.5 + parent: 1 + - uid: 683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,16.5 + parent: 1 + - uid: 684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,16.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 1 + - uid: 933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 1 +- proto: Jug + entities: + - uid: 61 + components: + - type: Transform + parent: 999 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 62 + components: + - type: Transform + parent: 999 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 63 + components: + - type: Transform + parent: 999 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 64 + components: + - type: Transform + parent: 999 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: KitchenReagentGrinder + entities: + - uid: 685 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 +- proto: LampGold + entities: + - uid: 2 + components: + - type: Transform + pos: 0.35053897,15.837923 + parent: 1 +- proto: LockerChemistryFilled + entities: + - uid: 999 + components: + - type: Transform + anchored: True + pos: -4.5,12.5 + parent: 1 + - type: Physics + bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + Oxygen: 1.7459903 + Nitrogen: 6.568249 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1000 + - 62 + - 59 + - 60 + - 63 + - 64 + - 66 + - 55 + - 61 + - 57 + - 56 + - 58 + - 65 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerWallMedicalDoctorFilled + entities: + - uid: 686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + Oxygen: 1.7459903 + Nitrogen: 6.568249 + - type: Fixtures + fixtures: {} +- proto: MachineCentrifuge + entities: + - uid: 1001 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1 +- proto: MachineElectrolysisUnit + entities: + - uid: 836 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 +- proto: MedicalBed + entities: + - uid: 687 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 688 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 + - uid: 689 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - uid: 690 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 691 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 692 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 693 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 +- proto: MedkitAdvancedFilled + entities: + - uid: 694 + components: + - type: Transform + pos: -5.7813635,7.7174473 + parent: 1 +- proto: MedkitBruteFilled + entities: + - uid: 695 + components: + - type: Transform + pos: -5.295559,7.7018223 + parent: 1 +- proto: MedkitBurnFilled + entities: + - uid: 696 + components: + - type: Transform + pos: -5.2853947,7.8612895 + parent: 1 +- proto: MedkitCombatFilled + entities: + - uid: 697 + components: + - type: Transform + pos: -5.7385197,7.8612895 + parent: 1 +- proto: MedkitO2 + entities: + - uid: 698 + components: + - type: Transform + pos: -5.7969885,7.4518223 + parent: 1 +- proto: MedkitToxin + entities: + - uid: 699 + components: + - type: Transform + pos: -5.2969885,7.4674473 + parent: 1 +- proto: PaperBin10 + entities: + - uid: 700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,13.5 + parent: 1 +- proto: Pen + entities: + - uid: 701 + components: + - type: Transform + pos: 0.678653,14.613018 + parent: 1 + - uid: 702 + components: + - type: Transform + pos: 0.3812492,14.513718 + parent: 1 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 +- proto: PlushieLizard + entities: + - uid: 706 + components: + - type: Transform + pos: -4.463278,-9.441589 + parent: 1 +- proto: PlushieSlime + entities: + - uid: 707 + components: + - type: Transform + pos: 4.4983554,-5.6872573 + parent: 1 +- proto: PosterContrabandInterdyne + entities: + - uid: 708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: PosterLegitHelpOthers + entities: + - uid: 709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: PosterLegitHereForYourSafety + entities: + - uid: 710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: PosterLegitIonRifle + entities: + - uid: 711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: PosterLegitJustAWeekAway + entities: + - uid: 712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,13.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,13.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: PosterLegitSafetyMothPiping + entities: + - uid: 717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: PosterLegitSafetyReport + entities: + - uid: 32 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: PowerCellRecharger + entities: + - uid: 719 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 82 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + - uid: 720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 1 + - uid: 721 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 1 + - uid: 722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 1 + - uid: 723 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,9.5 + parent: 1 + - uid: 725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - uid: 726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + - uid: 728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 1 + - uid: 729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,10.5 + parent: 1 + - uid: 731 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,13.5 + parent: 1 + - uid: 733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,13.5 + parent: 1 + - uid: 734 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - uid: 736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + - uid: 737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 1 + - uid: 738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 1 + - uid: 740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + - uid: 741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 1 +- proto: RandomDrinkBottle + entities: + - uid: 742 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1 +- proto: RandomDrinkGlass + entities: + - uid: 743 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 744 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 1 +- proto: RandomFoodMeal + entities: + - uid: 745 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 1 + - uid: 746 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 + - uid: 747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 1 + - uid: 748 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 +- proto: ReagentContainerMayo + entities: + - uid: 1000 + components: + - type: Transform + parent: 999 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetPlasma1 + entities: + - uid: 65 + components: + - type: Transform + parent: 999 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 66 + components: + - type: Transform + parent: 999 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ShuttleWindow + entities: + - uid: 749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,5.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,7.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,9.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 758 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,16.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,16.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 766 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 767 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 768 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 769 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 770 + components: + - type: Transform + pos: -6.5,14.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 771 + components: + - type: Transform + pos: -5.5,15.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 772 + components: + - type: Transform + pos: -1.5,16.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 773 + components: + - type: Transform + pos: -3.5,16.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 774 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,16.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 779 + components: + - type: Transform + pos: -2.5,16.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 780 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 781 + components: + - type: Transform + pos: -6.5,15.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,16.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,15.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,15.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 786 + components: + - type: Transform + pos: 2.5,16.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 787 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 790 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,11.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,8.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 +- proto: SignRedOne + entities: + - uid: 795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: SignRedThree + entities: + - uid: 796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: SignRedTwo + entities: + - uid: 797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: SMESBasic + entities: + - uid: 798 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 1 +- proto: StasisBed + entities: + - uid: 799 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 800 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 801 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 1 +- proto: Table + entities: + - uid: 802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 1 + - uid: 803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 1 + - uid: 804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 1 +- proto: TableGlass + entities: + - uid: 805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,7.5 + parent: 1 + - uid: 806 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,10.5 + parent: 1 + - uid: 807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,10.5 + parent: 1 + - uid: 808 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,10.5 + parent: 1 + - uid: 810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,9.5 + parent: 1 + - uid: 811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,11.5 + parent: 1 + - uid: 812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 1 + - uid: 813 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 + - uid: 814 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 1 + - uid: 815 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 1 + - uid: 816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 1 + - uid: 817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,12.5 + parent: 1 + - uid: 818 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1 +- proto: TableWood + entities: + - uid: 819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,13.5 + parent: 1 + - uid: 820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 1 + - uid: 821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,15.5 + parent: 1 + - uid: 822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,14.5 + parent: 1 +- proto: Thruster + entities: + - uid: 603 + components: + - type: Transform + pos: 4.5,16.5 + parent: 1 + - uid: 823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-12.5 + parent: 1 + - uid: 824 + components: + - type: Transform + pos: -6.5,16.5 + parent: 1 + - uid: 825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-12.5 + parent: 1 + - uid: 826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-12.5 + parent: 1 + - uid: 827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 1 + - uid: 828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-12.5 + parent: 1 + - uid: 829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,13.5 + parent: 1 + - uid: 830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 1 + - uid: 831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-12.5 + parent: 1 + - uid: 832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 1 + - uid: 833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,13.5 + parent: 1 + - uid: 834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,14.5 + parent: 1 + - uid: 835 + components: + - type: Transform + pos: 5.5,15.5 + parent: 1 + - uid: 837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 1 + - uid: 838 + components: + - type: Transform + pos: -7.5,15.5 + parent: 1 + - uid: 839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,14.5 + parent: 1 +- proto: VendingMachineChemicals + entities: + - uid: 840 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 +- proto: VendingMachineCoffee + entities: + - uid: 841 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 1 +- proto: VendingMachineSec + entities: + - uid: 842 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 1 + - uid: 844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1 + - uid: 845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1 + - uid: 846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 + - uid: 847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + - uid: 848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + - uid: 849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,11.5 + parent: 1 + - uid: 850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + - uid: 851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + - uid: 852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 1 + - uid: 853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 1 + - uid: 854 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1 + - uid: 855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 1 + - uid: 856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1 + - uid: 857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 1 + - uid: 858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1 + - uid: 859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + - uid: 860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + - uid: 861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + - uid: 862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - uid: 863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - uid: 864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1 + - uid: 865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + - uid: 866 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - uid: 867 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1 + - uid: 869 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 870 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + - uid: 872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 1 + - uid: 873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,9.5 + parent: 1 + - uid: 874 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 1 + - uid: 876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 1 + - uid: 877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 1 + - uid: 878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + - uid: 879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 + - uid: 880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 1 + - uid: 881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,4.5 + parent: 1 + - uid: 882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,7.5 + parent: 1 + - uid: 883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,6.5 + parent: 1 + - uid: 884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,8.5 + parent: 1 + - uid: 885 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,7.5 + parent: 1 + - uid: 887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + - uid: 888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - uid: 889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,12.5 + parent: 1 + - uid: 890 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 1 + - uid: 891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + - uid: 892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 + - uid: 893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + - uid: 894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + - uid: 895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 1 + - uid: 896 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - uid: 897 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 1 + - uid: 899 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 1 + - uid: 900 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 1 + - uid: 901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,12.5 + parent: 1 + - uid: 902 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 1 + - uid: 903 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 1 + - uid: 904 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 1 + - uid: 906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,12.5 + parent: 1 + - uid: 907 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 1 + - uid: 908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 1 + - uid: 909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,13.5 + parent: 1 + - uid: 910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 1 + - uid: 911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,12.5 + parent: 1 + - uid: 912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 1 + - uid: 913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + - uid: 914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 915 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 917 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 1 + - uid: 919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-11.5 + parent: 1 + - uid: 920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 1 + - uid: 921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 1 + - uid: 922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-9.5 + parent: 1 + - uid: 923 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 +- proto: WardrobePrisonFilled + entities: + - uid: 924 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 925 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 926 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 +- proto: WaterCooler + entities: + - uid: 927 + components: + - type: Transform + pos: 2.5,15.5 + parent: 1 + - uid: 928 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 +- proto: WeaponCapacitorRecharger + entities: + - uid: 929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,11.5 + parent: 1 + - uid: 930 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,11.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 +- proto: WindoorSecureCommandLocked + entities: + - uid: 938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,12.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,12.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 945 + components: + - type: Transform + pos: 2.5,13.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 946 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,12.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,12.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 954 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 955 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,12.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,12.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 960 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,15.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 963 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,13.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 967 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,14.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 973 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 974 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 978 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 981 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 +... diff --git a/Resources/Maps/Shuttles/AdminSpawn/ERT-Medium-Base.yml b/Resources/Maps/Shuttles/AdminSpawn/ERT-Medium-Base.yml new file mode 100644 index 0000000000..9f46b68a5b --- /dev/null +++ b/Resources/Maps/Shuttles/AdminSpawn/ERT-Medium-Base.yml @@ -0,0 +1,2560 @@ +meta: + format: 7 + category: Grid + engineVersion: 254.1.0 + forkId: "" + forkVersion: "" + time: 04/21/2025 18:25:29 + entityCount: 372 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 0: Space + 29: FloorDark + 34: FloorDarkMono + 1: FloorMetalDiamond + 89: FloorSteel + 104: FloorTechMaint + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: NT-Phoenix + - type: Transform + parent: invalid + - type: MapGrid + chunks: + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAAQAAAAAAWQAAAAAAAQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: WQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + tiles: + -2,0: + 0: 57582 + -2,1: + 0: 61166 + -2,2: + 0: 51406 + 1: 4352 + -2,3: + 1: 1 + 0: 140 + -2,-1: + 0: 61024 + 1: 4 + -1,0: + 0: 63727 + -1,1: + 0: 65535 + -1,2: + 0: 55551 + -1,3: + 0: 221 + -1,-1: + 0: 61167 + 0,0: + 0: 12595 + 0,1: + 0: 13107 + 0,2: + 0: 4115 + 1: 17408 + 0,3: + 0: 1 + 1: 4 + -2,-2: + 1: 5632 + -1,-2: + 0: 29952 + 0,-2: + 1: 17152 + 0,-1: + 0: 29553 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay + - type: SpreaderGrid + - type: GridPathfinding +- proto: AirAlarm + entities: + - uid: 4 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - type: DeviceList + devices: + - 330 + - 156 + - 122 + - uid: 5 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 1 + - type: DeviceList + devices: + - 328 + - 157 + - 126 + - uid: 10 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + - type: DeviceList + devices: + - 161 + - 332 + - 162 + - 331 + - 122 + - 124 + - 123 + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 + - type: DeviceList + devices: + - 327 + - 326 + - 158 + - 159 + - 160 + - 124 + - 123 + - 126 + - 125 + - uid: 221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 1 + - type: DeviceList + devices: + - 125 + - 329 + - 155 +- proto: AirCanister + entities: + - uid: 2 + components: + - type: Transform + anchored: True + pos: -4.5,-1.5 + parent: 1 + - type: Physics + bodyType: Static + - uid: 3 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 +- proto: AirlockCentralCommandGlassLocked + entities: + - uid: 360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,10.5 + parent: 1 +- proto: AirlockEngineeringLocked + entities: + - uid: 361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 +- proto: AirlockGlass + entities: + - uid: 362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - uid: 363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,10.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 11 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 14 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 369 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 15 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -4.5,14.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -6.5,6.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: -7.5,7.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: -7.5,5.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: -2.5,12.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 +- proto: CableHV + entities: + - uid: 84 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 +- proto: CableMV + entities: + - uid: 89 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: -6.5,6.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 1 +- proto: ChairFoldingSpawnFolded + entities: + - uid: 114 + components: + - type: Transform + pos: -5.437305,0.37447762 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: -5.572722,0.8432276 + parent: 1 +- proto: ChairOfficeDark + entities: + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,12.5 + parent: 1 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 118 + components: + - type: Transform + pos: -5.475239,-1.2536288 + parent: 1 +- proto: ComputerComms + entities: + - uid: 119 + components: + - type: Transform + pos: -3.5,13.5 + parent: 1 +- proto: ComputerPowerMonitoring + entities: + - uid: 120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 +- proto: ComputerRadar + entities: + - uid: 364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 121 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1 +- proto: FireAlarm + entities: + - uid: 351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,10.5 + parent: 1 + - type: DeviceList + devices: + - 125 + - 329 + - 155 + - uid: 353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,10.5 + parent: 1 + - type: DeviceList + devices: + - 328 + - 157 + - 126 + - uid: 354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + - type: DeviceList + devices: + - 327 + - 326 + - 158 + - 159 + - 160 + - 124 + - 123 + - 126 + - 125 + - uid: 355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 1 + - type: DeviceList + devices: + - 161 + - 332 + - 162 + - 331 + - 122 + - 124 + - 123 + - uid: 356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - type: DeviceList + devices: + - 330 + - 156 + - 122 +- proto: FirelockGlass + entities: + - uid: 122 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 10 + - 355 + - 356 + - 4 + - uid: 123 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 10 + - 355 + - 61 + - 354 + - uid: 124 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 10 + - 355 + - 61 + - 354 + - uid: 125 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 61 + - 354 + - 351 + - 221 + - uid: 126 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 61 + - 354 + - 353 + - 5 +- proto: GasPassiveVent + entities: + - uid: 335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 299 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 310 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeFourway + entities: + - uid: 127 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraight + entities: + - uid: 128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 130 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 131 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 135 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 136 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 137 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 138 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 139 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 140 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 141 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 144 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 145 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 316 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 317 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 318 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 319 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 320 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 321 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 322 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 323 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 324 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 325 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 148 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 152 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 155 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 351 + - 221 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 356 + - 4 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 157 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 353 + - 5 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 61 + - 354 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 159 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 61 + - 354 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 61 + - 354 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 10 + - 355 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 10 + - 355 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 61 + - 354 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 61 + - 354 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 328 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 353 + - 5 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 329 + components: + - type: Transform + pos: -3.5,11.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 351 + - 221 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 356 + - 4 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 10 + - 355 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 10 + - 355 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 163 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 165 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 +- proto: Grille + entities: + - uid: 166 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -2.5,12.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: -4.5,14.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -7.5,5.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: -7.5,7.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 1 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 83 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-3.5 + parent: 1 +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 191 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 1 + - uid: 196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 1 + - uid: 197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,11.5 + parent: 1 + - uid: 365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,8.5 + parent: 1 + - uid: 366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,4.5 + parent: 1 + - uid: 367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 + - uid: 368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 1 +- proto: RadioHandheld + entities: + - uid: 198 + components: + - type: Transform + pos: -5.2981553,-1.5244621 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: -5.4856553,-1.5244621 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: -5.735656,-1.5452955 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + - uid: 203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,5.5 + parent: 1 + - uid: 204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,6.5 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,13.5 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + - uid: 208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,12.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: -4.5,14.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,13.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,11.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 222 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 223 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 +- proto: TableReinforcedGlass + entities: + - uid: 294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + - uid: 295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 +- proto: Thruster + entities: + - uid: 225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + - uid: 226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 1 + - uid: 227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 1 + - uid: 228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + - uid: 229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - uid: 230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,11.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: -7.5,12.5 + parent: 1 + - uid: 232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,11.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1 + - uid: 234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-5.5 + parent: 1 + - uid: 235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,10.5 + parent: 1 + - uid: 236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 1 + - uid: 238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - uid: 240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - uid: 243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - uid: 246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 + - uid: 249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 1 + - uid: 250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 1 + - uid: 253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 + - uid: 256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 + - uid: 257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1 + - uid: 259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 1 + - uid: 260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,14.5 + parent: 1 + - uid: 261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 + - uid: 262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + - uid: 266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 1 + - uid: 267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 1 + - uid: 268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 1 + - uid: 269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1 + - uid: 271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: -7.5,9.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 1 + - uid: 288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 1 + - uid: 290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 1 + - uid: 291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + - uid: 292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 +- proto: WindoorSecureCentralCommandLocked + entities: + - uid: 370 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 371 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + - uid: 373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 +- proto: Wrench + entities: + - uid: 350 + components: + - type: Transform + pos: -5.476222,-1.34375 + parent: 1 +... diff --git a/Resources/Maps/Shuttles/AdminSpawn/ERT-Medium-BasePlus.yml b/Resources/Maps/Shuttles/AdminSpawn/ERT-Medium-BasePlus.yml new file mode 100644 index 0000000000..ff37cad37b --- /dev/null +++ b/Resources/Maps/Shuttles/AdminSpawn/ERT-Medium-BasePlus.yml @@ -0,0 +1,3435 @@ +meta: + format: 7 + category: Grid + engineVersion: 254.1.0 + forkId: "" + forkVersion: "" + time: 04/21/2025 18:25:12 + entityCount: 478 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 0: Space + 29: FloorDark + 34: FloorDarkMono + 1: FloorMetalDiamond + 89: FloorSteel + 104: FloorTechMaint + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: NT-Griffin + - type: Transform + parent: invalid + - type: MapGrid + chunks: + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAWQAAAAAAIgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAAQAAAAAAWQAAAAAAAQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: WQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAWQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#43990996' + id: BrickTileSteelBox + decals: + 72: -6,11 + 73: -6,12 + 74: -5,13 + 75: -4,13 + - node: + color: '#43990996' + id: BrickTileSteelCornerNe + decals: + 76: -4,12 + - node: + color: '#43990996' + id: BrickTileSteelCornerNw + decals: + 77: -5,12 + - node: + color: '#43990996' + id: BrickTileSteelCornerSe + decals: + 78: -4,11 + - node: + color: '#43990996' + id: BrickTileSteelCornerSw + decals: + 79: -5,11 + - node: + color: '#43990996' + id: BrickTileSteelLineN + decals: + 61: -5,9 + 62: -4,9 + 71: -6,9 + - node: + color: '#D4D4D428' + id: BrickTileSteelLineN + decals: + 65: -3,9 + 66: -3,9 + 67: -3,9 + 68: -3,9 + 69: -3,9 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteBox + decals: + 4: -2,13 + 5: -1,13 + - node: + color: '#787878FF' + id: BrickTileWhiteCornerNe + decals: + 45: -2,-4 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe + decals: + 0: 0,12 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 6: -2,12 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 2: 0,11 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 1: -2,11 + - node: + color: '#787878FF' + id: BrickTileWhiteInnerNe + decals: + 47: -4,-4 + 48: -2,-5 + - node: + color: '#6E6E6E26' + id: BrickTileWhiteInnerSe + decals: + 53: -2,4 + 54: -2,4 + - node: + color: '#6E6E6E26' + id: BrickTileWhiteInnerSw + decals: + 55: 1,4 + 56: 1,4 + - node: + color: '#6E6E6E26' + id: BrickTileWhiteLineE + decals: + 57: -2,3 + 58: -2,3 + - node: + color: '#787878FF' + id: BrickTileWhiteLineN + decals: + 46: -3,-4 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 7: -1,12 + 63: -2,9 + 64: -1,9 + 70: 0,9 + - node: + color: '#6E6E6E26' + id: BrickTileWhiteLineS + decals: + 49: -1,4 + 50: 0,4 + 51: -1,4 + 52: 0,4 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + decals: + 3: -1,11 + - node: + color: '#6E6E6E26' + id: BrickTileWhiteLineW + decals: + 59: 1,3 + 60: 1,3 + - node: + color: '#646464FF' + id: HalfTileOverlayGreyscale + decals: + 44: -3,-4 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale + decals: + 8: -3,-3 + 9: -3,-2 + 10: -3,-1 + 11: -3,1 + 12: -3,0 + 13: -2,1 + 14: 1,1 + 38: 1,8 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale180 + decals: + 15: 1,1 + 16: 1,0 + 17: 1,-2 + 26: 1,3 + 27: 1,4 + 28: 1,5 + 29: 1,6 + 30: 1,7 + 31: 1,8 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + decals: + 18: -1,-4 + 19: 0,-4 + 20: -7,3 + 21: -6,3 + 22: -5,3 + 23: -4,3 + 24: -3,3 + 25: -2,3 + 32: -7,4 + 33: -7,5 + 34: -7,6 + 35: -7,7 + 36: -7,8 + 39: -6,9 + - node: + color: '#646464FF' + id: QuarterTileOverlayGreyscale90 + decals: + 42: -2,-5 + 43: -4,-4 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale90 + decals: + 37: -7,8 + 40: -6,9 + - node: + color: '#646464FF' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 41: -2,-4 + - node: + color: '#43990996' + id: WarnFullGreyscale + decals: + 80: -5,10 + - node: + color: '#DE3A3A96' + id: WarnFullGreyscale + decals: + 81: -1,10 + - type: GridAtmosphere + version: 2 + data: + tiles: + -2,0: + 0: 57582 + -2,1: + 0: 61166 + -2,2: + 0: 51406 + 1: 4352 + -2,3: + 1: 1 + 0: 140 + -2,-1: + 0: 61024 + 1: 4 + -1,0: + 0: 63727 + -1,1: + 0: 65535 + -1,2: + 0: 55551 + -1,3: + 0: 221 + -1,-1: + 0: 61167 + 0,0: + 0: 12595 + 0,1: + 0: 13107 + 0,2: + 0: 4115 + 1: 17408 + 0,3: + 0: 1 + 1: 4 + -2,-2: + 1: 5632 + -1,-2: + 0: 29952 + 0,-2: + 1: 17152 + 0,-1: + 0: 29553 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay + - type: SpreaderGrid + - type: GridPathfinding +- proto: AirAlarm + entities: + - uid: 4 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - type: DeviceList + devices: + - 330 + - 156 + - 122 + - uid: 5 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 1 + - type: DeviceList + devices: + - 328 + - 157 + - 126 + - uid: 10 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + - type: DeviceList + devices: + - 122 + - 124 + - 123 + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 + - type: DeviceList + devices: + - 327 + - 326 + - 158 + - 159 + - 160 + - 124 + - 123 + - 126 + - 125 + - uid: 221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 1 + - type: DeviceList + devices: + - 125 + - 329 + - 155 +- proto: AirCanister + entities: + - uid: 2 + components: + - type: Transform + anchored: True + pos: -4.5,-1.5 + parent: 1 + - type: Physics + bodyType: Static + - uid: 3 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 +- proto: AirlockCentralCommandGlassLocked + entities: + - uid: 360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,10.5 + parent: 1 +- proto: AirlockEngineeringLocked + entities: + - uid: 361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 +- proto: AirlockGlass + entities: + - uid: 362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - uid: 363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,10.5 + parent: 1 +- proto: AltarNanotrasen + entities: + - uid: 465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,9.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 11 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 475 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 476 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 +- proto: BookshelfFilled + entities: + - uid: 462 + components: + - type: Transform + pos: -5.5,9.5 + parent: 1 + - uid: 463 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 +- proto: BookSpaceEncyclopedia + entities: + - uid: 461 + components: + - type: Transform + pos: -0.5582305,13.569148 + parent: 1 +- proto: BoxFolderClipboard + entities: + - uid: 449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.520337,6.6380506 + parent: 1 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 470 + - 471 + pen_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Storage + storedItems: + 470: + position: 0,0 + _rotation: South + 471: + position: 1,0 + _rotation: South +- proto: BoxFolderGrey + entities: + - uid: 467 + components: + - type: Transform + pos: -1.3976779,13.614219 + parent: 1 +- proto: BoxFolderRed + entities: + - uid: 466 + components: + - type: Transform + pos: -1.2205945,13.489219 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 15 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -4.5,14.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -6.5,6.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: -7.5,7.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: -7.5,5.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: -2.5,12.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 +- proto: CableHV + entities: + - uid: 84 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 +- proto: CableMV + entities: + - uid: 89 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: -6.5,6.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 1 +- proto: Candle + entities: + - uid: 472 + components: + - type: Transform + pos: -2.8894548,9.68084 + parent: 1 + - uid: 473 + components: + - type: Transform + pos: -2.191538,9.68084 + parent: 1 +- proto: Carpet + entities: + - uid: 391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - uid: 392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + - uid: 393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + - uid: 394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - uid: 395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + - uid: 396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + - uid: 397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + - uid: 398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + - uid: 399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + - uid: 400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + - uid: 401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 + - uid: 402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + - uid: 403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + - uid: 404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + - uid: 405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 1 + - uid: 406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + - uid: 407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1 + - uid: 408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,7.5 + parent: 1 + - uid: 409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + - uid: 410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,6.5 + parent: 1 + - uid: 411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,7.5 + parent: 1 +- proto: CarpetGreen + entities: + - uid: 162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 1 + - uid: 364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 + - uid: 376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + - uid: 379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + - uid: 381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 +- proto: ChairFoldingSpawnFolded + entities: + - uid: 114 + components: + - type: Transform + pos: -5.437305,0.37447762 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: -5.572722,0.8432276 + parent: 1 +- proto: ChairOfficeDark + entities: + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - uid: 383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.419939,-3.398727 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,12.5 + parent: 1 + - uid: 365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,12.5 + parent: 1 + - uid: 366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,12.5 + parent: 1 + - uid: 367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,11.5 + parent: 1 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 390 + components: + - type: Transform + pos: 1.5920388,3.5 + parent: 1 +- proto: ClosetFireFilled + entities: + - uid: 417 + components: + - type: Transform + pos: -1.6500827,3.5 + parent: 1 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 118 + components: + - type: Transform + pos: -5.475239,-1.2536288 + parent: 1 +- proto: ComfyChair + entities: + - uid: 428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,7.5 + parent: 1 + - uid: 431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,7.5 + parent: 1 + - uid: 432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,6.5 + parent: 1 + - uid: 433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + - uid: 434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + - uid: 435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + - uid: 436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + - uid: 437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + - uid: 439 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 440 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 +- proto: ComputerComms + entities: + - uid: 119 + components: + - type: Transform + pos: -3.5,13.5 + parent: 1 +- proto: ComputerPowerMonitoring + entities: + - uid: 120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 +- proto: ComputerRadar + entities: + - uid: 83 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 121 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1 +- proto: DrinkGlass + entities: + - uid: 453 + components: + - type: Transform + pos: -0.2703371,6.752634 + parent: 1 + - uid: 454 + components: + - type: Transform + pos: -4.749504,6.8359675 + parent: 1 + - uid: 455 + components: + - type: Transform + pos: -5.426587,7.627634 + parent: 1 +- proto: DrinkSodaWaterBottleFull + entities: + - uid: 452 + components: + - type: Transform + pos: -0.2703371,7.356801 + parent: 1 +- proto: DrinkWaterBottleFull + entities: + - uid: 450 + components: + - type: Transform + pos: -5.280754,7.4609675 + parent: 1 + - uid: 451 + components: + - type: Transform + pos: 0.21924639,7.5547175 + parent: 1 + - uid: 456 + components: + - type: Transform + pos: -0.09325361,6.7318006 + parent: 1 + - uid: 457 + components: + - type: Transform + pos: -4.9161706,6.8047175 + parent: 1 +- proto: FaxMachineBase + entities: + - uid: 464 + components: + - type: MetaData + name: NT-Griffin fax machine + - type: Transform + pos: -2.5,3.5 + parent: 1 + - type: FaxMachine + name: NT-Griffin +- proto: FireAlarm + entities: + - uid: 351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,10.5 + parent: 1 + - type: DeviceList + devices: + - 125 + - 329 + - 155 + - uid: 353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,10.5 + parent: 1 + - type: DeviceList + devices: + - 328 + - 157 + - 126 + - uid: 354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + - type: DeviceList + devices: + - 327 + - 326 + - 158 + - 159 + - 160 + - 124 + - 123 + - 126 + - 125 + - uid: 355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 1 + - type: DeviceList + devices: + - 122 + - 124 + - 123 + - uid: 356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - type: DeviceList + devices: + - 330 + - 156 + - 122 +- proto: FirelockGlass + entities: + - uid: 122 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 10 + - 355 + - 356 + - 4 + - uid: 123 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 10 + - 355 + - 61 + - 354 + - uid: 124 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 10 + - 355 + - 61 + - 354 + - uid: 125 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 61 + - 354 + - 351 + - 221 + - uid: 126 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 61 + - 354 + - 353 + - 5 +- proto: FolderSpawner + entities: + - uid: 447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.562004,7.596384 + parent: 1 + - uid: 448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5734129,6.6380506 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 299 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 310 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeFourway + entities: + - uid: 127 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraight + entities: + - uid: 128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 131 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 135 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 136 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 137 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 138 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 139 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 140 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 141 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 144 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 145 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 316 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 317 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 318 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 319 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 320 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 321 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 322 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 323 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 324 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 325 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 148 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 152 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 155 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 351 + - 221 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 356 + - 4 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 157 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 353 + - 5 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 61 + - 354 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 159 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 61 + - 354 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 61 + - 354 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 61 + - 354 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 61 + - 354 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 328 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 353 + - 5 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 329 + components: + - type: Transform + pos: -3.5,11.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 351 + - 221 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 356 + - 4 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 163 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 165 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 +- proto: Grille + entities: + - uid: 166 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -2.5,12.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: -4.5,14.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -7.5,5.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: -7.5,7.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 1 +- proto: LampGold + entities: + - uid: 445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.990119,7.4039116 + parent: 1 + - uid: 446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.041131496,7.341411 + parent: 1 +- proto: Paper + entities: + - uid: 470 + components: + - type: Transform + parent: 449 + - type: Physics + canCollide: False + - uid: 471 + components: + - type: Transform + parent: 449 + - type: Physics + canCollide: False +- proto: Pen + entities: + - uid: 458 + components: + - type: Transform + pos: 0.64632964,6.846384 + parent: 1 + - uid: 459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.364087,7.627634 + parent: 1 + - uid: 468 + components: + - type: Transform + pos: -1.0747612,13.718386 + parent: 1 +- proto: PhoneInstrument + entities: + - uid: 460 + components: + - type: Transform + pos: -5.5087504,12.44212 + parent: 1 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-3.5 + parent: 1 +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 +- proto: PowerCellRecharger + entities: + - uid: 372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,11.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 191 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 1 + - uid: 196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 1 + - uid: 197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,11.5 + parent: 1 + - uid: 438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1 + - uid: 441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 + - uid: 442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,4.5 + parent: 1 + - uid: 443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 1 + - uid: 444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,8.5 + parent: 1 +- proto: RadioHandheld + entities: + - uid: 198 + components: + - type: Transform + pos: -5.2981553,-1.5244621 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: -5.4856553,-1.5244621 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: -5.735656,-1.5452955 + parent: 1 +- proto: Railing + entities: + - uid: 385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + - uid: 387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 +- proto: RailingCornerSmall + entities: + - uid: 388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 1 + - uid: 389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 +- proto: RandomDrinkGlass + entities: + - uid: 420 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 +- proto: RandomFoodMeal + entities: + - uid: 421 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 +- proto: RandomPosterLegit + entities: + - uid: 418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + - uid: 419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 +- proto: ShotGunCabinetFilled + entities: + - uid: 469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,11.5 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + - uid: 203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,5.5 + parent: 1 + - uid: 204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,6.5 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,13.5 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + - uid: 208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,12.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: -4.5,14.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,13.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,11.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 222 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 +- proto: SpaceCash1000 + entities: + - uid: 474 + components: + - type: Transform + pos: -2.4936213,9.732923 + parent: 1 +- proto: StairDark + entities: + - uid: 384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1 + - uid: 386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 223 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 + - uid: 369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,13.5 + parent: 1 + - uid: 370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,12.5 + parent: 1 + - uid: 371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,11.5 + parent: 1 +- proto: TableReinforcedGlass + entities: + - uid: 294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + - uid: 295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 +- proto: TableWood + entities: + - uid: 412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 + - uid: 413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + - uid: 414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - uid: 422 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 423 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 424 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 425 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 426 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 427 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 429 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 +- proto: Thruster + entities: + - uid: 225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + - uid: 226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 1 + - uid: 227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 1 + - uid: 228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + - uid: 229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - uid: 230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,11.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: -7.5,12.5 + parent: 1 + - uid: 232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,11.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1 + - uid: 234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-5.5 + parent: 1 + - uid: 235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,10.5 + parent: 1 + - uid: 236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1 +- proto: VendingMachineBooze + entities: + - uid: 415 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 +- proto: VendingMachineChang + entities: + - uid: 416 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 1 + - uid: 238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - uid: 240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - uid: 243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - uid: 246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 + - uid: 249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 1 + - uid: 250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 1 + - uid: 253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 + - uid: 256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 + - uid: 257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1 + - uid: 259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 1 + - uid: 260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,14.5 + parent: 1 + - uid: 261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 + - uid: 262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + - uid: 266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 1 + - uid: 267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 1 + - uid: 268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 1 + - uid: 269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1 + - uid: 271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: -7.5,9.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 1 + - uid: 288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 1 + - uid: 290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 1 + - uid: 291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + - uid: 292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 +- proto: WindoorSecureCentralCommandLocked + entities: + - uid: 13 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + - uid: 358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 +- proto: Wrench + entities: + - uid: 350 + components: + - type: Transform + pos: -5.476222,-1.34375 + parent: 1 +... diff --git a/Resources/Maps/Shuttles/AdminSpawn/ERT-Medium-Eng-Jani.yml b/Resources/Maps/Shuttles/AdminSpawn/ERT-Medium-Eng-Jani.yml new file mode 100644 index 0000000000..27ad620f81 --- /dev/null +++ b/Resources/Maps/Shuttles/AdminSpawn/ERT-Medium-Eng-Jani.yml @@ -0,0 +1,4483 @@ +meta: + format: 7 + category: Grid + engineVersion: 254.1.0 + forkId: "" + forkVersion: "" + time: 04/21/2025 18:24:39 + entityCount: 549 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 0: Space + 29: FloorDark + 34: FloorDarkMono + 1: FloorMetalDiamond + 89: FloorSteel + 97: FloorSteelHerringbone + 100: FloorSteelMono + 102: FloorSteelPavement + 104: FloorTechMaint + 105: FloorTechMaint2 + 118: FloorWood + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: NT-Hephaestus + - type: Transform + parent: invalid + - type: MapGrid + chunks: + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAWQAAAAAAWQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAZAAAAAAAWQAAAAAAWQAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAYQAAAAAAaQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAYQAAAAAAaQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAZAAAAAAAZAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAZAAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAWQAAAAAAIgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAAQAAAAAAWQAAAAAAAQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: dgAAAAAAdgAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAZAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAWQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Box + decals: + 42: 1,8 + 43: -7,8 + - node: + color: '#EFB34196' + id: BrickBoxOverlay + decals: + 125: -2,13 + - node: + color: '#EFB34196' + id: BrickCornerOverlayNW + decals: + 127: -2,12 + - node: + color: '#EFB34196' + id: BrickEndOverlayN + decals: + 126: -1,13 + - node: + color: '#334E6DC8' + id: BrickTileWhiteBox + decals: + 113: -5,13 + 114: -4,13 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNe + decals: + 115: -4,12 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNe + decals: + 83: 1,6 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNe + decals: + 72: -5,6 + 118: 0,12 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 85: -6,12 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNw + decals: + 81: 0,6 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNw + decals: + 71: -7,6 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSe + decals: + 87: -4,11 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerSe + decals: + 75: 1,3 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSe + decals: + 70: -5,3 + 120: 0,11 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSw + decals: + 86: -6,11 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerSw + decals: + 74: 0,3 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSw + decals: + 73: -7,3 + 121: -2,11 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerNe + decals: + 130: -1,12 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerNw + decals: + 129: -1,12 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineE + decals: + 77: 1,4 + 78: 1,5 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 64: -5,5 + 65: -5,4 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineN + decals: + 116: -5,12 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineN + decals: + 63: -6,6 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineS + decals: + 88: -5,11 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 62: -6,3 + 122: -1,11 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineW + decals: + 79: 0,5 + 80: 0,4 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 67: -7,4 + 68: -7,5 + - node: + angle: -4.71238898038469 rad + color: '#FFFFFFFF' + id: Caution + decals: + 19: -3,3 + 20: -3,0 + - node: + color: '#EFB34196' + id: CheckerNWSE + decals: + 66: -2.5005493,4.997814 + 69: -2.5051727,2.9951744 + 76: -2.4913101,4.006176 + - node: + color: '#FFFFFFB7' + id: Delivery + decals: + 107: -3,7 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFB7' + id: Delivery + decals: + 108: -2,7 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 0: -7,3 + 1: -7,4 + 2: -7,5 + 31: -7,6 + 32: -5,6 + 33: -5,5 + - node: + color: '#FFFFFFB7' + id: WarnCornerNE + decals: + 94: 0,9 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 61: -2,6 + - node: + color: '#FFFFFFB7' + id: WarnCornerNW + decals: + 93: -6,9 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 52: -4,-4 + 60: -3,6 + - node: + color: '#FFFFFFB7' + id: WarnCornerSE + decals: + 96: 0,8 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 51: -2,-5 + - node: + color: '#FFFFFFB7' + id: WarnCornerSW + decals: + 95: -6,8 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 53: -4,-5 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 56: -2,-1 + 57: -2,-3 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 55: -3,-4 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 58: -2,-1 + 59: -2,-3 + - node: + color: '#FFFFFFFF' + id: WarnEndE + decals: + 21: 1,-3 + 22: 1,-1 + - node: + color: '#43990996' + id: WarnFullGreyscale + decals: + 132: -5,10 + - node: + color: '#9FED5896' + id: WarnFullGreyscale + decals: + 131: -1,3 + - node: + color: '#EFB34196' + id: WarnFullGreyscale + decals: + 133: -1,10 + 134: -4,3 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 44: -2,0 + 45: -2,1 + 46: -2,2 + 47: -2,3 + 48: -2,5 + 49: -2,-2 + 50: -2,-4 + 82: -2,4 + - node: + color: '#FFFFFFB7' + id: WarnLineN + decals: + 102: -5,8 + 103: -4,8 + 104: -3,8 + 105: -2,8 + 106: -1,8 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 27: 0,-3 + 28: -1,-3 + 29: 0,-1 + 30: -1,-1 + 54: -3,-5 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 34: -3,-3 + 35: -3,-2 + 36: -3,-1 + 37: -3,0 + 38: -3,1 + 39: -3,2 + 40: -3,3 + 41: -3,5 + 84: -3,4 + - node: + color: '#FFFFFFB7' + id: WarnLineW + decals: + 97: -5,9 + 98: -4,9 + 99: -3,9 + 100: -2,9 + 101: -1,9 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 23: 0,-1 + 24: -1,-1 + 25: 0,-3 + 26: -1,-3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 14: 1,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 7: -1,-4 + 13: -1,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 16: 1,0 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 3: -1,0 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndE + decals: + 10: 1,-2 + 18: 0,-4 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndW + decals: + 9: -1,-2 + 17: -1,-4 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 8: 0,-4 + 11: 0,-2 + 15: 0,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 5: 0,0 + 6: 1,0 + 12: 0,-2 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 4: -1,1 + - type: GridAtmosphere + version: 2 + data: + tiles: + -2,0: + 0: 49390 + 1: 8192 + -2,1: + 1: 546 + 0: 3276 + -2,2: + 0: 51406 + 2: 4352 + -2,3: + 2: 1 + 0: 140 + -2,-1: + 0: 61024 + 2: 4 + -1,0: + 0: 63215 + -1,2: + 0: 55551 + -1,3: + 0: 93 + 3: 128 + -1,1: + 0: 26214 + -1,-1: + 0: 61167 + 0,0: + 0: 12339 + 0,1: + 0: 819 + 0,2: + 0: 4115 + 2: 17408 + 0,3: + 0: 1 + 2: 4 + -2,-2: + 2: 5632 + -1,-2: + 0: 25856 + 1: 4096 + 0,-2: + 2: 17152 + 0,-1: + 0: 29521 + 1: 32 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay + - type: SpreaderGrid + - type: GridPathfinding +- proto: AirAlarm + entities: + - uid: 89 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 1 + - type: DeviceList + devices: + - 125 + - 393 + - 155 + - uid: 421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 1 + - uid: 423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 1 + - type: DeviceList + devices: + - 157 + - 392 + - 126 + - uid: 424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,7.5 + parent: 1 + - type: DeviceList + devices: + - 335 + - 334 + - 125 + - 126 + - 380 + - 379 + - uid: 425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - type: DeviceList + devices: + - 122 + - 94 + - 250 + - 162 + - 402 + - 376 + - 161 + - uid: 426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - type: DeviceList + devices: + - 403 + - 156 + - 122 +- proto: AirCanister + entities: + - uid: 2 + components: + - type: Transform + anchored: True + pos: -4.5,-1.5 + parent: 1 + - type: Physics + bodyType: Static + - uid: 3 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 +- proto: AirlockCentralCommandGlassLocked + entities: + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1 +- proto: AirlockCentralCommandLocked + entities: + - uid: 5 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 +- proto: AirlockJanitorLocked + entities: + - uid: 324 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 12 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,7.5 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 14 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 542 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 543 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 +- proto: BoxLightMixed + entities: + - uid: 450 + components: + - type: Transform + pos: 1.7212837,3.5618596 + parent: 1 + - uid: 451 + components: + - type: Transform + pos: 1.3983669,3.7076929 + parent: 1 +- proto: Bucket + entities: + - uid: 44 + components: + - type: Transform + pos: -0.19378823,12.842689 + parent: 1 + - uid: 353 + components: + - type: Transform + parent: 346 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 372 + components: + - type: Transform + parent: 346 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 454 + components: + - type: Transform + pos: -0.19378823,12.394772 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 11 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -4.5,14.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -5.5,12.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 356 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 367 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 369 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 370 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: -2.5,12.5 + parent: 1 + - uid: 416 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 + - uid: 460 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 461 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 462 + components: + - type: Transform + pos: -7.5,5.5 + parent: 1 + - uid: 463 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 464 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 465 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 466 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 467 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 +- proto: CableApcStack + entities: + - uid: 483 + components: + - type: Transform + parent: 455 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 486 + components: + - type: Transform + parent: 455 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 488 + components: + - type: Transform + parent: 455 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 490 + components: + - type: Transform + parent: 455 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 493 + components: + - type: Transform + parent: 455 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 494 + components: + - type: Transform + parent: 455 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 499 + components: + - type: Transform + parent: 455 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 501 + components: + - type: Transform + parent: 455 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableHV + entities: + - uid: 84 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 +- proto: CableHVStack + entities: + - uid: 485 + components: + - type: Transform + parent: 455 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 487 + components: + - type: Transform + parent: 455 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 492 + components: + - type: Transform + parent: 455 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 495 + components: + - type: Transform + parent: 455 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 497 + components: + - type: Transform + parent: 455 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 500 + components: + - type: Transform + parent: 455 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableMV + entities: + - uid: 22 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 +- proto: CableMVStack + entities: + - uid: 484 + components: + - type: Transform + parent: 455 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 489 + components: + - type: Transform + parent: 455 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 491 + components: + - type: Transform + parent: 455 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 496 + components: + - type: Transform + parent: 455 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 498 + components: + - type: Transform + parent: 455 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableTerminal + entities: + - uid: 113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 1 +- proto: ChairFoldingSpawnFolded + entities: + - uid: 114 + components: + - type: Transform + pos: -5.497328,0.87450576 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: -5.4244113,0.36408913 + parent: 1 +- proto: ChairOfficeDark + entities: + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 97 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - uid: 117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,12.5 + parent: 1 + - uid: 132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - uid: 326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - uid: 476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,12.5 + parent: 1 +- proto: CleanerDispenser + entities: + - uid: 471 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 +- proto: ClosetJanitorFilled + entities: + - uid: 346 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 350 + - 348 + - 353 + - 372 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetWall + entities: + - uid: 431 + components: + - type: MetaData + name: jetpack wall closet + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 355 + - 433 + - 432 + - uid: 434 + components: + - type: MetaData + name: jetpack wall closet + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 482 + - 435 + - 436 +- proto: ClosetWallFireFilledRandom + entities: + - uid: 428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 118 + components: + - type: Transform + pos: -5.378446,-1.3436227 + parent: 1 +- proto: ComputerComms + entities: + - uid: 119 + components: + - type: Transform + pos: -3.5,13.5 + parent: 1 +- proto: ComputerPowerMonitoring + entities: + - uid: 120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 121 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1 +- proto: CrateAirlockKit + entities: + - uid: 363 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 +- proto: CrateEngineeringCableBulk + entities: + - uid: 455 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 501 + - 500 + - 499 + - 498 + - 497 + - 496 + - 495 + - 494 + - 493 + - 492 + - 491 + - 490 + - 489 + - 488 + - 487 + - 486 + - 485 + - 484 + - 483 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateJanitorBiosuit + entities: + - uid: 351 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 +- proto: CrateMaterialGlass + entities: + - uid: 92 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 504 + - 503 + - 502 + - 505 + - 506 + - 507 + - 508 + - 509 + - 510 + - 511 + - 419 + - 418 + - 385 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateMaterialPlasteel + entities: + - uid: 305 + components: + - type: Transform + pos: -6.5,6.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 513 + - 512 + - 514 + - 515 + - 516 + - 517 + - 518 + - 429 + - 519 + - 520 + - 521 + - 422 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateMaterialPlastic + entities: + - uid: 107 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 522 + - 523 + - 524 + - 525 + - 526 + - 527 + - 528 + - 529 + - 530 + - 531 + - 430 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateMaterialSteel + entities: + - uid: 306 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 534 + - 533 + - 532 + - 535 + - 536 + - 537 + - 538 + - 539 + - 540 + - 541 + - 444 + - 443 + - 441 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateTrashCartJani + entities: + - uid: 352 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 445 + - 446 + - 447 + - 448 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: DrinkWaterCup + entities: + - uid: 328 + components: + - type: Transform + pos: 0.6946335,0.9517708 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: 0.35945892,0.7325134 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: 0.6172867,0.53904724 + parent: 1 +- proto: FireAlarm + entities: + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,10.5 + parent: 1 + - type: DeviceList + devices: + - 126 + - uid: 344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - type: DeviceList + devices: + - 250 + - 94 + - 334 + - 335 + - uid: 345 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - type: DeviceList + devices: + - 122 + - 94 + - 250 + - 162 + - 402 + - 376 + - 161 + - uid: 468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,7.5 + parent: 1 + - type: DeviceList + devices: + - 334 + - 335 + - 126 + - 125 + - uid: 469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,11.5 + parent: 1 + - type: DeviceList + devices: + - 125 +- proto: FireAxeCabinetFilled + entities: + - uid: 414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,10.5 + parent: 1 +- proto: FirelockGlass + entities: + - uid: 94 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 425 + - 427 + - 344 + - uid: 122 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 425 + - 427 + - 426 + - uid: 125 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 424 + - 89 + - 468 + - 469 + - uid: 126 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 424 + - 423 + - 468 + - 24 + - uid: 250 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 425 + - 427 + - 344 + - uid: 334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 424 + - 468 + - 344 + - uid: 335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 424 + - 468 + - 344 +- proto: FloorDrain + entities: + - uid: 458 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 544 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: FoodBurgerMcguffin + entities: + - uid: 327 + components: + - type: Transform + pos: 0.34657288,1.5321693 + parent: 1 +- proto: FuelDispenser + entities: + - uid: 420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 391 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeFourway + entities: + - uid: 148 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 315 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 338 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 123 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 130 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 131 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 137 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 138 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 139 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 140 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 142 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 145 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 159 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 224 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 309 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 319 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 382 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 383 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 384 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 395 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 406 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 407 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 408 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 409 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 152 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 154 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 381 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 155 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 89 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 426 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 157 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 423 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 425 + - 427 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 425 + - 427 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 424 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 425 + - 427 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 424 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 392 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 423 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 393 + components: + - type: Transform + pos: -3.5,11.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 89 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 425 + - 427 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 426 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 163 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 165 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 +- proto: Grille + entities: + - uid: 50 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 95 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + - uid: 96 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -2.5,12.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: -4.5,14.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -7.5,5.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 1 +- proto: JanitorialTrolley + entities: + - uid: 449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,8.5 + parent: 1 +- proto: JetpackMiniFilled + entities: + - uid: 355 + components: + - type: Transform + parent: 431 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 432 + components: + - type: Transform + parent: 431 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 433 + components: + - type: Transform + parent: 431 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 435 + components: + - type: Transform + parent: 434 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 436 + components: + - type: Transform + parent: 434 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 482 + components: + - type: Transform + parent: 434 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MetalFoamGrenade + entities: + - uid: 13 + components: + - type: Transform + pos: -5.1915803,11.966095 + parent: 1 + - uid: 549 + components: + - type: Transform + pos: -1.6603304,13.580679 + parent: 1 +- proto: MopItem + entities: + - uid: 348 + components: + - type: Transform + parent: 346 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 350 + components: + - type: Transform + parent: 346 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-3.5 + parent: 1 +- proto: PortableGeneratorJrPacman + entities: + - uid: 340 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 452 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 +- proto: PortableGeneratorPacman + entities: + - uid: 341 + components: + - type: Transform + pos: -1.5,12.5 + parent: 1 +- proto: PortableGeneratorSuperPacman + entities: + - uid: 293 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 +- proto: PosterContrabandBeachStarYamamoto + entities: + - uid: 438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 +- proto: PosterContrabandLustyExomorph + entities: + - uid: 437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 +- proto: PosterContrabandMissingGloves + entities: + - uid: 439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 1 +- proto: PosterContrabandMissingSpacepen + entities: + - uid: 478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 1 +- proto: PosterLegitBuild + entities: + - uid: 442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,7.5 + parent: 1 +- proto: PosterLegitCleanliness + entities: + - uid: 477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 +- proto: PosterLegitMime + entities: + - uid: 440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 +- proto: PowerCellRecharger + entities: + - uid: 479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,11.5 + parent: 1 + - uid: 545 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 548 + components: + - type: Transform + pos: -5.5,9.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 191 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 1 + - uid: 196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 1 + - uid: 197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,11.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,4.5 + parent: 1 + - uid: 314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 +- proto: Rack + entities: + - uid: 359 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 +- proto: RadioHandheld + entities: + - uid: 198 + components: + - type: Transform + pos: -5.253446,-1.4269559 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: -5.451363,-1.4061227 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: -5.6805296,-1.4061227 + parent: 1 +- proto: RandomVendingDrinks + entities: + - uid: 333 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 +- proto: RandomVendingSnacks + entities: + - uid: 336 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 +- proto: RCD + entities: + - uid: 360 + components: + - type: Transform + pos: 0.52021027,-1.2602577 + parent: 1 +- proto: RCDAmmo + entities: + - uid: 364 + components: + - type: Transform + pos: 0.33271027,-1.5102577 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: 0.58271027,-1.5571327 + parent: 1 +- proto: SheetGlass + entities: + - uid: 385 + components: + - type: Transform + parent: 92 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 418 + components: + - type: Transform + parent: 92 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 419 + components: + - type: Transform + parent: 92 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 502 + components: + - type: Transform + parent: 92 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 503 + components: + - type: Transform + parent: 92 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 504 + components: + - type: Transform + parent: 92 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 505 + components: + - type: Transform + parent: 92 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 506 + components: + - type: Transform + parent: 92 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 507 + components: + - type: Transform + parent: 92 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 508 + components: + - type: Transform + parent: 92 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 509 + components: + - type: Transform + parent: 92 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 510 + components: + - type: Transform + parent: 92 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 511 + components: + - type: Transform + parent: 92 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetPlasma + entities: + - uid: 472 + components: + - type: Transform + pos: -1.4645302,13.563813 + parent: 1 +- proto: SheetPlasteel + entities: + - uid: 422 + components: + - type: Transform + parent: 305 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 429 + components: + - type: Transform + parent: 305 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 512 + components: + - type: Transform + parent: 305 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 513 + components: + - type: Transform + parent: 305 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 514 + components: + - type: Transform + parent: 305 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 515 + components: + - type: Transform + parent: 305 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 516 + components: + - type: Transform + parent: 305 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 517 + components: + - type: Transform + parent: 305 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 518 + components: + - type: Transform + parent: 305 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 519 + components: + - type: Transform + parent: 305 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 520 + components: + - type: Transform + parent: 305 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 521 + components: + - type: Transform + parent: 305 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetPlastic + entities: + - uid: 430 + components: + - type: Transform + parent: 107 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 522 + components: + - type: Transform + parent: 107 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 523 + components: + - type: Transform + parent: 107 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 524 + components: + - type: Transform + parent: 107 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 525 + components: + - type: Transform + parent: 107 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 526 + components: + - type: Transform + parent: 107 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 527 + components: + - type: Transform + parent: 107 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 528 + components: + - type: Transform + parent: 107 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 529 + components: + - type: Transform + parent: 107 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 530 + components: + - type: Transform + parent: 107 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 531 + components: + - type: Transform + parent: 107 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetRGlass + entities: + - uid: 473 + components: + - type: Transform + pos: -5.415328,12.417666 + parent: 1 +- proto: SheetRPGlass + entities: + - uid: 474 + components: + - type: Transform + pos: -5.5895305,12.584647 + parent: 1 +- proto: SheetRUGlass + entities: + - uid: 475 + components: + - type: Transform + pos: -5.5924115,12.188499 + parent: 1 +- proto: SheetSteel + entities: + - uid: 441 + components: + - type: Transform + parent: 306 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 443 + components: + - type: Transform + parent: 306 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 444 + components: + - type: Transform + parent: 306 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 532 + components: + - type: Transform + parent: 306 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 533 + components: + - type: Transform + parent: 306 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 534 + components: + - type: Transform + parent: 306 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 535 + components: + - type: Transform + parent: 306 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 536 + components: + - type: Transform + parent: 306 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 537 + components: + - type: Transform + parent: 306 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 538 + components: + - type: Transform + parent: 306 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 539 + components: + - type: Transform + parent: 306 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 540 + components: + - type: Transform + parent: 306 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 541 + components: + - type: Transform + parent: 306 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetUranium + entities: + - uid: 254 + components: + - type: Transform + pos: -4.6540985,4.681904 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: -4.422058,4.475544 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - uid: 128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + - uid: 203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,5.5 + parent: 1 + - uid: 204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,6.5 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,13.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,12.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: -4.5,14.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,13.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,11.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 +- proto: SinkWide + entities: + - uid: 457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 222 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 223 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 +- proto: TableGlass + entities: + - uid: 321 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 318 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - uid: 342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,12.5 + parent: 1 + - uid: 343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,11.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 456 + components: + - type: Transform + pos: -1.5,13.5 + parent: 1 + - uid: 546 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 547 + components: + - type: Transform + pos: -5.5,9.5 + parent: 1 +- proto: TableReinforcedGlass + entities: + - uid: 366 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 +- proto: Thruster + entities: + - uid: 225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + - uid: 226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 1 + - uid: 227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 1 + - uid: 228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + - uid: 229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - uid: 230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,11.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: -7.5,12.5 + parent: 1 + - uid: 232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,11.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1 + - uid: 234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-5.5 + parent: 1 + - uid: 235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,10.5 + parent: 1 + - uid: 236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1 +- proto: TrashBag + entities: + - uid: 446 + components: + - type: Transform + parent: 352 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 448 + components: + - type: Transform + parent: 352 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TrashBagBlue + entities: + - uid: 445 + components: + - type: Transform + parent: 352 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 447 + components: + - type: Transform + parent: 352 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: VendingMachineEngivend + entities: + - uid: 358 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 +- proto: VendingMachineYouTool + entities: + - uid: 357 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 21 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,7.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - uid: 237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 1 + - uid: 238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - uid: 240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - uid: 243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: -7.5,7.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 + - uid: 249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 1 + - uid: 253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 + - uid: 255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 + - uid: 256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 + - uid: 257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1 + - uid: 259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 1 + - uid: 260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,14.5 + parent: 1 + - uid: 261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 + - uid: 262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + - uid: 266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 1 + - uid: 267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 1 + - uid: 268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 1 + - uid: 269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1 + - uid: 271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: -7.5,9.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 1 + - uid: 288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 1 + - uid: 290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 1 + - uid: 291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + - uid: 292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 362 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 +- proto: WaterCooler + entities: + - uid: 331 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 +- proto: WaterTankHighCapacity + entities: + - uid: 347 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 470 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 +- proto: Wrench + entities: + - uid: 417 + components: + - type: Transform + pos: -5.5374246,-1.4097372 + parent: 1 +... diff --git a/Resources/Maps/Shuttles/AdminSpawn/ERT-Medium-Med.yml b/Resources/Maps/Shuttles/AdminSpawn/ERT-Medium-Med.yml new file mode 100644 index 0000000000..b3aaa81ea6 --- /dev/null +++ b/Resources/Maps/Shuttles/AdminSpawn/ERT-Medium-Med.yml @@ -0,0 +1,4197 @@ +meta: + format: 7 + category: Grid + engineVersion: 254.1.0 + forkId: "" + forkVersion: "" + time: 04/21/2025 18:23:57 + entityCount: 543 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 0: Space + 29: FloorDark + 34: FloorDarkMono + 52: FloorGrayConcreteMono + 1: FloorMetalDiamond + 89: FloorSteel + 100: FloorSteelMono + 104: FloorTechMaint + 112: FloorWhiteMini + 113: FloorWhiteMono + 115: FloorWhitePavement + 116: FloorWhitePavementVertical + 117: FloorWhitePlastic + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: NT-Asclepius + - type: Transform + parent: invalid + - type: MapGrid + chunks: + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaAAAAAAANAAAAAAANAAAAAAAIgAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcQAAAAAAdQAAAAAAdQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAcQAAAAAAdQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcQAAAAAAdQAAAAAAcQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcQAAAAAAdQAAAAAAcQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAWQAAAAAAIgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAAQAAAAAAWQAAAAAAAQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaAAAAAAANAAAAAAANAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaAAAAAAANAAAAAAANAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: cQAAAAAAcQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAcQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAcQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAcQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAcQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#D4D4D496' + id: Arrows + decals: + 75: 0,-3 + - node: + color: '#52B4E996' + id: BotLeftGreyscale + decals: + 73: -1,0 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNe + decals: + 103: -4,13 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNe + decals: + 14: 1,-1 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + decals: + 31: -2,-4 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 104: -5,13 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNw + decals: + 22: -3,-1 + - node: + color: '#52B4E9A4' + id: BrickTileWhiteCornerNw + decals: + 80: -2,1 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + decals: + 29: -4,-4 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSe + decals: + 105: -4,11 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSe + decals: + 15: 1,-3 + - node: + color: '#D4D4D428' + id: BrickTileWhiteCornerSe + decals: + 82: -8,-4 + - node: + color: '#F9FFFEFF' + id: BrickTileWhiteCornerSe + decals: + 86: -2,-5 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSw + decals: + 106: -5,11 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSw + decals: + 21: -3,-3 + 61: -6,3 + - node: + color: '#52B4E9A4' + id: BrickTileWhiteCornerSw + decals: + 81: -2,0 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSw + decals: + 30: -4,-5 + - node: + color: '#52B4E996' + id: BrickTileWhiteEndE + decals: + 60: -5,3 + - node: + color: '#52B4E996' + id: BrickTileWhiteEndN + decals: + 63: -6,6 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerNe + decals: + 62: -6,3 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 102: -4,12 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 18: 1,-2 + 58: -6,5 + 59: -6,4 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 16: 0,-1 + 28: -2,-1 + 83: 1,1 + 115: -1,-1 + - node: + color: '#52B4E9A4' + id: BrickTileWhiteLineN + decals: + 76: -1,1 + 77: 0,1 + - node: + color: '#FFFFFFE7' + id: BrickTileWhiteLineN + decals: + 37: -3,-4 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 19: 0,-3 + 26: -2,-3 + 27: -1,-3 + - node: + color: '#52B4E9A4' + id: BrickTileWhiteLineS + decals: + 78: -1,0 + 79: 0,0 + - node: + color: '#FFFFFFE7' + id: BrickTileWhiteLineS + decals: + 36: -3,-5 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 48: 0,2 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 101: -5,12 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 23: -3,-2 + 56: -6,4 + 57: -6,5 + - node: + color: '#52B4E992' + id: CheckerNESW + decals: + 51: -3,7 + - node: + color: '#52B4E996' + id: CheckerNESW + decals: + 1: -3,9 + 2: -4,8 + 3: -6,8 + 5: -5,9 + 11: -3,1 + 12: -3,3 + 13: -3,5 + - node: + color: '#52B4E996' + id: CheckerNWSE + decals: + 0: -3,8 + 4: -5,8 + 6: -6,9 + 7: -4,9 + 8: -3,4 + 9: -3,2 + 10: -3,0 + - node: + color: '#52B4E998' + id: CheckerNWSE + decals: + 50: -3,6 + - node: + color: '#EFB34196' + id: ConcreteTrimCornerNe + decals: + 114: -5,0 + - node: + color: '#EFB34196' + id: ConcreteTrimCornerNw + decals: + 109: -6,0 + - node: + color: '#EFB34196' + id: ConcreteTrimCornerSe + decals: + 111: -5,-2 + - node: + color: '#EFB34196' + id: ConcreteTrimCornerSw + decals: + 110: -6,-2 + - node: + color: '#EFB34196' + id: ConcreteTrimLineE + decals: + 112: -5,-1 + - node: + color: '#EFB34196' + id: ConcreteTrimLineW + decals: + 113: -6,-1 + - node: + color: '#52B4E996' + id: DeliveryGreyscale + decals: + 71: 1,4 + - node: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + decals: + 107: -6,12 + 108: -6,11 + - node: + color: '#52B4E9A4' + id: FullTileOverlayGreyscale + decals: + 72: -7,8 + - node: + color: '#1D1D217F' + id: HalfTileOverlayGreyscale + decals: + 85: -3,-5 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 25: -1,-3 + - node: + color: '#D4D4D496' + id: HalfTileOverlayGreyscale + decals: + 39: -3,-5 + - node: + color: '#D4D4D4C1' + id: HalfTileOverlayGreyscale + decals: + 40: -3,-5 + - node: + color: '#1D1D217F' + id: HalfTileOverlayGreyscale180 + decals: + 84: -3,-4 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 116: -1,-1 + - node: + color: '#D4D4D496' + id: HalfTileOverlayGreyscale180 + decals: + 38: -3,-4 + - node: + color: '#D4D4D4C1' + id: HalfTileOverlayGreyscale180 + decals: + 41: -3,-4 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + decals: + 24: 0,-2 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + decals: + 45: -2,-2 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 32: -4,-5 + 46: -4,-5 + 93: -4,-5 + 94: -2,-5 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 95: 1,-1 + 96: 1,-3 + - node: + color: '#52B4E996' + id: MiniTileWhiteCornerNe + decals: + 119: -1,13 + 130: 0,12 + - node: + color: '#52B4E996' + id: MiniTileWhiteCornerNw + decals: + 120: -2,13 + - node: + color: '#52B4E996' + id: MiniTileWhiteCornerSw + decals: + 122: -2,11 + 124: -1,8 + - node: + color: '#52B4E996' + id: MiniTileWhiteEndE + decals: + 131: 1,8 + - node: + color: '#52B4E996' + id: MiniTileWhiteInnerNe + decals: + 128: -1,12 + 133: 0,8 + - node: + color: '#52B4E996' + id: MiniTileWhiteInnerSw + decals: + 127: -1,11 + - node: + color: '#52B4E996' + id: MiniTileWhiteLineE + decals: + 118: 0,11 + 125: 0,9 + 126: 0,10 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineN + decals: + 47: 0,2 + - node: + color: '#52B4E996' + id: MiniTileWhiteLineS + decals: + 132: 0,8 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineS + decals: + 49: 0,2 + - node: + color: '#52B4E996' + id: MiniTileWhiteLineW + decals: + 121: -2,12 + 123: -1,10 + 129: -1,9 + - node: + color: '#52B4E996' + id: MonoOverlay + decals: + 117: -1,-2 + - node: + color: '#52B4E9A4' + id: MonoOverlay + decals: + 64: -5,6 + 65: -5,5 + 66: -5,4 + 67: -7,6 + 68: -7,5 + 69: -7,4 + 70: -7,3 + - node: + color: '#1D1D217C' + id: QuarterTileOverlayGreyscale + decals: + 88: -2,-5 + 89: -2,-5 + - node: + color: '#F9FFFEFF' + id: QuarterTileOverlayGreyscale + decals: + 87: -2,-5 + - node: + color: '#1D1D217C' + id: QuarterTileOverlayGreyscale180 + decals: + 92: -4,-4 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale180 + decals: + 34: -4,-4 + - node: + color: '#D4D4D4C1' + id: QuarterTileOverlayGreyscale180 + decals: + 42: -4,-4 + - node: + color: '#1D1D217C' + id: QuarterTileOverlayGreyscale270 + decals: + 90: -2,-4 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale270 + decals: + 35: -2,-4 + - node: + color: '#D4D4D4C1' + id: QuarterTileOverlayGreyscale270 + decals: + 43: -2,-4 + - node: + color: '#1D1D217C' + id: QuarterTileOverlayGreyscale90 + decals: + 91: -4,-5 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale90 + decals: + 33: -4,-5 + - node: + color: '#D4D4D4C1' + id: QuarterTileOverlayGreyscale90 + decals: + 44: -4,-5 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 17: 0,-1 + - node: + color: '#D4D4D496' + id: WarnBox + decals: + 20: -3,2 + 74: 0,-4 + - node: + color: '#FFFFFF41' + id: WarnBox + decals: + 52: -3,7 + 53: -3,7 + 54: -3,7 + 55: -3,2 + - node: + color: '#334E6DC8' + id: WarnFullGreyscale + decals: + 134: -5,10 + - node: + color: '#52B4E996' + id: WarnFullGreyscale + decals: + 135: -4,3 + 136: -6,7 + - type: GridAtmosphere + version: 2 + data: + tiles: + -2,0: + 0: 57582 + -2,1: + 0: 20206 + -2,2: + 0: 51406 + 1: 4352 + -2,3: + 1: 1 + 0: 140 + -2,-1: + 0: 61024 + 1: 4 + -1,0: + 0: 45807 + -1,2: + 0: 55483 + -1,3: + 0: 221 + -1,1: + 0: 10922 + -1,-1: + 0: 61167 + 0,0: + 0: 12595 + 0,1: + 0: 4915 + 0,2: + 0: 4371 + 1: 17408 + 0,3: + 0: 1 + 1: 4 + -2,-2: + 1: 5632 + -1,-2: + 0: 29952 + 0,-2: + 1: 17152 + 0,-1: + 0: 29553 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay + - type: SpreaderGrid + - type: GridPathfinding +- proto: AirAlarm + entities: + - uid: 125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 1 + - type: DeviceList + devices: + - 470 + - 167 + - 501 + - uid: 212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 1 + - type: DeviceList + devices: + - 169 + - 499 + - 350 + - uid: 277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - type: DeviceList + devices: + - 173 + - 485 + - 121 + - 368 + - 469 + - uid: 320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - type: DeviceList + devices: + - 486 + - 168 + - 121 + - uid: 340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,7.5 + parent: 1 + - type: DeviceList + devices: + - 176 + - 334 + - 470 + - 311 + - 332 + - uid: 384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 1 + - type: DeviceList + devices: + - 341 + - 516 + - 339 + - 332 + - uid: 390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - type: DeviceList + devices: + - 515 + - 172 + - 469 + - 350 +- proto: AirCanister + entities: + - uid: 2 + components: + - type: Transform + anchored: True + pos: -4.5,-1.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockCentralCommandGlassLocked + entities: + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1 +- proto: AirlockCentralCommandLocked + entities: + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 +- proto: AirlockChemistryGlassLocked + entities: + - uid: 10 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 +- proto: AirlockMedicalGlass + entities: + - uid: 124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 +- proto: AirlockMedicalLocked + entities: + - uid: 77 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 89 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 1 + - uid: 543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,9.5 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 13 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 14 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 544 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 +- proto: BedsheetMedical + entities: + - uid: 94 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: -6.5,6.5 + parent: 1 + - uid: 386 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - uid: 437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,4.5 + parent: 1 +- proto: BiomassReclaimer + entities: + - uid: 344 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 +- proto: BoxBeaker + entities: + - uid: 419 + components: + - type: Transform + pos: -1.3405991,13.607021 + parent: 1 +- proto: BoxBodyBag + entities: + - uid: 425 + components: + - type: Transform + pos: -1.5639114,0.42734146 + parent: 1 + - uid: 427 + components: + - type: Transform + pos: -1.2670364,0.63046646 + parent: 1 +- proto: BoxBottle + entities: + - uid: 266 + components: + - type: Transform + pos: -1.6517105,13.299473 + parent: 1 +- proto: BoxFlare + entities: + - uid: 434 + components: + - type: Transform + pos: -3.6823273,11.696819 + parent: 1 +- proto: BoxLatexGloves + entities: + - uid: 321 + components: + - type: Transform + pos: -0.712883,6.8120537 + parent: 1 +- proto: BoxNitrileGloves + entities: + - uid: 364 + components: + - type: Transform + pos: -0.36862183,6.6973534 + parent: 1 +- proto: BoxSyringe + entities: + - uid: 433 + components: + - type: Transform + pos: -1.3407669,13.044521 + parent: 1 +- proto: BoxZiptie + entities: + - uid: 435 + components: + - type: Transform + pos: -3.2839966,11.436718 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 15 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: -5.5,12.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -4.5,14.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 357 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 372 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 429 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 431 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 474 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 522 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 523 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 524 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 525 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 526 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - uid: 527 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 528 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: -7.5,5.5 + parent: 1 + - uid: 530 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 531 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 532 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 533 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 534 + components: + - type: Transform + pos: -2.5,12.5 + parent: 1 + - uid: 535 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 536 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 537 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 538 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 +- proto: CableHV + entities: + - uid: 11 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 539 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 540 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 541 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 542 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 +- proto: CableMV + entities: + - uid: 42 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 370 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 373 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 379 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 471 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 1 +- proto: ChairFoldingSpawnFolded + entities: + - uid: 113 + components: + - type: Transform + pos: -5.634156,0.81392413 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: -5.4049897,0.49100745 + parent: 1 +- proto: ChairOfficeDark + entities: + - uid: 115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 +- proto: ChairOfficeLight + entities: + - uid: 359 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,12.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,12.5 + parent: 1 + - uid: 233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,12.5 + parent: 1 + - uid: 445 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 446 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 448 + components: + - type: Transform + pos: -5.5,9.5 + parent: 1 +- proto: ChemDispenser + entities: + - uid: 327 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1 +- proto: ChemistryHotplate + entities: + - uid: 351 + components: + - type: Transform + pos: -1.5,12.5 + parent: 1 +- proto: ChemMaster + entities: + - uid: 333 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 +- proto: CloningPod + entities: + - uid: 394 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 480 + components: + - type: Transform + pos: -5.538275,-1.3559046 + parent: 1 +- proto: ClothingOuterHospitalGown + entities: + - uid: 347 + components: + - type: Transform + pos: -0.6774597,-3.3940887 + parent: 1 + - uid: 452 + components: + - type: Transform + pos: -0.22608185,-3.312954 + parent: 1 + - uid: 455 + components: + - type: Transform + pos: -0.460701,-3.6744652 + parent: 1 +- proto: ClothingOuterStraightjacket + entities: + - uid: 336 + components: + - type: Transform + pos: -0.34114075,6.5431633 + parent: 1 + - uid: 472 + components: + - type: Transform + pos: -0.7364044,6.7215843 + parent: 1 +- proto: ComputerCloningConsole + entities: + - uid: 402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 +- proto: ComputerComms + entities: + - uid: 118 + components: + - type: Transform + pos: -3.5,13.5 + parent: 1 +- proto: ComputerPowerMonitoring + entities: + - uid: 119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 120 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1 +- proto: CrateFoodMRE + entities: + - uid: 458 + components: + - type: Transform + pos: 1.5573349,4.3805504 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 459 + - 460 + - 461 + - 462 + - 463 + - 464 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: DefibrillatorCabinetFilled + entities: + - uid: 326 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 355 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 +- proto: DrinkDoctorsDelightGlass + entities: + - uid: 420 + components: + - type: Transform + rot: 6.283185307179586 rad + pos: -5.8276978,11.879101 + parent: 1 +- proto: DrinkWaterBottleFull + entities: + - uid: 459 + components: + - type: Transform + parent: 458 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 460 + components: + - type: Transform + parent: 458 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 461 + components: + - type: Transform + parent: 458 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 462 + components: + - type: Transform + parent: 458 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 463 + components: + - type: Transform + parent: 458 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 464 + components: + - type: Transform + parent: 458 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ExtinguisherCabinetFilled + entities: + - uid: 389 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 +- proto: FireAlarm + entities: + - uid: 12 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 + - type: DeviceList + devices: + - 339 + - 332 + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,10.5 + parent: 1 + - type: DeviceList + devices: + - 470 + - 167 + - 501 + - uid: 209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - type: DeviceList + devices: + - 368 + - 121 + - 387 + - uid: 358 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - type: DeviceList + devices: + - 350 + - 469 + - uid: 366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,7.5 + parent: 1 + - type: DeviceList + devices: + - 332 + - 311 + - 470 + - uid: 443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + - type: DeviceList + devices: + - 368 + - 311 + - 339 + - uid: 447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - type: DeviceList + devices: + - 469 + - 387 + - uid: 466 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - type: DeviceList + devices: + - 350 +- proto: FirelockEdge + entities: + - uid: 387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 209 + - 447 +- proto: FirelockGlass + entities: + - uid: 121 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 277 + - 320 + - 209 + - uid: 311 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 340 + - 443 + - 366 + - uid: 332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 340 + - 384 + - 12 + - 366 + - uid: 339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 384 + - 443 + - 12 + - uid: 350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 212 + - 390 + - 358 + - 466 + - uid: 368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 277 + - 209 + - 443 + - uid: 469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 277 + - 390 + - 447 + - 358 + - uid: 470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,10.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 125 + - 153 + - 340 + - 366 +- proto: FloorDrain + entities: + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,11.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 473 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: FoodMealFriesCheesy + entities: + - uid: 456 + components: + - type: Transform + pos: -5.4728775,11.70351 + parent: 1 +- proto: ForkPlastic + entities: + - uid: 468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.50753,11.236103 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 506 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 129 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 136 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 137 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 138 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 139 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 141 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 144 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - uid: 166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 378 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 493 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 502 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 503 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 147 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 164 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 210 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 211 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 128 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 167 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 125 + - 153 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 320 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 169 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 212 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 390 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 277 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 176 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 340 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 384 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 340 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 277 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 320 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 212 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 500 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 501 + components: + - type: Transform + pos: -3.5,11.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 125 + - 153 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 390 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 516 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 384 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 3 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 177 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 +- proto: Grille + entities: + - uid: 95 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 1 + - uid: 96 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - uid: 159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -2.5,12.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: -4.5,14.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -7.5,5.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 1 + - type: Thruster + enabled: False +- proto: KitchenReagentGrinder + entities: + - uid: 380 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 +- proto: LockerChemistryFilled + entities: + - uid: 160 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 +- proto: LockerWallMedicalFilled + entities: + - uid: 162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 354 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: MachineCentrifuge + entities: + - uid: 155 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 +- proto: MachineElectrolysisUnit + entities: + - uid: 196 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 +- proto: MaterialBiomass + entities: + - uid: 346 + components: + - type: Transform + pos: -0.55737305,0.53671265 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: -0.6848831,0.68964386 + parent: 1 + - uid: 454 + components: + - type: Transform + pos: -0.6848831,0.42201614 + parent: 1 +- proto: MaterialCloth + entities: + - uid: 439 + components: + - type: Transform + pos: 1.609436,5.377186 + parent: 1 +- proto: MaterialCloth1 + entities: + - uid: 453 + components: + - type: Transform + pos: -5.491905,11.986103 + parent: 1 +- proto: MedicalBed + entities: + - uid: 108 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 356 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 363 + components: + - type: Transform + pos: -6.5,6.5 + parent: 1 + - uid: 440 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 +- proto: MedicalScanner + entities: + - uid: 418 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: MedicalTechFab + entities: + - uid: 371 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 +- proto: MedkitAdvancedFilled + entities: + - uid: 412 + components: + - type: Transform + pos: -0.80139923,5.4593315 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: -0.27509308,5.440914 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: -0.7957306,5.2214317 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: -0.2687149,5.2214317 + parent: 1 + - uid: 416 + components: + - type: Transform + pos: -0.7787323,4.994869 + parent: 1 + - uid: 417 + components: + - type: Transform + pos: -0.24604797,5.000538 + parent: 1 +- proto: MedkitBruteFilled + entities: + - uid: 331 + components: + - type: Transform + pos: -0.73905945,6.1163673 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: -0.353714,6.093708 + parent: 1 +- proto: MedkitBurnFilled + entities: + - uid: 404 + components: + - type: Transform + pos: -0.7787323,5.8671455 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: -0.350914,5.9033775 + parent: 1 +- proto: MedkitCombatFilled + entities: + - uid: 406 + components: + - type: Transform + pos: -0.6880646,4.473774 + parent: 1 +- proto: MedkitFilled + entities: + - uid: 407 + components: + - type: Transform + pos: -0.30838013,4.485096 + parent: 1 +- proto: MedkitOxygenFilled + entities: + - uid: 408 + components: + - type: Transform + pos: -0.80139923,5.6689034 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: -0.319664,5.7158775 + parent: 1 +- proto: MedkitRadiationFilled + entities: + - uid: 410 + components: + - type: Transform + pos: -0.7277298,4.7399864 + parent: 1 +- proto: MedkitToxinFilled + entities: + - uid: 411 + components: + - type: Transform + pos: -0.28004456,4.756977 + parent: 1 +- proto: Multitool + entities: + - uid: 349 + components: + - type: Transform + pos: -0.37753296,0.57138443 + parent: 1 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-3.5 + parent: 1 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 449 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 +- proto: PosterLegitHelpOthers + entities: + - uid: 322 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - uid: 423 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 81 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 59 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 1 +- proto: PowerCellRecharger + entities: + - uid: 450 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 451 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,10.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 1 + - uid: 208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 1 + - uid: 353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,4.5 + parent: 1 + - uid: 393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,11.5 + parent: 1 + - uid: 465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 +- proto: Rack + entities: + - uid: 105 + components: + - type: Transform + pos: -3.5,11.5 + parent: 1 + - uid: 314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 369 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 +- proto: RadioHandheld + entities: + - uid: 476 + components: + - type: Transform + pos: -5.715358,-1.6475713 + parent: 1 + - uid: 477 + components: + - type: Transform + pos: -5.715358,-1.6475713 + parent: 1 + - uid: 478 + components: + - type: Transform + pos: -5.4236913,-1.5225713 + parent: 1 + - uid: 479 + components: + - type: Transform + pos: -5.2049413,-1.3975713 + parent: 1 +- proto: ReagentContainerMayo + entities: + - uid: 126 + components: + - type: Transform + pos: -1.7147208,13.71626 + parent: 1 +- proto: SheetGlass + entities: + - uid: 442 + components: + - type: Transform + pos: 1.7120972,5.5867043 + parent: 1 +- proto: SheetPlastic + entities: + - uid: 438 + components: + - type: Transform + pos: 1.3935776,5.756199 + parent: 1 +- proto: SheetSteel + entities: + - uid: 367 + components: + - type: Transform + pos: 1.457367,5.5087395 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 145 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + - uid: 215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,5.5 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + - uid: 217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,6.5 + parent: 1 + - uid: 218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,13.5 + parent: 1 + - uid: 220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,12.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: -4.5,14.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 1 + - uid: 274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 +- proto: SignMedical + entities: + - uid: 436 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 +- proto: SinkWide + entities: + - uid: 21 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,3.5 + parent: 1 + - uid: 422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,11.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 234 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 235 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,3.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,9.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: -1.5,12.5 + parent: 1 + - uid: 375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 + - uid: 376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,12.5 + parent: 1 + - uid: 377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 1 + - uid: 381 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 382 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 1 +- proto: TableReinforcedGlass + entities: + - uid: 475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-1.5 + parent: 1 +- proto: Thruster + entities: + - uid: 237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + - uid: 238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 1 + - uid: 239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + - uid: 240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 1 + - uid: 241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-5.5 + parent: 1 + - uid: 242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,11.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1 + - uid: 244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,11.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -7.5,12.5 + parent: 1 + - uid: 246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - uid: 247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1 + - uid: 248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,10.5 + parent: 1 +- proto: VendingMachineMedical + entities: + - uid: 328 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 421 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 +- proto: VendingMachineWallMedical + entities: + - uid: 122 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 43 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 + - uid: 131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,7.5 + parent: 1 + - uid: 133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 + - uid: 198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 1 + - uid: 219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 1 + - uid: 249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - uid: 252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - uid: 255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - uid: 258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 + - uid: 261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 1 + - uid: 262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 1 + - uid: 265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 + - uid: 269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1 + - uid: 271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 1 + - uid: 272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,14.5 + parent: 1 + - uid: 273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 1 + - uid: 279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 1 + - uid: 280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 1 + - uid: 281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1 + - uid: 283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: -7.5,9.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 1 + - uid: 300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 1 + - uid: 302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 1 + - uid: 303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + - uid: 304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 1 + - uid: 318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,7.5 + parent: 1 + - uid: 323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - uid: 383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 1 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 +- proto: WeaponCapacitorRecharger + entities: + - uid: 397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,12.5 + parent: 1 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - uid: 352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - uid: 432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + - uid: 457 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 467 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 392 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 396 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - uid: 426 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 +- proto: Wrench + entities: + - uid: 60 + components: + - type: Transform + pos: -5.5520835,-1.3958334 + parent: 1 +... diff --git a/Resources/Maps/Shuttles/AdminSpawn/ERT-Medium-Sec.yml b/Resources/Maps/Shuttles/AdminSpawn/ERT-Medium-Sec.yml new file mode 100644 index 0000000000..8282a12ac1 --- /dev/null +++ b/Resources/Maps/Shuttles/AdminSpawn/ERT-Medium-Sec.yml @@ -0,0 +1,4135 @@ +meta: + format: 7 + category: Grid + engineVersion: 254.1.0 + forkId: "" + forkVersion: "" + time: 04/21/2025 18:23:12 + entityCount: 551 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 0: Space + 29: FloorDark + 34: FloorDarkMono + 1: FloorMetalDiamond + 89: FloorSteel + 104: FloorTechMaint + 118: FloorWood + 119: FloorWoodTile + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: NT-Salus + - type: Transform + parent: invalid + - type: MapGrid + chunks: + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAIgAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAIgAAAAAAWQAAAAAAWQAAAAAAIgAAAAAAIgAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAAQAAAAAAWQAAAAAAAQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaAAAAAAAeAAAAAAAWQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: WQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAWQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAWQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 71: -4,-3 + 78: -7,4 + 79: -7,3 + 81: -5,4 + 82: -5,3 + - node: + color: '#FFFFFFFF' + id: BotRight + decals: + 64: 1,-2 + 68: 1,-3 + - node: + color: '#DE3A3A96' + id: BrickTileSteelCornerNe + decals: + 73: -5,4 + - node: + color: '#DE3A3A96' + id: BrickTileSteelCornerNw + decals: + 74: -7,4 + - node: + color: '#DE3A3A96' + id: BrickTileSteelCornerSe + decals: + 76: -5,3 + - node: + color: '#DE3A3A96' + id: BrickTileSteelCornerSw + decals: + 75: -7,3 + - node: + color: '#DE3A3A96' + id: BrickTileSteelLineN + decals: + 77: -6,4 + - node: + color: '#3AB3DAFF' + id: BrickTileWhiteCornerNe + decals: + 42: 1,5 + - node: + color: '#80C71FFF' + id: BrickTileWhiteCornerNe + decals: + 46: 1,2 + - node: + color: '#C74EBDFF' + id: BrickTileWhiteCornerNe + decals: + 50: 1,-1 + - node: + color: '#DE3A3ACD' + id: BrickTileWhiteCornerNe + decals: + 7: -2,8 + 24: -2,12 + - node: + color: '#F9801DE6' + id: BrickTileWhiteCornerNe + decals: + 63: 1,8 + - node: + color: '#3AB3DAFF' + id: BrickTileWhiteCornerNw + decals: + 41: 0,5 + - node: + color: '#80C71FFF' + id: BrickTileWhiteCornerNw + decals: + 45: 0,2 + - node: + color: '#C74EBDFF' + id: BrickTileWhiteCornerNw + decals: + 49: 0,-1 + - node: + color: '#DE3A3ACD' + id: BrickTileWhiteCornerNw + decals: + 25: -6,12 + - node: + color: '#F53A3A93' + id: BrickTileWhiteCornerNw + decals: + 85: -3,8 + - node: + color: '#F9801DE6' + id: BrickTileWhiteCornerNw + decals: + 62: 0,8 + - node: + color: '#3AB3DAFF' + id: BrickTileWhiteCornerSe + decals: + 40: 1,4 + - node: + color: '#80C71FFF' + id: BrickTileWhiteCornerSe + decals: + 47: 1,1 + - node: + color: '#C74EBDFF' + id: BrickTileWhiteCornerSe + decals: + 48: 1,-4 + 65: 1,-3 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 54: -2,-3 + 55: -2,-3 + - node: + color: '#DE3A3ACD' + id: BrickTileWhiteCornerSe + decals: + 27: -2,10 + - node: + color: '#F9801DE6' + id: BrickTileWhiteCornerSe + decals: + 61: 1,7 + - node: + color: '#3AB3DAFF' + id: BrickTileWhiteCornerSw + decals: + 43: 0,4 + - node: + color: '#80C71FFF' + id: BrickTileWhiteCornerSw + decals: + 44: 0,1 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 72: -3,-3 + - node: + color: '#DE3A3ACD' + id: BrickTileWhiteCornerSw + decals: + 26: -6,10 + - node: + color: '#F9801DE6' + id: BrickTileWhiteCornerSw + decals: + 60: 0,7 + - node: + color: '#DE3A3ACD' + id: BrickTileWhiteEndN + decals: + 36: -6,8 + - node: + color: '#C74EBDFF' + id: BrickTileWhiteEndS + decals: + 66: 0,-4 + - node: + color: '#DE3A3ACD' + id: BrickTileWhiteEndS + decals: + 37: -6,6 + - node: + color: '#C74EBDFF' + id: BrickTileWhiteInnerSe + decals: + 67: 0,-3 + - node: + color: '#C74EBDFF' + id: BrickTileWhiteLineE + decals: + 51: 1,-2 + - node: + color: '#DE3A3ACD' + id: BrickTileWhiteLineE + decals: + 8: -2,-2 + 9: -2,-1 + 10: -2,0 + 11: -2,1 + 12: -2,2 + 13: -2,3 + 14: -2,4 + 15: -2,5 + 16: -2,6 + 17: -2,7 + 28: -2,11 + 38: -6,7 + - node: + color: '#DE3A3ACD' + id: BrickTileWhiteLineN + decals: + 33: -5,12 + 34: -4,12 + 35: -3,12 + - node: + color: '#79150096' + id: BrickTileWhiteLineS + decals: + 90: -6,3 + - node: + color: '#DE3A3ACD' + id: BrickTileWhiteLineS + decals: + 30: -5,10 + 31: -4,10 + 32: -3,10 + - node: + color: '#3AB3DAFF' + id: BrickTileWhiteLineW + decals: + 87: -3,4 + - node: + color: '#80C71FFF' + id: BrickTileWhiteLineW + decals: + 88: -3,1 + - node: + color: '#C74EBDFF' + id: BrickTileWhiteLineW + decals: + 52: 0,-2 + 53: 0,-3 + 89: -3,-2 + - node: + color: '#DE3A3ACD' + id: BrickTileWhiteLineW + decals: + 18: -3,5 + 19: -3,6 + 20: -3,3 + 21: -3,2 + 22: -3,0 + 23: -3,-1 + 29: -6,11 + 39: -6,7 + - node: + color: '#F9801DFF' + id: BrickTileWhiteLineW + decals: + 86: -3,7 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 69: -4,-5 + 70: -2,-5 + - node: + color: '#DE3A3A41' + id: MonoOverlay + decals: + 56: -5,13 + 57: -4,13 + 58: -3,13 + 59: -2,13 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 84: -3,-4 + - node: + color: '#79150096' + id: WarnFullGreyscale + decals: + 94: -6,5 + - node: + color: '#DE3A3A96' + id: WarnFullGreyscale + decals: + 91: -3,9 + 92: -2,9 + 93: -6,9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinBox + decals: + 6: -1,13 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 0: 0,12 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 5: -1,12 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 1: 0,10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 2: -1,10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 4: 0,11 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 3: -1,11 + - type: GridAtmosphere + version: 2 + data: + tiles: + -2,0: + 0: 16622 + 1: 40960 + -2,1: + 1: 2050 + 0: 58884 + 2: 8 + -2,2: + 0: 52302 + 3: 4352 + -2,3: + 3: 1 + 0: 140 + -2,-1: + 0: 58976 + 3: 4 + -1,0: + 0: 26343 + -1,2: + 0: 65382 + -1,3: + 0: 255 + -1,1: + 0: 58990 + -1,-1: + 0: 28407 + 0,0: + 0: 816 + 0,1: + 0: 12339 + 0,2: + 0: 4355 + 3: 17408 + 0,3: + 0: 1 + 3: 4 + -2,-2: + 3: 5632 + -1,-2: + 0: 29952 + 0,-2: + 3: 17152 + 0,-1: + 0: 13105 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay + - type: SpreaderGrid + - type: GridPathfinding +- proto: AirAlarm + entities: + - uid: 271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 1 + - type: DeviceList + devices: + - 209 + - 516 + - 547 + - uid: 273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - type: DeviceList + devices: + - 546 + - 207 + - 549 + - uid: 278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - type: DeviceList + devices: + - 549 + - uid: 279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - type: DeviceList + devices: + - 506 + - 206 + - 550 + - uid: 280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - type: DeviceList + devices: + - 208 + - 520 + - 548 + - uid: 420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,9.5 + parent: 1 + - type: DeviceList + devices: + - 541 + - 540 + - 421 + - 210 + - 214 + - 551 + - 545 + - 552 + - 140 + - 495 + - 185 + - 523 + - 530 + - 212 + - 538 + - 211 + - 131 + - 132 + - uid: 559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - type: DeviceList + devices: + - 140 + - 495 + - 552 + - 545 + - 214 + - 551 + - 135 + - 132 + - 131 + - 254 + - uid: 560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 1 + - type: DeviceList + devices: + - 185 + - 523 + - 135 +- proto: AirCanister + entities: + - uid: 339 + components: + - type: Transform + anchored: True + pos: -5.5,1.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockCentralCommandGlassLocked + entities: + - uid: 430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,9.5 + parent: 1 +- proto: AirlockCentralCommandLocked + entities: + - uid: 4 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 + - uid: 431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,9.5 + parent: 1 + - uid: 432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 5 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 +- proto: AirSensor + entities: + - uid: 254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 559 + - uid: 421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,11.5 + parent: 1 + - uid: 547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 1 + - uid: 548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 1 + - uid: 549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - uid: 550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 559 + - uid: 552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 559 +- proto: APCSuperCapacity + entities: + - uid: 10 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,10.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 13 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 +- proto: Bed + entities: + - uid: 15 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 +- proto: BedsheetOrange + entities: + - uid: 14 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - uid: 22 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 1 +- proto: BorgCharger + entities: + - uid: 24 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: BoxBodyBag + entities: + - uid: 25 + components: + - type: Transform + pos: -4.603752,8.272678 + parent: 1 +- proto: BoxFlashbang + entities: + - uid: 26 + components: + - type: Transform + pos: -4.2180023,8.766628 + parent: 1 +- proto: BoxFolderRed + entities: + - uid: 27 + components: + - type: Transform + pos: -0.53362274,11.605877 + parent: 1 +- proto: BoxHandcuff + entities: + - uid: 28 + components: + - type: Transform + pos: -4.188057,8.482319 + parent: 1 +- proto: BoxZiptie + entities: + - uid: 29 + components: + - type: Transform + pos: -4.652153,8.616993 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 3 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -2.5,12.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -3.5,11.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -4.5,14.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -5.5,9.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 453 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 454 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 455 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 456 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 457 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 458 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 459 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 460 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 461 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 462 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 463 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 +- proto: CableHV + entities: + - uid: 87 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 +- proto: CableMV + entities: + - uid: 34 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 436 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 437 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 438 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 439 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 440 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 441 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 442 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 443 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 444 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 445 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - uid: 446 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 447 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 + - uid: 448 + components: + - type: Transform + pos: -3.5,11.5 + parent: 1 + - uid: 449 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 450 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1 + - uid: 451 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 + - uid: 465 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 466 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 467 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 468 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 469 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 470 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 471 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 472 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 473 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 474 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 475 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 476 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 477 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 478 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 480 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 481 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 482 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 483 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 484 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 485 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 486 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 487 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 488 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 489 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 490 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 491 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 492 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 493 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 494 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 1 +- proto: Chair + entities: + - uid: 102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 +- proto: ChairFoldingSpawnFolded + entities: + - uid: 104 + components: + - type: Transform + pos: -5.507526,0.89764327 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: -5.6846094,0.5538932 + parent: 1 +- proto: ChairOfficeDark + entities: + - uid: 106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,10.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 + - uid: 109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,12.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,10.5 + parent: 1 + - uid: 112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + - uid: 113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - uid: 114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - uid: 115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + - uid: 116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,12.5 + parent: 1 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 500 + components: + - type: Transform + pos: -5.542064,-1.3988687 + parent: 1 +- proto: ComputerComms + entities: + - uid: 118 + components: + - type: Transform + pos: -3.5,13.5 + parent: 1 +- proto: ComputerPowerMonitoring + entities: + - uid: 119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 120 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1 +- proto: CrateEmergencyExplosive + entities: + - uid: 121 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: DoorRemoteSecurity + entities: + - uid: 122 + components: + - type: Transform + pos: 0.06012726,11.746502 + parent: 1 +- proto: DrinkWaterCup + entities: + - uid: 123 + components: + - type: Transform + pos: -2.0664825,13.623829 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: -1.9916306,13.504124 + parent: 1 +- proto: FaxMachineBase + entities: + - uid: 125 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 +- proto: FirelockEdge + entities: + - uid: 126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + - uid: 127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - uid: 129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 +- proto: FirelockGlass + entities: + - uid: 131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 559 + - 420 + - uid: 132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 559 + - 420 + - uid: 133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,9.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + - uid: 135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 559 + - 560 +- proto: FoodBoxDonkpocket + entities: + - uid: 418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.76510704,11.452583 + parent: 1 +- proto: FoodBoxDonut + entities: + - uid: 136 + components: + - type: Transform + pos: 0.61756134,11.793995 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 0.29149628,11.503162 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 143 + components: + - type: Transform + pos: -2.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 517 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 521 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeFourway + entities: + - uid: 529 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 144 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 152 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 153 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 154 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 155 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 156 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 157 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 175 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 176 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 177 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 178 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 179 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 180 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 181 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 182 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - uid: 297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 524 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 525 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 526 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 527 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 528 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 531 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 532 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 534 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 535 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - uid: 338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 539 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 340 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPressurePump + entities: + - uid: 200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' +- proto: GasValve + entities: + - uid: 85 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#FF22FFFF' +- proto: GasVentPump + entities: + - uid: 140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 559 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 560 + - uid: 206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 210 + components: + - type: Transform + pos: -1.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 559 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 559 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 560 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 559 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 57 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 464 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 221 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 +- proto: Grille + entities: + - uid: 222 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + - uid: 225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + - uid: 226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: -4.5,14.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: -7.5,7.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,14.5 + parent: 1 + - uid: 251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1 +- proto: GunSafe + entities: + - uid: 94 + components: + - type: Transform + anchored: True + pos: -4.5,4.5 + parent: 1 + - type: Physics + bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: GunSafeLaserCarbine + entities: + - uid: 257 + components: + - type: Transform + anchored: True + pos: -4.5,3.5 + parent: 1 + - type: Physics + bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: GunSafeShotgunEnforcer + entities: + - uid: 258 + components: + - type: Transform + anchored: True + pos: -6.5,4.5 + parent: 1 + - type: Physics + bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 260 + components: + - type: Transform + anchored: True + pos: -6.5,3.5 + parent: 1 + - type: Physics + bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: Gyroscope + entities: + - uid: 423 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 +- proto: HighSecCentralCommandLocked + entities: + - uid: 429 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 +- proto: KitchenMicrowave + entities: + - uid: 263 + components: + - type: Transform + pos: -1.5,13.5 + parent: 1 +- proto: LockerEvidence + entities: + - uid: 264 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 +- proto: MedkitFilled + entities: + - uid: 265 + components: + - type: Transform + pos: -6.6098404,6.342388 + parent: 1 +- proto: NitrogenTankFilled + entities: + - uid: 266 + components: + - type: Transform + pos: -4.271042,7.9297905 + parent: 1 +- proto: NitrousOxideCanister + entities: + - uid: 268 + components: + - type: Transform + anchored: True + pos: -5.5,12.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: OxygenTankFilled + entities: + - uid: 117 + components: + - type: Transform + pos: -4.583542,7.950624 + parent: 1 +- proto: PenCentcom + entities: + - uid: 270 + components: + - type: Transform + pos: -0.31487274,11.543377 + parent: 1 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-3.5 + parent: 1 +- proto: PosterLegitDoNotQuestion + entities: + - uid: 554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 1 +- proto: PosterLegitEnlist + entities: + - uid: 272 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 +- proto: PosterLegitHereForYourSafety + entities: + - uid: 555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1 +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 274 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 +- proto: PosterLegitNoERP + entities: + - uid: 556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 + - uid: 557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 +- proto: PosterLegitThereIsNoGasGiant + entities: + - uid: 558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 1 +- proto: PowerCellRecharger + entities: + - uid: 281 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,4.5 + parent: 1 + - uid: 283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - uid: 284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 1 + - uid: 289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 1 + - uid: 290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,11.5 + parent: 1 + - uid: 291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,8.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 +- proto: RadioHandheld + entities: + - uid: 213 + components: + - type: Transform + pos: -5.667064,-1.5967854 + parent: 1 + - uid: 498 + components: + - type: Transform + pos: -5.4066477,-1.5030354 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: -5.198314,-1.3051187 + parent: 1 +- proto: ShotGunCabinetFilled + entities: + - uid: 93 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + - uid: 204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 298 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 1 + - uid: 311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + - uid: 312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,13.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: -4.5,14.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1 + - uid: 326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,14.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 327 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 328 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 329 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: -1.5,13.5 + parent: 1 + - uid: 331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,11.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - uid: 334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,11.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: -6.5,6.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 +- proto: TableReinforcedGlass + entities: + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 +- proto: Thruster + entities: + - uid: 341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + - uid: 342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 1 + - uid: 343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + - uid: 344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,11.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: -7.5,12.5 + parent: 1 + - uid: 346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,11.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1 + - uid: 348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-5.5 + parent: 1 + - uid: 349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,10.5 + parent: 1 + - uid: 350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1 + - uid: 375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 1 + - uid: 376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 +- proto: VendingMachineSec + entities: + - uid: 351 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 +- proto: VendingMachineSustenance + entities: + - uid: 352 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 231 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,5.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - uid: 356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - uid: 357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + - uid: 358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - uid: 359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + - uid: 360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 + - uid: 362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + - uid: 363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - uid: 364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - uid: 365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,9.5 + parent: 1 + - uid: 366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + - uid: 367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - uid: 368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - uid: 369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,9.5 + parent: 1 + - uid: 370 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + - uid: 372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + - uid: 373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + - uid: 374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + - uid: 377 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - uid: 378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + - uid: 379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + - uid: 380 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - uid: 381 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 382 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 + - uid: 383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 1 + - uid: 384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - uid: 385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 + - uid: 386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 + - uid: 387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 1 + - uid: 389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 + - uid: 390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 392 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,5.5 + parent: 1 + - uid: 394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 1 + - uid: 395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 1 + - uid: 396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 1 + - uid: 397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1 + - uid: 399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: -7.5,9.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 410 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 1 + - uid: 417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + - uid: 479 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 419 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 +- proto: WardrobePrisonFilled + entities: + - uid: 422 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 424 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 425 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 426 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 +- proto: WaterCooler + entities: + - uid: 427 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1 +- proto: WeaponCapacitorRecharger + entities: + - uid: 253 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 1 +- proto: WindoorSecureCentralCommandLocked + entities: + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 8 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + - uid: 262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 434 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 435 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 +- proto: Wrench + entities: + - uid: 2 + components: + - type: Transform + pos: -5.492315,-1.4166667 + parent: 1 + - uid: 433 + components: + - type: Transform + pos: -6.4862823,6.8008385 + parent: 1 +... diff --git a/Resources/Maps/Shuttles/AdminSpawn/ERT-Small-Base.yml b/Resources/Maps/Shuttles/AdminSpawn/ERT-Small-Base.yml new file mode 100644 index 0000000000..4e979dc7a0 --- /dev/null +++ b/Resources/Maps/Shuttles/AdminSpawn/ERT-Small-Base.yml @@ -0,0 +1,1636 @@ +meta: + format: 7 + category: Grid + engineVersion: 254.1.0 + forkId: "" + forkVersion: "" + time: 04/21/2025 18:22:22 + entityCount: 220 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 0: Space + 33: FloorDarkMini + 34: FloorDarkMono + 1: FloorMetalDiamond + 85: FloorShuttleWhite + 89: FloorSteel + 104: FloorTechMaint + 118: FloorWood + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: NT-Ash + - type: Transform + parent: invalid + - type: MapGrid + chunks: + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIQAAAAAAIQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAIQAAAAAAIQAAAAAAIgAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIQAAAAAAIQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAIQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAVQAAAAAAIgAAAAAAIgAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: WQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeAAAAAAAaAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: CargoShuttle + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNe + decals: + 36: -1,6 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 35: -2,6 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSe + decals: + 34: -1,-1 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSw + decals: + 2: -3,7 + 33: -2,-1 + - node: + color: '#334E6DC8' + id: BrickTileWhiteEndE + decals: + 1: -2,7 + - node: + color: '#334E6DC8' + id: BrickTileWhiteEndN + decals: + 0: -3,8 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNe + decals: + 3: -3,7 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 21: -1,5 + 22: -1,4 + 23: -1,3 + 24: -1,2 + 25: -1,1 + 26: -1,0 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 27: -2,0 + 28: -2,1 + 29: -2,2 + 30: -2,3 + 31: -2,4 + 32: -2,5 + - node: + color: '#334E6DC8' + id: MiniTileWhiteBox + decals: + 16: -5,6 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerNe + decals: + 17: -4,5 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerNw + decals: + 18: -5,5 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerSe + decals: + 19: -4,3 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerSw + decals: + 20: -5,3 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineE + decals: + 14: -4,4 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineW + decals: + 15: -5,4 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 10: -5,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 7: -3,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 12: -5,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 4: -3,2 + 5: -3,1 + 6: -3,0 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 13: -4,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 8: -4,-1 + 9: -5,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 11: -5,0 + - type: GridAtmosphere + version: 2 + data: + tiles: + -2,0: + 0: 32904 + -2,1: + 0: 2184 + 1: 16384 + -2,2: + 1: 140 + -2,-1: + 0: 34944 + 1: 76 + -1,0: + 0: 57087 + -1,1: + 0: 27871 + -1,-1: + 0: 65520 + 1: 10 + -1,2: + 0: 2 + 1: 136 + 0,0: + 0: 4112 + 0,1: + 1: 4096 + 0,2: + 1: 1 + -2,-2: + 1: 32768 + -1,-2: + 1: 53248 + 0,-1: + 1: 17 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - type: RadiationGridResistance + - type: SpreaderGrid + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay +- proto: AirCanister + entities: + - uid: 187 + components: + - type: Transform + anchored: True + pos: -3.5,-1.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockCentralCommandGlassLocked + entities: + - uid: 220 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 +- proto: APCHyperCapacity + entities: + - uid: 6 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 8 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 9 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 +- proto: CableHV + entities: + - uid: 41 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: CableMV + entities: + - uid: 2 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 40 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 67 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 68 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 1 + - uid: 69 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 72 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 +- proto: DrinkWaterCup + entities: + - uid: 73 + components: + - type: Transform + pos: -1.5754411,-0.5304184 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -1.7284467,-0.28190517 + parent: 1 +- proto: FoodSnackMREBrownie + entities: + - uid: 75 + components: + - type: Transform + pos: -1.3459318,-0.26278877 + parent: 1 +- proto: FoodSnackNutribrick + entities: + - uid: 76 + components: + - type: Transform + pos: -1.5563142,-0.7406988 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -1.3076818,-0.5495348 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 39 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 78 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 203 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 81 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 82 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 83 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 84 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 85 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 80 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 86 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 87 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 89 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 90 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 199 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 201 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 214 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 185 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 105 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 +- proto: Grille + entities: + - uid: 93 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 94 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - uid: 95 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + - uid: 96 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,9.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + - uid: 98 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - uid: 99 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - uid: 100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - uid: 101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + - uid: 102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + - uid: 103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - uid: 104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 92 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 +- proto: PottedPlant27 + entities: + - uid: 106 + components: + - type: Transform + pos: -2.2709236,2.2528982 + parent: 1 +- proto: Poweredlight + entities: + - uid: 107 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + - uid: 111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 +- proto: Rack + entities: + - uid: 112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,6.5 + parent: 1 +- proto: RandomVendingSnacks + entities: + - uid: 215 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 114 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - uid: 116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + - uid: 117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - uid: 118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 175 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 181 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 +- proto: Thruster + entities: + - uid: 131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1 + - uid: 132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1 + - uid: 136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + - uid: 163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + - uid: 172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 +- proto: WaterCooler + entities: + - uid: 173 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 +- proto: WindoorSecureCentralCommandLocked + entities: + - uid: 3 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - uid: 177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 43 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 +- proto: Wrench + entities: + - uid: 157 + components: + - type: Transform + pos: -1.582214,-1.5208334 + parent: 1 +... diff --git a/Resources/Maps/Shuttles/AdminSpawn/ERT-Small-CBURN.yml b/Resources/Maps/Shuttles/AdminSpawn/ERT-Small-CBURN.yml new file mode 100644 index 0000000000..62e5313a97 --- /dev/null +++ b/Resources/Maps/Shuttles/AdminSpawn/ERT-Small-CBURN.yml @@ -0,0 +1,1840 @@ +meta: + format: 7 + category: Grid + engineVersion: 254.1.0 + forkId: "" + forkVersion: "" + time: 04/21/2025 18:22:00 + entityCount: 253 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 0: Space + 33: FloorDarkMini + 34: FloorDarkMono + 85: FloorShuttleWhite + 89: FloorSteel + 104: FloorTechMaint + 118: FloorWood + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: NT-Achlys + - type: Transform + parent: invalid + - type: MapGrid + chunks: + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIQAAAAAAIQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAIQAAAAAAIQAAAAAAIgAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIQAAAAAAIQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAIQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAVQAAAAAAIgAAAAAAIgAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: WQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeAAAAAAAaAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: CargoShuttle + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNe + decals: + 36: -1,6 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 35: -2,6 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSe + decals: + 34: -1,-1 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSw + decals: + 2: -3,7 + 33: -2,-1 + - node: + color: '#334E6DC8' + id: BrickTileWhiteEndE + decals: + 1: -2,7 + - node: + color: '#334E6DC8' + id: BrickTileWhiteEndN + decals: + 0: -3,8 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNe + decals: + 3: -3,7 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 21: -1,5 + 22: -1,4 + 23: -1,3 + 24: -1,2 + 25: -1,1 + 26: -1,0 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 27: -2,0 + 28: -2,1 + 29: -2,2 + 30: -2,3 + 31: -2,4 + 32: -2,5 + - node: + color: '#334E6DC8' + id: MiniTileWhiteBox + decals: + 16: -5,6 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerNe + decals: + 17: -4,5 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerNw + decals: + 18: -5,5 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerSe + decals: + 19: -4,3 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerSw + decals: + 20: -5,3 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineE + decals: + 14: -4,4 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineW + decals: + 15: -5,4 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 10: -5,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 7: -3,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 12: -5,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 4: -3,2 + 5: -3,1 + 6: -3,0 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 13: -4,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 8: -4,-1 + 9: -5,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 11: -5,0 + - type: GridAtmosphere + version: 2 + data: + tiles: + -2,0: + 0: 32904 + -2,1: + 0: 2184 + 1: 16384 + -2,2: + 1: 140 + -2,-1: + 0: 34944 + 1: 76 + -1,0: + 0: 57087 + -1,1: + 0: 27871 + -1,-1: + 0: 65520 + 1: 10 + -1,2: + 0: 2 + 1: 136 + 0,0: + 0: 4112 + 0,1: + 1: 4096 + 0,2: + 1: 1 + -2,-2: + 1: 32768 + -1,-2: + 1: 53248 + 0,-1: + 1: 17 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - type: RadiationGridResistance + - type: SpreaderGrid + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay +- proto: AirCanister + entities: + - uid: 50 + components: + - type: Transform + anchored: True + pos: -3.5,-1.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockCentralCommandGlassLocked + entities: + - uid: 207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 +- proto: AloeCream + entities: + - uid: 2 + components: + - type: Transform + pos: -3.3392618,0.8435004 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: -3.3496785,0.5310004 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: -3.3496785,0.5310004 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: -3.3496785,0.73986506 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: -3.3496785,0.6252818 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -3.3496785,0.6252818 + parent: 1 +- proto: APCHyperCapacity + entities: + - uid: 6 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 8 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 +- proto: BoxShotgunIncendiary + entities: + - uid: 9 + components: + - type: Transform + pos: -4.621208,6.633873 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: -4.4020557,6.3888173 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 11 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - type: EyeProtection + - uid: 14 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 +- proto: CableHV + entities: + - uid: 114 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: CableMV + entities: + - uid: 44 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 69 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 1 + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 73 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 +- proto: ClothingBackpackDuffelCBURN + entities: + - uid: 74 + components: + - type: Transform + pos: -3.6801405,3.7189977 + parent: 1 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + It provides the following protection: + + - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]10%[/color]. + priority: 0 + component: Armor + title: null + - uid: 75 + components: + - type: Transform + pos: -3.3707485,3.3707602 + parent: 1 +- proto: ClothingOuterHardsuitCBURN + entities: + - uid: 76 + components: + - type: Transform + pos: -4.7114477,3.757691 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -4.4020557,3.525532 + parent: 1 +- proto: ComputerAlert + entities: + - uid: 78 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 +- proto: ComputerIFF + entities: + - uid: 79 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 80 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 +- proto: DrinkWaterCup + entities: + - uid: 81 + components: + - type: Transform + pos: -1.5754411,-0.5304184 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: -1.7284467,-0.28190517 + parent: 1 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 116 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 +- proto: FoodSnackMREBrownie + entities: + - uid: 83 + components: + - type: Transform + pos: -1.3459318,-0.26278877 + parent: 1 +- proto: FoodSnackNutribrick + entities: + - uid: 84 + components: + - type: Transform + pos: -1.5563142,-0.7406988 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: -1.3076818,-0.5495348 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 43 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 86 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 87 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 217 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 90 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 92 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 93 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 99 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 218 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 219 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 220 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 221 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 222 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 223 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 49 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 94 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 95 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 89 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 96 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 97 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 98 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 213 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 41 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 211 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 42 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 206 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 +- proto: Grille + entities: + - uid: 101 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - uid: 103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + - uid: 104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,9.5 + parent: 1 + - uid: 105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + - uid: 106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - uid: 107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - uid: 108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - uid: 109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + - uid: 110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + - uid: 111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - uid: 112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 +- proto: PillCanisterKelotane + entities: + - uid: 237 + components: + - type: Transform + pos: -3.259538,3.9022222 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: -3.1866212,3.7147222 + parent: 1 +- proto: PillSpaceDrugs + entities: + - uid: 115 + components: + - type: Transform + pos: -4.3203683,0.6995735 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: -3.9974518,0.5537402 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: -4.4453683,0.48082352 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: -3.8203683,0.7412402 + parent: 1 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 45 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 +- proto: PlasmaTankFilled + entities: + - uid: 250 + components: + - type: Transform + pos: -4.7243257,5.6854124 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: -4.432659,5.6854124 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: -4.234742,5.6958294 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: -4.5993257,5.4562464 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: -4.328492,5.4145794 + parent: 1 +- proto: PottedPlant26 + entities: + - uid: 118 + components: + - type: Transform + pos: -2.2790222,2.2516286 + parent: 1 +- proto: Poweredlight + entities: + - uid: 119 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + - uid: 123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 +- proto: Rack + entities: + - uid: 124 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 +- proto: RandomVendingSnacks + entities: + - uid: 198 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 127 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - uid: 129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + - uid: 130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - uid: 131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 140 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 180 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 141 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 +- proto: Thruster + entities: + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 153 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - uid: 155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - uid: 185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + - uid: 187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 246 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 +- proto: WaterCooler + entities: + - uid: 188 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 +- proto: WaterVaporCanister + entities: + - uid: 239 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 +- proto: WindoorSecureCentralCommandLocked + entities: + - uid: 3 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - uid: 191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 190 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 +- proto: Wrench + entities: + - uid: 240 + components: + - type: Transform + pos: -1.5,-1.5208334 + parent: 1 +... diff --git a/Resources/Maps/Shuttles/AdminSpawn/ERT-Small-Deathsquad.yml b/Resources/Maps/Shuttles/AdminSpawn/ERT-Small-Deathsquad.yml new file mode 100644 index 0000000000..7c2faf843f --- /dev/null +++ b/Resources/Maps/Shuttles/AdminSpawn/ERT-Small-Deathsquad.yml @@ -0,0 +1,1951 @@ +meta: + format: 7 + category: Grid + engineVersion: 254.1.0 + forkId: "" + forkVersion: "" + time: 04/21/2025 18:21:04 + entityCount: 258 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 0: Space + 33: FloorDarkMini + 34: FloorDarkMono + 1: FloorMetalDiamond + 89: FloorSteel + 104: FloorTechMaint + 118: FloorWood + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: NT-Ares + - type: Transform + parent: invalid + - type: MapGrid + chunks: + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIQAAAAAAIQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAIQAAAAAAIQAAAAAAIgAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIQAAAAAAIQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAIQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: WQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeAAAAAAAaAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: CargoShuttle + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#334E6DC8' + id: BrickTileWhiteBox + decals: + 37: -4,7 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNe + decals: + 36: -1,6 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 35: -2,6 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSe + decals: + 34: -1,-1 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSw + decals: + 2: -3,7 + 33: -2,-1 + - node: + color: '#334E6DC8' + id: BrickTileWhiteEndE + decals: + 1: -2,7 + - node: + color: '#334E6DC8' + id: BrickTileWhiteEndN + decals: + 0: -3,8 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNe + decals: + 3: -3,7 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 21: -1,5 + 22: -1,4 + 23: -1,3 + 24: -1,2 + 25: -1,1 + 26: -1,0 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 27: -2,0 + 28: -2,1 + 29: -2,2 + 30: -2,3 + 31: -2,4 + 32: -2,5 + - node: + color: '#334E6DC8' + id: MiniTileWhiteBox + decals: + 16: -5,6 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerNe + decals: + 17: -4,5 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerNw + decals: + 18: -5,5 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerSe + decals: + 19: -4,3 + - node: + color: '#334E6DC8' + id: MiniTileWhiteCornerSw + decals: + 20: -5,3 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineE + decals: + 14: -4,4 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineW + decals: + 15: -5,4 + - node: + color: '#334E6DC8' + id: WarnFullGreyscale + decals: + 38: -3,4 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 10: -5,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 7: -3,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 12: -5,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 4: -3,2 + 5: -3,1 + 6: -3,0 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 13: -4,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 8: -4,-1 + 9: -5,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 11: -5,0 + - type: GridAtmosphere + version: 2 + data: + tiles: + -2,0: + 0: 32904 + -2,1: + 0: 136 + 1: 16384 + -2,2: + 1: 140 + -2,-1: + 0: 34944 + 1: 76 + -1,0: + 0: 55039 + 2: 2048 + -1,1: + 0: 31967 + -1,-1: + 0: 65520 + 1: 10 + -1,2: + 0: 2 + 1: 136 + 0,0: + 0: 4112 + 0,1: + 1: 4096 + 0,2: + 1: 1 + -2,-2: + 1: 32768 + -1,-2: + 1: 53248 + 0,-1: + 1: 17 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - type: RadiationGridResistance + - type: SpreaderGrid + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay +- proto: AirCanister + entities: + - uid: 105 + components: + - type: Transform + anchored: True + pos: -3.5,-1.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockCentralCommandGlass + entities: + - uid: 152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 12 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 13 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 +- proto: APCHyperCapacity + entities: + - uid: 14 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 16 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 +- proto: BoxBodyBag + entities: + - uid: 143 + components: + - type: Transform + pos: -4.7763233,4.2643504 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: -4.5575733,4.7643504 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: -4.3365555,4.407747 + parent: 1 +- proto: BoxZiptie + entities: + - uid: 9 + components: + - type: Transform + pos: -3.4140759,5.539913 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 17 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - type: EyeProtection + - uid: 20 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 +- proto: CableApcStack + entities: + - uid: 171 + components: + - type: Transform + parent: 162 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableHV + entities: + - uid: 48 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 +- proto: CableMV + entities: + - uid: 50 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 90 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 75 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 76 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 1 + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 79 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 +- proto: ComputerComms + entities: + - uid: 106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 1 +- proto: ComputerCrewMonitoring + entities: + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 +- proto: ComputerIFFSyndicate + entities: + - uid: 151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 163 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 +- proto: CrateCommandSecure + entities: + - uid: 162 + components: + - type: MetaData + name: Intelligence Override crate + - type: Transform + pos: -0.5,2.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 171 + - 202 + - 183 + - 182 + - 179 + - 178 + - 170 + - 172 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: DrinkWaterCup + entities: + - uid: 164 + components: + - type: Transform + pos: -1.5754411,-0.5304184 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: -1.7284467,-0.28190517 + parent: 1 +- proto: FireAxeCabinetFilled + entities: + - uid: 156 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 +- proto: FoodSnackMREBrownie + entities: + - uid: 166 + components: + - type: Transform + pos: -1.3459318,-0.26278877 + parent: 1 +- proto: FoodSnackNutribrick + entities: + - uid: 167 + components: + - type: Transform + pos: -1.5563142,-0.7406988 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -1.3076818,-0.5495348 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 115 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraight + entities: + - uid: 89 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 99 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeTJunction + entities: + - uid: 81 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 94 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 177 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPort + entities: + - uid: 10 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 128 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 126 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 130 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 47 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 88 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 +- proto: Grille + entities: + - uid: 184 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - uid: 186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + - uid: 187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,9.5 + parent: 1 + - uid: 188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + - uid: 189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - uid: 190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - uid: 191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - uid: 192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + - uid: 193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - uid: 195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 59 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 +- proto: HandheldCrewMonitor + entities: + - uid: 83 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.3889585,0.57125473 + parent: 1 +- proto: LiveLetLiveCircuitBoard + entities: + - uid: 183 + components: + - type: Transform + parent: 162 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxAntiMateriel + entities: + - uid: 157 + components: + - type: Transform + pos: -3.878443,5.4812536 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: -3.878443,5.4812536 + parent: 1 +- proto: NutimovCircuitBoard + entities: + - uid: 182 + components: + - type: Transform + parent: 162 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 52 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 +- proto: PlushieNuke + entities: + - uid: 197 + components: + - type: Transform + pos: -4.48612,0.54433054 + parent: 1 +- proto: PottedPlant29 + entities: + - uid: 198 + components: + - type: Transform + pos: -2.192751,2.2366643 + parent: 1 +- proto: Poweredlight + entities: + - uid: 199 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + - uid: 300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 +- proto: RandomVendingSnacks + entities: + - uid: 107 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 +- proto: RCDRecharging + entities: + - uid: 141 + components: + - type: Transform + pos: -3.9370682,0.6007874 + parent: 1 +- proto: Screwdriver + entities: + - uid: 178 + components: + - type: Transform + parent: 162 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetGlass10 + entities: + - uid: 170 + components: + - type: Transform + parent: 162 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetSteel10 + entities: + - uid: 179 + components: + - type: Transform + parent: 162 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ShuttleWindow + entities: + - uid: 205 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + - uid: 208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - uid: 209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 92 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 +- proto: StationAiUploadCircuitboard + entities: + - uid: 202 + components: + - type: Transform + parent: 162 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Stimpack + entities: + - uid: 136 + components: + - type: Transform + pos: -3.9944365,3.6477149 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: -3.9944365,3.5331316 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: -3.9944365,3.7518816 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: -3.9944365,3.4081316 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: -3.9944365,3.7518816 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 95 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 +- proto: TableReinforcedGlass + entities: + - uid: 2 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 93 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 +- proto: TelescopicShield + entities: + - uid: 3 + components: + - type: Transform + pos: -4.4730644,5.4960384 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: -4.679327,5.6895027 + parent: 1 +- proto: Thruster + entities: + - uid: 222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1 + - uid: 223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1 + - uid: 227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + - uid: 228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 230 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 +- proto: VendingMachineWallMedical + entities: + - uid: 159 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 82 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 98 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - uid: 232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + - uid: 255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - uid: 262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + - uid: 264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 +- proto: WaterCooler + entities: + - uid: 265 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 +- proto: WeaponCapacitorRecharger + entities: + - uid: 84 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 +- proto: WeaponSniperHristov + entities: + - uid: 80 + components: + - type: Transform + pos: -4.0763597,5.6375036 + parent: 1 +- proto: WindoorSecureCentralCommandLocked + entities: + - uid: 11 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 101 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 +- proto: Wrench + entities: + - uid: 8 + components: + - type: Transform + pos: -1.5208334,-1.5416667 + parent: 1 + - uid: 172 + components: + - type: Transform + parent: 162 + - type: Physics + canCollide: False + - type: InsideEntityStorage +... diff --git a/Resources/Maps/Shuttles/AdminSpawn/ERT-Small-Eng.yml b/Resources/Maps/Shuttles/AdminSpawn/ERT-Small-Eng.yml new file mode 100644 index 0000000000..dd5f254b7a --- /dev/null +++ b/Resources/Maps/Shuttles/AdminSpawn/ERT-Small-Eng.yml @@ -0,0 +1,2509 @@ +meta: + format: 7 + category: Grid + engineVersion: 254.1.0 + forkId: "" + forkVersion: "" + time: 04/21/2025 18:20:09 + entityCount: 298 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 0: Space + 33: FloorDarkMini + 34: FloorDarkMono + 51: FloorGrayConcrete + 1: FloorMetalDiamond + 85: FloorShuttleWhite + 89: FloorSteel + 104: FloorTechMaint + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: NT-Demiurge + - type: Transform + parent: invalid + - type: MapGrid + chunks: + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAMwAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIQAAAAAAIQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAIQAAAAAAIQAAAAAAIgAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIQAAAAAAIQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAIQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAVQAAAAAAIgAAAAAAIgAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: WQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeAAAAAAAaAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAWQAAAAAAWQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: CargoShuttle + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFF93' + id: Bot + decals: + 36: -5,1 + 37: -4,1 + 38: -4,0 + 39: -5,0 + 40: -5,-1 + 41: -4,-1 + 42: -5,5 + 43: -4,5 + 44: -5,4 + 45: -5,3 + 46: -4,3 + 51: -5,-2 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 56: -4,-2 + - node: + color: '#FFFFFF93' + id: Box + decals: + 47: -1,4 + 48: -1,5 + 49: -1,6 + 50: -3,7 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 57: -3,-3 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNe + decals: + 12: -1,6 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNw + decals: + 11: -2,6 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSe + decals: + 13: -1,-1 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSw + decals: + 2: -3,7 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSw + decals: + 14: -2,-1 + - node: + color: '#334E6DC8' + id: BrickTileWhiteEndE + decals: + 1: -2,7 + - node: + color: '#334E6DC8' + id: BrickTileWhiteEndN + decals: + 0: -3,8 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNe + decals: + 3: -3,7 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 15: -1,0 + 16: -1,1 + 17: -1,2 + 18: -1,3 + 19: -1,4 + 20: -1,5 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 21: -2,0 + 22: -2,1 + 23: -2,2 + 24: -2,3 + 25: -2,4 + 26: -2,5 + - node: + color: '#EFB34196' + id: ConcreteTrimCornerSe + decals: + 34: -3,-1 + - node: + color: '#EFB34196' + id: ConcreteTrimCornerSw + decals: + 33: -5,-1 + - node: + color: '#EFB34196' + id: ConcreteTrimLineE + decals: + 28: -3,2 + 29: -3,1 + 30: -3,0 + - node: + color: '#EFB34196' + id: ConcreteTrimLineS + decals: + 35: -4,-1 + - node: + color: '#EFB34196' + id: ConcreteTrimLineW + decals: + 31: -5,1 + 32: -5,0 + - node: + color: '#EFB34196' + id: Delivery + decals: + 27: -3,4 + - node: + color: '#FFFFFF93' + id: Delivery + decals: + 52: -4,-3 + 53: -2,-3 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 54: -1,-2 + 55: -5,-2 + - node: + color: '#EFB34196' + id: MiniTileWhiteBox + decals: + 4: -5,6 + - node: + color: '#EFB34196' + id: MiniTileWhiteCornerNe + decals: + 6: -4,5 + - node: + color: '#EFB34196' + id: MiniTileWhiteCornerNw + decals: + 5: -5,5 + - node: + color: '#EFB34196' + id: MiniTileWhiteCornerSe + decals: + 8: -4,3 + - node: + color: '#EFB34196' + id: MiniTileWhiteCornerSw + decals: + 9: -5,3 + - node: + color: '#EFB34196' + id: MiniTileWhiteLineE + decals: + 7: -4,4 + - node: + color: '#EFB34196' + id: MiniTileWhiteLineW + decals: + 10: -5,4 + - type: GridAtmosphere + version: 2 + data: + tiles: + -2,0: + 0: 136 + 1: 32768 + -2,1: + 2: 8 + 1: 128 + 0: 2048 + 3: 16384 + -2,2: + 3: 140 + -2,-1: + 0: 34944 + 3: 76 + -1,0: + 0: 52991 + 1: 4096 + -1,1: + 0: 26831 + 4: 16 + 1: 1024 + -1,-1: + 0: 65520 + 3: 10 + -1,2: + 0: 2 + 3: 136 + 0,0: + 0: 4112 + 0,1: + 3: 4096 + 0,2: + 3: 1 + -2,-2: + 3: 32768 + -1,-2: + 3: 53248 + 0,-1: + 3: 17 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.566977 + - 81.13291 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - type: RadiationGridResistance + - type: SpreaderGrid + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay +- proto: AirCanister + entities: + - uid: 126 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 130 + components: + - type: Transform + anchored: True + pos: -3.5,-1.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 +- proto: APCHyperCapacity + entities: + - uid: 6 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 8 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - uid: 292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 9 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 +- proto: CableHV + entities: + - uid: 40 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 +- proto: CableMV + entities: + - uid: 39 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 2 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 69 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 + - uid: 243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + - uid: 245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - uid: 247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 +- proto: ClosetWall + entities: + - uid: 294 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8753892 + - 7.055036 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 295 + - 297 + - 296 + - 298 + - 299 +- proto: ClosetWallFireFilledRandom + entities: + - uid: 291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ComputerShuttle + entities: + - uid: 72 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 +- proto: CrateAirlockKit + entities: + - uid: 244 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateMaterialGlass + entities: + - uid: 221 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.8744951 + - 7.051673 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 239 + - 238 + - 237 + - 236 + - 235 + - 234 + - 233 + - 232 + - 231 + - 230 + - 229 + - 228 + - 227 + - 226 + - 225 + - 224 + - 223 + - 222 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateMaterialPlasteel + entities: + - uid: 208 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 220 + - 219 + - 218 + - 217 + - 216 + - 215 + - 214 + - 213 + - 212 + - 211 + - 210 + - 209 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateMaterialSteel + entities: + - uid: 182 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 194 + - 193 + - 192 + - 191 + - 190 + - 189 + - 188 + - 187 + - 186 + - 185 + - 184 + - 183 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 195 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 207 + - 206 + - 205 + - 204 + - 203 + - 202 + - 201 + - 200 + - 199 + - 198 + - 197 + - 196 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: DrinkWaterCup + entities: + - uid: 73 + components: + - type: Transform + pos: -1.5754411,-0.5304184 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -1.7284467,-0.28190517 + parent: 1 +- proto: FoodSnackMREBrownie + entities: + - uid: 75 + components: + - type: Transform + pos: -1.3459318,-0.26278877 + parent: 1 +- proto: FoodSnackNutribrick + entities: + - uid: 76 + components: + - type: Transform + pos: -1.5563142,-0.7406988 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -1.3076818,-0.5495348 + parent: 1 +- proto: FuelDispenser + entities: + - uid: 300 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 78 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 265 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 82 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 83 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 84 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 85 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 87 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 275 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 276 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 71 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 79 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 80 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 86 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 89 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 90 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 259 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 254 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 257 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 66 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 81 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 +- proto: Grille + entities: + - uid: 93 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 94 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - uid: 95 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + - uid: 96 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,9.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + - uid: 98 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - uid: 99 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - uid: 100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - uid: 101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + - uid: 102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + - uid: 103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - uid: 104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 91 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 +- proto: InflatableDoorStack + entities: + - uid: 249 + components: + - type: Transform + pos: -4.8995476,6.36635 + parent: 1 +- proto: InflatableWallStack + entities: + - uid: 246 + components: + - type: Transform + pos: -4.869606,6.6506567 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: -4.824692,6.815255 + parent: 1 +- proto: JetpackMiniFilled + entities: + - uid: 295 + components: + - type: Transform + parent: 294 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 296 + components: + - type: Transform + parent: 294 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 297 + components: + - type: Transform + parent: 294 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 298 + components: + - type: Transform + parent: 294 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 299 + components: + - type: Transform + parent: 294 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: NitrogenCanister + entities: + - uid: 41 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 +- proto: OxygenCanister + entities: + - uid: 105 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 46 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 +- proto: PottedPlant26 + entities: + - uid: 106 + components: + - type: Transform + pos: -2.2459946,2.2835855 + parent: 1 +- proto: Poweredlight + entities: + - uid: 107 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + - uid: 111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 +- proto: Rack + entities: + - uid: 112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,6.5 + parent: 1 +- proto: RCD + entities: + - uid: 240 + components: + - type: Transform + pos: -4.4076157,6.760563 + parent: 1 +- proto: RCDAmmo + entities: + - uid: 241 + components: + - type: Transform + pos: -4.4076157,6.5510736 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: -4.6172104,6.416402 + parent: 1 +- proto: SheetPlasteel + entities: + - uid: 209 + components: + - type: Transform + parent: 208 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 210 + components: + - type: Transform + parent: 208 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 211 + components: + - type: Transform + parent: 208 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 212 + components: + - type: Transform + parent: 208 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 213 + components: + - type: Transform + parent: 208 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 214 + components: + - type: Transform + parent: 208 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 215 + components: + - type: Transform + parent: 208 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 216 + components: + - type: Transform + parent: 208 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 217 + components: + - type: Transform + parent: 208 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 218 + components: + - type: Transform + parent: 208 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 219 + components: + - type: Transform + parent: 208 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 220 + components: + - type: Transform + parent: 208 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetRGlass + entities: + - uid: 227 + components: + - type: Transform + parent: 221 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 229 + components: + - type: Transform + parent: 221 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 230 + components: + - type: Transform + parent: 221 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 231 + components: + - type: Transform + parent: 221 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 232 + components: + - type: Transform + parent: 221 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 233 + components: + - type: Transform + parent: 221 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 234 + components: + - type: Transform + parent: 221 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 235 + components: + - type: Transform + parent: 221 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 236 + components: + - type: Transform + parent: 221 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 237 + components: + - type: Transform + parent: 221 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 238 + components: + - type: Transform + parent: 221 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 239 + components: + - type: Transform + parent: 221 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetRPGlass + entities: + - uid: 222 + components: + - type: Transform + parent: 221 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 223 + components: + - type: Transform + parent: 221 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 224 + components: + - type: Transform + parent: 221 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 225 + components: + - type: Transform + parent: 221 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 226 + components: + - type: Transform + parent: 221 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 228 + components: + - type: Transform + parent: 221 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetSteel + entities: + - uid: 183 + components: + - type: Transform + parent: 182 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 184 + components: + - type: Transform + parent: 182 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 185 + components: + - type: Transform + parent: 182 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 186 + components: + - type: Transform + parent: 182 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 187 + components: + - type: Transform + parent: 182 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 188 + components: + - type: Transform + parent: 182 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 189 + components: + - type: Transform + parent: 182 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 190 + components: + - type: Transform + parent: 182 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 191 + components: + - type: Transform + parent: 182 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 192 + components: + - type: Transform + parent: 182 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 193 + components: + - type: Transform + parent: 182 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 194 + components: + - type: Transform + parent: 182 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 196 + components: + - type: Transform + parent: 195 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 197 + components: + - type: Transform + parent: 195 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 198 + components: + - type: Transform + parent: 195 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 199 + components: + - type: Transform + parent: 195 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 200 + components: + - type: Transform + parent: 195 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 201 + components: + - type: Transform + parent: 195 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 202 + components: + - type: Transform + parent: 195 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 203 + components: + - type: Transform + parent: 195 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 204 + components: + - type: Transform + parent: 195 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 205 + components: + - type: Transform + parent: 195 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 206 + components: + - type: Transform + parent: 195 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 207 + components: + - type: Transform + parent: 195 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ShuttleWindow + entities: + - uid: 114 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - uid: 116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + - uid: 117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - uid: 118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 92 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 157 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 +- proto: Thruster + entities: + - uid: 131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1 + - uid: 132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1 + - uid: 136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 +- proto: VendingMachineEngivend + entities: + - uid: 250 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + - uid: 163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + - uid: 172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 +- proto: WaterCooler + entities: + - uid: 173 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 +- proto: WindoorSecureCentralCommandLocked + entities: + - uid: 177 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 1 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 3 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 284 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 +- proto: Wrench + entities: + - uid: 181 + components: + - type: Transform + pos: -1.4998802,-1.4998802 + parent: 1 +... diff --git a/Resources/Maps/Shuttles/AdminSpawn/ERT-Small-Jani.yml b/Resources/Maps/Shuttles/AdminSpawn/ERT-Small-Jani.yml new file mode 100644 index 0000000000..0796bc8f5a --- /dev/null +++ b/Resources/Maps/Shuttles/AdminSpawn/ERT-Small-Jani.yml @@ -0,0 +1,2053 @@ +meta: + format: 7 + category: Grid + engineVersion: 254.1.0 + forkId: "" + forkVersion: "" + time: 04/21/2025 18:19:29 + entityCount: 264 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 0: Space + 33: FloorDarkMini + 34: FloorDarkMono + 1: FloorMetalDiamond + 85: FloorShuttleWhite + 89: FloorSteel + 104: FloorTechMaint + 118: FloorWood + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: NT-Hestia + - type: Transform + parent: invalid + - type: MapGrid + chunks: + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIQAAAAAAIQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAIQAAAAAAIQAAAAAAIgAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIQAAAAAAIQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAIQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAVQAAAAAAIgAAAAAAIgAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: WQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeAAAAAAAaAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: CargoShuttle + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNe + decals: + 17: -1,6 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNw + decals: + 15: -2,6 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerSe + decals: + 16: -1,-1 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSw + decals: + 2: -3,7 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerSw + decals: + 14: -2,-1 + - node: + color: '#334E6DC8' + id: BrickTileWhiteEndE + decals: + 1: -2,7 + - node: + color: '#334E6DC8' + id: BrickTileWhiteEndN + decals: + 0: -3,8 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNe + decals: + 3: -3,7 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineE + decals: + 18: -1,5 + 19: -1,4 + 20: -1,3 + 21: -1,2 + 22: -1,1 + 23: -1,0 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineW + decals: + 24: -2,0 + 25: -2,1 + 26: -2,2 + 27: -2,3 + 28: -2,4 + 29: -2,5 + - node: + color: '#9FED5896' + id: MiniTileSteelBox + decals: + 30: -5,6 + - node: + color: '#9FED5896' + id: MiniTileSteelCornerNe + decals: + 31: -4,5 + - node: + color: '#9FED5896' + id: MiniTileSteelCornerNw + decals: + 32: -5,5 + - node: + color: '#9FED5896' + id: MiniTileSteelCornerSe + decals: + 33: -4,3 + - node: + color: '#9FED5896' + id: MiniTileSteelCornerSw + decals: + 34: -5,3 + - node: + color: '#9FED5896' + id: MiniTileSteelLineE + decals: + 36: -4,4 + - node: + color: '#9FED5896' + id: MiniTileSteelLineW + decals: + 35: -5,4 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 10: -5,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 7: -3,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 12: -5,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 4: -3,2 + 5: -3,1 + 6: -3,0 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 13: -4,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 8: -4,-1 + 9: -5,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 11: -5,0 + - type: GridAtmosphere + version: 2 + data: + tiles: + -2,0: + 0: 136 + 1: 32768 + -2,1: + 0: 2184 + 2: 16384 + -2,2: + 2: 140 + -2,-1: + 0: 34944 + 2: 76 + -1,0: + 0: 57087 + -1,1: + 0: 27871 + -1,-1: + 0: 65520 + 2: 10 + -1,2: + 0: 2 + 2: 136 + 0,0: + 0: 4112 + 0,1: + 2: 4096 + 0,2: + 2: 1 + -2,-2: + 2: 32768 + -1,-2: + 2: 53248 + 0,-1: + 2: 17 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.458208 + - 80.72374 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - type: RadiationGridResistance + - type: SpreaderGrid + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay +- proto: AirCanister + entities: + - uid: 136 + components: + - type: Transform + anchored: True + pos: -3.5,-1.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockCentralCommandGlassLocked + entities: + - uid: 248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 +- proto: APCHyperCapacity + entities: + - uid: 6 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 8 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 +- proto: BoxCardboard + entities: + - uid: 7 + components: + - type: Transform + pos: -4.7547092,6.7188997 + parent: 1 + - type: Storage + storedItems: + 140: + position: 0,0 + _rotation: South + 154: + position: 1,0 + _rotation: South + 200: + position: 2,0 + _rotation: South + 228: + position: 0,2 + _rotation: East + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 140 + - 154 + - 200 + - 228 + - uid: 259 + components: + - type: Transform + pos: -4.1922092,6.7605667 + parent: 1 + - type: Storage + storedItems: + 260: + position: 0,0 + _rotation: South + 261: + position: 1,0 + _rotation: South + 262: + position: 2,0 + _rotation: South + 263: + position: 0,2 + _rotation: East + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 260 + - 261 + - 262 + - 263 +- proto: Bucket + entities: + - uid: 85 + components: + - type: Transform + parent: 84 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 190 + components: + - type: Transform + parent: 84 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 253 + components: + - type: Transform + parent: 252 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 254 + components: + - type: Transform + parent: 252 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 255 + components: + - type: Transform + parent: 252 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableApcExtension + entities: + - uid: 9 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 +- proto: CableHV + entities: + - uid: 40 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 +- proto: CableMV + entities: + - uid: 42 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 92 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 67 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 68 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 1 + - uid: 69 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 +- proto: CleanerDispenser + entities: + - uid: 249 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 +- proto: ClosetJanitorFilled + entities: + - uid: 84 + components: + - type: Transform + pos: -4.760915,3.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1462 + moles: + - 1.865931 + - 7.0194554 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 191 + - 74 + - 85 + - 190 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 252 + components: + - type: Transform + pos: -4.260915,3.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8530405 + - 6.9709616 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 75 + - 192 + - 254 + - 255 + - 253 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClothingBackpackWaterTank + entities: + - uid: 74 + components: + - type: Transform + parent: 84 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 75 + components: + - type: Transform + parent: 252 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ComputerShuttle + entities: + - uid: 76 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 +- proto: DrinkWaterCup + entities: + - uid: 77 + components: + - type: Transform + pos: -1.5754411,-0.5304184 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -1.7284467,-0.28190517 + parent: 1 +- proto: FlippoLighter + entities: + - uid: 256 + components: + - type: Transform + pos: -3.9196653,0.69359446 + parent: 1 +- proto: FloorDrain + entities: + - uid: 79 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: FoodSnackMREBrownie + entities: + - uid: 80 + components: + - type: Transform + pos: -1.3459318,-0.26278877 + parent: 1 +- proto: FoodSnackNutribrick + entities: + - uid: 81 + components: + - type: Transform + pos: -1.5563142,-0.7406988 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: -1.3076818,-0.5495348 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 44 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 83 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 215 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 87 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 88 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 89 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 90 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 225 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 226 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 227 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 233 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 234 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeTJunction + entities: + - uid: 91 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPort + entities: + - uid: 2 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 47 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 86 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 94 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 95 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 43 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 48 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 51 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 207 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 41 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 96 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 +- proto: GrenadeCleanade + entities: + - uid: 140 + components: + - type: Transform + parent: 7 + - type: Physics + canCollide: False + - uid: 154 + components: + - type: Transform + parent: 7 + - type: Physics + canCollide: False + - uid: 200 + components: + - type: Transform + parent: 7 + - type: Physics + canCollide: False + - uid: 228 + components: + - type: Transform + parent: 7 + - type: Physics + canCollide: False + - uid: 260 + components: + - type: Transform + parent: 259 + - type: Physics + canCollide: False + - uid: 261 + components: + - type: Transform + parent: 259 + - type: Physics + canCollide: False + - uid: 262 + components: + - type: Transform + parent: 259 + - type: Physics + canCollide: False + - uid: 263 + components: + - type: Transform + parent: 259 + - type: Physics + canCollide: False +- proto: Grille + entities: + - uid: 98 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 99 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - uid: 100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + - uid: 101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,9.5 + parent: 1 + - uid: 102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + - uid: 103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - uid: 104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - uid: 105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - uid: 106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + - uid: 107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + - uid: 108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - uid: 109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 39 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 +- proto: Joint + entities: + - uid: 73 + components: + - type: Transform + pos: -3.9509153,0.6102612 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: -4.0446653,0.47484446 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: -4.0446653,0.47484446 + parent: 1 +- proto: MaterialCloth10 + entities: + - uid: 111 + components: + - type: Transform + pos: -4.5471506,0.6716477 + parent: 1 +- proto: MegaSprayBottle + entities: + - uid: 241 + components: + - type: Transform + pos: -4.80988,5.7959747 + parent: 1 +- proto: MopBucketFull + entities: + - uid: 112 + components: + - type: Transform + pos: -3.264597,5.724364 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: -3.6046085,5.4609823 + parent: 1 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 97 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 +- proto: PosterContrabandBeachStarYamamoto + entities: + - uid: 250 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 +- proto: PosterContrabandLustyExomorph + entities: + - uid: 247 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 +- proto: PottedPlant27 + entities: + - uid: 114 + components: + - type: Transform + pos: -2.2709236,2.2528982 + parent: 1 +- proto: Poweredlight + entities: + - uid: 115 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 +- proto: Rack + entities: + - uid: 120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,6.5 + parent: 1 +- proto: RandomSoap + entities: + - uid: 240 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 +- proto: RandomVendingSnacks + entities: + - uid: 202 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 122 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - uid: 124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + - uid: 125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - uid: 126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 +- proto: SinkWide + entities: + - uid: 134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 135 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 198 + components: + - type: Transform + pos: -0.7577965,6.6054535 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: -0.5494632,6.4492035 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 203 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 139 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 +- proto: Thruster + entities: + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + - uid: 179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - uid: 186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + - uid: 188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 +- proto: WaterCooler + entities: + - uid: 189 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 +- proto: WaterTankHighCapacity + entities: + - uid: 72 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 +- proto: WeaponLauncherHydra + entities: + - uid: 258 + components: + - type: Transform + pos: -4.4675775,6.7263184 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: -4.5300775,6.4659014 + parent: 1 +- proto: WeaponSprayNozzle + entities: + - uid: 191 + components: + - type: Transform + parent: 84 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 192 + components: + - type: Transform + parent: 252 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WindoorSecureCentralCommandLocked + entities: + - uid: 195 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 1 +- proto: WindoorSecureJanitorLocked + entities: + - uid: 3 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - uid: 196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 236 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 +- proto: Wrench + entities: + - uid: 219 + components: + - type: Transform + pos: -1.48491,-1.5622965 + parent: 1 +... diff --git a/Resources/Maps/Shuttles/AdminSpawn/ERT-Small-Med.yml b/Resources/Maps/Shuttles/AdminSpawn/ERT-Small-Med.yml new file mode 100644 index 0000000000..0881346d0c --- /dev/null +++ b/Resources/Maps/Shuttles/AdminSpawn/ERT-Small-Med.yml @@ -0,0 +1,2136 @@ +meta: + format: 7 + category: Grid + engineVersion: 254.1.0 + forkId: "" + forkVersion: "" + time: 04/21/2025 18:18:53 + entityCount: 270 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 0: Space + 34: FloorDarkMono + 1: FloorMetalDiamond + 85: FloorShuttleWhite + 89: FloorSteel + 104: FloorTechMaint + 108: FloorWhite + 112: FloorWhiteMini + 113: FloorWhiteMono + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: NT-Denobula + - type: Transform + parent: invalid + - type: MapGrid + chunks: + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAcAAAAAAAcAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcAAAAAAAcAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAcAAAAAAAcAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAVQAAAAAAIgAAAAAAIgAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: WQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeAAAAAAAaAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAWQAAAAAAWQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: CargoShuttle + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: BoxGreyscale + decals: + 32: -1,6 + 33: -1,5 + 34: -1,4 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNe + decals: + 16: -1,6 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNe + decals: + 4: -3,1 + - node: + color: '#A9D5F4FF' + id: BrickTileWhiteCornerNe + decals: + 40: -3,1 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 17: -2,6 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSe + decals: + 18: -1,-1 + - node: + color: '#5A96BEFF' + id: BrickTileWhiteCornerSe + decals: + 35: -3,-1 + - node: + color: '#A9D5F4FF' + id: BrickTileWhiteCornerSe + decals: + 37: -3,-1 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSw + decals: + 2: -3,7 + 19: -2,-1 + - node: + color: '#A9D5F4FF' + id: BrickTileWhiteCornerSw + decals: + 36: -5,-1 + - node: + color: '#334E6DC8' + id: BrickTileWhiteEndE + decals: + 1: -2,7 + - node: + color: '#334E6DC8' + id: BrickTileWhiteEndN + decals: + 0: -3,8 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNe + decals: + 3: -3,7 + - node: + color: '#A9D5F4FF' + id: BrickTileWhiteInnerNe + decals: + 46: -5,1 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 20: -1,0 + 21: -1,1 + 22: -1,2 + 23: -1,3 + 24: -1,4 + 25: -1,5 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 5: -3,-1 + 6: -3,0 + - node: + color: '#A9D5F4FF' + id: BrickTileWhiteLineE + decals: + 42: -3,0 + 44: -5,2 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 7: -4,1 + - node: + color: '#A9D5F4FF' + id: BrickTileWhiteLineN + decals: + 38: -4,1 + - node: + color: '#A9D5F4FF' + id: BrickTileWhiteLineS + decals: + 39: -4,-1 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 26: -2,5 + 27: -2,4 + 28: -2,3 + 29: -2,2 + 30: -2,1 + 31: -2,0 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 8: -5,0 + - node: + color: '#A9D5F4FF' + id: BrickTileWhiteLineW + decals: + 41: -5,0 + 43: -5,1 + 45: -5,2 + - node: + color: '#A9D5F4FF' + id: FullTileOverlayGreyscale + decals: + 47: -4,2 + 48: -3,2 + - node: + color: '#52B4E996' + id: MiniTileWhiteBox + decals: + 9: -5,6 + - node: + color: '#52B4E996' + id: MiniTileWhiteCornerNe + decals: + 10: -4,5 + - node: + color: '#52B4E996' + id: MiniTileWhiteCornerNw + decals: + 11: -5,5 + - node: + color: '#52B4E996' + id: MiniTileWhiteCornerSe + decals: + 12: -4,3 + - node: + color: '#52B4E996' + id: MiniTileWhiteCornerSw + decals: + 13: -5,3 + - node: + color: '#52B4E996' + id: MiniTileWhiteLineE + decals: + 14: -4,4 + - node: + color: '#52B4E996' + id: MiniTileWhiteLineW + decals: + 15: -5,4 + - type: GridAtmosphere + version: 2 + data: + tiles: + -2,0: + 0: 34952 + -2,1: + 0: 2184 + 1: 16384 + -2,2: + 1: 140 + -2,-1: + 0: 34944 + 1: 76 + -1,0: + 0: 53239 + 2: 8 + -1,1: + 0: 27871 + -1,-1: + 0: 32752 + 3: 32768 + 1: 10 + -1,2: + 0: 2 + 1: 136 + 0,0: + 0: 4112 + 0,1: + 1: 4096 + 0,2: + 1: 1 + -2,-2: + 1: 32768 + -1,-2: + 1: 53248 + 0,-1: + 1: 17 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.803423 + - 82.02241 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - type: RadiationGridResistance + - type: SpreaderGrid + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay +- proto: AirCanister + entities: + - uid: 224 + components: + - type: Transform + anchored: True + pos: -3.5,-1.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockChemistryLocked + entities: + - uid: 3 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 +- proto: APCHyperCapacity + entities: + - uid: 6 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 8 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 +- proto: BedsheetMedical + entities: + - uid: 10 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 +- proto: BluespaceBeaker + entities: + - uid: 16 + components: + - type: Transform + parent: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17 + components: + - type: Transform + parent: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxBodyBag + entities: + - uid: 68 + components: + - type: Transform + parent: 2 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 116 + components: + - type: Transform + parent: 2 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 268 + components: + - type: Transform + parent: 2 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxSyringe + entities: + - uid: 71 + components: + - type: Transform + pos: -2.4577973,2.5309758 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 28 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 +- proto: CableHV + entities: + - uid: 257 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: CableMV + entities: + - uid: 61 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 +- proto: ChairOfficeLight + entities: + - uid: 58 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - uid: 86 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + - uid: 221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 89 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 +- proto: ChemDispenser + entities: + - uid: 63 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 +- proto: ChemMaster + entities: + - uid: 90 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 92 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 94 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 +- proto: FloorDrain + entities: + - uid: 270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: GasPassiveVent + entities: + - uid: 110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 59 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 66 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 264 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 96 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 98 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 99 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 231 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 236 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 237 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 239 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 60 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 103 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPort + entities: + - uid: 93 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 74 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 235 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 9 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 165 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 87 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 97 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 +- proto: Grille + entities: + - uid: 111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + - uid: 113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + - uid: 114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,9.5 + parent: 1 + - uid: 115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + - uid: 117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - uid: 118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + - uid: 120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 65 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 +- proto: HandLabeler + entities: + - uid: 18 + components: + - type: Transform + parent: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Jug + entities: + - uid: 19 + components: + - type: Transform + parent: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 20 + components: + - type: Transform + parent: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 21 + components: + - type: Transform + parent: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22 + components: + - type: Transform + parent: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23 + components: + - type: Transform + parent: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24 + components: + - type: Transform + parent: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25 + components: + - type: Transform + parent: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26 + components: + - type: Transform + parent: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 271 + components: + - type: Transform + pos: -4.561964,4.249726 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: -4.340074,4.50377 + parent: 1 +- proto: JugCarbon + entities: + - uid: 91 + components: + - type: Transform + pos: -3.808824,4.337925 + parent: 1 +- proto: LockerChemistryFilled + entities: + - uid: 15 + components: + - type: Transform + pos: -0.3488598,2.492177 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18 + - 25 + - 24 + - 17 + - 16 + - 23 + - 22 + - 21 + - 19 + - 20 + - 27 + - 26 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerWallMedical + entities: + - uid: 2 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1462 + moles: + - 1.8959498 + - 7.1323833 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 116 + - 68 + - 268 +- proto: LockerWallMedicalFilled + entities: + - uid: 265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: MedicalBed + entities: + - uid: 125 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 +- proto: MedkitAdvancedFilled + entities: + - uid: 147 + components: + - type: Transform + pos: -2.4114592,2.7824645 + parent: 1 +- proto: MedkitBruteFilled + entities: + - uid: 134 + components: + - type: Transform + pos: -2.8697925,2.7824645 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: -2.890626,2.6574645 + parent: 1 +- proto: MedkitBurnFilled + entities: + - uid: 132 + components: + - type: Transform + pos: -3.3802092,2.7928813 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: -3.4010425,2.6678813 + parent: 1 +- proto: MedkitCombatFilled + entities: + - uid: 146 + components: + - type: Transform + pos: -3.390626,2.459548 + parent: 1 +- proto: MedkitFilled + entities: + - uid: 139 + components: + - type: Transform + pos: -2.4265473,2.6663923 + parent: 1 +- proto: MedkitOxygenFilled + entities: + - uid: 137 + components: + - type: Transform + pos: -2.9010425,2.428298 + parent: 1 +- proto: MedkitRadiationFilled + entities: + - uid: 140 + components: + - type: Transform + pos: -3.7552092,2.772048 + parent: 1 +- proto: MedkitToxinFilled + entities: + - uid: 133 + components: + - type: Transform + pos: -3.765626,2.5428813 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: -3.765626,2.5428813 + parent: 1 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 +- proto: PowerCellRecharger + entities: + - uid: 151 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 95 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - uid: 218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 1 + - uid: 230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 +- proto: SheetPlasma1 + entities: + - uid: 27 + components: + - type: Transform + parent: 15 + - type: Stack + count: 2 + - type: Item + size: Small + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ShuttleWindow + entities: + - uid: 149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 +- proto: SinkWide + entities: + - uid: 161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 124 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 +- proto: StasisBed + entities: + - uid: 220 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 155 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 223 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 +- proto: Thruster + entities: + - uid: 169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1 + - uid: 174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + - uid: 175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 +- proto: VendingMachineWallMedical + entities: + - uid: 162 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 123 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - uid: 209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + - uid: 211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 +- proto: WindoorSecureCentralCommandLocked + entities: + - uid: 213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 1 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 128 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - uid: 226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 88 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + - uid: 222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 +- proto: Wrench + entities: + - uid: 266 + components: + - type: Transform + pos: -1.5173755,-1.4895834 + parent: 1 +... diff --git a/Resources/Maps/Shuttles/AdminSpawn/ERT-Small-Sec.yml b/Resources/Maps/Shuttles/AdminSpawn/ERT-Small-Sec.yml new file mode 100644 index 0000000000..6a7655069d --- /dev/null +++ b/Resources/Maps/Shuttles/AdminSpawn/ERT-Small-Sec.yml @@ -0,0 +1,1868 @@ +meta: + format: 7 + category: Grid + engineVersion: 254.1.0 + forkId: "" + forkVersion: "" + time: 04/21/2025 18:18:29 + entityCount: 248 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 0: Space + 34: FloorDarkMono + 1: FloorMetalDiamond + 85: FloorShuttleWhite + 89: FloorSteel + 99: FloorSteelMini + 100: FloorSteelMono + 104: FloorTechMaint + 118: FloorWood + 120: Lattice + 121: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: NT-Penance + - type: Transform + parent: invalid + - type: MapGrid + chunks: + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYwAAAAAAYwAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYwAAAAAAYwAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAYwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAVQAAAAAAIgAAAAAAIgAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: WQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeAAAAAAAaAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAWQAAAAAAWQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: CargoShuttle + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe + decals: + 11: -1,6 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 10: -2,6 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 9: -1,-1 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSw + decals: + 14: -3,7 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 26: -2,-1 + - node: + color: '#334E6DC8' + id: BrickTileWhiteEndE + decals: + 13: -2,7 + - node: + color: '#334E6DC8' + id: BrickTileWhiteEndN + decals: + 12: -3,8 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNe + decals: + 15: -3,7 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 3: -1,5 + 4: -1,4 + 5: -1,3 + 6: -1,2 + 7: -1,1 + 8: -1,0 + 38: -3,4 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 0: -2,3 + 1: -2,4 + 2: -2,5 + 23: -2,2 + 24: -2,1 + 25: -2,0 + - node: + color: '#79150096' + id: MiniTileWhiteBox + decals: + 16: -5,6 + - node: + color: '#79150096' + id: MiniTileWhiteCornerNe + decals: + 17: -4,5 + - node: + color: '#79150096' + id: MiniTileWhiteCornerNw + decals: + 18: -5,5 + - node: + color: '#79150096' + id: MiniTileWhiteCornerSe + decals: + 19: -4,3 + - node: + color: '#79150096' + id: MiniTileWhiteCornerSw + decals: + 20: -5,3 + - node: + color: '#79150096' + id: MiniTileWhiteLineE + decals: + 21: -4,4 + - node: + color: '#79150096' + id: MiniTileWhiteLineW + decals: + 22: -5,4 + - node: + angle: 1.5707963267948966 rad + color: '#9A0000FF' + id: StandClear + decals: + 37: -3,4 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 33: -5,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 30: -3,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 35: -5,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 27: -3,2 + 28: -3,1 + 29: -3,0 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 36: -4,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 31: -4,-1 + 32: -5,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 34: -5,0 + - type: GridAtmosphere + version: 2 + data: + tiles: + -2,0: + 0: 32904 + -2,1: + 0: 2184 + 1: 16384 + -2,2: + 1: 140 + -2,-1: + 0: 34944 + 1: 76 + -1,0: + 0: 57087 + -1,1: + 0: 27871 + -1,-1: + 0: 65520 + 1: 10 + -1,2: + 0: 2 + 1: 136 + 0,0: + 0: 4112 + 0,1: + 1: 4096 + 0,2: + 1: 1 + -2,-2: + 1: 32768 + -1,-2: + 1: 53248 + 0,-1: + 1: 17 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - type: RadiationGridResistance + - type: SpreaderGrid + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay +- proto: AirAlarm + entities: + - uid: 103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 + - type: DeviceList + devices: + - 224 + - 105 + - 236 +- proto: AirCanister + entities: + - uid: 106 + components: + - type: Transform + anchored: True + pos: -0.5,-1.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockGlassShuttle + entities: + - uid: 3 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 +- proto: AirSensor + entities: + - uid: 236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 1 +- proto: APCHyperCapacity + entities: + - uid: 6 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 +- proto: Bed + entities: + - uid: 9 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 +- proto: BedsheetOrange + entities: + - uid: 11 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 12 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 +- proto: BoxHandcuff + entities: + - uid: 13 + components: + - type: Transform + pos: -0.6099169,5.7288613 + parent: 1 +- proto: BoxZiptie + entities: + - uid: 14 + components: + - type: Transform + pos: -0.36498022,5.419317 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 15 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 +- proto: CableHV + entities: + - uid: 46 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 +- proto: CableMV + entities: + - uid: 48 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 49 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 73 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 74 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 1 + - uid: 75 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 76 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 +- proto: CheckerBoard + entities: + - uid: 234 + components: + - type: Transform + pos: -3.5398066,0.55463433 + parent: 1 +- proto: ChessBoard + entities: + - uid: 233 + components: + - type: Transform + pos: -4.4785376,6.5732794 + parent: 1 +- proto: ClosetWallOrange + entities: + - uid: 87 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 239 + - 196 + - 238 + - 237 + - 197 + - 228 + - 198 +- proto: ClothingShoesColorOrange + entities: + - uid: 196 + components: + - type: Transform + parent: 87 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 237 + components: + - type: Transform + parent: 87 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtPrisoner + entities: + - uid: 197 + components: + - type: Transform + parent: 87 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 198 + components: + - type: Transform + parent: 87 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 238 + components: + - type: Transform + parent: 87 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPrisoner + entities: + - uid: 228 + components: + - type: Transform + parent: 87 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 239 + components: + - type: Transform + parent: 87 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ComputerShuttle + entities: + - uid: 79 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 +- proto: DrinkWaterCup + entities: + - uid: 80 + components: + - type: Transform + pos: -1.5754411,-0.5304184 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: -1.7284467,-0.28190517 + parent: 1 +- proto: FoodBoxDonut + entities: + - uid: 82 + components: + - type: Transform + pos: -4.593342,0.7761526 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: -4.399971,0.55689216 + parent: 1 +- proto: FoodSnackMREBrownie + entities: + - uid: 84 + components: + - type: Transform + pos: -1.3459318,-0.26278877 + parent: 1 +- proto: FoodSnackNutribrick + entities: + - uid: 85 + components: + - type: Transform + pos: -1.5563142,-0.7406988 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -1.3076818,-0.5495348 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 2 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 53 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 8 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#CC5555FF' + - uid: 92 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 207 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 91 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 93 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 94 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 95 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 96 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 97 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF22FFFF' + - uid: 101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 210 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 211 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 216 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 217 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 218 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 221 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 222 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 89 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPort + entities: + - uid: 99 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#CC5555FF' + - uid: 100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPressurePump + entities: + - uid: 102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + - type: GasPressurePump + targetPressure: 115.325 + - type: AtmosPipeColor + color: '#FF22FFFF' +- proto: GasVentPump + entities: + - uid: 45 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 220 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 209 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 219 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 47 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 206 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 +- proto: Grille + entities: + - uid: 108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + - uid: 109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - uid: 110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + - uid: 111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,9.5 + parent: 1 + - uid: 112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - uid: 113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + - uid: 114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - uid: 115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - uid: 116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - uid: 117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - uid: 118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + - uid: 120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 160 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 +- proto: NitrousOxideCanister + entities: + - uid: 123 + components: + - type: Transform + anchored: True + pos: -0.5,6.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 +- proto: PottedPlant28 + entities: + - uid: 124 + components: + - type: Transform + pos: -2.2257135,2.0694113 + parent: 1 +- proto: Poweredlight + entities: + - uid: 125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 1 + - uid: 128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + - uid: 129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - uid: 131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + - uid: 132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - uid: 133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 144 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 +- proto: SpeedLoaderMagnum + entities: + - uid: 195 + components: + - type: Transform + pos: -0.46974462,4.838149 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 185 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 +- proto: Thruster + entities: + - uid: 152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1 + - uid: 157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + - uid: 158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 +- proto: VendingMachineSec + entities: + - uid: 90 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 161 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + - uid: 183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - uid: 190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + - uid: 192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 +- proto: WaterCooler + entities: + - uid: 193 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 +- proto: WeaponRevolverDeckard + entities: + - uid: 199 + components: + - type: Transform + pos: -0.49057794,4.5673156 + parent: 1 +- proto: WindoorSecureCentralCommandLocked + entities: + - uid: 5 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - uid: 240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 1 + - uid: 243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 201 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 +- proto: Wrench + entities: + - uid: 235 + components: + - type: Transform + pos: -1.4053601,-1.4865723 + parent: 1 +... diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index 0f6680d9ba..1eaa100643 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -4,14 +4,13 @@ meta: engineVersion: 266.0.0 forkId: "" forkVersion: "" - time: 08/29/2025 04:43:38 - entityCount: 28794 + time: 09/06/2025 03:51:25 + entityCount: 28793 maps: - 780 grids: - 8364 - 11906 -- 28794 orphans: [] nullspace: [] tilemap: @@ -399,11 +398,11 @@ entities: version: 7 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABNAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAE0AAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABNAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAE0AAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAGgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABoAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 -1,-6: ind: -1,-6 - tiles: AAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== + tiles: AAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAA== version: 7 1,-6: ind: 1,-6 @@ -775,6 +774,7 @@ entities: decals: 6737: 6,43 6738: -7,32 + 7654: -1,-87 - node: zIndex: 1 color: '#FFFFFFFF' @@ -10902,108 +10902,31 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 21.824879 + Nitrogen: 82.10312 - volume: 2500 immutable: True - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + moles: {} - volume: 2500 temperature: 235 moles: - - 27.225372 - - 102.419266 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 27.225372 + Nitrogen: 102.419266 + - volume: 2500 + temperature: 293.15 + moles: {} - volume: 2500 temperature: 293.15 moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Plasma: 6666.982 - volume: 2500 temperature: 293.15 moles: - - 0 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Nitrogen: 6666.982 - volume: 2500 temperature: 293.15 moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 6666.982 chunkSize: 4 - type: Joint joints: @@ -11013,8 +10936,8 @@ entities: id: docking46345 localAnchorB: -0.5,-1 localAnchorA: -66.5,22 - damping: 42.401024 - stiffness: 380.59073 + damping: 42.40102 + stiffness: 380.5907 - type: OccluderTree - type: Shuttle dampingModifier: 0.25 @@ -11079,63 +11002,6 @@ entities: - type: SpreaderGrid - type: GridPathfinding - type: ImplicitRoof - - uid: 28794 - components: - - type: MetaData - name: grid - - type: Transform - pos: 0.50032806,0.50115013 - parent: 780 - - type: MapGrid - chunks: - -1,-6: - ind: -1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - version: 7 - 0,-6: - ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - version: 7 - - type: Broadphase - - type: Physics - bodyStatus: InAir - fixedRotation: False - bodyType: Dynamic - - type: Fixtures - fixtures: {} - - type: OccluderTree - - type: SpreaderGrid - - type: Shuttle - dampingModifier: 0.25 - - type: ImplicitRoof - - type: GridPathfinding - - type: Gravity - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - - type: DecalGrid - chunkCollection: - version: 2 - nodes: - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 2: -1,-87 - - node: - color: '#52B4E996' - id: BotGreyscale - decals: - 0: -2,-88 - 1: -2,-86 - 3: 0,-88 - 4: 0,-86 - - type: GridAtmosphere - version: 2 - data: - chunkSize: 4 - - type: GasTileOverlay - - type: IFF - flags: HideLabel - proto: AcousticGuitarInstrument entities: - uid: 19976 @@ -20192,8 +20058,8 @@ entities: - uid: 23912 components: - type: Transform - pos: -1.5,-87.5 - parent: 28794 + pos: -1.5,-85.5 + parent: 8364 - uid: 23922 components: - type: Transform @@ -20427,8 +20293,8 @@ entities: - uid: 25677 components: - type: Transform - pos: -0.5,-86.5 - parent: 28794 + pos: 0.5,-85.5 + parent: 8364 - uid: 25678 components: - type: Transform @@ -21212,18 +21078,18 @@ entities: - uid: 28374 components: - type: Transform - pos: -1.5,-85.5 - parent: 28794 + pos: 0.5,-87.5 + parent: 8364 - uid: 28375 components: - type: Transform - pos: 0.5,-85.5 - parent: 28794 + pos: -1.5,-87.5 + parent: 8364 - uid: 28376 components: - type: Transform - pos: 0.5,-87.5 - parent: 28794 + pos: -0.5,-86.5 + parent: 8364 - uid: 28378 components: - type: Transform @@ -70324,18 +70190,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 8802 components: - type: Transform @@ -70366,18 +70222,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 5.0982914 - - 19.179287 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.0982914 + Nitrogen: 19.179287 - uid: 618 components: - type: Transform @@ -70389,18 +70235,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 5.0982914 - - 19.179287 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.0982914 + Nitrogen: 19.179287 - uid: 619 components: - type: Transform @@ -70412,18 +70248,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 5.0982914 - - 19.179287 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.0982914 + Nitrogen: 19.179287 - uid: 1181 components: - type: Transform @@ -70435,18 +70261,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -70477,18 +70293,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 1513 components: - type: Transform @@ -70500,18 +70306,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 5.0982914 - - 19.179287 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.0982914 + Nitrogen: 19.179287 - uid: 2357 components: - type: Transform @@ -70538,18 +70334,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 6518 components: - type: Transform @@ -70561,18 +70347,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -70613,18 +70389,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -70650,18 +70416,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -70687,18 +70443,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -70724,18 +70470,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -70761,18 +70497,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -70798,18 +70524,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -70835,18 +70551,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -70872,18 +70578,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 13891 components: - type: Transform @@ -70895,18 +70591,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -70932,18 +70618,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 14563 components: - type: Transform @@ -70955,18 +70631,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -70997,18 +70663,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -71034,18 +70690,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -71071,18 +70717,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 16859 components: - type: Transform @@ -71099,18 +70735,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -71136,18 +70762,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -71173,18 +70789,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -71210,18 +70816,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -71247,18 +70843,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -71284,18 +70870,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -71321,18 +70897,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -71398,18 +70964,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 22546 components: - type: Transform @@ -71421,18 +70977,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 22945 components: - type: Transform @@ -71513,18 +71059,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 5.0982914 - - 19.179287 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.0982914 + Nitrogen: 19.179287 - uid: 5310 components: - type: Transform @@ -71536,18 +71072,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 6517 components: - type: Transform @@ -71559,18 +71085,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -71606,18 +71122,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -71643,18 +71149,8 @@ entities: immutable: False temperature: 293.14963 moles: - - 5.0982914 - - 19.179287 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.0982914 + Nitrogen: 19.179287 - uid: 16658 components: - type: Transform @@ -71676,18 +71172,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -71713,18 +71199,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -71750,18 +71226,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -71797,18 +71263,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 21216 components: - type: Transform @@ -71820,18 +71276,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -71893,18 +71339,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 5506 components: - type: Transform @@ -71916,18 +71352,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - proto: ClosetL3SecurityFilled entities: - uid: 7360 @@ -71958,18 +71384,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -71995,18 +71411,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -72032,18 +71438,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -72083,18 +71479,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -72120,18 +71506,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 8120 components: - type: Transform @@ -72163,18 +71539,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -72200,18 +71566,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -72237,18 +71593,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -72274,18 +71620,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -72311,18 +71647,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -72348,18 +71674,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -72385,18 +71701,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -72422,18 +71728,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -72459,18 +71755,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -72506,18 +71792,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -72543,18 +71819,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -72580,18 +71846,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -72617,18 +71873,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -72654,18 +71900,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -72691,18 +71927,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -72728,18 +71954,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -72787,18 +72003,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 21769 components: - type: Transform @@ -72810,18 +72016,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 25992 components: - type: Transform @@ -72833,18 +72029,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 27373 components: - type: Transform @@ -72903,18 +72089,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -72940,18 +72116,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -72982,18 +72148,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -73029,18 +72185,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - proto: ClosetToolFilled entities: - uid: 12434 @@ -73054,18 +72200,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -73091,18 +72227,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -73128,18 +72254,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -73165,18 +72281,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -73202,18 +72308,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -75838,18 +74934,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 27530 components: - type: Transform @@ -76018,18 +75104,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: Construction containers: - EntityStorageComponent @@ -76057,18 +75133,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - proto: CrateFilledSpawner entities: - uid: 6224 @@ -76164,18 +75230,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - uid: 19056 components: - type: Transform @@ -76199,18 +75255,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -76244,18 +75290,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -76289,18 +75325,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -76340,18 +75366,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -76385,18 +75401,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -76531,18 +75537,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 25913 components: - type: Transform @@ -76580,18 +75576,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 2.146141 - - 8.073578 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 2.146141 + Nitrogen: 8.073578 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -76709,18 +75695,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - proto: CrewMonitoringServer entities: - uid: 26796 @@ -130592,18 +129568,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -130685,18 +129651,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -130732,18 +129688,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -132549,18 +131495,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 10571 components: - type: Transform @@ -132572,18 +131508,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 13255 components: - type: Transform @@ -132595,18 +131521,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -132646,18 +131562,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - proto: LockerChemistryFilled entities: - uid: 18781 @@ -132704,18 +131610,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 18726 components: - type: Transform @@ -132727,18 +131623,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 26863 components: - type: Transform @@ -132811,18 +131697,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: Pullable prevFixedRotation: True - uid: 8196 @@ -132841,18 +131717,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -132897,18 +131763,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 2.146141 - - 8.073578 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 2.146141 + Nitrogen: 8.073578 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -132943,18 +131799,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -133004,18 +131850,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 21408 components: - type: Transform @@ -133027,18 +131863,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - proto: LockerParamedicFilled entities: - uid: 27687 @@ -133146,18 +131972,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 13409 components: - type: Transform @@ -133169,18 +131985,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 13410 components: - type: Transform @@ -133192,18 +131998,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 17888 components: - type: Transform @@ -133235,18 +132031,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - proto: LockerSecurity entities: - uid: 15388 @@ -133260,18 +132046,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -133344,18 +132120,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -133383,18 +132149,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - proto: LockerWeldingSuppliesFilled entities: - uid: 1612 @@ -133418,18 +132174,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - proto: LootSpawnerIndustrial entities: - uid: 7041 @@ -134702,18 +133448,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 10575 components: - type: Transform @@ -134726,18 +133462,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 10790 components: - type: Transform @@ -134750,18 +133476,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 10791 components: - type: Transform @@ -134774,18 +133490,8 @@ entities: immutable: False temperature: 293.14957 moles: - - 4.7822967 - - 17.990545 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 4.7822967 + Nitrogen: 17.990545 - uid: 18623 components: - type: Transform @@ -134798,18 +133504,8 @@ entities: immutable: False temperature: 293.14957 moles: - - 4.7822967 - - 17.990545 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 4.7822967 + Nitrogen: 17.990545 - uid: 18624 components: - type: Transform @@ -134822,18 +133518,8 @@ entities: immutable: False temperature: 293.14957 moles: - - 4.7822967 - - 17.990545 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 4.7822967 + Nitrogen: 17.990545 - uid: 18713 components: - type: Transform @@ -134846,18 +133532,8 @@ entities: immutable: False temperature: 293.14954 moles: - - 4.3997126 - - 16.5513 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 4.3997126 + Nitrogen: 16.5513 - uid: 18714 components: - type: Transform @@ -134870,18 +133546,8 @@ entities: immutable: False temperature: 293.14954 moles: - - 4.3997126 - - 16.5513 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 4.3997126 + Nitrogen: 16.5513 - uid: 18715 components: - type: Transform @@ -134894,18 +133560,8 @@ entities: immutable: False temperature: 293.14957 moles: - - 4.7822967 - - 17.990545 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 4.7822967 + Nitrogen: 17.990545 - uid: 18717 components: - type: Transform @@ -134918,18 +133574,8 @@ entities: immutable: False temperature: 293.14957 moles: - - 4.7822967 - - 17.990545 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 4.7822967 + Nitrogen: 17.990545 - uid: 18718 components: - type: Transform @@ -134942,18 +133588,8 @@ entities: immutable: False temperature: 293.14954 moles: - - 4.3997126 - - 16.5513 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 4.3997126 + Nitrogen: 16.5513 - uid: 18719 components: - type: Transform @@ -134966,18 +133602,8 @@ entities: immutable: False temperature: 293.14954 moles: - - 4.3997126 - - 16.5513 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 4.3997126 + Nitrogen: 16.5513 - uid: 18720 components: - type: Transform @@ -134990,18 +133616,8 @@ entities: immutable: False temperature: 293.14954 moles: - - 4.3997126 - - 16.5513 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 4.3997126 + Nitrogen: 16.5513 - uid: 19862 components: - type: Transform @@ -135014,18 +133630,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - proto: MouseTimedSpawner entities: - uid: 420 @@ -136388,28 +134994,38 @@ entities: - type: Transform pos: 14.5,-54.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3749 components: - type: Transform pos: 15.5,-54.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3752 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-54.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 23194 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-54.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 23239 components: - type: Transform pos: 16.5,-54.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: PlasmaTankFilled entities: - uid: 4055 @@ -136425,6 +135041,8 @@ entities: rot: 3.141592653589793 rad pos: -13.5,44.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource @@ -136439,6 +135057,8 @@ entities: - type: Transform pos: -13.5,44.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource @@ -144205,386 +142825,540 @@ entities: - type: Transform pos: 25.5,-50.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2389 components: - type: Transform pos: 13.5,-94.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2832 components: - type: Transform pos: 14.5,-94.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3494 components: - type: Transform pos: 47.5,-54.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3495 components: - type: Transform pos: 46.5,-54.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3496 components: - type: Transform pos: 43.5,-54.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3497 components: - type: Transform pos: 44.5,-54.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4041 components: - type: Transform pos: 16.5,-91.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4427 components: - type: Transform pos: 15.5,-90.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4468 components: - type: Transform pos: 13.5,-84.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4469 components: - type: Transform pos: 15.5,-88.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4470 components: - type: Transform pos: 13.5,-88.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4493 components: - type: Transform pos: 16.5,-85.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4623 components: - type: Transform pos: 16.5,-87.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4947 components: - type: Transform pos: -17.5,46.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5197 components: - type: Transform pos: 14.5,-88.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5200 components: - type: Transform pos: 12.5,-87.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5799 components: - type: Transform pos: 14.5,-49.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7305 components: - type: Transform pos: -17.5,43.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7394 components: - type: Transform pos: -17.5,44.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7656 components: - type: Transform pos: -15.5,46.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7705 components: - type: Transform pos: -15.5,41.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7833 components: - type: Transform pos: -17.5,45.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7841 components: - type: Transform pos: -17.5,42.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8385 components: - type: Transform pos: -15.5,45.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8398 components: - type: Transform pos: -7.5,45.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8813 components: - type: Transform pos: -17.5,41.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 10854 components: - type: Transform pos: 14.5,-90.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 11752 components: - type: Transform pos: 12.5,-92.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 12258 components: - type: Transform pos: 12.5,-91.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 12458 components: - type: Transform pos: 12.5,-85.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 12459 components: - type: Transform pos: 12.5,-86.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13818 components: - type: Transform pos: -15.5,43.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 14918 components: - type: Transform pos: 15.5,-84.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 15138 components: - type: Transform pos: 17.5,-51.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 17697 components: - type: Transform pos: 10.5,-81.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 17718 components: - type: Transform pos: 17.5,-52.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 17763 components: - type: Transform pos: 16.5,-53.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19159 components: - type: Transform pos: 13.5,-50.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20151 components: - type: Transform pos: 17.5,-50.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 21936 components: - type: Transform pos: 10.5,-80.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22830 components: - type: Transform pos: 13.5,-51.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22839 components: - type: Transform pos: 13.5,-52.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22881 components: - type: Transform pos: 25.5,-44.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22882 components: - type: Transform pos: 25.5,-43.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22883 components: - type: Transform pos: 25.5,-42.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22884 components: - type: Transform pos: 25.5,-48.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22885 components: - type: Transform pos: 25.5,-47.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22886 components: - type: Transform pos: 25.5,-46.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22887 components: - type: Transform pos: 25.5,-52.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22888 components: - type: Transform pos: 25.5,-51.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22890 components: - type: Transform pos: 25.5,-56.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22891 components: - type: Transform pos: 25.5,-55.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22892 components: - type: Transform pos: 25.5,-54.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22893 components: - type: Transform pos: 12.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22894 components: - type: Transform pos: 13.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22895 components: - type: Transform pos: 14.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22896 components: - type: Transform pos: 16.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22897 components: - type: Transform pos: 17.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22898 components: - type: Transform pos: 18.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22899 components: - type: Transform pos: 20.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22900 components: - type: Transform pos: 21.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22901 components: - type: Transform pos: 22.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 23149 components: - type: Transform pos: 14.5,-84.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 23181 components: - type: Transform pos: 16.5,-49.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 23236 components: - type: Transform pos: 14.5,-53.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26289 components: - type: Transform pos: -14.5,44.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26314 components: - type: Transform pos: -7.5,40.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 27126 components: - type: Transform pos: 13.5,-90.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 27127 components: - type: Transform pos: 16.5,-93.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 27139 components: - type: Transform pos: 15.5,-94.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 27193 components: - type: Transform pos: 12.5,-93.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28688 components: - type: Transform pos: -15.5,42.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28737 components: - type: Transform pos: -7.5,42.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28740 components: - type: Transform pos: -10.5,40.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28742 components: - type: Transform pos: -10.5,42.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28743 components: - type: Transform pos: -7.5,46.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: ReinforcedWindow entities: - uid: 22 @@ -144592,4241 +143366,5937 @@ entities: - type: Transform pos: 47.5,4.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 99 components: - type: Transform pos: -7.5,6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 108 components: - type: Transform pos: -5.5,2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 109 components: - type: Transform pos: -6.5,2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 112 components: - type: Transform pos: -7.5,7.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 136 components: - type: Transform pos: -75.5,-6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 145 components: - type: Transform pos: 47.5,3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 207 components: - type: Transform pos: -28.5,9.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 208 components: - type: Transform pos: -30.5,9.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 209 components: - type: Transform pos: -32.5,9.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 210 components: - type: Transform pos: -34.5,9.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 260 components: - type: Transform pos: -27.5,9.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 261 components: - type: Transform pos: -29.5,9.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 262 components: - type: Transform pos: -31.5,9.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 263 components: - type: Transform pos: -33.5,9.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 264 components: - type: Transform pos: -35.5,9.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 276 components: - type: Transform pos: -29.5,19.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 293 components: - type: Transform pos: 1.5,26.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 315 components: - type: Transform pos: -28.5,11.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 316 components: - type: Transform pos: -29.5,11.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 323 components: - type: Transform pos: -27.5,11.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 324 components: - type: Transform pos: -30.5,12.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 325 components: - type: Transform pos: -30.5,13.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 326 components: - type: Transform pos: -30.5,14.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 327 components: - type: Transform pos: -30.5,15.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 328 components: - type: Transform pos: -30.5,16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 329 components: - type: Transform pos: -32.5,25.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 330 components: - type: Transform pos: -32.5,13.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 331 components: - type: Transform pos: -32.5,14.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 332 components: - type: Transform pos: -32.5,15.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 333 components: - type: Transform pos: -32.5,16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 334 components: - type: Transform pos: -29.5,23.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 344 components: - type: Transform pos: -29.5,20.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 347 components: - type: Transform pos: -42.5,19.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 348 components: - type: Transform pos: -43.5,19.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 349 components: - type: Transform pos: -48.5,26.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 350 components: - type: Transform pos: -50.5,26.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 351 components: - type: Transform pos: -50.5,25.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 352 components: - type: Transform pos: -50.5,24.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 353 components: - type: Transform pos: -51.5,24.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 366 components: - type: Transform pos: -33.5,25.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 367 components: - type: Transform pos: -29.5,24.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 396 components: - type: Transform pos: -29.5,22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 404 components: - type: Transform pos: -29.5,18.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 416 components: - type: Transform pos: -35.5,25.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 417 components: - type: Transform pos: -34.5,25.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 528 components: - type: Transform pos: -59.5,2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 529 components: - type: Transform pos: -57.5,2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 539 components: - type: Transform pos: 10.5,-54.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 544 components: - type: Transform pos: -65.5,20.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 545 components: - type: Transform pos: -68.5,13.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 547 components: - type: Transform pos: -67.5,21.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 550 components: - type: Transform pos: -65.5,21.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 553 components: - type: Transform pos: -68.5,14.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 559 components: - type: Transform pos: -68.5,12.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 574 components: - type: Transform pos: -67.5,19.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 580 components: - type: Transform pos: -67.5,20.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 581 components: - type: Transform pos: -68.5,18.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 591 components: - type: Transform pos: -11.5,34.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 595 components: - type: Transform pos: 27.5,-81.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 596 components: - type: Transform pos: -67.5,7.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 609 components: - type: Transform pos: -68.5,-2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 637 components: - type: Transform pos: -68.5,7.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 658 components: - type: Transform pos: -72.5,-2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 660 components: - type: Transform pos: -73.5,-2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 678 components: - type: Transform pos: -74.5,7.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 679 components: - type: Transform pos: -73.5,7.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 683 components: - type: Transform pos: -72.5,7.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 731 components: - type: Transform pos: -65.5,4.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 732 components: - type: Transform pos: -65.5,3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 733 components: - type: Transform pos: -65.5,2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 734 components: - type: Transform pos: -65.5,1.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 736 components: - type: Transform pos: -65.5,0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 749 components: - type: Transform pos: -11.5,31.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 772 components: - type: Transform pos: -15.5,36.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 795 components: - type: Transform pos: 27.5,1.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 822 components: - type: Transform pos: 7.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 960 components: - type: Transform pos: 60.5,20.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 998 components: - type: Transform pos: 62.5,20.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1047 components: - type: Transform pos: 45.5,21.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1048 components: - type: Transform pos: 46.5,21.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1049 components: - type: Transform pos: 46.5,22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1051 components: - type: Transform pos: 65.5,24.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1053 components: - type: Transform pos: 56.5,21.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1054 components: - type: Transform pos: 57.5,21.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1056 components: - type: Transform pos: 46.5,23.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1057 components: - type: Transform pos: 55.5,21.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1062 components: - type: Transform pos: 49.5,4.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1063 components: - type: Transform pos: 49.5,3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1066 components: - type: Transform pos: 48.5,23.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1077 components: - type: Transform pos: -74.5,-6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1078 components: - type: Transform pos: -73.5,-6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1079 components: - type: Transform pos: -72.5,-6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1080 components: - type: Transform pos: -71.5,-6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1081 components: - type: Transform pos: -70.5,-6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1082 components: - type: Transform pos: -69.5,-6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1083 components: - type: Transform pos: -68.5,-6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1099 components: - type: Transform pos: -75.5,-12.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1100 components: - type: Transform pos: -74.5,-12.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1101 components: - type: Transform pos: -73.5,-12.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1102 components: - type: Transform pos: -72.5,-12.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1103 components: - type: Transform pos: -71.5,-12.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1104 components: - type: Transform pos: -70.5,-12.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1105 components: - type: Transform pos: -69.5,-12.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1106 components: - type: Transform pos: -68.5,-12.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1108 components: - type: Transform pos: -76.5,-17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1112 components: - type: Transform pos: -73.5,-17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1113 components: - type: Transform pos: -72.5,-17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1114 components: - type: Transform pos: -71.5,-17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1115 components: - type: Transform pos: -70.5,-17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1116 components: - type: Transform pos: -67.5,-17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1117 components: - type: Transform pos: -67.5,-16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1118 components: - type: Transform pos: -66.5,-16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1122 components: - type: Transform pos: -67.5,-15.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1137 components: - type: Transform pos: -66.5,-11.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1138 components: - type: Transform pos: -66.5,-10.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1139 components: - type: Transform pos: -67.5,-10.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1140 components: - type: Transform pos: -65.5,-10.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1145 components: - type: Transform pos: -33.5,-35.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1179 components: - type: Transform pos: -75.5,-2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1288 components: - type: Transform pos: -53.5,-19.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1289 components: - type: Transform pos: -54.5,-19.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1290 components: - type: Transform pos: -58.5,-21.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1291 components: - type: Transform pos: -59.5,-21.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1292 components: - type: Transform pos: -60.5,-21.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1293 components: - type: Transform pos: -60.5,-20.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1294 components: - type: Transform pos: -60.5,-18.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1456 components: - type: Transform pos: -24.5,-20.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1457 components: - type: Transform pos: -23.5,-21.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1458 components: - type: Transform pos: -23.5,-23.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1459 components: - type: Transform pos: -23.5,-25.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1460 components: - type: Transform pos: -22.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1461 components: - type: Transform pos: -21.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1462 components: - type: Transform pos: -20.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1463 components: - type: Transform pos: -19.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1507 components: - type: Transform pos: -75.5,7.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1509 components: - type: Transform pos: -67.5,-2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1554 components: - type: Transform pos: -32.5,-35.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1555 components: - type: Transform pos: -32.5,-32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1561 components: - type: Transform pos: 33.5,4.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1571 components: - type: Transform pos: -26.5,-39.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1572 components: - type: Transform pos: -27.5,-39.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1574 components: - type: Transform pos: -32.5,-39.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1575 components: - type: Transform pos: -31.5,-39.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1576 components: - type: Transform pos: -31.5,-32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1580 components: - type: Transform pos: -33.5,-39.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1594 components: - type: Transform pos: -23.5,-31.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1595 components: - type: Transform pos: -23.5,-29.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1596 components: - type: Transform pos: -29.5,-29.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1598 components: - type: Transform pos: -33.5,-32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1653 components: - type: Transform pos: -16.5,-35.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1654 components: - type: Transform pos: -16.5,-36.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1655 components: - type: Transform pos: -16.5,-37.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1656 components: - type: Transform pos: -16.5,-39.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1657 components: - type: Transform pos: -16.5,-40.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1658 components: - type: Transform pos: -16.5,-41.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1659 components: - type: Transform pos: -16.5,-42.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1660 components: - type: Transform pos: -16.5,-43.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1661 components: - type: Transform pos: -16.5,-44.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1662 components: - type: Transform pos: 48.5,2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1668 components: - type: Transform pos: -18.5,-44.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1669 components: - type: Transform pos: -18.5,-45.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1677 components: - type: Transform pos: 2.5,-55.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1678 components: - type: Transform pos: 2.5,-57.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1709 components: - type: Transform pos: 21.5,-31.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1710 components: - type: Transform pos: 20.5,-31.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1711 components: - type: Transform pos: 19.5,-31.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1729 components: - type: Transform pos: 18.5,-31.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1731 components: - type: Transform pos: 93.5,-27.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1732 components: - type: Transform pos: 93.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1733 components: - type: Transform pos: 92.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1734 components: - type: Transform pos: 91.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1735 components: - type: Transform pos: 91.5,-27.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1736 components: - type: Transform pos: 91.5,-30.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1737 components: - type: Transform pos: 93.5,-30.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1741 components: - type: Transform pos: 87.5,-36.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1742 components: - type: Transform pos: 87.5,-35.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1743 components: - type: Transform pos: 87.5,-34.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1801 components: - type: Transform pos: 39.5,-20.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1819 components: - type: Transform pos: 22.5,-31.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1900 components: - type: Transform pos: 42.5,-44.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1901 components: - type: Transform pos: 42.5,-46.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2053 components: - type: Transform pos: 53.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2061 components: - type: Transform pos: 53.5,-32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2176 components: - type: Transform pos: 77.5,-48.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2177 components: - type: Transform pos: 75.5,-48.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2180 components: - type: Transform pos: 72.5,-48.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2181 components: - type: Transform pos: 71.5,-48.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2182 components: - type: Transform pos: 70.5,-48.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2209 components: - type: Transform pos: 23.5,-18.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2493 components: - type: Transform pos: 37.5,-20.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2528 components: - type: Transform pos: 62.5,-71.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2550 components: - type: Transform pos: 38.5,-38.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2551 components: - type: Transform pos: 38.5,-40.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2594 components: - type: Transform pos: 69.5,-44.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2595 components: - type: Transform pos: 69.5,-46.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2596 components: - type: Transform pos: 68.5,-41.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2597 components: - type: Transform pos: 68.5,-40.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2598 components: - type: Transform pos: 68.5,-39.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2599 components: - type: Transform pos: 68.5,-35.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2600 components: - type: Transform pos: 68.5,-34.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2601 components: - type: Transform pos: 68.5,-33.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2602 components: - type: Transform pos: 64.5,-31.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2603 components: - type: Transform pos: 64.5,-30.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2604 components: - type: Transform pos: 64.5,-29.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2605 components: - type: Transform pos: 64.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2606 components: - type: Transform pos: 63.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2607 components: - type: Transform pos: 62.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2608 components: - type: Transform pos: 63.5,-16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2609 components: - type: Transform pos: 61.5,-16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2617 components: - type: Transform pos: 54.5,-31.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2618 components: - type: Transform pos: 54.5,-29.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2619 components: - type: Transform pos: 71.5,-16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2620 components: - type: Transform pos: 75.5,-24.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2621 components: - type: Transform pos: 76.5,-27.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2622 components: - type: Transform pos: 77.5,-27.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2623 components: - type: Transform pos: 79.5,-27.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2624 components: - type: Transform pos: 80.5,-27.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2625 components: - type: Transform pos: 88.5,-22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2626 components: - type: Transform pos: 89.5,-22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2627 components: - type: Transform pos: 90.5,-22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2628 components: - type: Transform pos: 91.5,-22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2629 components: - type: Transform pos: 92.5,-22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2630 components: - type: Transform pos: 92.5,-23.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2642 components: - type: Transform pos: 78.5,-16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2643 components: - type: Transform pos: 79.5,-16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2644 components: - type: Transform pos: 80.5,-16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2645 components: - type: Transform pos: 80.5,-15.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2646 components: - type: Transform pos: 80.5,-14.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2647 components: - type: Transform pos: 81.5,-14.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2648 components: - type: Transform pos: 82.5,-14.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2649 components: - type: Transform pos: 83.5,-14.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2650 components: - type: Transform pos: 84.5,-14.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2651 components: - type: Transform pos: 85.5,-14.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2652 components: - type: Transform pos: 85.5,-10.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2653 components: - type: Transform pos: 84.5,-10.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2654 components: - type: Transform pos: 83.5,-10.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2655 components: - type: Transform pos: 83.5,-9.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2656 components: - type: Transform pos: 83.5,-8.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2657 components: - type: Transform pos: 83.5,-7.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2658 components: - type: Transform pos: 83.5,-6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2659 components: - type: Transform pos: 84.5,-6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2660 components: - type: Transform pos: 85.5,-6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2661 components: - type: Transform pos: 85.5,-2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2662 components: - type: Transform pos: 84.5,-2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2663 components: - type: Transform pos: 83.5,-2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2664 components: - type: Transform pos: 83.5,-1.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2665 components: - type: Transform pos: 83.5,-0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2666 components: - type: Transform pos: 82.5,-0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2667 components: - type: Transform pos: 81.5,-0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2668 components: - type: Transform pos: 80.5,-0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2669 components: - type: Transform pos: 79.5,-0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2670 components: - type: Transform pos: 78.5,-0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2671 components: - type: Transform pos: 75.5,0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2672 components: - type: Transform pos: 75.5,1.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2673 components: - type: Transform pos: 75.5,2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2674 components: - type: Transform pos: 75.5,3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2723 components: - type: Transform pos: 31.5,4.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2727 components: - type: Transform pos: 82.5,-4.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2728 components: - type: Transform pos: 80.5,-4.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2729 components: - type: Transform pos: 81.5,-4.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2731 components: - type: Transform pos: 78.5,-4.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2732 components: - type: Transform pos: 76.5,-4.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2733 components: - type: Transform pos: 79.5,-7.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2734 components: - type: Transform pos: 79.5,-9.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2786 components: - type: Transform pos: 67.5,1.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2857 components: - type: Transform pos: 49.5,-10.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2858 components: - type: Transform pos: 46.5,-10.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2859 components: - type: Transform pos: 45.5,-10.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2860 components: - type: Transform pos: 45.5,-11.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2861 components: - type: Transform pos: 42.5,-11.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2882 components: - type: Transform pos: -41.5,-32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2895 components: - type: Transform pos: -37.5,-32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2908 components: - type: Transform pos: 87.5,-40.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2909 components: - type: Transform pos: 87.5,-41.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2910 components: - type: Transform pos: 87.5,-42.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2911 components: - type: Transform pos: 87.5,-51.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2912 components: - type: Transform pos: 87.5,-52.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2913 components: - type: Transform pos: 87.5,-53.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2930 components: - type: Transform pos: -43.5,-26.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2957 components: - type: Transform pos: 82.5,-67.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2960 components: - type: Transform pos: 82.5,-66.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2963 components: - type: Transform pos: 83.5,-66.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2966 components: - type: Transform pos: 82.5,-68.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3003 components: - type: Transform pos: -44.5,-26.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3029 components: - type: Transform pos: -38.5,-32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3030 components: - type: Transform pos: -43.5,-32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3050 components: - type: Transform pos: -28.5,-39.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3068 components: - type: Transform pos: 19.5,-15.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3074 components: - type: Transform pos: 77.5,-65.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3075 components: - type: Transform pos: 76.5,-65.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3076 components: - type: Transform pos: 70.5,-69.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3077 components: - type: Transform pos: 69.5,-69.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3078 components: - type: Transform pos: 65.5,-73.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3079 components: - type: Transform pos: 64.5,-73.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3080 components: - type: Transform pos: 63.5,-73.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3081 components: - type: Transform pos: 62.5,-73.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3082 components: - type: Transform pos: 62.5,-72.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3084 components: - type: Transform pos: 60.5,-72.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3085 components: - type: Transform pos: 60.5,-71.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3086 components: - type: Transform pos: 60.5,-70.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3088 components: - type: Transform pos: 63.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3089 components: - type: Transform pos: 62.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3090 components: - type: Transform pos: 61.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3091 components: - type: Transform pos: 58.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3092 components: - type: Transform pos: 57.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3093 components: - type: Transform pos: 56.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3094 components: - type: Transform pos: 53.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3095 components: - type: Transform pos: 52.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3096 components: - type: Transform pos: 51.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3097 components: - type: Transform pos: 50.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3098 components: - type: Transform pos: 50.5,-64.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3099 components: - type: Transform pos: 50.5,-65.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3100 components: - type: Transform pos: 50.5,-66.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3101 components: - type: Transform pos: 44.5,-74.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3102 components: - type: Transform pos: 43.5,-74.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3103 components: - type: Transform pos: 42.5,-74.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3107 components: - type: Transform pos: 31.5,-60.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3108 components: - type: Transform pos: 31.5,-59.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3109 components: - type: Transform pos: 31.5,-58.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3110 components: - type: Transform pos: 31.5,-55.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3111 components: - type: Transform pos: 31.5,-54.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3112 components: - type: Transform pos: 31.5,-53.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3113 components: - type: Transform pos: 31.5,-50.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3114 components: - type: Transform pos: 31.5,-49.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3115 components: - type: Transform pos: 31.5,-48.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3116 components: - type: Transform pos: 31.5,-45.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3117 components: - type: Transform pos: 31.5,-44.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3118 components: - type: Transform pos: 31.5,-43.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3175 components: - type: Transform pos: 74.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3176 components: - type: Transform pos: 73.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3177 components: - type: Transform pos: 73.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3178 components: - type: Transform pos: 74.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3179 components: - type: Transform pos: 15.5,-44.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3241 components: - type: Transform pos: 31.5,-22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3242 components: - type: Transform pos: 28.5,-22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3252 components: - type: Transform pos: 29.5,-22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3344 components: - type: Transform pos: -12.5,-43.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3345 components: - type: Transform pos: -13.5,-43.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3346 components: - type: Transform pos: -13.5,-44.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3347 components: - type: Transform pos: -11.5,-38.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3348 components: - type: Transform pos: -12.5,-38.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3349 components: - type: Transform pos: -13.5,-38.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3350 components: - type: Transform pos: -14.5,-38.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3351 components: - type: Transform pos: -14.5,-37.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3352 components: - type: Transform pos: -14.5,-36.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3353 components: - type: Transform pos: -14.5,-35.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3354 components: - type: Transform pos: -14.5,-34.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3355 components: - type: Transform pos: -13.5,-34.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3356 components: - type: Transform pos: -11.5,-34.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3357 components: - type: Transform pos: -12.5,-34.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3380 components: - type: Transform pos: -9.5,-57.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3381 components: - type: Transform pos: -9.5,-56.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3382 components: - type: Transform pos: -9.5,-55.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3383 components: - type: Transform pos: -9.5,-54.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3384 components: - type: Transform pos: -10.5,-54.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3385 components: - type: Transform pos: -7.5,-52.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3386 components: - type: Transform pos: -5.5,-52.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3387 components: - type: Transform pos: -9.5,-49.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3388 components: - type: Transform pos: -9.5,-50.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3389 components: - type: Transform pos: -9.5,-51.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3390 components: - type: Transform pos: -9.5,-52.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3391 components: - type: Transform pos: -10.5,-52.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3468 components: - type: Transform pos: -21.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3469 components: - type: Transform pos: -22.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3470 components: - type: Transform pos: -23.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3471 components: - type: Transform pos: -24.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3472 components: - type: Transform pos: -25.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3473 components: - type: Transform pos: -27.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3474 components: - type: Transform pos: -26.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3475 components: - type: Transform pos: -28.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3476 components: - type: Transform pos: -29.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3486 components: - type: Transform pos: 15.5,-42.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3491 components: - type: Transform pos: 32.5,-22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3507 components: - type: Transform pos: 42.5,-60.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3513 components: - type: Transform pos: 42.5,-59.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3517 components: - type: Transform pos: 42.5,-58.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3524 components: - type: Transform pos: 15.5,-40.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3531 components: - type: Transform pos: 42.5,-57.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3559 components: - type: Transform pos: -39.5,-62.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3561 components: - type: Transform pos: -39.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3562 components: - type: Transform pos: -40.5,-62.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3564 components: - type: Transform pos: -41.5,-62.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3565 components: - type: Transform pos: -36.5,-51.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3566 components: - type: Transform pos: -37.5,-51.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3580 components: - type: Transform pos: 86.5,-2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3581 components: - type: Transform pos: 87.5,-10.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3621 components: - type: Transform pos: -28.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3622 components: - type: Transform pos: -30.5,-67.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3623 components: - type: Transform pos: -30.5,-68.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3624 components: - type: Transform pos: -30.5,-69.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3625 components: - type: Transform pos: -30.5,-70.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3626 components: - type: Transform pos: -32.5,-67.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3627 components: - type: Transform pos: -32.5,-68.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3628 components: - type: Transform pos: -32.5,-69.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3629 components: - type: Transform pos: -32.5,-70.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3674 components: - type: Transform pos: -33.5,-73.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3675 components: - type: Transform pos: -33.5,-74.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3676 components: - type: Transform pos: -33.5,-75.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3677 components: - type: Transform pos: -32.5,-75.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3678 components: - type: Transform pos: -31.5,-75.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3679 components: - type: Transform pos: -30.5,-75.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3684 components: - type: Transform pos: -11.5,-77.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3704 components: - type: Transform pos: 25.5,-62.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3721 components: - type: Transform pos: 38.5,-48.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3737 components: - type: Transform pos: 5.5,-50.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3744 components: - type: Transform pos: 7.5,-50.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3829 components: - type: Transform pos: 5.5,-78.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3893 components: - type: Transform pos: 0.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3894 components: - type: Transform pos: 0.5,-62.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3899 components: - type: Transform pos: -3.5,45.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3901 components: - type: Transform pos: 0.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3963 components: - type: Transform pos: -39.5,-45.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3965 components: - type: Transform pos: -26.5,-42.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3966 components: - type: Transform pos: -27.5,-42.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3967 components: - type: Transform pos: -28.5,-42.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3968 components: - type: Transform pos: -22.5,-40.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3972 components: - type: Transform pos: -21.5,-44.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3973 components: - type: Transform pos: -22.5,-44.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3974 components: - type: Transform pos: -22.5,-46.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3975 components: - type: Transform pos: -21.5,-46.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3976 components: - type: Transform pos: -20.5,-46.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3977 components: - type: Transform pos: -35.5,-42.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3979 components: - type: Transform pos: -37.5,-42.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4000 components: - type: Transform pos: 23.5,-40.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4006 components: - type: Transform pos: 23.5,-46.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4007 components: - type: Transform pos: 23.5,-47.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4008 components: - type: Transform pos: 23.5,-48.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4009 components: - type: Transform pos: 23.5,-49.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4010 components: - type: Transform pos: 23.5,-50.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4011 components: - type: Transform pos: 23.5,-51.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4012 components: - type: Transform pos: 23.5,-52.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4013 components: - type: Transform pos: 23.5,-53.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4014 components: - type: Transform pos: 23.5,-54.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4015 components: - type: Transform pos: 23.5,-55.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4016 components: - type: Transform pos: 23.5,-56.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4017 components: - type: Transform pos: 23.5,-57.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4018 components: - type: Transform pos: 21.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4019 components: - type: Transform pos: 20.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4020 components: - type: Transform pos: 19.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4021 components: - type: Transform pos: 18.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4022 components: - type: Transform pos: 17.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4023 components: - type: Transform pos: 16.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4024 components: - type: Transform pos: 15.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4025 components: - type: Transform pos: 14.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4026 components: - type: Transform pos: 13.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4027 components: - type: Transform pos: 23.5,-58.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4034 components: - type: Transform pos: 12.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4035 components: - type: Transform pos: 11.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4036 components: - type: Transform pos: 22.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4059 components: - type: Transform pos: 15.5,-45.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4060 components: - type: Transform pos: 15.5,-43.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4063 components: - type: Transform pos: 15.5,-41.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4072 components: - type: Transform pos: 86.5,-14.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4136 components: - type: Transform pos: -4.5,-24.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4137 components: - type: Transform pos: -34.5,-29.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4201 components: - type: Transform pos: -21.5,-77.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4202 components: - type: Transform pos: -21.5,-74.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4300 components: - type: Transform pos: -21.5,-75.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4523 components: - type: Transform pos: -21.5,-68.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4646 components: - type: Transform pos: -18.5,-74.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4679 components: - type: Transform pos: -5.5,-78.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4681 components: - type: Transform pos: 2.5,-78.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4686 components: - type: Transform pos: 0.5,-72.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4687 components: - type: Transform pos: -4.5,-78.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4689 components: - type: Transform pos: 3.5,-78.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4690 components: - type: Transform pos: -2.5,-72.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4691 components: - type: Transform pos: -1.5,-72.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4695 components: - type: Transform pos: -3.5,-78.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4697 components: - type: Transform pos: 4.5,-78.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4705 components: - type: Transform pos: -3.5,-79.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4836 components: - type: Transform pos: 1.5,-79.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4837 components: - type: Transform pos: 25.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5068 components: - type: Transform pos: -22.5,42.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5076 components: - type: Transform pos: -17.5,36.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5077 components: - type: Transform pos: 6.5,55.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5084 components: - type: Transform pos: 4.5,50.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5099 components: - type: Transform pos: 0.5,53.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5100 components: - type: Transform pos: 0.5,55.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5109 components: - type: Transform pos: 16.5,46.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5111 components: - type: Transform pos: 12.5,41.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5112 components: - type: Transform pos: 12.5,43.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5233 components: - type: Transform pos: 50.5,-68.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5234 components: - type: Transform pos: 50.5,-67.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5255 components: - type: Transform pos: 12.5,42.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5263 components: - type: Transform pos: 23.5,-34.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5344 components: - type: Transform pos: 12.5,44.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5596 components: - type: Transform pos: -24.5,46.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5791 components: - type: Transform pos: -15.5,25.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5826 components: - type: Transform pos: -3.5,-77.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 6334 components: - type: Transform pos: -2.5,21.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 6408 components: - type: Transform pos: 15.5,52.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 6419 components: - type: Transform pos: 14.5,52.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 6458 components: - type: Transform pos: 14.5,46.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 6524 components: - type: Transform pos: 0.5,40.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 6533 components: - type: Transform pos: 25.5,16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 6606 components: - type: Transform pos: 1.5,45.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 6620 components: - type: Transform pos: 6.5,36.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 6652 components: - type: Transform pos: -16.5,36.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 6949 components: - type: Transform pos: 0.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 6953 components: - type: Transform pos: -1.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 6955 components: - type: Transform pos: 1.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 6956 components: - type: Transform pos: -4.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 6959 components: - type: Transform pos: -5.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7047 components: - type: Transform pos: -33.5,-36.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7147 components: - type: Transform pos: -33.5,-38.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7215 components: - type: Transform pos: 76.5,-48.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7266 components: - type: Transform pos: 10.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7273 components: - type: Transform pos: 3.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7283 components: - type: Transform pos: 4.5,35.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7295 components: - type: Transform pos: -23.5,46.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7296 components: - type: Transform pos: -20.5,39.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7316 components: - type: Transform pos: -22.5,41.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7317 components: - type: Transform pos: -26.5,46.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7331 components: - type: Transform pos: 16.5,52.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7334 components: - type: Transform pos: 17.5,46.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7361 components: - type: Transform pos: 5.5,-26.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7397 components: - type: Transform pos: 38.5,11.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7398 components: - type: Transform pos: 38.5,12.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7399 components: - type: Transform pos: 38.5,15.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7400 components: - type: Transform pos: 38.5,16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7401 components: - type: Transform pos: 38.5,17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7420 components: - type: Transform pos: 37.5,17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7421 components: - type: Transform pos: 36.5,17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7422 components: - type: Transform pos: 35.5,17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7423 components: - type: Transform pos: 34.5,17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7424 components: - type: Transform pos: 33.5,17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7425 components: - type: Transform pos: 32.5,17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7426 components: - type: Transform pos: 31.5,17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7427 components: - type: Transform pos: 30.5,17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7428 components: - type: Transform pos: 29.5,17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7429 components: - type: Transform pos: 28.5,17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7430 components: - type: Transform pos: 28.5,16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7431 components: - type: Transform pos: 28.5,15.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7432 components: - type: Transform pos: 28.5,14.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7433 components: - type: Transform pos: 37.5,6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7434 components: - type: Transform pos: 36.5,6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7435 components: - type: Transform pos: 35.5,6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7436 components: - type: Transform pos: 34.5,6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7437 components: - type: Transform pos: 33.5,6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7438 components: - type: Transform pos: 32.5,6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7439 components: - type: Transform pos: 31.5,6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7440 components: - type: Transform pos: 30.5,6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7441 components: - type: Transform pos: 28.5,6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7442 components: - type: Transform pos: 28.5,7.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7443 components: - type: Transform pos: 28.5,8.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7444 components: - type: Transform pos: 28.5,9.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7449 components: - type: Transform pos: 28.5,12.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7450 components: - type: Transform pos: 28.5,11.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7459 components: - type: Transform pos: 29.5,6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7624 components: - type: Transform pos: 15.5,46.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7652 components: - type: Transform pos: 10.5,22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7677 components: - type: Transform pos: -13.5,25.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7689 components: - type: Transform pos: 12.5,22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7697 components: - type: Transform pos: -7.5,50.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7699 components: - type: Transform pos: -7.5,52.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7709 components: - type: Transform pos: -27.5,46.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7769 components: - type: Transform pos: 1.5,27.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7794 components: - type: Transform pos: 17.5,52.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7837 components: - type: Transform pos: -28.5,44.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7848 components: - type: Transform pos: 8.5,46.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7873 components: - type: Transform pos: -2.5,14.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7887 components: - type: Transform pos: -2.5,6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7888 components: - type: Transform pos: -2.5,7.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7908 components: - type: Transform pos: 1.5,47.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8005 components: - type: Transform pos: -14.5,-32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8011 components: - type: Transform pos: -13.5,-32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8021 components: - type: Transform pos: -12.5,-32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8029 components: - type: Transform pos: 35.5,4.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8049 components: - type: Transform pos: -10.5,0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8050 components: - type: Transform pos: -12.5,0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8067 components: - type: Transform pos: -18.5,-17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8068 components: - type: Transform pos: -18.5,-19.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8079 components: - type: Transform pos: 27.5,-72.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8088 components: - type: Transform pos: -12.5,-23.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8089 components: - type: Transform pos: -12.5,-24.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8108 components: - type: Transform pos: -14.5,-14.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8109 components: - type: Transform pos: -14.5,-13.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8111 components: - type: Transform pos: 27.5,-74.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8131 components: - type: Transform pos: -5.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8132 components: - type: Transform pos: -4.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8133 components: - type: Transform pos: -3.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8152 components: - type: Transform pos: 2.5,-20.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8167 components: - type: Transform pos: -3.5,-20.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8207 components: - type: Transform pos: 2.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8208 components: - type: Transform pos: 3.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8209 components: - type: Transform pos: 4.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8264 components: - type: Transform pos: -18.5,-29.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8283 components: - type: Transform pos: 10.5,-9.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8290 components: - type: Transform pos: -11.5,-7.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8291 components: - type: Transform pos: -11.5,-9.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8305 components: - type: Transform pos: -7.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8306 components: - type: Transform pos: 6.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8319 components: - type: Transform pos: 12.5,-6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8320 components: - type: Transform pos: 13.5,-5.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8321 components: - type: Transform pos: 13.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8345 components: - type: Transform pos: -14.5,-4.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8346 components: - type: Transform pos: -14.5,-5.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8347 components: - type: Transform pos: -14.5,-6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8348 components: - type: Transform pos: -14.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8349 components: - type: Transform pos: -13.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8350 components: - type: Transform pos: -12.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8351 components: - type: Transform pos: -11.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8352 components: - type: Transform pos: -10.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8353 components: - type: Transform pos: -9.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8354 components: - type: Transform pos: -8.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8355 components: - type: Transform pos: 10.5,-7.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8356 components: - type: Transform pos: 13.5,-6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8357 components: - type: Transform pos: 13.5,-4.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8358 components: - type: Transform pos: 12.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8359 components: - type: Transform pos: 11.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8360 components: - type: Transform pos: 10.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8361 components: - type: Transform pos: 9.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8362 components: - type: Transform pos: 8.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8365 components: - type: Transform pos: 3.5,0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8366 components: - type: Transform pos: -6.5,0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8367 components: - type: Transform pos: -5.5,0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8368 components: - type: Transform pos: 3.5,1.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8369 components: - type: Transform pos: -4.5,0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8370 components: - type: Transform pos: 5.5,0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8373 components: - type: Transform pos: -4.5,1.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8376 components: - type: Transform pos: 7.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8377 components: - type: Transform pos: 4.5,0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8378 components: - type: Transform pos: -13.5,-6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8380 components: - type: Transform pos: 4.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8381 components: - type: Transform pos: -2.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8382 components: - type: Transform pos: -0.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8428 components: - type: Transform pos: -3.5,46.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8458 components: - type: Transform pos: -15.5,18.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8459 components: - type: Transform pos: -14.5,18.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8461 components: - type: Transform pos: -13.5,18.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8463 components: - type: Transform pos: -12.5,16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8480 components: - type: Transform pos: -0.5,-79.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8503 components: - type: Transform pos: 1.5,46.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8552 components: - type: Transform pos: 6.5,53.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8561 components: - type: Transform pos: 7.5,46.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8641 components: - type: Transform pos: 6.5,54.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8646 components: - type: Transform pos: -22.5,43.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8684 components: - type: Transform pos: -4.5,35.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8686 components: - type: Transform pos: 11.5,20.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8701 components: - type: Transform pos: -16.5,28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8743 components: - type: Transform pos: -3.5,47.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8765 components: - type: Transform pos: -6.5,26.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8791 components: - type: Transform pos: 2.5,50.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8829 components: - type: Transform pos: 4.5,39.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8855 components: - type: Transform pos: -6.5,28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8893 components: - type: Transform pos: -33.5,36.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8906 components: - type: Transform pos: -0.5,30.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8911 components: - type: Transform pos: -33.5,35.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8933 components: - type: Transform pos: 11.5,21.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8935 components: - type: Transform pos: -0.5,34.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8968 components: - type: Transform pos: -2.5,16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8970 components: - type: Transform pos: -10.5,32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8985 components: - type: Transform pos: -22.5,44.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8989 components: - type: Transform pos: -8.5,35.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8990 components: - type: Transform pos: -9.5,35.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9107 components: - type: Transform pos: -7.5,30.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9172 components: - type: Transform pos: 11.5,19.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9173 components: - type: Transform pos: 13.5,21.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9174 components: - type: Transform pos: 13.5,20.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9175 components: - type: Transform pos: 13.5,19.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9188 components: - type: Transform pos: 16.5,37.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9195 components: - type: Transform pos: 17.5,33.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9402 components: - type: Transform pos: 25.5,29.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9601 components: - type: Transform pos: 17.5,32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9837 components: - type: Transform pos: -42.5,-32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9838 components: - type: Transform pos: -42.5,-26.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 10616 components: - type: Transform pos: 12.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 10648 components: - type: Transform pos: 86.5,-6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 10653 components: - type: Transform pos: 87.5,-2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 10654 components: - type: Transform pos: 87.5,-14.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 10840 components: - type: Transform pos: -1.5,-79.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 10868 components: - type: Transform pos: 0.5,-79.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 11152 components: - type: Transform pos: 67.5,3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 11590 components: - type: Transform pos: -9.5,2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 11646 components: - type: Transform pos: 57.5,9.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 11905 components: - type: Transform pos: -65.5,19.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 11907 components: - type: Transform pos: -68.5,16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 11983 components: - type: Transform pos: -9.5,3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 11985 components: - type: Transform pos: 21.5,-15.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 11991 components: - type: Transform pos: 27.5,-62.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 11995 components: - type: Transform pos: 27.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 11996 components: - type: Transform pos: 27.5,-64.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 12004 components: - type: Transform pos: 27.5,-65.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 12010 components: - type: Transform pos: 27.5,-66.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 12035 components: - type: Transform pos: -10.5,5.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 12260 components: - type: Transform pos: -12.5,5.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 12427 components: - type: Transform pos: -68.5,17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 12485 components: - type: Transform pos: -74.5,-2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 12495 components: - type: Transform pos: -66.5,7.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 12675 components: - type: Transform pos: 27.5,-67.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 12681 components: - type: Transform pos: 51.5,-60.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 12788 components: - type: Transform pos: 53.5,-56.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13065 components: - type: Transform pos: 52.5,-56.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13081 components: - type: Transform pos: 56.5,-56.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13149 components: - type: Transform pos: -51.5,13.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13210 components: - type: Transform pos: -36.5,17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13222 components: - type: Transform pos: -37.5,17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13223 components: - type: Transform pos: -38.5,17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13241 components: - type: Transform pos: -35.5,13.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13242 components: - type: Transform pos: -36.5,13.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13243 components: - type: Transform pos: -37.5,13.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13244 components: - type: Transform pos: -38.5,13.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13433 components: - type: Transform pos: -51.5,15.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 14137 components: - type: Transform pos: -42.5,-25.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 14138 components: - type: Transform pos: -42.5,-24.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 14139 components: - type: Transform pos: -39.5,-32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 14140 components: - type: Transform pos: -44.5,-32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 14698 components: - type: Transform pos: -8.5,-62.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 14770 components: - type: Transform pos: -29.5,-25.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 14945 components: - type: Transform pos: -29.5,-26.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 14969 components: - type: Transform pos: -34.5,-25.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 15004 components: - type: Transform pos: -30.5,-36.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 15005 components: - type: Transform pos: -30.5,-38.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 15574 components: - type: Transform pos: -36.5,-42.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 15747 components: - type: Transform pos: 8.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 15749 components: - type: Transform pos: 6.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 15882 components: - type: Transform pos: 27.5,-68.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 15969 components: - type: Transform pos: 3.5,-24.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 16354 components: - type: Transform pos: 23.5,16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 16400 components: - type: Transform pos: 6.5,-58.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 16530 components: - type: Transform pos: 9.5,-58.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 16727 components: - type: Transform pos: 2.5,-77.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 16837 components: - type: Transform pos: 2.5,-79.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 16841 components: - type: Transform pos: -12.5,-71.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 16848 components: - type: Transform pos: -14.5,-71.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 16849 components: - type: Transform pos: -15.5,-77.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 16850 components: - type: Transform pos: -13.5,-71.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 16883 components: - type: Transform pos: -2.5,-79.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 16956 components: - type: Transform pos: 2.5,-41.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 17093 components: - type: Transform pos: 5.5,-45.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 17101 components: - type: Transform pos: 7.5,-45.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 17205 components: - type: Transform pos: 8.5,-44.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 17206 components: - type: Transform pos: 8.5,-43.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 17455 components: - type: Transform pos: 4.5,-49.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 17584 components: - type: Transform pos: 4.5,-46.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 17787 components: - type: Transform pos: 10.5,-75.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 18621 components: - type: Transform pos: -14.5,-15.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 18742 components: - type: Transform pos: -1.5,-65.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 18759 components: - type: Transform pos: -2.5,-65.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19163 components: - type: Transform pos: -13.5,-77.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19233 components: - type: Transform pos: 38.5,-45.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19357 components: - type: Transform pos: 53.5,-60.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19358 components: - type: Transform pos: 52.5,-60.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19359 components: - type: Transform pos: 58.5,-60.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19360 components: - type: Transform pos: 57.5,-60.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19361 components: - type: Transform pos: 56.5,-60.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19362 components: - type: Transform pos: 63.5,-60.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19363 components: - type: Transform pos: 62.5,-60.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19364 components: - type: Transform pos: 61.5,-60.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19918 components: - type: Transform pos: 75.5,5.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19943 components: - type: Transform pos: 57.5,-56.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19945 components: - type: Transform pos: 63.5,-56.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19955 components: - type: Transform pos: 3.5,-58.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19975 components: - type: Transform pos: 58.5,-56.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19978 components: - type: Transform pos: 61.5,-56.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20055 components: - type: Transform pos: 5.5,-58.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20065 components: - type: Transform pos: 2.5,-64.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20139 components: - type: Transform pos: -0.5,-65.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20181 components: - type: Transform pos: 92.5,-30.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20196 components: - type: Transform pos: 69.5,-16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20370 components: - type: Transform pos: 51.5,-56.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20382 components: - type: Transform pos: 62.5,-56.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20872 components: - type: Transform pos: 64.5,-39.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 21186 components: - type: Transform pos: 71.5,-42.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 21188 components: - type: Transform pos: 72.5,-42.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 21372 components: - type: Transform pos: 64.5,-41.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 21450 components: - type: Transform pos: -22.5,-45.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 21461 components: - type: Transform pos: 2.5,-44.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 21471 components: - type: Transform pos: -34.5,-26.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 21482 components: - type: Transform pos: 11.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 21623 components: - type: Transform pos: -34.5,-27.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 21994 components: - type: Transform pos: 13.5,-26.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22013 components: - type: Transform pos: 87.5,-6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22023 components: - type: Transform pos: 45.5,-60.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22024 components: - type: Transform pos: 45.5,-59.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22025 components: - type: Transform pos: 45.5,-58.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22026 components: - type: Transform pos: 45.5,-57.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22027 components: - type: Transform pos: 44.5,-57.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22028 components: - type: Transform pos: 46.5,-57.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22246 components: - type: Transform pos: -7.5,9.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22257 components: - type: Transform pos: 67.5,0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22271 components: - type: Transform pos: 86.5,-10.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22574 components: - type: Transform pos: 25.5,-65.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22696 components: - type: Transform pos: 27.5,-71.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22697 components: - type: Transform pos: 27.5,-73.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22700 components: - type: Transform pos: 27.5,-69.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22745 components: - type: Transform pos: -6.5,-78.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22755 components: - type: Transform pos: 1.5,-72.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22814 components: - type: Transform pos: 23.5,-45.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22848 components: - type: Transform pos: -18.5,-70.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22859 components: - type: Transform pos: 23.5,-44.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22860 components: - type: Transform pos: 23.5,-43.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22861 components: - type: Transform pos: 23.5,-42.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22862 components: - type: Transform pos: 23.5,-41.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22920 components: - type: Transform pos: 10.5,-72.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22966 components: - type: Transform pos: -14.5,-77.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22967 components: - type: Transform pos: -15.5,-71.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22968 components: - type: Transform pos: -11.5,-71.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22989 components: - type: Transform pos: -5.5,-66.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 23101 components: - type: Transform pos: -21.5,-70.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 23102 components: - type: Transform pos: -18.5,-68.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 23172 components: - type: Transform pos: 25.5,-67.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 23190 components: - type: Transform pos: -7.5,-66.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 23220 components: - type: Transform pos: 25.5,-69.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 23224 components: - type: Transform pos: 10.5,-51.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 23225 components: - type: Transform pos: 10.5,-52.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 23226 components: - type: Transform pos: 10.5,-53.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 23230 components: - type: Transform pos: -12.5,-77.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 23233 components: - type: Transform pos: 9.5,-64.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 23917 components: - type: Transform pos: -21.5,-82.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 24774 components: - type: Transform pos: 38.5,-49.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 25183 components: - type: Transform pos: -21.5,-73.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 25260 components: - type: Transform pos: 16.5,-82.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 25866 components: - type: Transform pos: -14.5,25.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26008 components: - type: Transform pos: -19.5,-84.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26064 components: - type: Transform pos: 25.5,-68.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26066 components: - type: Transform pos: 25.5,-66.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26080 components: - type: Transform pos: 8.5,-23.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26087 components: - type: Transform pos: 25.5,-64.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26275 components: - type: Transform pos: 2.5,39.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26601 components: - type: Transform pos: 10.5,-32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26602 components: - type: Transform pos: 7.5,-23.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26641 components: - type: Transform pos: 7.5,-58.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26647 components: - type: Transform pos: 6.5,-23.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26735 components: - type: Transform pos: 38.5,-46.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26737 components: - type: Transform pos: -8.5,-64.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26950 components: - type: Transform pos: 18.5,-82.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26995 components: - type: Transform pos: 19.5,-82.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26997 components: - type: Transform pos: 27.5,-78.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 27066 components: - type: Transform pos: 27.5,-79.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 27473 components: - type: Transform pos: 14.5,-82.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 27474 components: - type: Transform pos: 15.5,-82.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 27851 components: - type: Transform pos: 20.5,-82.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 27853 components: - type: Transform pos: 21.5,-82.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 27858 components: - type: Transform pos: 27.5,-80.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 27925 components: - type: Transform pos: 60.5,-69.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28311 components: - type: Transform pos: -13.5,3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28316 components: - type: Transform pos: -13.5,2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28359 components: - type: Transform pos: 13.5,-82.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28655 components: - type: Transform pos: -35.5,0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28656 components: - type: Transform pos: -34.5,0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28657 components: - type: Transform pos: -33.5,0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28658 components: - type: Transform pos: -32.5,0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28659 components: - type: Transform pos: -30.5,0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28660 components: - type: Transform pos: -29.5,0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28661 components: - type: Transform pos: -28.5,0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28662 components: - type: Transform pos: -27.5,0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: RemoteSignaller entities: - uid: 5286 @@ -149626,106 +150096,144 @@ entities: - type: Transform pos: -31.5,-17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9150 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,33.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9164 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9165 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,31.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9243 components: - type: Transform pos: -30.5,-17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9698 components: - type: Transform pos: -4.5,29.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 11334 components: - type: Transform pos: 43.5,1.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20192 components: - type: Transform pos: 52.5,-15.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20193 components: - type: Transform pos: 53.5,-15.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20194 components: - type: Transform pos: 54.5,-15.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28642 components: - type: Transform pos: -5.5,29.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28706 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,33.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28707 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28708 components: - type: Transform pos: -7.5,30.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28709 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,35.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28710 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,35.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28711 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,35.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28712 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,46.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28713 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,45.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: ShuttersNormalOpen entities: - uid: 1454 @@ -149734,268 +150242,368 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-25.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1455 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-29.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1918 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1923 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-62.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1924 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-63.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2941 components: - type: Transform pos: 20.5,-15.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3001 components: - type: Transform pos: 19.5,-15.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5223 components: - type: Transform pos: -7.5,-66.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5241 components: - type: Transform pos: -5.5,-66.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5336 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-13.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5338 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-14.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5590 components: - type: Transform pos: -12.5,-24.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5591 components: - type: Transform pos: -12.5,-23.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5592 components: - type: Transform pos: -12.5,-22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8158 components: - type: Transform pos: 6.5,-23.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9923 components: - type: Transform pos: 10.5,-32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 14148 components: - type: Transform pos: 21.5,-15.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 14850 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-26.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 15377 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-26.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 15391 components: - type: Transform pos: -31.5,-32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 15422 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-29.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 15426 components: - type: Transform pos: -32.5,-32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 15428 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-25.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 17669 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-27.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 17684 components: - type: Transform pos: -33.5,-32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 17901 components: - type: Transform pos: -0.5,-65.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 18406 components: - type: Transform pos: -2.5,-65.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19022 components: - type: Transform pos: 23.5,-17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19023 components: - type: Transform pos: 23.5,-18.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19024 components: - type: Transform pos: 23.5,-19.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19949 components: - type: Transform pos: 2.5,50.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19959 components: - type: Transform pos: 4.5,50.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19968 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,53.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19983 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,54.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19997 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,55.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20056 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,55.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20152 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,53.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22014 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-15.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22990 components: - type: Transform pos: -1.5,-65.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26786 components: - type: Transform pos: -5.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26787 components: - type: Transform pos: -4.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26788 components: - type: Transform pos: -2.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26789 components: - type: Transform pos: -1.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26790 components: - type: Transform pos: -0.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26791 components: - type: Transform pos: 0.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26792 components: - type: Transform pos: 1.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26793 components: - type: Transform pos: 4.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26794 components: - type: Transform pos: 3.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 27220 components: - type: Transform pos: 7.5,-23.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 27221 components: - type: Transform pos: 8.5,-23.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: ShuttersRadiationOpen entities: - uid: 3788 @@ -150003,21 +150611,29 @@ entities: - type: Transform pos: 0.5,-72.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3789 components: - type: Transform pos: 1.5,-72.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3868 components: - type: Transform pos: -2.5,-72.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3875 components: - type: Transform pos: -1.5,-72.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: ShuttersWindowOpen entities: - uid: 10454 @@ -150025,6 +150641,8 @@ entities: - type: Transform pos: 35.5,-10.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - type: DeviceLinkSink invokeCounter: 2 - uid: 10455 @@ -150032,6 +150650,8 @@ entities: - type: Transform pos: 36.5,-10.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - type: DeviceLinkSink invokeCounter: 2 - uid: 10456 @@ -150039,6 +150659,8 @@ entities: - type: Transform pos: 37.5,-10.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - type: DeviceLinkSink invokeCounter: 2 - uid: 10457 @@ -150046,6 +150668,8 @@ entities: - type: Transform pos: 38.5,-10.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - type: DeviceLinkSink invokeCounter: 2 - uid: 20837 @@ -150053,86 +150677,120 @@ entities: - type: Transform pos: 61.5,-16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20838 components: - type: Transform pos: 62.5,-16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20839 components: - type: Transform pos: 63.5,-16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20840 components: - type: Transform pos: 69.5,-16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20841 components: - type: Transform pos: 70.5,-16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20842 components: - type: Transform pos: 71.5,-16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20843 components: - type: Transform pos: 68.5,-22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20844 components: - type: Transform pos: 68.5,-23.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20845 components: - type: Transform pos: 68.5,-24.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20846 components: - type: Transform pos: 68.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20847 components: - type: Transform pos: 68.5,-29.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20848 components: - type: Transform pos: 68.5,-30.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20849 components: - type: Transform pos: 64.5,-22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20850 components: - type: Transform pos: 64.5,-23.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20851 components: - type: Transform pos: 68.5,-33.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20852 components: - type: Transform pos: 68.5,-34.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20853 components: - type: Transform pos: 68.5,-35.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: ShuttleConsoleCircuitboard entities: - uid: 12454 @@ -150147,6 +150805,8 @@ entities: - type: Transform pos: 67.5,-75.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: SignAi entities: - uid: 26944 @@ -156115,18 +156775,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -156146,18 +156796,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -156195,18 +156835,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -156238,18 +156868,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -161934,41 +162554,57 @@ entities: - type: Transform pos: 4.5,-32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3460 components: - type: Transform pos: 29.5,-26.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3462 components: - type: Transform pos: 33.5,-26.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3537 components: - type: Transform pos: 31.5,-26.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9179 components: - type: Transform pos: 43.5,-32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 10766 components: - type: Transform pos: 74.5,-2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 11031 components: - type: Transform pos: 43.5,-33.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 11575 components: - type: Transform pos: 43.5,-34.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: ToiletDirtyWater entities: - uid: 6254 @@ -181513,18 +182149,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - proto: WardrobeBlackFilled entities: - uid: 13885 @@ -181538,18 +182164,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - proto: WardrobeBlueFilled entities: - uid: 16368 @@ -181577,18 +182193,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -181623,18 +182229,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - proto: WardrobeGreyFilled entities: - uid: 13886 @@ -181648,18 +182244,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 21615 components: - type: Transform @@ -181671,18 +182257,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - proto: WardrobeMixedFilled entities: - uid: 6927 @@ -181696,18 +182272,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 13888 components: - type: Transform @@ -181719,18 +182285,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - proto: WardrobePinkFilled entities: - uid: 6926 @@ -181744,18 +182300,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - proto: WardrobePrisonFilled entities: - uid: 7778 @@ -181781,18 +182327,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - proto: WardrobeScienceFilled entities: - uid: 21412 @@ -181806,18 +182342,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -181843,18 +182369,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - type: ContainerContainer containers: EntityStorageComponent: !type:Container @@ -181882,18 +182398,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - uid: 13911 components: - type: Transform @@ -181905,18 +182411,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - proto: WardrobeYellowFilled entities: - uid: 6920 @@ -181930,18 +182426,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 5.001885 + Nitrogen: 18.816614 - proto: WarningAir entities: - uid: 22914 @@ -182697,16 +183183,22 @@ entities: - type: Transform pos: -31.5,41.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 12 components: - type: Transform pos: -29.5,41.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2030 components: - type: Transform pos: 58.5,-49.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 6249 components: - type: MetaData @@ -182715,6 +183207,8 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7107 components: - type: MetaData @@ -182723,6 +183217,8 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7119 components: - type: MetaData @@ -182731,6 +183227,8 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,13.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7152 components: - type: MetaData @@ -182739,6 +183237,8 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,10.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7170 components: - type: MetaData @@ -182747,23 +183247,31 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,-2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7303 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,39.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7793 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,51.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9108 components: - type: Transform pos: -4.5,29.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - type: DeviceLinkSource linkedPorts: 9095: @@ -182777,6 +183285,8 @@ entities: - type: Transform pos: -5.5,29.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - type: DeviceLinkSource linkedPorts: 9095: @@ -182791,12 +183301,16 @@ entities: rot: 3.141592653589793 rad pos: 20.5,27.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9969 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,12.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 10755 components: - type: MetaData @@ -182805,12 +183319,16 @@ entities: rot: -1.5707963267948966 rad pos: 60.5,-5.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13452 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13541 components: - type: MetaData @@ -182818,6 +183336,8 @@ entities: - type: Transform pos: -22.5,3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13542 components: - type: MetaData @@ -182825,6 +183345,8 @@ entities: - type: Transform pos: -19.5,3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20373 components: - type: MetaData @@ -182833,6 +183355,8 @@ entities: rot: 3.141592653589793 rad pos: 62.5,-16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20374 components: - type: MetaData @@ -182841,6 +183365,8 @@ entities: rot: 3.141592653589793 rad pos: 70.5,-16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20375 components: - type: MetaData @@ -182849,18 +183375,24 @@ entities: rot: 1.5707963267948966 rad pos: 64.5,-23.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 25650 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,39.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28702 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,31.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource @@ -182880,6 +183412,8 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource @@ -182899,6 +183433,8 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,33.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource @@ -182929,6 +183465,8 @@ entities: - type: Transform pos: 30.5,-8.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: WindoorCargoLocked entities: - uid: 8182 @@ -182937,23 +183475,31 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,-17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 14511 components: - type: Transform pos: -24.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 14957 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 14958 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-15.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 14983 components: - type: MetaData @@ -182962,6 +183508,8 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,-18.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 14984 components: - type: MetaData @@ -182970,12 +183518,16 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,-22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22422 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-15.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: WindoorHydroponicsLocked entities: - uid: 10633 @@ -182986,6 +183538,8 @@ entities: rot: 3.141592653589793 rad pos: 47.5,-10.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 10634 components: - type: MetaData @@ -182994,6 +183548,8 @@ entities: rot: 3.141592653589793 rad pos: 48.5,-10.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: WindoorKitchenHydroponicsLocked entities: - uid: 9856 @@ -183002,6 +183558,8 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,-6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: WindoorKitchenLocked entities: - uid: 10451 @@ -183012,6 +183570,8 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-7.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: WindoorSecure entities: - uid: 13914 @@ -183020,6 +183580,8 @@ entities: rot: 3.141592653589793 rad pos: -57.5,-17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: WindoorSecureArmoryLocked entities: - uid: 9091 @@ -183028,12 +183590,16 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,33.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9092 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,33.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource @@ -183053,6 +183619,8 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource @@ -183072,6 +183640,8 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,31.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource @@ -183091,6 +183661,8 @@ entities: rot: 3.141592653589793 rad pos: -4.5,29.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - type: DeviceLinkSink invokeCounter: 1 - uid: 9096 @@ -183099,6 +183671,8 @@ entities: rot: 3.141592653589793 rad pos: -5.5,29.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - type: DeviceLinkSink invokeCounter: 1 - proto: WindoorSecureBrigLocked @@ -183108,23 +183682,31 @@ entities: - type: Transform pos: -14.5,36.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8929 components: - type: Transform pos: -7.5,18.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9056 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9103 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,33.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: WindoorSecureChemistryLocked entities: - uid: 1758 @@ -183135,6 +183717,8 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2560 components: - type: MetaData @@ -183143,6 +183727,8 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-23.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2563 components: - type: MetaData @@ -183151,17 +183737,23 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-19.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3002 components: - type: Transform pos: 20.5,-15.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 11570 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-23.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: WindoorSecureCommandLocked entities: - uid: 6394 @@ -183169,22 +183761,30 @@ entities: - type: Transform pos: 0.5,-20.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 15490 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-18.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 24941 components: - type: Transform pos: -1.5,-20.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 27823 components: - type: Transform pos: -0.5,-15.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: WindoorSecureEngineeringLocked entities: - uid: 111 @@ -183193,18 +183793,24 @@ entities: rot: 3.141592653589793 rad pos: -5.5,5.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3730 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-43.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 17660 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-42.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: WindoorSecureHeadOfPersonnelLocked entities: - uid: 6248 @@ -183213,6 +183819,8 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: WindoorSecureMedicalLocked entities: - uid: 2215 @@ -183221,24 +183829,32 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,-19.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 25888 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-19.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 25889 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-19.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 25890 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-19.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: WindoorSecureScienceLocked entities: - uid: 2317 @@ -183247,6 +183863,8 @@ entities: rot: 3.141592653589793 rad pos: 73.5,-55.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20183 components: - type: MetaData @@ -183255,6 +183873,8 @@ entities: rot: -1.5707963267948966 rad pos: 75.5,-21.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20359 components: - type: MetaData @@ -183262,6 +183882,8 @@ entities: - type: Transform pos: 62.5,-16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20360 components: - type: MetaData @@ -183270,6 +183892,8 @@ entities: rot: -1.5707963267948966 rad pos: 64.5,-23.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20361 components: - type: MetaData @@ -183277,18 +183901,24 @@ entities: - type: Transform pos: 70.5,-16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20519 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-37.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 21258 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-23.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: WindoorSecureSecurityLocked entities: - uid: 12330 @@ -183299,11 +183929,15 @@ entities: rot: 3.141592653589793 rad pos: -58.5,2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 25968 components: - type: Transform pos: 79.5,-4.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: Window entities: - uid: 526 @@ -183311,476 +183945,666 @@ entities: - type: Transform pos: -62.5,-0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 527 components: - type: Transform pos: -62.5,-1.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 558 components: - type: Transform pos: -67.5,11.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 668 components: - type: Transform pos: -62.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 685 components: - type: Transform pos: -62.5,-2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 707 components: - type: Transform pos: -46.5,0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 709 components: - type: Transform pos: -44.5,0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 713 components: - type: Transform pos: -37.5,0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 728 components: - type: Transform pos: -39.5,0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1052 components: - type: Transform pos: 64.5,8.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1061 components: - type: Transform pos: 61.5,8.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1452 components: - type: Transform pos: -32.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1453 components: - type: Transform pos: -34.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1471 components: - type: Transform pos: -29.5,-19.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1475 components: - type: Transform pos: -29.5,-22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1739 components: - type: Transform pos: 86.5,-37.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1740 components: - type: Transform pos: 85.5,-37.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1750 components: - type: Transform pos: 37.5,-27.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 1781 components: - type: Transform pos: 31.5,-15.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2224 components: - type: Transform pos: 29.5,-15.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2250 components: - type: Transform pos: 52.5,-38.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2490 components: - type: Transform pos: 24.5,-26.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2491 components: - type: Transform pos: 26.5,-31.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2530 components: - type: Transform pos: 64.5,-22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2531 components: - type: Transform pos: 63.5,-25.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2532 components: - type: Transform pos: 61.5,-25.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2533 components: - type: Transform pos: 68.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2534 components: - type: Transform pos: 68.5,-29.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2535 components: - type: Transform pos: 68.5,-30.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2538 components: - type: Transform pos: 67.5,-49.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2539 components: - type: Transform pos: 65.5,-49.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2546 components: - type: Transform pos: 27.5,-26.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2547 components: - type: Transform pos: 24.5,-31.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2558 components: - type: Transform pos: 30.5,-15.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2749 components: - type: Transform pos: 57.5,-11.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2750 components: - type: Transform pos: 59.5,-11.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2751 components: - type: Transform pos: 61.5,-11.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2752 components: - type: Transform pos: 66.5,-11.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2753 components: - type: Transform pos: 67.5,-11.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2754 components: - type: Transform pos: 68.5,-11.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2755 components: - type: Transform pos: 69.5,-11.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2756 components: - type: Transform pos: 70.5,-11.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2757 components: - type: Transform pos: 71.5,-11.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2758 components: - type: Transform pos: 72.5,-11.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2881 components: - type: Transform pos: 74.5,-7.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3181 components: - type: Transform pos: 78.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3182 components: - type: Transform pos: 35.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3183 components: - type: Transform pos: 34.5,-61.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3662 components: - type: Transform pos: 49.5,-1.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3663 components: - type: Transform pos: 27.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4245 components: - type: Transform pos: 59.5,-53.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4269 components: - type: Transform pos: 61.5,-53.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5237 components: - type: Transform pos: 57.5,-53.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7236 components: - type: Transform pos: 23.5,-11.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7563 components: - type: Transform pos: 18.5,12.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7565 components: - type: Transform pos: 18.5,9.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7956 components: - type: Transform pos: 17.5,-9.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7958 components: - type: Transform pos: -18.5,-21.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7959 components: - type: Transform pos: -18.5,-22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7960 components: - type: Transform pos: -18.5,-25.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7961 components: - type: Transform pos: -18.5,-26.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8030 components: - type: Transform pos: 17.5,-6.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 10533 components: - type: Transform pos: 47.5,-1.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 10788 components: - type: Transform pos: 70.5,-0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 10789 components: - type: Transform pos: 68.5,-0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13741 components: - type: Transform pos: -20.5,8.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13742 components: - type: Transform pos: -21.5,8.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 14197 components: - type: Transform pos: -40.5,-11.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 14488 components: - type: Transform pos: -19.5,-12.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 16152 components: - type: Transform pos: -43.5,-10.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 16156 components: - type: Transform pos: -42.5,-10.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 16170 components: - type: Transform pos: -40.5,-12.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 17852 components: - type: Transform pos: 40.5,-30.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 17858 components: - type: Transform pos: 41.5,-30.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 17867 components: - type: Transform pos: 39.5,-30.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 18566 components: - type: Transform pos: 38.5,-25.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 18711 components: - type: Transform pos: 38.5,-35.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 18721 components: - type: Transform pos: 38.5,-34.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 18743 components: - type: Transform pos: 38.5,-36.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 18957 components: - type: Transform pos: 42.5,-26.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 18978 components: - type: Transform pos: 42.5,-29.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19025 components: - type: Transform pos: 27.5,-32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19049 components: - type: Transform pos: 34.5,-32.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19050 components: - type: Transform pos: 37.5,-33.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19187 components: - type: Transform pos: 43.5,-24.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19190 components: - type: Transform pos: 43.5,-22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20058 components: - type: Transform pos: 37.5,-28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20692 components: - type: Transform pos: 56.5,-38.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 21355 components: - type: Transform pos: 57.5,-38.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 21369 components: - type: Transform pos: 51.5,-38.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22007 components: - type: Transform pos: 17.5,-3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 25919 components: - type: Transform pos: 41.5,-25.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26617 components: - type: Transform pos: 15.5,-37.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 27606 components: - type: Transform pos: 44.5,-1.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 27607 components: - type: Transform pos: 42.5,-1.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: WindowDirectional entities: - uid: 6916 @@ -183789,185 +184613,251 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-1.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7026 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7044 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7052 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-0.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7070 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-1.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7085 components: - type: Transform pos: 23.5,-2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7100 components: - type: Transform pos: 24.5,-2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7126 components: - type: Transform pos: 21.5,-2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7145 components: - type: Transform pos: 20.5,-2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7212 components: - type: Transform pos: 22.5,-2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7220 components: - type: Transform pos: 19.5,-2.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9219 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,28.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9225 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,27.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9262 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,27.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9432 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,27.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9433 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,26.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9435 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,25.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 11383 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,19.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 11384 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13855 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,1.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 14928 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,1.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 16365 components: - type: Transform pos: 59.5,-49.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 16366 components: - type: Transform pos: 57.5,-49.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 17715 components: - type: Transform pos: 60.5,-49.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 17843 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,1.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 18309 components: - type: Transform pos: -43.5,-17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 20864 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 21256 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 21257 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-24.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 24877 components: - type: Transform pos: -41.5,-17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 25896 components: - type: Transform pos: -42.5,-17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 25946 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 25948 components: - type: Transform pos: -42.5,1.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: WindowFrostedDirectional entities: - uid: 6989 @@ -183975,49 +184865,67 @@ entities: - type: Transform pos: 19.5,-4.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13476 components: - type: Transform pos: 20.5,-7.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 15731 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-36.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 15907 components: - type: Transform pos: 18.5,-7.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 17391 components: - type: Transform pos: 19.5,-7.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 17393 components: - type: Transform pos: 20.5,-4.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 18656 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-36.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 19332 components: - type: Transform pos: 18.5,-4.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26598 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-36.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: WindowReinforcedDirectional entities: - uid: 146 @@ -184026,616 +184934,832 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,13.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 147 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,14.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 149 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 294 components: - type: Transform pos: -10.5,18.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 387 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,23.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 388 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,24.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 473 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 480 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,13.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 492 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,12.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 687 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 958 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2171 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-55.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2345 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-18.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 2582 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-55.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 3018 components: - type: Transform pos: 35.5,-68.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4374 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-20.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4375 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-20.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 4841 components: - type: Transform pos: 1.5,-46.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5104 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,40.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5448 components: - type: Transform pos: -3.5,18.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5461 components: - type: Transform pos: -6.5,18.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5698 components: - type: Transform pos: 7.5,-24.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5702 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-24.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5703 components: - type: Transform pos: 8.5,-24.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5714 components: - type: Transform pos: 6.5,-24.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 5866 components: - type: Transform pos: -8.5,18.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7034 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,13.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7060 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,13.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7061 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,12.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7063 components: - type: Transform pos: 23.5,10.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7075 components: - type: Transform pos: 24.5,10.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7117 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,10.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7131 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,11.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7139 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,13.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7157 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,13.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7211 components: - type: Transform pos: 21.5,10.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7218 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,13.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7222 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,12.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7230 components: - type: Transform pos: 22.5,10.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7240 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,11.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7336 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,50.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 7792 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,40.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8630 components: - type: Transform pos: -4.5,18.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8643 components: - type: Transform pos: 10.5,47.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8730 components: - type: Transform pos: -5.5,18.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8775 components: - type: Transform pos: -9.5,18.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8807 components: - type: Transform pos: -11.5,18.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8839 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8875 components: - type: Transform pos: -20.5,22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8975 components: - type: Transform pos: -17.5,22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 8976 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9131 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 9824 components: - type: Transform pos: -14.5,-26.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 11540 components: - type: Transform pos: -8.5,3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 11708 components: - type: Transform pos: 50.5,17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 12223 components: - type: Transform pos: -54.5,12.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 12386 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 12387 components: - type: Transform pos: -53.5,12.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13453 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,16.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13454 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,15.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13534 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-23.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13535 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-24.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13536 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-25.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13537 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-26.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13538 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-26.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13544 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-25.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13589 components: - type: Transform pos: -55.5,12.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13619 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-24.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13620 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-23.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13660 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-23.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13695 components: - type: Transform pos: -56.5,12.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13830 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,9.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13912 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13913 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-17.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13915 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-13.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 13919 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-11.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 14086 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-12.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 14155 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-10.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 15606 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-23.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 15934 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-62.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 18920 components: - type: Transform pos: 22.5,-20.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 21305 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,-33.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 21306 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,-34.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 21307 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,-35.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 21433 components: - type: Transform pos: 71.5,-59.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22607 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-20.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22608 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-19.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22609 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-19.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22610 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-20.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 22611 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-19.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 23913 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-20.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 25651 components: - type: Transform pos: -18.5,22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 25652 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 25653 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,22.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 25885 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-19.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 25886 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-19.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 25887 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-19.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26260 components: - type: Transform pos: 21.5,-20.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26856 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,-29.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 26857 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,-31.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 27435 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-66.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 27436 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-65.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 27604 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-19.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 27605 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-18.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28122 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-20.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28123 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-20.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28124 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-20.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - uid: 28315 components: - type: Transform pos: -14.5,3.5 parent: 8364 + - type: DeltaPressure + gridUid: 8364 - proto: Wirecutter entities: - uid: 11686 diff --git a/Resources/Maps/exo.yml b/Resources/Maps/exo.yml index 512da6036f..e3fe78ff28 100644 --- a/Resources/Maps/exo.yml +++ b/Resources/Maps/exo.yml @@ -4,8 +4,8 @@ meta: engineVersion: 266.0.0 forkId: "" forkVersion: "" - time: 08/31/2025 08:35:05 - entityCount: 19817 + time: 09/10/2025 20:15:35 + entityCount: 19959 maps: - 1 grids: @@ -157,11 +157,11 @@ entities: version: 7 0,-4: ind: 0,-4 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAArAAAAAAMHKwAAAAACB4EAAAAAAAAYAAAAAAAAgQAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAACAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAKwAAAAACBysAAAAAAgeBAAAAAAAAGAAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAAAACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAABkAAAAAAwCBAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAABvAAAAAAAAbwAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAABACAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAACACAAAAAAAAAgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAABvAAAAAAAAIAAAAAADACAAAAAAAgAgAAAAAAEAIAAAAAADACAAAAAAAwAgAAAAAAAAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAbwAAAAAAAIEAAAAAAAAgAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAAAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgCBAAAAAAAAIAAAAAACACAAAAAAAgAgAAAAAAAALgAAAAAAAi0AAAAAAAMtAAAAAAADGAAAAAAAAC4AAAAAAAAtAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAyAAAAAAAAAgAAAAAAEAIAAAAAACAC0AAAAAAAAlAAAAAAEAKwAAAAAAABgAAAAAAAArAAAAAAEAKwAAAAACACsAAAAAAQArAAAAAAEAKwAAAAACACsAAAAAAwArAAAAAAMAKwAAAAADACsAAAAAAwAgAAAAAAIAIAAAAAADACAAAAAAAQAtAAAAAAAALQAAAAAAAC4AAAAAAAIYAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAAMAAAAAAAADAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAlAAAAAAIAJQAAAAADACUAAAAAAwAlAAAAAAIAJQAAAAAAAIEAAAAAAAAgAAAAAAEALgAAAAAAAi0AAAAAAAMDAAAAAAAAAwAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAgAAAAAAIAJQAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAABACUAAAAAAwCBAAAAAAAAIAAAAAABAC0AAAAAAAAlAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAACUAAAAAAgAgAAAAAAMAIAAAAAABACAAAAAAAAAlAAAAAAEAgQAAAAAAACAAAAAAAwAuAAAAAAABLQAAAAAAAw== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAArAAAAAAMHKwAAAAACB4EAAAAAAAAYAAAAAAAAgQAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAACAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAKwAAAAACBysAAAAAAgeBAAAAAAAAGAAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAAAACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAABkAAAAAAwCBAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAABvAAAAAAAAbwAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAABACAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAACACAAAAAAAAAgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAABvAAAAAAAAIAAAAAADACAAAAAAAgAgAAAAAAEAIAAAAAADACAAAAAAAwAgAAAAAAAAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAbwAAAAAAAIEAAAAAAAAgAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAAAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgCBAAAAAAAAIAAAAAACACAAAAAAAgAgAAAAAAAALgAAAAAAAi0AAAAAAAMtAAAAAAADGAAAAAAAAC4AAAAAAAAtAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAyAAAAAAAAAgAAAAAAEAIAAAAAACAC0AAAAAAAAlAAAAAAEAKwAAAAAAABgAAAAAAAArAAAAAAEAKwAAAAACACsAAAAAAQArAAAAAAEAKwAAAAACACsAAAAAAwArAAAAAAMAKwAAAAADACsAAAAAAwAgAAAAAAIAIAAAAAADACAAAAAAAQAtAAAAAAAALQAAAAAAAC4AAAAAAAIYAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAAMAAAAAAAADAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAlAAAAAAIAJQAAAAADACUAAAAAAwAlAAAAAAIAJQAAAAAAAIEAAAAAAAAgAAAAAAEALgAAAAAAAi0AAAAAAAMDAAAAAAAAAwAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAgAAAAAAIAJQAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAABACUAAAAAAwCBAAAAAAAAIAAAAAABAC0AAAAAAAAlAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAACUAAAAAAgAgAAAAAAMAIAAAAAABACAAAAAAAAAlAAAAAAEAgQAAAAAAACAAAAAAAwAuAAAAAAABLQAAAAAAAw== version: 7 1,-4: ind: 1,-4 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAAIEAAAAAAAAgAAAAAAEAIAAAAAADAIEAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAACBAAAAAAAAIAAAAAACACAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACsAAAAAAAAgAAAAAAEAgQAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAgAAAAAAEAIAAAAAACACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAGAAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADLgAAAAAAABgAAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAAOBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAIuAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAABLgAAAAAAA4EAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAIuAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAACLQAAAAAAAy4AAAAAAAMYAAAAAAAAGAAAAAAAAC4AAAAAAAEuAAAAAAADgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAACHgAAAAAAAB4AAAAAAAAeAAAAAAAALgAAAAAAAxgAAAAAAAAYAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADABgAAAAAAAAtAAAAAAADLgAAAAAAABgAAAAAAAAuAAAAAAACHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAuAAAAAAADGAAAAAAAAC4AAAAAAAEtAAAAAAADGAAAAAAAACsAAAAAAwAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAgAAAAAAMAGAAAAAAAAC0AAAAAAAMuAAAAAAADGAAAAAAAAC4AAAAAAAEeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAC4AAAAAAAAYAAAAAAAALgAAAAAAAi0AAAAAAAMYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAABgAAAAAAAAYAAAAAAAALgAAAAAAAR4AAAAAAAAeAAAAAAAAHgAAAAAAAC4AAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMuAAAAAAADgQAAAAAAAC4AAAAAAAEuAAAAAAADGAAAAAAAABgAAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAIuAAAAAAAAgQAAAAAAACAAAAAAAAAlAAAAAAAALQAAAAAAAIEAAAAAAAAuAAAAAAADLgAAAAAAAS4AAAAAAAMYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAIuAAAAAAAALgAAAAAAAoEAAAAAAAAgAAAAAAEALQAAAAAAAy4AAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAAMYAAAAAAAALgAAAAAAAi0AAAAAAAMuAAAAAAAALgAAAAAAAi4AAAAAAACBAAAAAAAAIAAAAAABAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAAIEAAAAAAAAeAAAAAAAAIAAAAAADAIEAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAACBAAAAAAAAHgAAAAAAACAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACsAAAAAAAAgAAAAAAEAgQAAAAAAAB4AAAAAAAAgAAAAAAMAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAeAAAAAAAAIAAAAAACAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAGAAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADLgAAAAAAABgAAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAAOBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAIuAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAABLgAAAAAAA4EAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAIuAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAACLQAAAAAAAy4AAAAAAAMYAAAAAAAAGAAAAAAAAC4AAAAAAAEuAAAAAAADgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAACHgAAAAAAAB4AAAAAAAAeAAAAAAAALgAAAAAAAxgAAAAAAAAYAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADABgAAAAAAAAtAAAAAAADLgAAAAAAABgAAAAAAAAuAAAAAAACHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAuAAAAAAADGAAAAAAAAC4AAAAAAAEtAAAAAAADGAAAAAAAACsAAAAAAwAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAgAAAAAAMAGAAAAAAAAC0AAAAAAAMuAAAAAAADGAAAAAAAAC4AAAAAAAEeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAC4AAAAAAAAYAAAAAAAALgAAAAAAAi0AAAAAAAMYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAABgAAAAAAAAYAAAAAAAALgAAAAAAAR4AAAAAAAAeAAAAAAAAHgAAAAAAAC4AAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMuAAAAAAADgQAAAAAAAC4AAAAAAAEuAAAAAAADGAAAAAAAABgAAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAIuAAAAAAAAgQAAAAAAACAAAAAAAAAlAAAAAAAALQAAAAAAAIEAAAAAAAAuAAAAAAADLgAAAAAAAS4AAAAAAAMYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAIuAAAAAAAALgAAAAAAAoEAAAAAAAAgAAAAAAEALQAAAAAAAy4AAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAAMYAAAAAAAALgAAAAAAAi0AAAAAAAMuAAAAAAAALgAAAAAAAi4AAAAAAACBAAAAAAAAIAAAAAABAA== version: 7 -1,-4: ind: -1,-4 @@ -261,7 +261,7 @@ entities: version: 7 1,-5: ind: 1,-5 - tiles: LQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACsAAAAAAQArAAAAAAEAKwAAAAACACsAAAAAAAArAAAAAAEAKwAAAAABACsAAAAAAwArAAAAAAAAJQAAAAABAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAysAAAAAAQctAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAoEAAAAAAAAPAAAAAAEADwAAAAAAAA8AAAAAAACBAAAAAAAALgAAAAAAAy0AAAAAAAArAAAAAAIHLQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAADwAAAAACAA8AAAAAAgAPAAAAAAMAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAADwAAAAADAA8AAAAAAgAPAAAAAAMADwAAAAADAA8AAAAAAQCBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAA8AAAAAAgAPAAAAAAIADwAAAAABAA8AAAAAAQAPAAAAAAIAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAgAAAAAAEAIAAAAAAAAIEAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAIADwAAAAADAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAADwAAAAADAA8AAAAAAwAPAAAAAAMADwAAAAAAAA8AAAAAAgCBAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAA8AAAAAAQAPAAAAAAMADwAAAAADAA8AAAAAAAAkAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAAAACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAAAgAAAAAAIAIAAAAAACACAAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAADACAAAAAAAAAeAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHLgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAACAAAAAAAAAgAAAAAAIAIAAAAAADACAAAAAAAgAgAAAAAAMAHgAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHLQAAAAAAAIEAAAAAAAAgAAAAAAAAIAAAAAAAAIEAAAAAAAAKAAAAAAAAgQAAAAAAAA== + tiles: LQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACsAAAAAAQArAAAAAAEAKwAAAAACACsAAAAAAAArAAAAAAEAKwAAAAABACsAAAAAAwArAAAAAAAAJQAAAAABAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAysAAAAAAQctAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAoEAAAAAAAAPAAAAAAEADwAAAAAAAA8AAAAAAACBAAAAAAAALgAAAAAAAy0AAAAAAAArAAAAAAIHLQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAADwAAAAACAA8AAAAAAgAPAAAAAAMAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAADwAAAAADAA8AAAAAAgAPAAAAAAMADwAAAAADAA8AAAAAAQCBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAA8AAAAAAgAPAAAAAAIADwAAAAABAA8AAAAAAQAPAAAAAAIAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAgAAAAAAEAIAAAAAAAAIEAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAIADwAAAAADAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAADwAAAAADAA8AAAAAAwAPAAAAAAMADwAAAAAAAA8AAAAAAgCBAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAA8AAAAAAQAPAAAAAAMADwAAAAADAA8AAAAAAAAkAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAAAACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAAAgAAAAAAIAIAAAAAACACAAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAADACAAAAAAAAAeAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHLgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAACAAAAAAAAAgAAAAAAIAIAAAAAADACAAAAAAAgAgAAAAAAMAHgAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHLQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAAIEAAAAAAAAKAAAAAAAAgQAAAAAAAA== version: 7 2,-6: ind: 2,-6 @@ -269,7 +269,7 @@ entities: version: 7 2,-5: ind: 2,-5 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAACBAAAAAAAACgAAAAAAAAoAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAACBAAAAAAAACgAAAAAAAAoAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 2,-7: ind: 2,-7 @@ -277,7 +277,7 @@ entities: version: 7 3,-5: ind: 3,-5 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 4,-5: ind: 4,-5 @@ -301,11 +301,11 @@ entities: version: 7 3,-4: ind: 3,-4 - tiles: CgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAGAAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAACACUAAAAAAwAlAAAAAAIAJQAAAAABACUAAAAAAgAlAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAAAJQAAAAABACUAAAAAAAAlAAAAAAEAJQAAAAAAACUAAAAAAgAlAAAAAAIAJQAAAAADAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAADACUAAAAAAAAlAAAAAAEAJQAAAAACACUAAAAAAwAlAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAMAJQAAAAADACUAAAAAAgAlAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAC0AAAAAAAOBAAAAAAAAJQAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAFAAAAAAAgBEAAAAAAAARAAAAAAAAEQAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABQAAAAAAIAUAAAAAADAFAAAAAAAwBQAAAAAAMAUAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAUAAAAAACAFAAAAAAAQBQAAAAAAEAUAAAAAACAFAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAFAAAAAAAQBQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAMAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAGAAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAACACUAAAAAAwAlAAAAAAIAJQAAAAABACUAAAAAAgAlAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAAAJQAAAAABACUAAAAAAAAlAAAAAAEAJQAAAAAAACUAAAAAAgAlAAAAAAIAJQAAAAADAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAADACUAAAAAAAAlAAAAAAEAJQAAAAACACUAAAAAAwAlAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAMAJQAAAAADACUAAAAAAgAlAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAC0AAAAAAAOBAAAAAAAAJQAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAFAAAAAAAgBEAAAAAAAARAAAAAAAAEQAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABQAAAAAAIAUAAAAAADAFAAAAAAAwBQAAAAAAMAUAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAUAAAAAACAFAAAAAAAQBQAAAAAAEAUAAAAAACAFAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAFAAAAAAAQBQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAMAgQAAAAAAAA== version: 7 4,-3: ind: 4,-3 - tiles: YAAAAAADAGAAAAAAAQBgAAAAAAIAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAABACAAAAAAAgAgAAAAAAAAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIAIAAAAAABAGAAAAAAAQBgAAAAAAAAYAAAAAADAIEAAAAAAAAgAAAAAAIAIAAAAAACACAAAAAAAwAgAAAAAAAAIAAAAAABACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAQBgAAAAAAMAYAAAAAACAGAAAAAAAwBgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACYAAAAAAgAmAAAAAAIAYAAAAAABAGAAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAMAYAAAAAACAGAAAAAAAABgAAAAAAEAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAACAGAAAAAAAwBgAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAMAgQAAAAAAAIEAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAIAgQAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAEAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAACAGAAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAIAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAgBgAAAAAAMAYAAAAAABAGAAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAMAgQAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAAAAGAAAAAAAgBgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAEAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAADAIEAAAAAAACBAAAAAAAAIAAAAAADAEQAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAgCBAAAAAAAAIAAAAAABACAAAAAAAQBEAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAEAIAAAAAAAACAAAAAAAgAgAAAAAAEARAAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAABACAAAAAAAAAgAAAAAAAAIAAAAAABACAAAAAAAwCBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAgCBAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: YAAAAAADAGAAAAAAAQBgAAAAAAIAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAABACAAAAAAAgAgAAAAAAAAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIAIAAAAAABAGAAAAAAAQBgAAAAAAAAYAAAAAADAIEAAAAAAAAgAAAAAAIAIAAAAAACACAAAAAAAwAgAAAAAAAAIAAAAAABACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAQBgAAAAAAMAYAAAAAACAGAAAAAAAwBgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACYAAAAAAgAmAAAAAAIAYAAAAAABAGAAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAMAYAAAAAACAGAAAAAAAABgAAAAAAEAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAACAGAAAAAAAwBgAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAMAgQAAAAAAAIEAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAIAgQAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAEAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAACAGAAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAIAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAgBgAAAAAAMAYAAAAAABAGAAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAMAgQAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAAAAGAAAAAAAgBgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAEAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAADAIEAAAAAAACBAAAAAAAAIAAAAAADAEQAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAgCBAAAAAAAAIAAAAAABACAAAAAAAQBEAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAEAIAAAAAAAACAAAAAAAgAgAAAAAAEARAAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAABACAAAAAAAAAgAAAAAAAAIAAAAAABACAAAAAAAwCBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAgCBAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 5,-3: ind: 5,-3 @@ -766,6 +766,11 @@ entities: id: BrickCornerOverlayNE decals: 546: 6,-7 + - node: + color: '#DE3A3A96' + id: BrickCornerOverlayNE + decals: + 5233: 61,-20 - node: color: '#FF940093' id: BrickCornerOverlayNE @@ -784,6 +789,11 @@ entities: id: BrickCornerOverlayNW decals: 513: -4,1 + - node: + color: '#DE3A3A96' + id: BrickCornerOverlayNW + decals: + 5230: 58,-20 - node: color: '#FF940093' id: BrickCornerOverlayNW @@ -799,6 +809,11 @@ entities: id: BrickCornerOverlaySE decals: 514: 6,1 + - node: + color: '#DE3A3A96' + id: BrickCornerOverlaySE + decals: + 5234: 61,-22 - node: color: '#FF940093' id: BrickCornerOverlaySE @@ -815,6 +830,11 @@ entities: id: BrickCornerOverlaySW decals: 536: -4,-7 + - node: + color: '#DE3A3A96' + id: BrickCornerOverlaySW + decals: + 5236: 58,-22 - node: color: '#FF940093' id: BrickCornerOverlaySW @@ -870,6 +890,11 @@ entities: 2516: 15,-90 2517: 15,-91 2518: 15,-86 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayE + decals: + 5227: 61,-21 - node: color: '#FF940093' id: BrickLineOverlayE @@ -911,6 +936,8 @@ entities: decals: 4616: 61,-42 4617: 62,-42 + 5231: 59,-20 + 5232: 60,-20 - node: color: '#FA750096' id: BrickLineOverlayN @@ -976,6 +1003,8 @@ entities: decals: 4618: 55,-26 4619: 56,-26 + 5225: 59,-22 + 5235: 60,-22 - node: color: '#FF940093' id: BrickLineOverlayS @@ -1027,6 +1056,11 @@ entities: 2522: 14,-90 2523: 14,-91 2527: 21,-83 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayW + decals: + 5229: 58,-21 - node: color: '#FF940093' id: BrickLineOverlayW @@ -2463,7 +2497,6 @@ entities: id: MiniTileDarkInnerSe decals: 4190: 34,-29 - 4517: 5,-52 4960: 37,-77 - node: color: '#FFFFFFFF' @@ -2517,6 +2550,7 @@ entities: 4193: 35,-29 4383: 35,-18 4604: 34,-77 + 5222: 59,-24 - node: color: '#C8C8FFFF' id: MiniTileDarkLineS @@ -2571,11 +2605,6 @@ entities: decals: 1376: -20,-36 1377: -20,-35 - - node: - color: '#0000006C' - id: MiniTileDiagonalCheckerAOverlay - decals: - 2877: -20,-29 - node: color: '#D381C933' id: MiniTileEndOverlayE @@ -2789,12 +2818,6 @@ entities: id: MiniTileLineOverlayN decals: 4384: 35,-18 - - node: - color: '#9FED5896' - id: MiniTileLineOverlayN - decals: - 1442: -27,-12 - 3399: 66,-24 - node: color: '#D10000A3' id: MiniTileLineOverlayN @@ -2807,6 +2830,7 @@ entities: decals: 4751: 70,-53 4752: 71,-53 + 5223: 59,-24 - node: color: '#00000056' id: MiniTileLineOverlayS @@ -2919,12 +2943,10 @@ entities: 252: 26,-92 253: 19,-92 254: 28,-92 - 1441: -27,-12 1877: 44,-19 1878: 45,-19 1879: 47,-19 1880: 48,-19 - 3398: 66,-24 4344: 71,-45 4347: 58,-32 4348: 59,-32 @@ -3026,14 +3048,13 @@ entities: color: '#EFB34196' id: QuarterTileOverlayGreyscale decals: - 1094: -22,-60 - 1095: -22,-61 1096: -22,-62 1097: -23,-62 1098: -24,-62 1099: -25,-62 1100: -26,-62 1101: -27,-62 + 5243: -22,-60 - node: color: '#EFDB4196' id: QuarterTileOverlayGreyscale @@ -3111,13 +3132,13 @@ entities: id: QuarterTileOverlayGreyscale90 decals: 1090: -20,-60 - 1091: -20,-61 1092: -20,-62 1093: -20,-63 1102: -20,-64 1103: -19,-64 1104: -18,-64 1105: -17,-64 + 5246: -20,-61 - node: color: '#EFDB4196' id: QuarterTileOverlayGreyscale90 @@ -3146,6 +3167,13 @@ entities: 4555: 59,-45 4556: 60,-45 5178: -39,-11 + 5249: 28,-66 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 5237: 57,-22 - node: color: '#D4D4D496' id: StencilLetterA @@ -3270,17 +3298,41 @@ entities: 608: 15,-66 4356: 20,-26 4835: 39,-48 + 5244: 27,-66 + 5247: -22,-61 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarnBox + decals: + 5218: 57,-22 - node: color: '#48D256FF' id: WarnBoxGreyscale decals: 609: 15,-66 4836: 39,-48 + - node: + color: '#52E0C0FF' + id: WarnBoxGreyscale + decals: + 5248: -22,-61 - node: color: '#70D7FFFF' id: WarnBoxGreyscale decals: 585: 17,-66 + - node: + angle: 1.5707963267948966 rad + color: '#DE3A3AFF' + id: WarnBoxGreyscale + decals: + 5219: 57,-22 + - node: + color: '#EFD931FF' + id: WarnBoxGreyscale + decals: + 5245: 27,-66 - node: color: '#FA7500FF' id: WarnBoxGreyscale @@ -3449,7 +3501,6 @@ entities: 3011: 18,-42 3091: -18,-22 3113: -8,-22 - 4101: 47,-68 4571: 62,-44 - node: color: '#FFFFFFFF' @@ -3482,11 +3533,15 @@ entities: decals: 3159: -11,-36 4765: 82,-46 + 5208: 81,-48 + 5209: 81,-44 - node: color: '#D381C9FF' id: WarnFullGreyscale decals: 4768: 82,-46 + 5210: 81,-48 + 5211: 81,-44 - node: color: '#FFFFFFFF' id: WarnLineE @@ -3594,6 +3649,7 @@ entities: 3477: -17,-20 3479: -17,-17 3480: -18,-17 + 5213: 81,-45 - node: color: '#DE3A3AFF' id: WarnLineGreyscaleN @@ -3643,6 +3699,7 @@ entities: 3104: -20,-22 3114: -9,-22 3478: -17,-17 + 5212: 81,-47 - node: color: '#DE3A3AFF' id: WarnLineGreyscaleS @@ -3787,6 +3844,7 @@ entities: 5036: -7,-38 5037: -6,-38 5038: -5,-38 + 5207: 81,-47 - node: color: '#FFFFFFFF' id: WarnLineS @@ -3815,6 +3873,7 @@ entities: 5122: -30,-42 5123: -30,-50 5124: -30,-49 + 5238: 58,-20 - node: color: '#FFFFFFFF' id: WarnLineW @@ -3846,6 +3905,8 @@ entities: 5042: -7,-34 5043: -6,-34 5044: -5,-34 + 5192: 13,-43 + 5205: 81,-45 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -3897,38 +3958,35 @@ entities: 4627: 72,-50 - node: cleanable: True - color: '#008CE9FF' + color: '#2784BEFF' id: arrow decals: - 4085: 51,-69 + 5202: 53,-69 - node: cleanable: True angle: 3.141592653589793 rad - color: '#008CE9FF' + color: '#2784BEFF' id: arrow decals: - 4087: 47,-66 + 5201: 47,-67 - node: cleanable: True - color: '#D54E00FF' + color: '#B75310FF' id: arrow decals: - 4089: 49,-66 + 5203: 49,-67 - node: cleanable: True angle: 3.141592653589793 rad - color: '#D54E00FF' + color: '#B75310FF' id: arrow decals: - 4088: 50,-68 + 5204: 51,-69 - node: cleanable: True color: '#FFFFFFFF' id: burnt1 decals: - 2861: 50,-66 - 2862: 50,-65 - 3493: 53,-66 3494: 53,-67 4102: 45,-71 4106: 47,-72 @@ -3956,8 +4014,6 @@ entities: 3996: 52,-62 3997: 53,-63 3998: 53,-64 - 4069: 51,-68 - 4070: 50,-67 4073: 44,-71 4103: 46,-72 4949: -38,-80 @@ -4579,7 +4635,7 @@ entities: 6,-14: 0: 65531 6,-17: - 0: 46079 + 0: 15359 7,-16: 0: 48029 7,-15: @@ -4588,7 +4644,7 @@ entities: 7,-14: 0: 65523 7,-17: - 0: 55551 + 0: 51711 8,-16: 0: 271 2: 17408 @@ -5321,7 +5377,8 @@ entities: 12,-18: 0: 65535 12,-17: - 0: 16383 + 0: 4927 + 1: 2048 8,-26: 1: 32 0: 57344 @@ -5345,7 +5402,7 @@ entities: 12,-25: 0: 61183 12,-16: - 0: 3 + 0: 7 4: 2184 1: 8960 13,-20: @@ -5355,7 +5412,8 @@ entities: 13,-18: 0: 30583 13,-17: - 0: 10928 + 0: 2179 + 1: 768 13,-21: 1: 16179 13,-16: @@ -5782,7 +5840,7 @@ entities: 14,-7: 0: 61919 14,-6: - 0: 57103 + 0: 57231 14,-5: 0: 57119 14,-4: @@ -5981,108 +6039,31 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 21.824879 + Nitrogen: 82.10312 - volume: 2500 immutable: True - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + moles: {} - volume: 2500 temperature: 293.15 moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 6666.982 - volume: 2500 temperature: 293.15 moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Nitrogen: 6666.982 + - volume: 2500 + temperature: 293.15 + moles: {} - volume: 2500 temperature: 293.15 moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Plasma: 6666.982 - volume: 2500 temperature: 235 moles: - - 27.225372 - - 102.419266 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 27.225372 + Nitrogen: 102.419266 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -6429,7 +6410,7 @@ entities: - 18880 - 16165 - 7135 - - 8640 + - 16283 - 18857 - type: Fixtures fixtures: {} @@ -7055,6 +7036,7 @@ entities: - 8498 - 9715 - 2462 + - 15629 - type: Fixtures fixtures: {} - uid: 2110 @@ -7436,6 +7418,13 @@ entities: - 1112 - type: Fixtures fixtures: {} + - uid: 8743 + components: + - type: Transform + pos: 49.5,-64.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 9180 components: - type: Transform @@ -8080,14 +8069,6 @@ entities: - 8718 - type: Fixtures fixtures: {} - - uid: 19312 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-65.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 19400 components: - type: Transform @@ -8660,13 +8641,6 @@ entities: rot: -1.5707963267948966 rad pos: 72.5,-45.5 parent: 2 -- proto: AirlockEngineering - entities: - - uid: 1493 - components: - - type: Transform - pos: 18.5,-61.5 - parent: 2 - proto: AirlockEngineeringGlassLocked entities: - uid: 1894 @@ -8731,6 +8705,12 @@ entities: - type: Transform pos: -52.5,-22.5 parent: 2 + - uid: 1493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-61.5 + parent: 2 - uid: 1893 components: - type: Transform @@ -8883,17 +8863,16 @@ entities: 6008: - - DoorStatus - DoorBolt - - uid: 18769 + - uid: 15217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-66.5 + pos: 48.5,-63.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 5673: + 15205: - - DoorStatus - DoorBolt - proto: AirlockExternalGlassCargoLocked @@ -9142,18 +9121,6 @@ entities: 201: - - DoorStatus - DoorBolt - - uid: 5673 - components: - - type: Transform - pos: 53.5,-64.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 18769: - - - DoorStatus - - DoorBolt - uid: 6008 components: - type: Transform @@ -9176,6 +9143,18 @@ entities: 1487: - - DoorStatus - DoorBolt + - uid: 15205 + components: + - type: Transform + pos: 50.5,-63.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 15217: + - - DoorStatus + - DoorBolt - proto: AirlockExternalGlassShuttleArrivals entities: - uid: 13 @@ -10066,7 +10045,7 @@ entities: pos: 11.5,-30.5 parent: 2 - type: Door - secondsUntilStateChange: -231736.94 + secondsUntilStateChange: -244104.44 state: Opening - type: DeviceLinkSource lastSignals: @@ -10291,6 +10270,8 @@ entities: - type: Transform pos: 57.5,-19.5 parent: 2 + - type: DoorBolt + boltsDown: True - uid: 3023 components: - type: Transform @@ -10306,6 +10287,12 @@ entities: - type: Transform pos: 61.5,-29.5 parent: 2 + - uid: 16038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-22.5 + parent: 2 - proto: AirlockServiceGlassLocked entities: - uid: 3529 @@ -10414,7 +10401,7 @@ entities: pos: 34.5,-36.5 parent: 2 - type: Door - secondsUntilStateChange: -7234.6396 + secondsUntilStateChange: -19602.13 state: Opening - type: DeviceLinkSource lastSignals: @@ -11542,14 +11529,6 @@ entities: - type: Transform pos: -18.5,-32.5 parent: 2 -- proto: AlwaysPoweredlightGreen - entities: - - uid: 5683 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-56.5 - parent: 2 - proto: AmeController entities: - uid: 2283 @@ -12260,7 +12239,7 @@ entities: - uid: 18616 components: - type: Transform - pos: 78.645355,-43.3176 + pos: 79.448746,-47.504852 parent: 2 - proto: Ashtray entities: @@ -12289,7 +12268,7 @@ entities: - uid: 18617 components: - type: Transform - pos: 80.05838,-43.49481 + pos: 79.416626,-43.381744 parent: 2 - proto: AtmosDeviceFanDirectional entities: @@ -13243,6 +13222,11 @@ entities: - type: Transform pos: -15.5,-67.5 parent: 2 + - uid: 2528 + components: + - type: Transform + pos: 50.5,-61.5 + parent: 2 - uid: 3324 components: - type: Transform @@ -13263,11 +13247,6 @@ entities: - type: Transform pos: 61.5,-45.5 parent: 2 - - uid: 18451 - components: - - type: Transform - pos: 50.5,-61.5 - parent: 2 - proto: BlastDoorXeno entities: - uid: 313 @@ -13519,10 +13498,11 @@ entities: parent: 2 - proto: BookIanRanch entities: - - uid: 18032 + - uid: 15214 components: - type: Transform - pos: -38.614677,-55.22862 + rot: -1.5707963267948966 rad + pos: -38.482178,-55.18623 parent: 2 - proto: BookRandomStory entities: @@ -14117,16 +14097,29 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-18.5 parent: 2 + - uid: 15387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-66.5 + parent: 2 - uid: 15697 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-27.5 parent: 2 - - uid: 17653 + - uid: 16507 components: - type: Transform - pos: 50.5,-64.5 + rot: 1.5707963267948966 rad + pos: 57.5,-20.5 + parent: 2 + - uid: 16533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-20.5 parent: 2 - uid: 17828 components: @@ -14488,11 +14481,6 @@ entities: - type: Transform pos: -55.5,-22.5 parent: 2 - - uid: 2944 - components: - - type: Transform - pos: 50.5,-65.5 - parent: 2 - uid: 2962 components: - type: Transform @@ -14503,11 +14491,6 @@ entities: - type: Transform pos: 52.5,-56.5 parent: 2 - - uid: 3026 - components: - - type: Transform - pos: 51.5,-65.5 - parent: 2 - uid: 3027 components: - type: Transform @@ -14818,6 +14801,11 @@ entities: - type: Transform pos: 33.5,-19.5 parent: 2 + - uid: 3485 + components: + - type: Transform + pos: 51.5,-67.5 + parent: 2 - uid: 3492 components: - type: Transform @@ -14898,6 +14886,11 @@ entities: - type: Transform pos: 40.5,-37.5 parent: 2 + - uid: 3643 + components: + - type: Transform + pos: 53.5,-67.5 + parent: 2 - uid: 3644 components: - type: Transform @@ -15108,6 +15101,11 @@ entities: - type: Transform pos: 77.5,-27.5 parent: 2 + - uid: 3913 + components: + - type: Transform + pos: 52.5,-67.5 + parent: 2 - uid: 3921 components: - type: Transform @@ -15558,6 +15556,11 @@ entities: - type: Transform pos: -48.5,-37.5 parent: 2 + - uid: 5673 + components: + - type: Transform + pos: 50.5,-67.5 + parent: 2 - uid: 5731 components: - type: Transform @@ -15868,16 +15871,6 @@ entities: - type: Transform pos: 72.5,-72.5 parent: 2 - - uid: 7451 - components: - - type: Transform - pos: 49.5,-64.5 - parent: 2 - - uid: 7452 - components: - - type: Transform - pos: 49.5,-63.5 - parent: 2 - uid: 7487 components: - type: Transform @@ -16393,11 +16386,6 @@ entities: - type: Transform pos: 47.5,-72.5 parent: 2 - - uid: 9276 - components: - - type: Transform - pos: 53.5,-68.5 - parent: 2 - uid: 9277 components: - type: Transform @@ -16453,6 +16441,11 @@ entities: - type: Transform pos: 50.5,-72.5 parent: 2 + - uid: 9528 + components: + - type: Transform + pos: 53.5,-68.5 + parent: 2 - uid: 9599 components: - type: Transform @@ -16478,11 +16471,6 @@ entities: - type: Transform pos: 54.5,-69.5 parent: 2 - - uid: 9918 - components: - - type: Transform - pos: 48.5,-63.5 - parent: 2 - uid: 10011 components: - type: Transform @@ -25278,16 +25266,6 @@ entities: - type: Transform pos: 63.5,-27.5 parent: 2 - - uid: 14311 - components: - - type: Transform - pos: 53.5,-66.5 - parent: 2 - - uid: 14312 - components: - - type: Transform - pos: 53.5,-65.5 - parent: 2 - uid: 14313 components: - type: Transform @@ -25858,6 +25836,16 @@ entities: - type: Transform pos: 60.5,-28.5 parent: 2 + - uid: 15388 + components: + - type: Transform + pos: -36.5,-45.5 + parent: 2 + - uid: 15399 + components: + - type: Transform + pos: -35.5,-45.5 + parent: 2 - uid: 15400 components: - type: Transform @@ -25868,6 +25856,26 @@ entities: - type: Transform pos: 49.5,-76.5 parent: 2 + - uid: 15411 + components: + - type: Transform + pos: -34.5,-45.5 + parent: 2 + - uid: 15414 + components: + - type: Transform + pos: -33.5,-45.5 + parent: 2 + - uid: 15415 + components: + - type: Transform + pos: -32.5,-45.5 + parent: 2 + - uid: 15430 + components: + - type: Transform + pos: -32.5,-44.5 + parent: 2 - uid: 15439 components: - type: Transform @@ -25908,6 +25916,11 @@ entities: - type: Transform pos: 29.5,-35.5 parent: 2 + - uid: 15513 + components: + - type: Transform + pos: -32.5,-46.5 + parent: 2 - uid: 15850 components: - type: Transform @@ -26013,11 +26026,6 @@ entities: - type: Transform pos: -14.5,-45.5 parent: 2 - - uid: 16283 - components: - - type: Transform - pos: 49.5,-65.5 - parent: 2 - uid: 16288 components: - type: Transform @@ -27118,21 +27126,6 @@ entities: - type: Transform pos: 35.5,-69.5 parent: 2 - - uid: 18839 - components: - - type: Transform - pos: 51.5,-67.5 - parent: 2 - - uid: 18840 - components: - - type: Transform - pos: 51.5,-68.5 - parent: 2 - - uid: 18853 - components: - - type: Transform - pos: 52.5,-68.5 - parent: 2 - uid: 18891 components: - type: Transform @@ -27463,16 +27456,6 @@ entities: - type: Transform pos: -4.5,-20.5 parent: 2 - - uid: 19310 - components: - - type: Transform - pos: 51.5,-66.5 - parent: 2 - - uid: 19311 - components: - - type: Transform - pos: 52.5,-66.5 - parent: 2 - uid: 19344 components: - type: Transform @@ -33946,16 +33929,6 @@ entities: - type: Transform pos: 32.5,-19.5 parent: 2 - - uid: 3896 - components: - - type: Transform - pos: 59.5,-22.5 - parent: 2 - - uid: 3913 - components: - - type: Transform - pos: 58.5,-22.5 - parent: 2 - uid: 4118 components: - type: Transform @@ -34056,6 +34029,11 @@ entities: - type: Transform pos: 62.5,-19.5 parent: 2 + - uid: 4866 + components: + - type: Transform + pos: 27.5,-64.5 + parent: 2 - uid: 4868 components: - type: Transform @@ -34396,11 +34374,6 @@ entities: - type: Transform pos: 51.5,-50.5 parent: 2 - - uid: 6361 - components: - - type: Transform - pos: 27.5,-65.5 - parent: 2 - uid: 6374 components: - type: Transform @@ -34746,11 +34719,21 @@ entities: - type: Transform pos: 57.5,-71.5 parent: 2 + - uid: 7536 + components: + - type: Transform + pos: 58.5,-21.5 + parent: 2 - uid: 7577 components: - type: Transform pos: 58.5,-73.5 parent: 2 + - uid: 7591 + components: + - type: Transform + pos: 57.5,-21.5 + parent: 2 - uid: 7602 components: - type: Transform @@ -41353,6 +41336,12 @@ entities: - type: Transform pos: 74.5,-37.5 parent: 2 + - uid: 15260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-59.5 + parent: 2 - uid: 15261 components: - type: Transform @@ -41469,6 +41458,12 @@ entities: - type: Transform pos: 56.5,-54.5 parent: 2 + - uid: 16039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-60.5 + parent: 2 - uid: 16040 components: - type: Transform @@ -41674,11 +41669,6 @@ entities: - type: Transform pos: 4.5,-58.5 parent: 2 - - uid: 17187 - components: - - type: Transform - pos: 4.5,-59.5 - parent: 2 - uid: 17194 components: - type: Transform @@ -41785,6 +41775,16 @@ entities: - type: Transform pos: -24.5,-21.5 parent: 2 + - uid: 18123 + components: + - type: Transform + pos: -9.5,-59.5 + parent: 2 + - uid: 18124 + components: + - type: Transform + pos: 4.5,-63.5 + parent: 2 - uid: 18477 components: - type: Transform @@ -42149,6 +42149,11 @@ entities: - type: Transform pos: 19.5,-49.5 parent: 2 + - uid: 16028 + components: + - type: Transform + pos: 59.5,-19.5 + parent: 2 - uid: 17144 components: - type: Transform @@ -42187,6 +42192,12 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,-60.5 parent: 2 + - uid: 18141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-72.5 + parent: 2 - uid: 18535 components: - type: Transform @@ -42202,12 +42213,6 @@ entities: - type: Transform pos: 21.5,-81.5 parent: 2 - - uid: 19392 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-72.5 - parent: 2 - uid: 19393 components: - type: Transform @@ -43389,11 +43394,6 @@ entities: - type: Transform pos: 39.5,-25.5 parent: 2 - - uid: 15640 - components: - - type: Transform - pos: 48.5,-63.5 - parent: 2 - uid: 16050 components: - type: Transform @@ -43671,16 +43671,16 @@ entities: - type: Transform pos: 36.5,-20.5 parent: 2 + - uid: 15208 + components: + - type: Transform + pos: -8.5,-74.5 + parent: 2 - uid: 17043 components: - type: Transform pos: -3.5,-79.5 parent: 2 - - uid: 17046 - components: - - type: Transform - pos: -9.5,-79.5 - parent: 2 - uid: 19389 components: - type: Transform @@ -43688,16 +43688,16 @@ entities: parent: 2 - proto: ClosetToolFilled entities: + - uid: 8181 + components: + - type: Transform + pos: -9.5,-79.5 + parent: 2 - uid: 15515 components: - type: Transform pos: 32.5,-33.5 parent: 2 - - uid: 17598 - components: - - type: Transform - pos: -11.5,-74.5 - parent: 2 - proto: ClosetWallAtmospherics entities: - uid: 20005 @@ -43711,18 +43711,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -44076,6 +44066,13 @@ entities: - type: Transform pos: 40.35338,-25.259914 parent: 2 +- proto: ClothingHeadHatBluesoft + entities: + - uid: 18138 + components: + - type: Transform + pos: 17.322138,-100.517525 + parent: 2 - proto: ClothingHeadHatBrownFlatcap entities: - uid: 6068 @@ -44235,6 +44232,13 @@ entities: - type: Transform pos: -47.547234,-67.10405 parent: 2 +- proto: ClothingHeadHatSombrero + entities: + - uid: 15852 + components: + - type: Transform + pos: -39.57097,-57.9909 + parent: 2 - proto: ClothingHeadHatSquid entities: - uid: 615 @@ -44270,6 +44274,13 @@ entities: - type: Transform pos: -12.630263,-28.354128 parent: 2 +- proto: ClothingHeadHatWeldingMaskFlame + entities: + - uid: 15883 + components: + - type: Transform + pos: 85.54709,-22.445919 + parent: 2 - proto: ClothingHeadHatWeldingMaskFlameBlue entities: - uid: 15457 @@ -44277,6 +44288,13 @@ entities: - type: Transform pos: 67.39528,-68.335495 parent: 2 +- proto: ClothingHeadHatXmasCrown + entities: + - uid: 15216 + components: + - type: Transform + pos: -40.07226,-57.868195 + parent: 2 - proto: ClothingHeadHatYellowsoftFlipped entities: - uid: 17335 @@ -44450,7 +44468,7 @@ entities: - uid: 17328 components: - type: Transform - pos: -39.534546,-58.49098 + pos: -39.37852,-58.430256 parent: 2 - proto: ClothingNeckCloakIntersex entities: @@ -44888,7 +44906,7 @@ entities: - uid: 17557 components: - type: Transform - pos: -37.32556,-33.378517 + pos: -37.338173,-33.307518 parent: 2 - proto: ClothingUniformJumpsuitColorYellow entities: @@ -44937,6 +44955,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitSecBlue + entities: + - uid: 16597 + components: + - type: Transform + pos: 17.697138,-100.41329 + parent: 2 - proto: ClothingUniformJumpsuitWeb entities: - uid: 7173 @@ -45169,7 +45194,7 @@ entities: - uid: 18626 components: - type: Transform - pos: 80.45743,-47.240086 + pos: 78.46437,-47.504852 parent: 2 - proto: CommsComputerCircuitboard entities: @@ -45367,6 +45392,12 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,-39.5 parent: 2 + - uid: 8631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.5,-47.5 + parent: 2 - uid: 12821 components: - type: Transform @@ -45421,6 +45452,12 @@ entities: rot: -1.5707963267948966 rad pos: 73.5,-46.5 parent: 2 + - uid: 15201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-21.5 + parent: 2 - proto: ComputerFrame entities: - uid: 7207 @@ -46212,7 +46249,7 @@ entities: - uid: 18621 components: - type: Transform - pos: 80.12597,-47.469414 + pos: 79.24216,-47.264057 parent: 2 - proto: CrateArtifactContainer entities: @@ -46486,18 +46523,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.8856695 + Nitrogen: 7.0937095 - type: ContainerContainer containers: entity_storage: !type:Container @@ -46723,7 +46750,7 @@ entities: - uid: 18304 components: - type: Transform - pos: 27.53953,-60.442192 + pos: 27.38778,-60.27067 parent: 2 - proto: Crowbar entities: @@ -47410,13 +47437,6 @@ entities: parent: 2 - type: NavMapBeacon defaultText: Engineer Telecoms - - uid: 8743 - components: - - type: Transform - pos: 85.5,-47.5 - parent: 2 - - type: NavMapBeacon - defaultText: Common Telecoms - uid: 13820 components: - type: Transform @@ -47431,6 +47451,13 @@ entities: parent: 2 - type: NavMapBeacon defaultText: Command Telecoms + - uid: 15245 + components: + - type: Transform + pos: -33.5,-45.5 + parent: 2 + - type: NavMapBeacon + defaultText: Common Telecoms - uid: 18114 components: - type: Transform @@ -48409,6 +48436,69 @@ entities: - type: Transform pos: 8.5,-61.5 parent: 2 + - uid: 17157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-60.5 + parent: 2 + - uid: 17158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-59.5 + parent: 2 + - uid: 17419 + components: + - type: Transform + pos: 4.5,-59.5 + parent: 2 + - uid: 18111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-66.5 + parent: 2 + - uid: 18112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-66.5 + parent: 2 + - uid: 18113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-77.5 + parent: 2 + - uid: 18116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-77.5 + parent: 2 + - uid: 18118 + components: + - type: Transform + pos: 15.5,-71.5 + parent: 2 + - uid: 18120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-71.5 + parent: 2 + - uid: 18121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-65.5 + parent: 2 + - uid: 18122 + components: + - type: Transform + pos: 10.5,-65.5 + parent: 2 - uid: 19369 components: - type: Transform @@ -48515,6 +48605,11 @@ entities: parent: 2 - proto: DisposalJunctionFlipped entities: + - uid: 1790 + components: + - type: Transform + pos: 7.5,-59.5 + parent: 2 - uid: 8061 components: - type: Transform @@ -48538,11 +48633,6 @@ entities: - type: Transform pos: 61.5,-39.5 parent: 2 - - uid: 9798 - components: - - type: Transform - pos: 7.5,-59.5 - parent: 2 - uid: 15537 components: - type: Transform @@ -48655,6 +48745,12 @@ entities: - type: Transform pos: 20.5,-71.5 parent: 2 + - uid: 2924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-59.5 + parent: 2 - uid: 2960 components: - type: Transform @@ -49078,6 +49174,12 @@ entities: - type: Transform pos: -2.5,-34.5 parent: 2 + - uid: 8640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-60.5 + parent: 2 - uid: 8645 components: - type: Transform @@ -50567,12 +50669,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-59.5 parent: 2 - - uid: 15629 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-59.5 - parent: 2 - uid: 15641 components: - type: Transform @@ -52205,6 +52301,24 @@ entities: rot: 3.141592653589793 rad pos: 61.5,-33.5 parent: 2 + - uid: 16620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-60.5 + parent: 2 + - uid: 16769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-60.5 + parent: 2 + - uid: 16770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-60.5 + parent: 2 - uid: 16803 components: - type: Transform @@ -52324,6 +52438,102 @@ entities: - type: Transform pos: -2.5,-31.5 parent: 2 + - uid: 16974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-60.5 + parent: 2 + - uid: 17032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-60.5 + parent: 2 + - uid: 17046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-60.5 + parent: 2 + - uid: 17088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-60.5 + parent: 2 + - uid: 17116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-60.5 + parent: 2 + - uid: 17159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-59.5 + parent: 2 + - uid: 17160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-59.5 + parent: 2 + - uid: 17161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-59.5 + parent: 2 + - uid: 17172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-59.5 + parent: 2 + - uid: 17187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-59.5 + parent: 2 + - uid: 17188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-59.5 + parent: 2 + - uid: 17189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-59.5 + parent: 2 + - uid: 17190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-59.5 + parent: 2 + - uid: 17191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-59.5 + parent: 2 + - uid: 17192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-59.5 + parent: 2 + - uid: 17193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-59.5 + parent: 2 - uid: 17213 components: - type: Transform @@ -52335,6 +52545,284 @@ entities: - type: Transform pos: 25.5,-59.5 parent: 2 + - uid: 17332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-59.5 + parent: 2 + - uid: 17361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-59.5 + parent: 2 + - uid: 17362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-59.5 + parent: 2 + - uid: 17416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-59.5 + parent: 2 + - uid: 17422 + components: + - type: Transform + pos: 4.5,-60.5 + parent: 2 + - uid: 17435 + components: + - type: Transform + pos: 4.5,-61.5 + parent: 2 + - uid: 17443 + components: + - type: Transform + pos: 4.5,-62.5 + parent: 2 + - uid: 17504 + components: + - type: Transform + pos: 4.5,-63.5 + parent: 2 + - uid: 17537 + components: + - type: Transform + pos: 4.5,-64.5 + parent: 2 + - uid: 17564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-65.5 + parent: 2 + - uid: 17598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-65.5 + parent: 2 + - uid: 17653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-65.5 + parent: 2 + - uid: 17655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-65.5 + parent: 2 + - uid: 17699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-65.5 + parent: 2 + - uid: 17701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-66.5 + parent: 2 + - uid: 17739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-67.5 + parent: 2 + - uid: 17785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-68.5 + parent: 2 + - uid: 17806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-69.5 + parent: 2 + - uid: 17822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-70.5 + parent: 2 + - uid: 17832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-71.5 + parent: 2 + - uid: 17889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-71.5 + parent: 2 + - uid: 17931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-71.5 + parent: 2 + - uid: 17981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-71.5 + parent: 2 + - uid: 18030 + components: + - type: Transform + pos: 15.5,-72.5 + parent: 2 + - uid: 18032 + components: + - type: Transform + pos: 15.5,-73.5 + parent: 2 + - uid: 18065 + components: + - type: Transform + pos: 15.5,-74.5 + parent: 2 + - uid: 18069 + components: + - type: Transform + pos: 15.5,-75.5 + parent: 2 + - uid: 18070 + components: + - type: Transform + pos: 15.5,-76.5 + parent: 2 + - uid: 18072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-77.5 + parent: 2 + - uid: 18073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-77.5 + parent: 2 + - uid: 18074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-77.5 + parent: 2 + - uid: 18075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-77.5 + parent: 2 + - uid: 18076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-77.5 + parent: 2 + - uid: 18077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-77.5 + parent: 2 + - uid: 18078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-77.5 + parent: 2 + - uid: 18079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-76.5 + parent: 2 + - uid: 18080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-75.5 + parent: 2 + - uid: 18081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-74.5 + parent: 2 + - uid: 18086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-73.5 + parent: 2 + - uid: 18088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-72.5 + parent: 2 + - uid: 18090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-71.5 + parent: 2 + - uid: 18093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-70.5 + parent: 2 + - uid: 18094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-69.5 + parent: 2 + - uid: 18095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-68.5 + parent: 2 + - uid: 18096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-67.5 + parent: 2 + - uid: 18097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-66.5 + parent: 2 + - uid: 18098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-66.5 + parent: 2 + - uid: 18107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-66.5 + parent: 2 - uid: 19453 components: - type: Transform @@ -52662,6 +53150,12 @@ entities: - type: Transform pos: -47.5,-35.5 parent: 2 + - uid: 16540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-60.5 + parent: 2 - uid: 16644 components: - type: Transform @@ -52705,6 +53199,11 @@ entities: - type: Transform pos: 39.5,-47.5 parent: 2 + - uid: 18126 + components: + - type: Transform + pos: 27.5,-65.5 + parent: 2 - uid: 19367 components: - type: Transform @@ -52804,6 +53303,11 @@ entities: - type: Transform pos: -17.5,-61.5 parent: 2 + - uid: 5833 + components: + - type: Transform + pos: 27.5,-65.5 + parent: 2 - uid: 6042 components: - type: Transform @@ -52919,6 +53423,11 @@ entities: - type: Transform pos: 21.5,-70.5 parent: 2 + - uid: 16550 + components: + - type: Transform + pos: -21.5,-60.5 + parent: 2 - uid: 18135 components: - type: Transform @@ -53064,6 +53573,13 @@ entities: - type: Transform pos: 80.568535,-23.507742 parent: 2 +- proto: DresserCaptainFilled + entities: + - uid: 15240 + components: + - type: Transform + pos: -38.5,-55.5 + parent: 2 - proto: DresserChiefEngineerFilled entities: - uid: 15105 @@ -53208,7 +53724,7 @@ entities: - uid: 5481 components: - type: Transform - pos: -38.411427,-55.289524 + pos: -45.66603,-54.6077 parent: 2 - proto: DrinkFlaskBar entities: @@ -53251,12 +53767,12 @@ entities: - uid: 5490 components: - type: Transform - pos: -45.628235,-54.247543 + pos: -45.60353,-54.201168 parent: 2 - uid: 5491 components: - type: Transform - pos: -45.51886,-54.419537 + pos: -45.431656,-54.373165 parent: 2 - uid: 6845 components: @@ -53501,12 +54017,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-41.5 parent: 2 - - uid: 2274 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-67.5 - parent: 2 - uid: 2679 components: - type: Transform @@ -53808,11 +54318,6 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-18.5 parent: 2 - - uid: 18281 - components: - - type: Transform - pos: -4.5,-30.5 - parent: 2 - uid: 18282 components: - type: Transform @@ -54508,7 +55013,7 @@ entities: - 18880 - 16165 - 7135 - - 8640 + - 16283 - 18857 - type: Fixtures fixtures: {} @@ -55023,6 +55528,7 @@ entities: - 8495 - 9715 - 2462 + - 15629 - type: Fixtures fixtures: {} - uid: 9200 @@ -55961,16 +56467,6 @@ entities: deviceLists: - 19247 - 18818 - - uid: 8640 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-61.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14590 - - 14591 - uid: 8666 components: - type: Transform @@ -56097,6 +56593,20 @@ entities: - 5526 - 9234 - 6218 + - uid: 15858 + components: + - type: Transform + pos: -16.5,-36.5 + parent: 2 + - uid: 16283 + components: + - type: Transform + pos: -20.5,-60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14590 + - 14591 - uid: 17129 components: - type: Transform @@ -57815,6 +58325,16 @@ entities: - type: Transform pos: -36.5,-74.5 parent: 2 + - uid: 15629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-58.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9178 + - 1876 - uid: 16165 components: - type: Transform @@ -59403,6 +59923,16 @@ entities: - type: Transform pos: -49.5,-68.5 parent: 2 + - uid: 15856 + components: + - type: Transform + pos: -42.5,-33.5 + parent: 2 + - uid: 15857 + components: + - type: Transform + pos: -41.5,-32.5 + parent: 2 - uid: 17097 components: - type: Transform @@ -59646,7 +60176,7 @@ entities: - uid: 17306 components: - type: Transform - pos: -38.188465,-57.566006 + pos: -38.203186,-57.62665 parent: 2 - proto: FoodCakeClown entities: @@ -59847,7 +60377,7 @@ entities: - uid: 17561 components: - type: Transform - pos: -37.914124,-33.550335 + pos: -37.754837,-33.443027 parent: 2 - proto: FoodDonutSpaceman entities: @@ -60103,7 +60633,7 @@ entities: - uid: 18622 components: - type: Transform - pos: 78.98819,-47.30669 + pos: 79.27773,-43.571693 parent: 2 - proto: GasAnalyzer entities: @@ -60273,7 +60803,7 @@ entities: pos: 51.5,-63.5 parent: 2 - type: AtmosPipeLayers - pipeLayer: Tertiary + pipeLayer: Secondary - type: AtmosPipeColor color: '#947507FF' - proto: GasPassiveVent @@ -60284,7 +60814,7 @@ entities: pos: 53.5,-63.5 parent: 2 - type: AtmosPipeLayers - pipeLayer: Secondary + pipeLayer: Tertiary - type: AtmosPipeColor color: '#FF1212FF' - uid: 2889 @@ -61448,22 +61978,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10656 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#FFAD4FFF' - - uid: 10662 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#FFAD4FFF' - uid: 10753 components: - type: Transform @@ -61472,16 +61986,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10770 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-65.5 - parent: 2 - - type: AtmosPipeLayers - pipeLayer: Tertiary - - type: AtmosPipeColor - color: '#947507FF' - uid: 10799 components: - type: Transform @@ -61828,14 +62332,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 16770 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#FFAD4FFF' - uid: 16873 components: - type: Transform @@ -62235,16 +62731,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 18802 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-66.5 - parent: 2 - - type: AtmosPipeLayers - pipeLayer: Secondary - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 18825 components: - type: Transform @@ -62372,14 +62858,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 19491 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#FFAD4FFF' - uid: 19581 components: - type: Transform @@ -62543,6 +63021,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' +- proto: GasPipeBendAlt1 + entities: + - uid: 9084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' +- proto: GasPipeBendAlt2 + entities: + - uid: 10411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasPipeFourway entities: - uid: 3132 @@ -62889,16 +63403,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2528 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-64.5 - parent: 2 - - type: AtmosPipeLayers - pipeLayer: Secondary - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 3060 components: - type: Transform @@ -62930,15 +63434,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3485 - components: - - type: Transform - pos: 51.5,-64.5 - parent: 2 - - type: AtmosPipeLayers - pipeLayer: Tertiary - - type: AtmosPipeColor - color: '#947507FF' - uid: 3516 components: - type: Transform @@ -63179,6 +63674,14 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-25.5 parent: 2 + - uid: 5740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAD4FFF' - uid: 5778 components: - type: Transform @@ -63534,14 +64037,6 @@ entities: rot: 3.141592653589793 rad pos: 33.5,-60.5 parent: 2 - - uid: 7869 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 7885 components: - type: Transform @@ -64677,16 +65172,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9084 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-65.5 - parent: 2 - - type: AtmosPipeLayers - pipeLayer: Tertiary - - type: AtmosPipeColor - color: '#947507FF' - uid: 9085 components: - type: Transform @@ -65393,6 +65878,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 9276 + components: + - type: Transform + pos: 51.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAD4FFF' - uid: 9279 components: - type: Transform @@ -66104,16 +66596,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9528 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-65.5 - parent: 2 - - type: AtmosPipeLayers - pipeLayer: Secondary - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 9535 components: - type: Transform @@ -70551,14 +71033,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10660 + - uid: 10656 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-66.5 + rot: 1.5707963267948966 rad + pos: 33.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FFAD4FFF' + color: '#FF1212FF' - uid: 10667 components: - type: Transform @@ -70660,16 +71142,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 11828 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-65.5 - parent: 2 - - type: AtmosPipeLayers - pipeLayer: Tertiary - - type: AtmosPipeColor - color: '#947507FF' - uid: 11946 components: - type: Transform @@ -70874,13 +71346,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFAD4FFF' - - uid: 12796 - components: - - type: Transform - pos: 47.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 12831 components: - type: Transform @@ -70889,6 +71354,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 12874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 12879 components: - type: Transform @@ -72143,6 +72616,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 14946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 15036 components: - type: Transform @@ -72183,6 +72664,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 15146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 15163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAD4FFF' + - uid: 15219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 15416 components: - type: Transform @@ -73219,16 +73724,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 17699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-65.5 - parent: 2 - - type: AtmosPipeLayers - pipeLayer: Tertiary - - type: AtmosPipeColor - color: '#947507FF' - uid: 17702 components: - type: Transform @@ -74359,16 +74854,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 19308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-66.5 - parent: 2 - - type: AtmosPipeLayers - pipeLayer: Secondary - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 19607 components: - type: Transform @@ -75266,35 +75751,75 @@ entities: color: '#FF1212FF' - proto: GasPipeStraightAlt1 entities: - - uid: 15414 + - uid: 8817 + components: + - type: Transform + pos: 51.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 9918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 12795 components: - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,-66.5 + pos: 47.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 12873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' +- proto: GasPipeStraightAlt2 + entities: + - uid: 3342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15415 + - uid: 7451 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,-66.5 + pos: 52.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 19495 + - uid: 9282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-66.5 + pos: 53.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 19497 + - uid: 10662 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-66.5 + pos: 50.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -76516,14 +77041,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 12795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 12797 components: - type: Transform @@ -76579,6 +77096,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 14312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 14318 components: - type: Transform @@ -77123,14 +77648,6 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,-77.5 parent: 2 - - uid: 12870 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 12871 components: - type: Transform @@ -77147,6 +77664,14 @@ entities: - type: Transform pos: 49.5,-74.5 parent: 2 + - uid: 15258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 19971 components: - type: Transform @@ -77236,26 +77761,6 @@ entities: rot: 3.141592653589793 rad pos: 49.5,-77.5 parent: 2 - - uid: 13135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-65.5 - parent: 2 - - type: AtmosPipeLayers - pipeLayer: Tertiary - - type: AtmosPipeColor - color: '#947507FF' - - uid: 15787 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-66.5 - parent: 2 - - type: AtmosPipeLayers - pipeLayer: Secondary - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 17412 components: - type: Transform @@ -77280,6 +77785,26 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' +- proto: GasPressurePumpAlt1 + entities: + - uid: 12870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' +- proto: GasPressurePumpAlt2 + entities: + - uid: 13135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasThermoMachineFreezer entities: - uid: 5297 @@ -80046,11 +80571,11 @@ entities: color: '#FF1212FF' - proto: GasVolumePump entities: - - uid: 3342 + - uid: 3026 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-64.5 + pos: 47.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' @@ -80062,22 +80587,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 12872 + - uid: 10770 components: - type: Transform - pos: 50.5,-66.5 + pos: 51.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#FFAD4FFF' - - uid: 12873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 12874 + - uid: 11872 components: - type: Transform pos: 47.5,-63.5 @@ -80088,7 +80605,15 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,-67.5 + pos: 49.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 15202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#FFAD4FFF' @@ -82105,11 +82630,6 @@ entities: - type: Transform pos: -17.5,-62.5 parent: 2 - - uid: 2924 - components: - - type: Transform - pos: 27.5,-65.5 - parent: 2 - uid: 2935 components: - type: Transform @@ -82210,6 +82730,12 @@ entities: - type: Transform pos: 5.5,-81.5 parent: 2 + - uid: 3373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-66.5 + parent: 2 - uid: 3421 components: - type: Transform @@ -83546,6 +84072,12 @@ entities: - type: Transform pos: 103.5,-53.5 parent: 2 + - uid: 7452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-66.5 + parent: 2 - uid: 7477 components: - type: Transform @@ -83705,10 +84237,10 @@ entities: rot: 1.5707963267948966 rad pos: 101.5,-29.5 parent: 2 - - uid: 9282 + - uid: 8805 components: - type: Transform - pos: 59.5,-22.5 + pos: 49.5,-64.5 parent: 2 - uid: 9302 components: @@ -83926,6 +84458,12 @@ entities: - type: Transform pos: -18.5,-17.5 parent: 2 + - uid: 12872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-66.5 + parent: 2 - uid: 13189 components: - type: Transform @@ -84117,6 +84655,17 @@ entities: - type: Transform pos: -19.5,-73.5 parent: 2 + - uid: 14784 + components: + - type: Transform + pos: 27.5,-64.5 + parent: 2 + - uid: 14827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-65.5 + parent: 2 - uid: 14862 components: - type: Transform @@ -84162,6 +84711,12 @@ entities: - type: Transform pos: 104.5,-32.5 parent: 2 + - uid: 15218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-64.5 + parent: 2 - uid: 15220 components: - type: Transform @@ -84177,6 +84732,16 @@ entities: - type: Transform pos: 19.5,-21.5 parent: 2 + - uid: 15336 + components: + - type: Transform + pos: 49.5,-62.5 + parent: 2 + - uid: 15340 + components: + - type: Transform + pos: 54.5,-65.5 + parent: 2 - uid: 15378 components: - type: Transform @@ -84377,11 +84942,6 @@ entities: - type: Transform pos: -40.5,-63.5 parent: 2 - - uid: 17701 - components: - - type: Transform - pos: 58.5,-22.5 - parent: 2 - uid: 17749 components: - type: Transform @@ -84407,11 +84967,6 @@ entities: - type: Transform pos: 24.5,-9.5 parent: 2 - - uid: 18409 - components: - - type: Transform - pos: 49.5,-62.5 - parent: 2 - uid: 18410 components: - type: Transform @@ -84512,16 +85067,6 @@ entities: - type: Transform pos: -21.5,-88.5 parent: 2 - - uid: 18494 - components: - - type: Transform - pos: 50.5,-63.5 - parent: 2 - - uid: 18526 - components: - - type: Transform - pos: 48.5,-62.5 - parent: 2 - uid: 18628 components: - type: Transform @@ -84968,6 +85513,12 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-39.5 parent: 2 + - uid: 15215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-64.5 + parent: 2 - proto: GrilleSpawner entities: - uid: 3138 @@ -85757,7 +86308,7 @@ entities: - uid: 1125 components: - type: Transform - pos: 28.5,-65.5 + pos: 28.5,-64.5 parent: 2 - proto: HolofanProjector entities: @@ -86378,37 +86929,52 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-37.5 parent: 2 - - uid: 2342 - components: - - type: Transform - pos: 54.5,-25.5 - parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3207 components: - type: Transform pos: 26.5,-47.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4385 components: - type: Transform pos: -41.5,-47.5 parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 4394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-25.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4653 components: - type: Transform pos: 26.5,-55.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6238 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-33.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14108 components: - type: Transform pos: -37.5,-43.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: InflatableWallStack entities: - uid: 8002 @@ -86960,7 +87526,7 @@ entities: - uid: 18618 components: - type: Transform - pos: 79.15577,-43.49481 + pos: 78.44702,-43.48367 parent: 2 - proto: LockableButtonArmory entities: @@ -87056,6 +87622,34 @@ entities: - Toggle - type: Fixtures fixtures: {} +- proto: LockableButtonSecurity + entities: + - uid: 16418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 867: + - - Pressed + - DoorBolt + - type: Fixtures + fixtures: {} + - uid: 16435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 867: + - - Pressed + - DoorBolt + - type: Fixtures + fixtures: {} - proto: LockableButtonService entities: - uid: 2479 @@ -87494,15 +88088,15 @@ entities: parent: 2 - proto: LockerWeldingSuppliesFilled entities: - - uid: 5833 + - uid: 6361 components: - type: Transform pos: -21.5,-59.5 parent: 2 - - uid: 17537 + - uid: 8182 components: - type: Transform - pos: -8.5,-74.5 + pos: -11.5,-74.5 parent: 2 - proto: LogicGateOr entities: @@ -87777,7 +88371,7 @@ entities: - uid: 3843 components: - type: Transform - pos: 17.498411,-100.44512 + pos: 17.395054,-100.329895 parent: 2 - proto: MaintenanceFluffSpawner entities: @@ -88614,7 +89208,7 @@ entities: - uid: 18623 components: - type: Transform - pos: 79.365814,-47.469414 + pos: 78.71438,-47.277958 parent: 2 - proto: NuclearBomb entities: @@ -88628,7 +89222,14 @@ entities: - uid: 18619 components: - type: Transform - pos: 79.641716,-43.3176 + pos: 78.948746,-47.504852 + parent: 2 +- proto: Ointment + entities: + - uid: 15881 + components: + - type: Transform + pos: 60.5,-19.5 parent: 2 - proto: OperatingTable entities: @@ -88804,7 +89405,7 @@ entities: - uid: 18620 components: - type: Transform - pos: 80.3608,-43.296753 + pos: 81.56276,-43.416924 parent: 2 - proto: Paper entities: @@ -89250,164 +89851,240 @@ entities: rot: 3.141592653589793 rad pos: 61.5,-47.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3780 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-47.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4704 components: - type: Transform pos: 45.5,-20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4723 components: - type: Transform pos: 46.5,-20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4724 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-66.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4921 components: - type: Transform pos: 48.5,-20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4923 components: - type: Transform pos: 44.5,-20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4924 components: - type: Transform pos: 42.5,-20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4927 components: - type: Transform pos: 47.5,-20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5073 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-66.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5074 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-66.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5146 components: - type: Transform pos: 43.5,-20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5183 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-66.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5691 components: - type: Transform pos: 54.5,-20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5692 components: - type: Transform pos: 55.5,-20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5976 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,-63.5 parent: 2 - - uid: 8805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-47.5 - parent: 2 - - uid: 8817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-43.5 - parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 9585 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-77.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 11612 components: - type: Transform rot: 3.141592653589793 rad pos: 89.5,-46.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 11723 components: - type: Transform pos: 56.5,-20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 11755 components: - type: Transform pos: 89.5,-44.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14000 components: - type: Transform pos: 51.5,-20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14001 components: - type: Transform pos: 52.5,-20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14002 components: - type: Transform pos: 50.5,-20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14003 components: - type: Transform pos: 53.5,-20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14004 components: - type: Transform pos: 49.5,-20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 15212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-43.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 15233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-47.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 15238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-43.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 15239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-47.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 16336 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-61.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 16337 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-63.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 16338 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-61.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: PlasmaTank entities: - uid: 7689 @@ -89435,31 +90112,43 @@ entities: - type: Transform pos: 34.5,-61.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 19302 components: - type: Transform pos: 36.5,-61.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 19303 components: - type: Transform pos: 38.5,-61.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 19304 components: - type: Transform pos: 40.5,-61.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 19305 components: - type: Transform pos: 42.5,-61.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 19306 components: - type: Transform pos: 44.5,-61.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: PlasmaWindoorSecureChemistryLocked entities: - uid: 6282 @@ -89468,18 +90157,24 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-76.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6283 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-76.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6284 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-76.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: PlasmaWindoorSecureCommandLocked entities: - uid: 529 @@ -89488,66 +90183,90 @@ entities: rot: 3.141592653589793 rad pos: 81.5,-44.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2896 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-45.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5609 components: - type: Transform pos: -44.5,-37.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5611 components: - type: Transform pos: -45.5,-37.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7139 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-44.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7540 components: - type: Transform pos: 80.5,-46.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7564 components: - type: Transform pos: 81.5,-46.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7606 components: - type: Transform rot: 1.5707963267948966 rad pos: 92.5,-45.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 10491 components: - type: Transform pos: 78.5,-46.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 15816 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-44.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 17594 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,-44.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 17633 components: - type: Transform pos: 79.5,-46.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: PlasmaWindoorSecureEngineeringLocked entities: - uid: 356 @@ -89556,30 +90275,40 @@ entities: rot: 3.141592653589793 rad pos: -31.5,-74.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 10831 components: - type: Transform rot: 1.5707963267948966 rad pos: 94.5,-45.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 10833 components: - type: Transform rot: -1.5707963267948966 rad pos: 96.5,-45.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 11467 components: - type: Transform rot: 1.5707963267948966 rad pos: 88.5,-45.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 17096 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-74.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: PlasmaWindoorSecureScienceLocked entities: - uid: 11364 @@ -89587,11 +90316,15 @@ entities: - type: Transform pos: -7.5,-18.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 13975 components: - type: Transform pos: -6.5,-18.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: PlasmaWindoorSecureSecurityLocked entities: - uid: 2724 @@ -89600,30 +90333,40 @@ entities: rot: 3.141592653589793 rad pos: 60.5,-47.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3065 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-47.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4742 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,-21.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6143 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-49.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 18316 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: PlasticFlapsAirtightClear entities: - uid: 3692 @@ -89748,6 +90491,11 @@ entities: parent: 2 - proto: PlushieLizardMirrored entities: + - uid: 2944 + components: + - type: Transform + pos: -40.104343,-58.180084 + parent: 2 - uid: 11678 components: - type: Transform @@ -89770,7 +90518,7 @@ entities: - uid: 15800 components: - type: Transform - pos: 35.491478,-72.45367 + pos: 36.477215,-72.420235 parent: 2 - proto: PlushieRGBee entities: @@ -89824,6 +90572,11 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 15790 + components: + - type: Transform + pos: -39.603485,-58.0853 + parent: 2 - proto: PlushieVox entities: - uid: 19377 @@ -90261,6 +91014,14 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 16549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-60.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 19154 components: - type: Transform @@ -90269,14 +91030,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 19172 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-60.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 19190 components: - type: Transform @@ -91030,7 +91783,7 @@ entities: - uid: 18307 components: - type: Transform - pos: 27.430498,-64.62934 + pos: 27.420353,-62.29585 parent: 2 - proto: Poweredlight entities: @@ -91060,7 +91813,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-29.5 + pos: 7.5,-56.5 parent: 2 - uid: 1416 components: @@ -91098,6 +91851,17 @@ entities: rot: -1.5707963267948966 rad pos: -51.5,-48.5 parent: 2 + - uid: 1886 + components: + - type: Transform + pos: 50.5,-67.5 + parent: 2 + - uid: 2186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-46.5 + parent: 2 - uid: 2245 components: - type: Transform @@ -91126,22 +91890,34 @@ entities: rot: -1.5707963267948966 rad pos: 66.5,-18.5 parent: 2 + - uid: 3896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-66.5 + parent: 2 - uid: 4173 components: - type: Transform pos: 63.5,-16.5 parent: 2 + - uid: 4675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-24.5 + parent: 2 - uid: 4715 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-59.5 parent: 2 - - uid: 4934 + - uid: 4922 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-23.5 + pos: -27.5,-28.5 parent: 2 - uid: 4935 components: @@ -91184,6 +91960,12 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-43.5 parent: 2 + - uid: 5683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-51.5 + parent: 2 - uid: 5855 components: - type: Transform @@ -91221,7 +92003,7 @@ entities: - uid: 7598 components: - type: Transform - pos: 79.5,-43.5 + pos: 43.5,-52.5 parent: 2 - uid: 7655 components: @@ -91242,11 +92024,17 @@ entities: pos: 21.5,-70.5 parent: 2 - type: Timer - - uid: 8181 + - uid: 9798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-64.5 + rot: 1.5707963267948966 rad + pos: 58.5,-26.5 + parent: 2 + - uid: 9957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-33.5 parent: 2 - uid: 10225 components: @@ -91259,12 +92047,6 @@ entities: - type: Transform pos: -1.5,-16.5 parent: 2 - - uid: 10411 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-47.5 - parent: 2 - uid: 10645 components: - type: Transform @@ -91304,12 +92086,6 @@ entities: rot: 1.5707963267948966 rad pos: 58.5,-20.5 parent: 2 - - uid: 12827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-26.5 - parent: 2 - uid: 13332 components: - type: Transform @@ -91527,11 +92303,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-39.5 parent: 2 - - uid: 14151 - components: - - type: Transform - pos: -34.5,-10.5 - parent: 2 - uid: 14158 components: - type: Transform @@ -91567,6 +92338,24 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-90.5 parent: 2 + - uid: 14225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-41.5 + parent: 2 + - uid: 14226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-44.5 + parent: 2 + - uid: 14231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-48.5 + parent: 2 - uid: 14232 components: - type: Transform @@ -91578,11 +92367,33 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-39.5 parent: 2 + - uid: 14235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-42.5 + parent: 2 - uid: 14236 components: - type: Transform pos: 41.5,-40.5 parent: 2 + - uid: 14260 + components: + - type: Transform + pos: -40.5,-38.5 + parent: 2 + - uid: 14292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-14.5 + parent: 2 + - uid: 14324 + components: + - type: Transform + pos: 27.5,-48.5 + parent: 2 - uid: 14325 components: - type: Transform @@ -91623,6 +92434,12 @@ entities: - type: Transform pos: 54.5,-13.5 parent: 2 + - uid: 14365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-55.5 + parent: 2 - uid: 14412 components: - type: Transform @@ -91665,6 +92482,18 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-68.5 parent: 2 + - uid: 14721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-15.5 + parent: 2 + - uid: 14803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-30.5 + parent: 2 - uid: 15148 components: - type: Transform @@ -91711,6 +92540,12 @@ entities: rot: 1.5707963267948966 rad pos: 64.5,-47.5 parent: 2 + - uid: 15213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-21.5 + parent: 2 - uid: 15226 components: - type: Transform @@ -91756,17 +92591,46 @@ entities: - type: Transform pos: 53.5,-18.5 parent: 2 + - uid: 15640 + components: + - type: Transform + pos: 80.5,-43.5 + parent: 2 + - uid: 15787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,-47.5 + parent: 2 - uid: 15877 components: - type: Transform pos: 15.5,-69.5 parent: 2 + - uid: 16117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-25.5 + parent: 2 - uid: 16147 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-15.5 parent: 2 + - uid: 16148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-13.5 + parent: 2 + - uid: 16186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-61.5 + parent: 2 - uid: 16350 components: - type: Transform @@ -91878,6 +92742,17 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-62.5 parent: 2 + - uid: 18128 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 2 + - uid: 18136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-15.5 + parent: 2 - uid: 18147 components: - type: Transform @@ -92010,6 +92885,12 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-79.5 parent: 2 + - uid: 14114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-58.5 + parent: 2 - uid: 14217 components: - type: Transform @@ -92213,28 +93094,11 @@ entities: rot: 3.141592653589793 rad pos: -31.5,-53.5 parent: 2 - - uid: 4394 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-50.5 - parent: 2 - - uid: 4675 - components: - - type: Transform - pos: 22.5,-48.5 - parent: 2 - uid: 4892 components: - type: Transform pos: 37.5,-53.5 parent: 2 - - uid: 4922 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-46.5 - parent: 2 - uid: 5201 components: - type: Transform @@ -92246,19 +93110,19 @@ entities: - type: Transform pos: -15.5,-52.5 parent: 2 - - uid: 9848 + - uid: 14284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-33.5 + rot: 3.141592653589793 rad + pos: -36.5,-50.5 parent: 2 - - uid: 14019 +- proto: PoweredlightPink + entities: + - uid: 2342 components: - type: Transform pos: -5.5,-30.5 parent: 2 -- proto: PoweredlightPink - entities: - uid: 3495 components: - type: Transform @@ -92288,14 +93152,13 @@ entities: - uid: 5681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-28.5 + rot: 3.141592653589793 rad + pos: -31.5,-35.5 parent: 2 - - uid: 9957 + - uid: 9848 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-58.5 + pos: 22.5,-48.5 parent: 2 - uid: 12564 components: @@ -92303,16 +93166,10 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-41.5 parent: 2 - - uid: 14027 + - uid: 14224 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-35.5 - parent: 2 - - uid: 14114 - components: - - type: Transform - pos: -43.5,-40.5 + pos: -36.5,-40.5 parent: 2 - uid: 16463 components: @@ -92525,6 +93382,12 @@ entities: - type: Transform pos: 5.5,-27.5 parent: 2 + - uid: 14019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-63.5 + parent: 2 - uid: 14031 components: - type: Transform @@ -92654,12 +93517,29 @@ entities: - type: Transform pos: 14.5,-48.5 parent: 2 + - uid: 14228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-54.5 + parent: 2 - uid: 14230 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-50.5 parent: 2 + - uid: 14285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-25.5 + parent: 2 + - uid: 14286 + components: + - type: Transform + pos: -32.5,-20.5 + parent: 2 - uid: 14332 components: - type: Transform @@ -92747,6 +93627,12 @@ entities: - type: Transform pos: 66.5,-62.5 parent: 2 + - uid: 15339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-44.5 + parent: 2 - uid: 15386 components: - type: Transform @@ -92960,13 +93846,6 @@ entities: rot: 1.5707963267948966 rad pos: 68.5,-48.5 parent: 2 -- proto: PrefilledSyringe - entities: - - uid: 17022 - components: - - type: Transform - pos: 3.6685677,-79.358284 - parent: 2 - proto: Protolathe entities: - uid: 19088 @@ -93888,12 +94767,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,-63.5 parent: 2 - - uid: 14784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-64.5 - parent: 2 - uid: 15024 components: - type: Transform @@ -94907,375 +95780,582 @@ entities: - type: Transform pos: -23.5,-32.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 191 components: - type: Transform pos: -23.5,-31.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 192 components: - type: Transform pos: -21.5,-30.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 211 components: - type: Transform pos: -18.5,-35.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 213 components: - type: Transform pos: -18.5,-36.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 214 components: - type: Transform pos: -17.5,-36.5 parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 223 + components: + - type: Transform + pos: 52.5,-60.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 231 components: - type: Transform pos: -21.5,-34.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 238 components: - type: Transform pos: -22.5,-34.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 317 components: - type: Transform pos: -20.5,-29.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 804 components: - type: Transform pos: -21.5,-28.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 808 components: - type: Transform pos: -17.5,-34.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 809 components: - type: Transform pos: -23.5,-30.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 936 components: - type: Transform pos: -18.5,-34.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1134 components: - type: Transform pos: -23.5,-33.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1135 components: - type: Transform pos: -22.5,-28.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1136 components: - type: Transform pos: -22.5,-30.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1415 components: - type: Transform pos: -17.5,-31.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2617 components: - type: Transform pos: -20.5,-30.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3546 components: - type: Transform pos: 58.5,-46.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3590 components: - type: Transform pos: -24.5,-72.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3591 components: - type: Transform pos: -23.5,-72.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3600 components: - type: Transform pos: -21.5,-72.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3635 components: - type: Transform pos: -22.5,-72.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3950 components: - type: Transform pos: 61.5,-46.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4422 components: - type: Transform pos: -20.5,-28.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4423 components: - type: Transform pos: -23.5,-34.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4546 components: - type: Transform pos: -22.5,-36.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4547 components: - type: Transform pos: -21.5,-36.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4548 components: - type: Transform pos: -20.5,-36.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4549 components: - type: Transform pos: -20.5,-35.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4550 components: - type: Transform pos: -20.5,-34.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4741 components: - type: Transform pos: -18.5,-28.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4743 components: - type: Transform pos: -18.5,-30.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4745 components: - type: Transform pos: -18.5,-29.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4747 components: - type: Transform pos: -17.5,-28.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4749 components: - type: Transform pos: -17.5,-30.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6248 components: - type: Transform pos: 17.5,-39.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6644 components: - type: Transform pos: 8.5,-51.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6902 components: - type: Transform pos: 19.5,-39.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7066 components: - type: Transform pos: 6.5,-48.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7099 components: - type: Transform pos: 20.5,-40.5 parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 7413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-64.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7660 components: - type: Transform pos: 6.5,-50.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7933 components: - type: Transform pos: 9.5,-51.5 parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 8192 + components: + - type: Transform + pos: 51.5,-60.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 10766 components: - type: Transform rot: 1.5707963267948966 rad pos: 92.5,-44.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 10792 components: - type: Transform rot: 1.5707963267948966 rad pos: 91.5,-44.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 10823 components: - type: Transform rot: 1.5707963267948966 rad pos: 92.5,-46.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 10826 components: - type: Transform rot: 1.5707963267948966 rad pos: 91.5,-46.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 11401 components: - type: Transform pos: -25.5,-72.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 11403 components: - type: Transform pos: 16.5,-39.5 parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 12796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-64.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 13803 + components: + - type: Transform + pos: 51.5,-64.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 13942 components: - type: Transform pos: 15.5,-39.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14024 components: - type: Transform pos: 20.5,-41.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14053 components: - type: Transform pos: 14.5,-44.5 parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 14151 + components: + - type: Transform + pos: 27.5,-64.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 14222 + components: + - type: Transform + pos: 54.5,-63.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 14223 + components: + - type: Transform + pos: 53.5,-60.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14241 components: - type: Transform pos: 18.5,-39.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14435 components: - type: Transform pos: 14.5,-41.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14436 components: - type: Transform pos: 20.5,-44.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14437 components: - type: Transform pos: 18.5,-45.5 parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 15237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-64.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 16052 components: - type: Transform pos: 20.5,-43.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 16097 components: - type: Transform pos: 17.5,-45.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 16170 components: - type: Transform pos: 14.5,-40.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 16466 components: - type: Transform pos: -17.5,-33.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 16521 components: - type: Transform pos: 15.5,-45.5 parent: 2 - - uid: 16620 - components: - - type: Transform - pos: 27.5,-65.5 - parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 16875 components: - type: Transform pos: 20.5,-42.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 17373 components: - type: Transform pos: -17.5,-32.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 17968 components: - type: Transform pos: 14.5,-43.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 18328 components: - type: Transform pos: 44.5,-62.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 18331 components: - type: Transform pos: 62.5,-21.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 18367 components: - type: Transform pos: 34.5,-62.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 18368 components: - type: Transform pos: 42.5,-62.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 18527 components: - type: Transform pos: 40.5,-62.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 18528 components: - type: Transform pos: 38.5,-62.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 18553 components: - type: Transform pos: 36.5,-62.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 19070 components: - type: Transform pos: 19.5,-45.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 19569 components: - type: Transform pos: 16.5,-45.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: ReinforcedPlasmaWindowDiagonal entities: - uid: 1731 @@ -95284,23 +96364,39 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-45.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6916 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-39.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14034 components: - type: Transform pos: 14.5,-39.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14035 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-45.5 parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 15251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-64.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: ReinforcedUraniumWindow entities: - uid: 7264 @@ -95308,76 +96404,106 @@ entities: - type: Transform pos: 19.5,-41.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8016 components: - type: Transform pos: 16.5,-40.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 10446 components: - type: Transform pos: 19.5,-40.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 10447 components: - type: Transform pos: 19.5,-43.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 10774 components: - type: Transform pos: 19.5,-42.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 11402 components: - type: Transform pos: 15.5,-40.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 13274 components: - type: Transform pos: 17.5,-44.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 13452 components: - type: Transform pos: 16.5,-44.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 13978 components: - type: Transform pos: 18.5,-40.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14005 components: - type: Transform pos: 18.5,-44.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14025 components: - type: Transform pos: 17.5,-40.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14029 components: - type: Transform pos: 19.5,-44.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14047 components: - type: Transform pos: 15.5,-41.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 15698 components: - type: Transform pos: 15.5,-44.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 17173 components: - type: Transform pos: 15.5,-43.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: ReinforcedWindow entities: - uid: 79 @@ -95385,927 +96511,1297 @@ entities: - type: Transform pos: 0.5,-0.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 80 components: - type: Transform pos: -0.5,-0.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 81 components: - type: Transform pos: 1.5,-4.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 82 components: - type: Transform pos: 2.5,-4.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 83 components: - type: Transform pos: 3.5,-4.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 149 components: - type: Transform pos: -5.5,-1.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 150 components: - type: Transform pos: -5.5,-3.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 151 components: - type: Transform pos: -5.5,1.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 152 components: - type: Transform pos: -5.5,2.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 166 components: - type: Transform pos: 64.5,-19.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 258 components: - type: Transform pos: -4.5,-14.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 322 components: - type: Transform pos: 3.5,-17.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 324 components: - type: Transform pos: 3.5,-14.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 326 components: - type: Transform pos: 28.5,-100.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 328 components: - type: Transform pos: 11.5,-27.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 329 components: - type: Transform pos: 8.5,-19.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 330 components: - type: Transform pos: 8.5,-21.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 331 components: - type: Transform pos: 8.5,-22.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 332 components: - type: Transform pos: 9.5,-26.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 333 components: - type: Transform pos: 10.5,-26.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 336 components: - type: Transform pos: 7.5,-28.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 338 components: - type: Transform pos: 11.5,-32.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 353 components: - type: Transform pos: 11.5,-28.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 460 components: - type: Transform pos: 9.5,-13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 946 components: - type: Transform pos: 2.5,-49.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 947 components: - type: Transform pos: 2.5,-50.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 993 components: - type: Transform pos: -5.5,-52.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 994 components: - type: Transform pos: -3.5,-51.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 995 components: - type: Transform pos: -3.5,-52.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1033 components: - type: Transform pos: 1.5,-0.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1164 components: - type: Transform pos: -26.5,-68.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1465 components: - type: Transform pos: -40.5,-13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1466 components: - type: Transform pos: -39.5,-13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1467 components: - type: Transform pos: -38.5,-13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1829 components: - type: Transform pos: 3.5,-46.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1839 components: - type: Transform pos: 64.5,-20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1840 components: - type: Transform pos: 24.5,-88.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2226 components: - type: Transform pos: 12.5,-58.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2288 components: - type: Transform pos: 12.5,-56.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2326 components: - type: Transform pos: -2.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2327 components: - type: Transform pos: -1.5,-14.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2589 components: - type: Transform pos: 7.5,-96.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2590 components: - type: Transform pos: 7.5,-97.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2591 components: - type: Transform pos: 8.5,-97.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2592 components: - type: Transform pos: 8.5,-98.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2593 components: - type: Transform pos: 9.5,-98.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2594 components: - type: Transform pos: 9.5,-99.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2595 components: - type: Transform pos: 10.5,-99.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2596 components: - type: Transform pos: 16.5,-97.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2597 components: - type: Transform pos: 16.5,-94.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2598 components: - type: Transform pos: 15.5,-91.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2599 components: - type: Transform pos: 8.5,-91.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2600 components: - type: Transform pos: 11.5,-89.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2601 components: - type: Transform pos: 11.5,-88.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2602 components: - type: Transform pos: 11.5,-87.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2603 components: - type: Transform pos: 13.5,-87.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2604 components: - type: Transform pos: 13.5,-89.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2605 components: - type: Transform pos: 13.5,-88.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2606 components: - type: Transform pos: 12.5,-85.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2608 components: - type: Transform pos: 7.5,-87.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2609 components: - type: Transform pos: 7.5,-88.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2610 components: - type: Transform pos: 7.5,-89.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2655 components: - type: Transform pos: -14.5,-57.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2662 components: - type: Transform pos: -29.5,-64.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2875 components: - type: Transform pos: 25.5,-86.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2876 components: - type: Transform pos: 24.5,-86.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2877 components: - type: Transform pos: 23.5,-86.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2892 components: - type: Transform pos: -30.5,-65.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2897 components: - type: Transform pos: -22.5,-65.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2902 components: - type: Transform pos: -23.5,-65.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2903 components: - type: Transform pos: 20.5,-101.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2904 components: - type: Transform pos: 20.5,-102.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2905 components: - type: Transform pos: -24.5,-65.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2907 components: - type: Transform pos: 22.5,-102.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2908 components: - type: Transform pos: -29.5,-63.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2909 components: - type: Transform pos: 26.5,-101.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2910 components: - type: Transform pos: 26.5,-102.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2911 components: - type: Transform pos: -27.5,-61.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2913 components: - type: Transform pos: 28.5,-102.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2914 components: - type: Transform pos: 28.5,-101.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2915 components: - type: Transform pos: 32.5,-100.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2916 components: - type: Transform pos: 32.5,-97.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2918 components: - type: Transform pos: 36.5,-100.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2939 components: - type: Transform pos: 22.5,-80.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2940 components: - type: Transform pos: 26.5,-80.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3008 components: - type: Transform pos: -29.5,-65.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3030 components: - type: Transform pos: 60.5,-38.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3071 components: - type: Transform pos: 60.5,-18.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3172 components: - type: Transform pos: 3.5,-47.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3328 components: - type: Transform pos: -20.5,-69.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3399 components: - type: Transform pos: 67.5,-38.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3489 components: - type: Transform pos: 10.5,-56.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3520 components: - type: Transform pos: 57.5,-25.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3571 components: - type: Transform pos: 55.5,-40.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3655 components: - type: Transform pos: -31.5,-65.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3958 components: - type: Transform pos: -17.5,-62.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4014 components: - type: Transform pos: 10.5,-55.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4205 components: - type: Transform pos: -40.5,-47.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4211 components: - type: Transform pos: -39.5,-47.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4303 components: - type: Transform pos: -38.5,-47.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4396 components: - type: Transform pos: -40.5,-43.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4411 components: - type: Transform pos: -38.5,-43.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4511 components: - type: Transform pos: -41.5,-45.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4540 components: - type: Transform pos: -41.5,-46.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4551 components: - type: Transform pos: 3.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4553 components: - type: Transform pos: -3.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4814 components: - type: Transform pos: 59.5,-18.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4876 components: - type: Transform pos: 59.5,-35.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5144 components: - type: Transform pos: 11.5,-31.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5215 components: - type: Transform pos: 14.5,-26.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5231 components: - type: Transform pos: 15.5,-26.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5257 components: - type: Transform pos: 5.5,-13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5260 components: - type: Transform pos: 6.5,-13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5261 components: - type: Transform pos: 7.5,-13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5429 components: - type: Transform pos: 58.5,-25.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6095 components: - type: Transform pos: 64.5,-21.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6671 components: - type: Transform pos: -10.5,-41.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6857 components: - type: Transform pos: 36.5,-97.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6859 components: - type: Transform pos: 51.5,-95.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6866 components: - type: Transform pos: 52.5,-95.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6891 components: - type: Transform pos: 50.5,-95.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6951 components: - type: Transform pos: 22.5,-101.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6952 components: - type: Transform pos: 20.5,-100.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7040 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,-35.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7154 components: - type: Transform pos: 60.5,-39.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7158 components: - type: Transform pos: -9.5,-41.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7160 components: - type: Transform pos: 59.5,-25.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7213 components: - type: Transform pos: 64.5,-49.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7230 components: - type: Transform pos: 66.5,-49.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7234 components: - type: Transform pos: -6.5,-41.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7260 components: - type: Transform pos: -8.5,-41.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7309 components: - type: Transform pos: 61.5,-28.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7748 components: - type: Transform pos: 56.5,-35.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8080 components: - type: Transform pos: 10.5,-57.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8145 components: - type: Transform pos: 10.5,-58.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 9893 components: - type: Transform pos: 63.5,-44.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 9898 components: - type: Transform pos: 56.5,-40.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 10276 components: - type: Transform pos: 67.5,-46.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 10654 components: - type: Transform pos: 3.5,-48.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 10820 components: - type: Transform pos: 4.5,-13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 10821 components: - type: Transform pos: 4.5,-14.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 13192 components: - type: Transform pos: 22.5,-87.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 13196 components: - type: Transform pos: 24.5,-10.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14007 components: - type: Transform pos: 25.5,-88.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14011 components: - type: Transform pos: 26.5,-41.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14012 components: - type: Transform pos: 26.5,-46.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14014 components: - type: Transform pos: 26.5,-45.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14018 components: - type: Transform pos: 26.5,-42.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14037 components: - type: Transform pos: -40.5,-7.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14039 components: - type: Transform pos: -30.5,-46.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14041 components: - type: Transform pos: -30.5,-45.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14048 components: - type: Transform pos: -30.5,-44.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14054 components: - type: Transform pos: 26.5,-40.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14057 components: - type: Transform pos: 27.5,-47.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14074 components: - type: Transform pos: -32.5,-44.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14075 components: - type: Transform pos: -32.5,-45.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14076 components: - type: Transform pos: -32.5,-46.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14077 components: - type: Transform pos: -40.5,-8.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14078 components: - type: Transform pos: -38.5,-8.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14080 components: - type: Transform pos: -40.5,-9.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14085 components: - type: Transform pos: -36.5,-9.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14087 components: - type: Transform pos: -36.5,-8.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14088 components: - type: Transform pos: -38.5,-7.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14092 components: - type: Transform pos: -36.5,-7.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14095 components: - type: Transform pos: -38.5,-9.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14117 components: - type: Transform pos: -39.5,-43.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14129 components: - type: Transform pos: -41.5,-44.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14359 components: - type: Transform pos: 64.5,-26.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 15027 components: - type: Transform pos: 26.5,-88.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 15329 components: - type: Transform pos: 10.5,-13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 15376 components: - type: Transform pos: 26.5,-87.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 15379 components: - type: Transform pos: 26.5,-86.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 15406 components: - type: Transform pos: 61.5,-18.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 16349 components: - type: Transform pos: 4.5,-3.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 16383 components: - type: Transform pos: 22.5,-88.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 16385 components: - type: Transform pos: 22.5,-86.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 17780 components: - type: Transform pos: 58.5,-18.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 17825 components: - type: Transform pos: 23.5,-88.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 18402 components: - type: Transform pos: 24.5,-9.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 18540 components: - type: Transform pos: 10.5,-33.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 18541 components: - type: Transform pos: 7.5,-33.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 19261 components: - type: Transform pos: -27.5,-60.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 19726 components: - type: Transform pos: 57.5,-98.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 19727 components: - type: Transform pos: 57.5,-99.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 19728 components: - type: Transform pos: 57.5,-100.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: RemoteSignaller entities: - uid: 8033 @@ -96394,7 +97890,7 @@ entities: - uid: 18624 components: - type: Transform - pos: 79.709564,-47.292206 + pos: 81.54469,-47.389473 parent: 2 - proto: RollerBed entities: @@ -97145,47 +98641,65 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-24.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 696 components: - type: Transform pos: -11.5,-51.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 697 components: - type: Transform pos: -11.5,-52.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 698 components: - type: Transform pos: -11.5,-53.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1077 components: - type: Transform pos: -10.5,-29.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1216 components: - type: Transform pos: 9.5,-74.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3189 components: - type: Transform pos: -11.5,-29.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6040 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-23.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 15886 components: - type: Transform pos: 8.5,-74.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: ShuttersNormalOpen entities: - uid: 4973 @@ -97193,146 +98707,202 @@ entities: - type: Transform pos: 22.5,-88.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5539 components: - type: Transform pos: 64.5,-49.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5666 components: - type: Transform pos: 66.5,-49.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6208 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-58.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6210 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-56.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6600 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-60.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6601 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-61.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6937 components: - type: Transform pos: 25.5,-88.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6938 components: - type: Transform pos: 26.5,-87.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7717 components: - type: Transform pos: 26.5,-88.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7719 components: - type: Transform pos: 24.5,-86.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7720 components: - type: Transform pos: 25.5,-86.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7721 components: - type: Transform pos: 26.5,-86.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7772 components: - type: Transform pos: 22.5,-87.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7773 components: - type: Transform pos: 22.5,-86.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7809 components: - type: Transform pos: 23.5,-86.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8852 components: - type: Transform pos: -20.5,-19.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8853 components: - type: Transform pos: -20.5,-21.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8854 components: - type: Transform pos: -20.5,-22.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8855 components: - type: Transform pos: -22.5,-23.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 9960 components: - type: Transform pos: -29.5,-64.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 10024 components: - type: Transform pos: -29.5,-65.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 10203 components: - type: Transform pos: -29.5,-63.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 15102 components: - type: Transform pos: -30.5,-65.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 15103 components: - type: Transform pos: -31.5,-65.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 17741 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-57.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 17826 components: - type: Transform pos: 24.5,-88.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 17827 components: - type: Transform pos: 23.5,-88.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: ShuttersRadiationOpen entities: - uid: 10890 @@ -97340,31 +98910,43 @@ entities: - type: Transform pos: -29.5,-71.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 13335 components: - type: Transform pos: -27.5,-71.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 15229 components: - type: Transform pos: -19.5,-71.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 15231 components: - type: Transform pos: -28.5,-71.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 15232 components: - type: Transform pos: -18.5,-71.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 18213 components: - type: Transform pos: -17.5,-71.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: ShuttersWindow entities: - uid: 4938 @@ -97373,48 +98955,64 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,-86.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4939 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-85.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4940 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-84.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4941 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-83.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4942 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-85.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4943 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-86.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4944 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-84.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4945 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-83.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: ShuttersWindowOpen entities: - uid: 17740 @@ -97423,6 +99021,8 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-59.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: ShuttleGunKineticOld entities: - uid: 6224 @@ -97468,76 +99068,106 @@ entities: - type: Transform pos: -2.5,3.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 94 components: - type: Transform pos: -3.5,3.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 95 components: - type: Transform pos: 3.5,3.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 138 components: - type: Transform pos: -10.5,1.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 139 components: - type: Transform pos: -10.5,0.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 140 components: - type: Transform pos: -10.5,-1.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 141 components: - type: Transform pos: -10.5,-2.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 142 components: - type: Transform pos: -10.5,-4.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 143 components: - type: Transform pos: -10.5,-0.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 144 components: - type: Transform pos: -10.5,-3.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 145 components: - type: Transform pos: -10.5,-5.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 146 components: - type: Transform pos: -10.5,-6.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 288 components: - type: Transform pos: 2.5,3.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4641 components: - type: Transform pos: 4.5,3.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 16319 components: - type: Transform pos: 1.5,3.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: SignAi entities: - uid: 793 @@ -97649,18 +99279,6 @@ entities: - Toggle - type: Fixtures fixtures: {} - - uid: 7129 - components: - - type: Transform - pos: 50.5,-64.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 18451: - - - Pressed - - Toggle - - type: Fixtures - fixtures: {} - uid: 8850 components: - type: Transform @@ -98251,6 +99869,19 @@ entities: - Open - type: Fixtures fixtures: {} + - uid: 15373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-66.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2528: + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - uid: 15700 components: - type: Transform @@ -98750,6 +100381,14 @@ entities: fixtures: {} - proto: SignCryo entities: + - uid: 14336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 19069 components: - type: Transform @@ -98826,6 +100465,14 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 12827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.403982,-60.4992 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 16151 components: - type: Transform @@ -99138,6 +100785,13 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 16211 + components: + - type: Transform + pos: 27.502298,-64.78473 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 19633 components: - type: Transform @@ -100435,6 +102089,14 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 15174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-22.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRadiation entities: - uid: 18444 @@ -100728,14 +102390,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 17981 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-22.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 18145 components: - type: Transform @@ -101162,7 +102816,7 @@ entities: - uid: 18308 components: - type: Transform - pos: 27.70133,-64.45214 + pos: 27.534937,-62.50433 parent: 2 - proto: SolarPanel entities: @@ -102353,6 +104007,18 @@ entities: rot: 5.934119456780721 rad pos: 7.4473543,-9.529352 parent: 2 + - uid: 18140 + components: + - type: Transform + pos: 35.602215,-72.57659 + parent: 2 +- proto: SprayPainterAmmo + entities: + - uid: 18142 + components: + - type: Transform + pos: 35.373047,-72.22218 + parent: 2 - proto: StairDark entities: - uid: 4632 @@ -102586,16 +104252,16 @@ entities: parent: 2 - proto: StationAiUploadComputer entities: - - uid: 7413 + - uid: 15546 + components: + - type: Transform + pos: 80.5,-43.5 + parent: 2 + - uid: 15611 components: - type: Transform rot: 3.141592653589793 rad - pos: 81.5,-47.5 - parent: 2 - - uid: 7536 - components: - - type: Transform - pos: 81.5,-43.5 + pos: 80.5,-47.5 parent: 2 - proto: StationAnchor entities: @@ -102616,7 +104282,7 @@ entities: - uid: 18625 components: - type: Transform - pos: 78.51944,-47.473473 + pos: 78.5674,-43.302986 parent: 2 - proto: StationMap entities: @@ -103029,7 +104695,7 @@ entities: - uid: 18309 components: - type: Transform - pos: 27.367998,-64.327995 + pos: 27.68077,-60.471664 parent: 2 - proto: SuitStorageBase entities: @@ -103044,18 +104710,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -103077,18 +104733,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -103110,18 +104756,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - type: ContainerContainer containers: entity_storage: !type:Container @@ -103493,6 +105129,28 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos Hall, Northwest + - uid: 15247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-71.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Hall, East + - uid: 15254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-63.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos Hall, Northeast - uid: 16532 components: - type: Transform @@ -103504,17 +105162,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Singularity Chamber, East - - uid: 17419 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-64.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Hall, Northeast - uid: 17628 components: - type: Transform @@ -104786,7 +106433,7 @@ entities: - uid: 18311 components: - type: Transform - pos: 27.646963,-62.565727 + pos: 27.722437,-62.40009 parent: 2 - proto: SurveillanceWirelessCameraMovableEntertainment entities: @@ -104846,6 +106493,11 @@ entities: - type: Transform pos: 50.556988,-34.384045 parent: 2 + - uid: 17022 + components: + - type: Transform + pos: 3.6685677,-79.358284 + parent: 2 - uid: 17704 components: - type: Transform @@ -105432,6 +107084,11 @@ entities: - type: Transform pos: 60.5,-26.5 parent: 2 + - uid: 16002 + components: + - type: Transform + pos: 61.5,-21.5 + parent: 2 - uid: 16231 components: - type: Transform @@ -105467,6 +107124,11 @@ entities: - type: Transform pos: 1.5,-62.5 parent: 2 + - uid: 18139 + components: + - type: Transform + pos: 35.5,-72.5 + parent: 2 - uid: 18148 components: - type: Transform @@ -105602,6 +107264,13 @@ entities: - type: Transform pos: 18.5,-76.5 parent: 2 +- proto: TableFancyPink + entities: + - uid: 15853 + components: + - type: Transform + pos: -37.5,-33.5 + parent: 2 - proto: TableFancyPurple entities: - uid: 165 @@ -106244,12 +107913,6 @@ entities: - type: Transform pos: -56.5,-28.5 parent: 2 - - uid: 7591 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-43.5 - parent: 2 - uid: 7592 components: - type: Transform @@ -106317,11 +107980,17 @@ entities: rot: 1.5707963267948966 rad pos: 79.5,-47.5 parent: 2 - - uid: 15174 + - uid: 15209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-47.5 + rot: -1.5707963267948966 rad + pos: 81.5,-43.5 + parent: 2 + - uid: 15227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-47.5 parent: 2 - uid: 17271 components: @@ -106427,11 +108096,6 @@ entities: - type: Transform pos: -42.5,-62.5 parent: 2 - - uid: 5099 - components: - - type: Transform - pos: -38.5,-55.5 - parent: 2 - uid: 5477 components: - type: Transform @@ -107051,7 +108715,7 @@ entities: - uid: 18310 components: - type: Transform - pos: 27.421175,-62.3844 + pos: 27.46202,-60.6176 parent: 2 - proto: TelecomServerFilledCommand entities: @@ -107062,10 +108726,10 @@ entities: parent: 2 - proto: TelecomServerFilledCommon entities: - - uid: 15163 + - uid: 15359 components: - type: Transform - pos: 85.5,-47.5 + pos: -33.5,-45.5 parent: 2 - proto: TelecomServerFilledEngineering entities: @@ -107204,6 +108868,8 @@ entities: - type: Transform pos: 51.5,-35.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: ToiletEmpty entities: - uid: 6200 @@ -111450,11 +113116,6 @@ entities: - type: Transform pos: -10.5,-60.5 parent: 2 - - uid: 1123 - components: - - type: Transform - pos: 52.5,-67.5 - parent: 2 - uid: 1204 components: - type: Transform @@ -112930,11 +114591,6 @@ entities: - type: Transform pos: -11.5,-73.5 parent: 2 - - uid: 1886 - components: - - type: Transform - pos: 52.5,-65.5 - parent: 2 - uid: 1896 components: - type: Transform @@ -113945,11 +115601,6 @@ entities: - type: Transform pos: -61.5,-68.5 parent: 2 - - uid: 2186 - components: - - type: Transform - pos: -14.5,-29.5 - parent: 2 - uid: 2207 components: - type: Transform @@ -115375,11 +117026,6 @@ entities: - type: Transform pos: 54.5,-62.5 parent: 2 - - uid: 3373 - components: - - type: Transform - pos: 54.5,-65.5 - parent: 2 - uid: 3374 components: - type: Transform @@ -116899,11 +118545,6 @@ entities: - type: Transform pos: 38.5,-77.5 parent: 2 - - uid: 5740 - components: - - type: Transform - pos: 53.5,-67.5 - parent: 2 - uid: 5805 components: - type: Transform @@ -117069,6 +118710,12 @@ entities: - type: Transform pos: 54.5,-31.5 parent: 2 + - uid: 7129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-66.5 + parent: 2 - uid: 7134 components: - type: Transform @@ -117702,11 +119349,6 @@ entities: rot: 1.5707963267948966 rad pos: 95.5,-51.5 parent: 2 - - uid: 8631 - components: - - type: Transform - pos: 60.5,-22.5 - parent: 2 - uid: 8634 components: - type: Transform @@ -118388,6 +120030,24 @@ entities: rot: -1.5707963267948966 rad pos: 89.5,-42.5 parent: 2 + - uid: 15207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-62.5 + parent: 2 + - uid: 15225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-22.5 + parent: 2 + - uid: 15256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-22.5 + parent: 2 - uid: 15272 components: - type: Transform @@ -123353,6 +125013,12 @@ entities: rot: 3.141592653589793 rad pos: -14.5,-35.5 parent: 2 + - uid: 14027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-29.5 + parent: 2 - uid: 14046 components: - type: Transform @@ -123956,6 +125622,11 @@ entities: rot: -1.5707963267948966 rad pos: 60.5,-26.5 parent: 2 + - uid: 16022 + components: + - type: Transform + pos: 61.5,-21.5 + parent: 2 - uid: 18255 components: - type: Transform @@ -124220,112 +125891,152 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-59.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5690 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-55.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6205 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-59.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6209 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-57.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7262 components: - type: Transform pos: 58.5,-40.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7671 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,-20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7672 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,-21.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7679 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,-19.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7681 components: - type: Transform pos: 79.5,-22.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7768 components: - type: Transform pos: 30.5,-16.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8011 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-70.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8012 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-69.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8577 components: - type: Transform pos: 59.5,-40.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8617 components: - type: Transform pos: 32.5,-16.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 9213 components: - type: Transform pos: 57.5,-40.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 9894 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-42.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 9895 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-43.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 11761 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 16121 components: - type: Transform pos: 40.5,-18.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 16631 components: - type: Transform pos: -38.5,-76.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: WindoorBarKitchenLocked entities: - uid: 7018 @@ -124334,29 +126045,39 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,-44.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7019 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-43.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7020 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-42.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 18763 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-45.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 19747 components: - type: Transform pos: 39.5,-46.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: WindoorCargoLocked entities: - uid: 3041 @@ -124365,12 +126086,16 @@ entities: rot: 3.141592653589793 rad pos: 27.5,-85.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 15175 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-85.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: WindoorHydroponicsLocked entities: - uid: 938 @@ -124379,29 +126104,39 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-52.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 939 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-52.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2404 components: - type: Transform pos: 0.5,-56.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5178 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-54.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5179 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-53.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: WindoorPlasma entities: - uid: 6144 @@ -124410,33 +126145,45 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-49.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6285 components: - type: Transform pos: 18.5,-76.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6286 components: - type: Transform pos: 19.5,-76.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6287 components: - type: Transform pos: 20.5,-76.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8491 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-18.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 10558 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-18.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: WindoorSecureArmoryLocked entities: - uid: 1211 @@ -124445,52 +126192,70 @@ entities: rot: 1.5707963267948966 rad pos: 58.5,-49.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1451 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-49.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4100 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-50.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4204 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-50.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4710 components: - type: Transform pos: 58.5,-35.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4913 components: - type: Transform pos: 57.5,-35.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6165 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-40.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6261 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-40.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 9217 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-40.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: WindoorSecureAtmosphericsLocked entities: - uid: 8009 @@ -124499,12 +126264,16 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-70.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8010 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-69.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: WindoorSecureCommandLocked entities: - uid: 13568 @@ -124513,12 +126282,16 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-61.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 13570 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-60.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: WindoorSecureEngineeringLocked entities: - uid: 4657 @@ -124527,66 +126300,91 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-53.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4865 components: - type: Transform - pos: -20.5,-60.5 + rot: 3.141592653589793 rad + pos: -20.5,-61.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5186 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-36.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5187 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-35.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5188 components: - type: Transform pos: -10.5,-34.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5700 components: - type: Transform pos: -15.5,-57.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5701 components: - type: Transform pos: -16.5,-57.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7121 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7123 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-21.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8021 components: - type: Transform pos: -10.5,-71.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14314 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-19.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 17136 components: - type: Transform pos: -11.5,-71.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: WindoorSecureExternalLocked entities: - uid: 5974 @@ -124595,17 +126393,23 @@ entities: rot: 3.141592653589793 rad pos: -63.5,-61.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6236 components: - type: Transform pos: -63.5,-29.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 19349 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-17.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: WindoorSecureHeadOfPersonnelLocked entities: - uid: 2934 @@ -124614,12 +126418,16 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-57.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6204 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-59.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: WindoorSecureMedicalLocked entities: - uid: 292 @@ -124627,51 +126435,69 @@ entities: - type: Transform pos: 17.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 439 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-27.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5422 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-16.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7796 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-16.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8691 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 9483 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-25.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 13977 components: - type: Transform pos: 16.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 13990 components: - type: Transform pos: 15.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 16391 components: - type: Transform pos: 14.5,-70.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: WindoorSecureSecurityLocked entities: - uid: 3579 @@ -124680,84 +126506,112 @@ entities: rot: -1.5707963267948966 rad pos: 57.5,-28.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4086 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-29.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4377 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-35.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5960 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-12.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5961 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5962 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-12.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6097 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,-27.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7067 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-28.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7208 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-35.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7952 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-27.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8414 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,-27.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14133 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-42.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14134 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-43.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 19647 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,-27.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: WindoorSecureServiceLocked entities: - uid: 6038 @@ -124766,12 +126620,16 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,-20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6043 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-21.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: WindoorTheatreLocked entities: - uid: 19533 @@ -124780,12 +126638,16 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,-37.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 19534 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-38.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: Window entities: - uid: 5232 @@ -124793,31 +126655,43 @@ entities: - type: Transform pos: 21.5,-21.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5233 components: - type: Transform pos: 20.5,-21.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5234 components: - type: Transform pos: 19.5,-21.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7665 components: - type: Transform pos: 80.5,-22.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7666 components: - type: Transform pos: 78.5,-22.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7680 components: - type: Transform pos: 77.5,-22.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: WindowDirectional entities: - uid: 1836 @@ -124826,36 +126700,48 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-57.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8058 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-78.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 9244 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-57.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 12744 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-77.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 17102 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-77.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 19748 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-47.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: WindowFrostedDirectional entities: - uid: 6162 @@ -124863,12 +126749,16 @@ entities: - type: Transform pos: 13.5,-48.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6163 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-50.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: WindowReinforcedDirectional entities: - uid: 296 @@ -124877,288 +126767,392 @@ entities: rot: 1.5707963267948966 rad pos: 76.5,-62.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 457 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-31.5 parent: 2 - - uid: 1790 - components: - - type: Transform - pos: -19.5,-60.5 - parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2223 components: - type: Transform pos: 62.5,-48.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3353 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-62.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4569 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-52.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4570 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-51.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4610 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-31.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4654 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-55.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4655 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-54.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4656 components: - type: Transform pos: 26.5,-54.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4658 components: - type: Transform pos: 24.5,-55.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4659 components: - type: Transform pos: 23.5,-55.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4660 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-52.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4661 components: - type: Transform pos: 25.5,-55.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4662 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-51.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4663 components: - type: Transform pos: 22.5,-54.5 parent: 2 - - uid: 4866 - components: - - type: Transform - pos: -21.5,-60.5 - parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5377 components: - type: Transform pos: 30.5,-72.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5944 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-32.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6703 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-85.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6704 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-85.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7070 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-51.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7097 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-52.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7272 components: - type: Transform pos: 31.5,-72.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7285 components: - type: Transform pos: 33.5,-72.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7668 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-51.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7710 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-51.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7758 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-53.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7943 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-54.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7944 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-52.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8037 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-51.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8367 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-55.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8826 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-28.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 9092 components: - type: Transform pos: 58.5,-48.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 9304 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-14.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 9341 components: - type: Transform pos: 20.5,-24.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 10554 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-35.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 11869 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-66.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 11880 components: - type: Transform pos: 76.5,-66.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 13991 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14135 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-36.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14136 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-34.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14137 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-37.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14145 components: - type: Transform pos: -6.5,-33.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 16394 components: - type: Transform pos: 15.5,-70.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 16395 components: - type: Transform pos: 12.5,-70.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 16417 components: - type: Transform pos: 13.5,-70.5 parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 16544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-61.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 16548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-61.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 17059 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-17.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 17900 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-72.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 19535 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-39.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: Wirecutter entities: - uid: 8104 @@ -125227,1790 +127221,2471 @@ entities: parent: 2 - proto: XenoResinWindow entities: - - uid: 223 - components: - - type: Transform - pos: 51.5,-64.5 - parent: 2 - uid: 585 components: - type: Transform pos: -30.5,-45.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 760 components: - type: Transform pos: -45.5,-44.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 761 components: - type: Transform pos: 32.5,-62.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 764 components: - type: Transform pos: -45.5,-46.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 769 components: - type: Transform pos: -45.5,-45.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 772 components: - type: Transform pos: -57.5,-28.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 774 components: - type: Transform pos: 2.5,-39.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 775 components: - type: Transform pos: 1.5,-37.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 776 components: - type: Transform pos: 36.5,-55.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 777 components: - type: Transform pos: 75.5,-18.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 778 components: - type: Transform pos: 75.5,-17.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 779 components: - type: Transform pos: 0.5,-37.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 798 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-14.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 822 components: - type: Transform pos: 75.5,-72.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 860 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-12.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 861 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 902 components: - type: Transform pos: 0.5,-38.5 parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 1123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-66.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1159 components: - type: Transform pos: 3.5,-43.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1171 components: - type: Transform pos: 3.5,-44.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1198 components: - type: Transform pos: 2.5,-41.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1219 components: - type: Transform pos: 2.5,-40.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1220 components: - type: Transform pos: 2.5,-42.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1231 components: - type: Transform pos: -1.5,-40.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1568 components: - type: Transform pos: -13.5,-76.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1593 components: - type: Transform pos: -16.5,-10.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1685 components: - type: Transform pos: 49.5,-22.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1686 components: - type: Transform pos: 50.5,-22.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1804 components: - type: Transform pos: 47.5,-78.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1817 components: - type: Transform pos: 47.5,-79.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1818 components: - type: Transform pos: 81.5,-59.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1827 components: - type: Transform pos: -19.5,-53.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1841 components: - type: Transform pos: 34.5,-55.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1842 components: - type: Transform pos: 22.5,-40.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1843 components: - type: Transform pos: -12.5,-76.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1844 components: - type: Transform pos: -6.5,-80.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1845 components: - type: Transform pos: 42.5,-55.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1846 components: - type: Transform pos: 43.5,-55.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1850 components: - type: Transform pos: 33.5,-55.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1851 components: - type: Transform pos: 20.5,-47.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1852 components: - type: Transform pos: 22.5,-44.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1853 components: - type: Transform pos: -3.5,-23.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1854 components: - type: Transform pos: -4.5,-23.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1857 components: - type: Transform pos: 17.5,-37.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1858 components: - type: Transform pos: 18.5,-37.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1859 components: - type: Transform pos: 16.5,-37.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1860 components: - type: Transform pos: -20.5,-19.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1961 components: - type: Transform pos: -5.5,-23.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1963 components: - type: Transform pos: -6.5,-23.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2203 components: - type: Transform pos: 3.5,-42.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2204 components: - type: Transform pos: -0.5,-39.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2225 components: - type: Transform pos: 0.5,-39.5 parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 2274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-66.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2310 components: - type: Transform pos: 18.5,-50.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2311 components: - type: Transform pos: 14.5,-33.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2312 components: - type: Transform pos: 15.5,-33.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2313 components: - type: Transform pos: 37.5,-55.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2314 components: - type: Transform pos: 22.5,-43.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2315 components: - type: Transform pos: 17.5,-47.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2318 components: - type: Transform pos: 16.5,-47.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2322 components: - type: Transform pos: 18.5,-49.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2323 components: - type: Transform pos: 15.5,-47.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2345 components: - type: Transform pos: -54.5,-21.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2346 components: - type: Transform pos: -54.5,-20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2347 components: - type: Transform pos: -55.5,-21.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2348 components: - type: Transform pos: -47.5,-20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2349 components: - type: Transform pos: -45.5,-21.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2350 components: - type: Transform pos: -46.5,-21.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2368 components: - type: Transform pos: -46.5,-20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2369 components: - type: Transform pos: -47.5,-21.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2370 components: - type: Transform pos: -45.5,-20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2371 components: - type: Transform pos: -56.5,-30.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2378 components: - type: Transform pos: 47.5,-22.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2389 components: - type: Transform pos: -57.5,-27.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2456 components: - type: Transform pos: -50.5,-31.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2457 components: - type: Transform pos: -51.5,-31.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2458 components: - type: Transform pos: -53.5,-30.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2514 components: - type: Transform pos: -54.5,-30.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2525 components: - type: Transform pos: 51.5,-58.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2549 components: - type: Transform pos: -55.5,-30.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2611 components: - type: Transform pos: -57.5,-29.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2613 components: - type: Transform pos: -25.5,-44.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2649 components: - type: Transform pos: 42.5,-22.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2673 components: - type: Transform pos: -25.5,-45.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2674 components: - type: Transform pos: -25.5,-46.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2704 components: - type: Transform pos: 40.5,-22.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2709 components: - type: Transform pos: 48.5,-22.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2726 components: - type: Transform pos: 43.5,-22.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2727 components: - type: Transform pos: 19.5,-37.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2836 components: - type: Transform pos: 44.5,-22.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2843 components: - type: Transform pos: 45.5,-22.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2851 components: - type: Transform pos: 46.5,-22.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2886 components: - type: Transform pos: 54.5,-22.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2887 components: - type: Transform pos: 56.5,-22.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2968 components: - type: Transform pos: 55.5,-22.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3105 components: - type: Transform pos: -18.5,-17.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3220 components: - type: Transform pos: 16.5,-33.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3288 components: - type: Transform pos: -40.5,-51.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3304 components: - type: Transform pos: -45.5,-69.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3332 components: - type: Transform pos: 73.5,-57.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3439 components: - type: Transform pos: 47.5,-54.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3467 components: - type: Transform pos: -57.5,-61.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3468 components: - type: Transform pos: -54.5,-69.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3472 components: - type: Transform pos: -45.5,-70.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3476 components: - type: Transform pos: -54.5,-70.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3477 components: - type: Transform pos: -47.5,-76.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3478 components: - type: Transform pos: -55.5,-69.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3482 components: - type: Transform pos: -47.5,-78.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3484 components: - type: Transform pos: -46.5,-69.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3596 components: - type: Transform pos: -29.5,-73.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3604 components: - type: Transform pos: -47.5,-70.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3605 components: - type: Transform pos: -47.5,-69.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3619 components: - type: Transform pos: 45.5,-54.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3636 components: - type: Transform pos: -42.5,-51.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3642 components: - type: Transform pos: 53.5,-58.5 parent: 2 - - uid: 3643 - components: - - type: Transform - pos: 53.5,-60.5 - parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3658 components: - type: Transform pos: -57.5,-63.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3660 components: - type: Transform pos: -57.5,-62.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3670 components: - type: Transform pos: -49.5,-59.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3779 components: - type: Transform pos: 15.5,-37.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3916 components: - type: Transform pos: -51.5,-59.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3947 components: - type: Transform pos: -40.5,-63.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4012 components: - type: Transform pos: -54.5,-60.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4013 components: - type: Transform pos: -56.5,-60.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4015 components: - type: Transform pos: 19.5,-9.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4016 components: - type: Transform pos: 17.5,-9.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4021 components: - type: Transform pos: 17.5,-10.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4072 components: - type: Transform pos: -55.5,-60.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4074 components: - type: Transform pos: -53.5,-60.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4075 components: - type: Transform pos: 45.5,-79.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4079 components: - type: Transform pos: 45.5,-78.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4195 components: - type: Transform pos: 80.5,-33.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4196 components: - type: Transform pos: 19.5,-10.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4197 components: - type: Transform pos: -41.5,-51.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4198 components: - type: Transform pos: -46.5,-70.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4199 components: - type: Transform pos: -12.5,-77.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4207 components: - type: Transform pos: 16.5,-51.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4209 components: - type: Transform pos: 81.5,-33.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4210 components: - type: Transform pos: -4.5,-18.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4221 components: - type: Transform pos: -1.5,-41.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4231 components: - type: Transform pos: -1.5,-39.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4310 components: - type: Transform pos: -3.5,-18.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4313 components: - type: Transform pos: 44.5,-54.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4320 components: - type: Transform pos: 44.5,-55.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4334 components: - type: Transform pos: 46.5,-54.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4350 components: - type: Transform pos: 45.5,-55.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4378 components: - type: Transform pos: 83.5,-45.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4382 components: - type: Transform pos: -8.5,-80.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4386 components: - type: Transform pos: 22.5,-42.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4388 components: - type: Transform pos: -49.5,-31.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4390 components: - type: Transform pos: 22.5,-41.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4392 components: - type: Transform pos: -5.5,-18.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4397 components: - type: Transform pos: -2.5,-26.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4398 components: - type: Transform pos: 18.5,-47.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4403 components: - type: Transform pos: 49.5,-79.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4404 components: - type: Transform pos: 80.5,-57.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4408 components: - type: Transform pos: 81.5,-57.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4409 components: - type: Transform pos: 81.5,-31.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4410 components: - type: Transform pos: 80.5,-31.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4418 components: - type: Transform pos: -13.5,-77.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4420 components: - type: Transform pos: 35.5,-55.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4421 components: - type: Transform pos: 21.5,-10.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4424 components: - type: Transform pos: 19.5,-47.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4429 components: - type: Transform pos: -14.5,-9.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4432 components: - type: Transform pos: -14.5,-10.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4433 components: - type: Transform pos: 73.5,-72.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4439 components: - type: Transform pos: -16.5,-9.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4440 components: - type: Transform pos: -50.5,-59.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4461 components: - type: Transform pos: 41.5,-55.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4464 components: - type: Transform pos: 73.5,-17.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4466 components: - type: Transform pos: 73.5,-18.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4467 components: - type: Transform pos: 77.5,-18.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4468 components: - type: Transform pos: 77.5,-17.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4469 components: - type: Transform pos: -2.5,-25.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4470 components: - type: Transform pos: -2.5,-24.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4471 components: - type: Transform pos: 1.5,-75.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4472 components: - type: Transform pos: -22.5,-23.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4474 components: - type: Transform pos: -20.5,-22.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4475 components: - type: Transform pos: -53.5,-54.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4476 components: - type: Transform pos: -52.5,-55.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4477 components: - type: Transform pos: -55.5,-48.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4479 components: - type: Transform pos: -54.5,-51.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4480 components: - type: Transform pos: -55.5,-42.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4481 components: - type: Transform pos: -55.5,-46.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4482 components: - type: Transform pos: -55.5,-47.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4483 components: - type: Transform pos: -51.5,-55.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4484 components: - type: Transform pos: -54.5,-39.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4485 components: - type: Transform pos: -54.5,-41.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4486 components: - type: Transform pos: -54.5,-38.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4487 components: - type: Transform pos: -49.5,-34.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4488 components: - type: Transform pos: -0.5,-80.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4489 components: - type: Transform pos: 3.5,-80.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4490 components: - type: Transform pos: 5.5,-80.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4491 components: - type: Transform pos: 37.5,-58.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4493 components: - type: Transform pos: 37.5,-57.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4495 components: - type: Transform pos: 41.5,-58.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4497 components: - type: Transform pos: 39.5,-57.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4498 components: - type: Transform pos: 35.5,-58.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4504 components: - type: Transform pos: 43.5,-57.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4506 components: - type: Transform pos: 43.5,-58.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4508 components: - type: Transform pos: 33.5,-57.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4509 components: - type: Transform pos: 33.5,-58.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4510 components: - type: Transform pos: 34.5,-57.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4512 components: - type: Transform pos: 46.5,-60.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4513 components: - type: Transform pos: 40.5,-57.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4514 components: - type: Transform pos: 45.5,-60.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4515 components: - type: Transform pos: 38.5,-58.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4517 components: - type: Transform pos: 39.5,-58.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4518 components: - type: Transform pos: 45.5,-59.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4519 components: - type: Transform pos: 33.5,-59.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4531 components: - type: Transform pos: 46.5,-59.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4539 components: - type: Transform pos: 21.5,-9.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4543 components: - type: Transform pos: 39.5,-14.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4571 components: - type: Transform pos: -28.5,-7.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4579 components: - type: Transform pos: -28.5,-8.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4580 components: - type: Transform pos: -28.5,-9.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4581 components: - type: Transform pos: -30.5,-7.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4680 components: - type: Transform pos: -30.5,-8.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4682 components: - type: Transform pos: -30.5,-9.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4695 components: - type: Transform pos: -33.5,-9.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4696 components: - type: Transform pos: -32.5,-9.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4697 components: - type: Transform pos: -32.5,-7.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4698 components: - type: Transform pos: -32.5,-8.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4761 components: - type: Transform pos: -47.5,-14.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4839 components: - type: Transform pos: -47.5,-12.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4846 components: - type: Transform pos: 21.5,-75.5 parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 4934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-65.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4937 components: - type: Transform pos: -53.5,-53.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5008 components: - type: Transform pos: -54.5,-52.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5011 components: - type: Transform pos: -54.5,-50.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5012 components: - type: Transform pos: -54.5,-49.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5027 components: - type: Transform pos: -55.5,-44.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5051 components: - type: Transform pos: -55.5,-43.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5054 components: - type: Transform pos: -55.5,-45.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5056 components: - type: Transform pos: -50.5,-56.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5057 components: - type: Transform pos: -49.5,-56.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5067 components: - type: Transform pos: -48.5,-56.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5068 components: - type: Transform pos: -54.5,-40.5 parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 5099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-66.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5140 components: - type: Transform pos: -53.5,-37.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5147 components: - type: Transform pos: -53.5,-36.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5191 components: - type: Transform pos: -52.5,-35.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5194 components: - type: Transform pos: -50.5,-34.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5258 components: - type: Transform pos: -48.5,-34.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5332 components: - type: Transform pos: 82.5,-41.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5375 components: - type: Transform pos: -51.5,-35.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5394 components: - type: Transform pos: -47.5,-34.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5431 components: - type: Transform pos: 16.5,-71.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5434 components: - type: Transform pos: 75.5,-73.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5436 components: - type: Transform pos: 77.5,-73.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5438 components: - type: Transform pos: 39.5,-17.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5439 components: - type: Transform pos: 39.5,-16.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5441 components: - type: Transform pos: 39.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5442 components: - type: Transform pos: 43.5,-11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5443 components: - type: Transform pos: 47.5,-12.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5446 components: - type: Transform pos: 37.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5447 components: - type: Transform pos: 47.5,-11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5448 components: - type: Transform pos: 46.5,-12.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5449 components: - type: Transform pos: 44.5,-11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5450 components: - type: Transform pos: 46.5,-11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5451 components: - type: Transform pos: 45.5,-11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5511 components: - type: Transform pos: 43.5,-12.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5513 components: - type: Transform pos: -2.5,-80.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5517 components: - type: Transform pos: 3.5,-81.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5522 components: - type: Transform pos: 5.5,-81.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5528 components: - type: Transform pos: 16.5,-73.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5529 components: - type: Transform pos: 16.5,-74.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5530 components: - type: Transform pos: 17.5,-76.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5531 components: - type: Transform pos: 17.5,-75.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5532 components: - type: Transform pos: 22.5,-74.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5533 components: - type: Transform pos: 22.5,-73.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5535 components: - type: Transform pos: 22.5,-72.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5536 components: - type: Transform pos: 22.5,-71.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5604 components: - type: Transform pos: 47.5,-62.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5632 components: - type: Transform pos: 77.5,-72.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5634 components: - type: Transform pos: 40.5,-58.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5657 components: - type: Transform pos: 42.5,-57.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5658 components: - type: Transform pos: 41.5,-57.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5659 components: - type: Transform pos: 42.5,-58.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5663 components: - type: Transform pos: 36.5,-57.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5694 components: - type: Transform pos: 36.5,-58.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5696 components: - type: Transform pos: 44.5,-57.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5786 components: - type: Transform pos: 34.5,-58.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5899 components: - type: Transform pos: 35.5,-57.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6046 components: - type: Transform pos: 45.5,-57.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6104 components: - type: Transform pos: 80.5,-49.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6106 components: - type: Transform pos: 82.5,-42.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6114 components: - type: Transform pos: 46.5,-58.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6142 components: - type: Transform pos: 45.5,-58.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6301 components: - type: Transform pos: 33.5,-60.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6386 components: - type: Transform pos: 82.5,-49.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6387 components: - type: Transform pos: 82.5,-43.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6598 components: - type: Transform pos: 32.5,-59.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6659 components: - type: Transform pos: 29.5,-68.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6666 components: - type: Transform pos: 27.5,-68.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6677 components: - type: Transform pos: 32.5,-58.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6678 components: - type: Transform pos: 44.5,-58.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7320 components: - type: Transform pos: 82.5,-47.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7409 components: - type: Transform pos: 73.5,-73.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7764 components: - type: Transform pos: 44.5,-12.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7792 components: - type: Transform pos: 45.5,-12.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7794 components: - type: Transform pos: 32.5,-13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 7869 + components: + - type: Transform + pos: 54.5,-65.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8063 components: - type: Transform pos: 80.5,-41.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8144 components: - type: Transform pos: 38.5,-57.5 parent: 2 - - uid: 8182 - components: - - type: Transform - pos: 52.5,-60.5 - parent: 2 - - uid: 8192 - components: - - type: Transform - pos: 50.5,-63.5 - parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8346 components: - type: Transform pos: 21.5,-76.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8358 components: - type: Transform pos: 16.5,-72.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8422 components: - type: Transform pos: 66.5,-59.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8503 components: - type: Transform pos: 69.5,-57.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 9294 components: - type: Transform pos: 51.5,-53.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 9329 components: - type: Transform pos: 81.5,-42.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 9337 components: - type: Transform pos: 28.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 9354 components: - type: Transform pos: 29.5,-16.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 9446 components: - type: Transform pos: 83.5,-42.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 9695 components: - type: Transform pos: 80.5,-59.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 9847 components: - type: Transform pos: 65.5,-59.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 10305 components: - type: Transform pos: 52.5,-53.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 10516 components: - type: Transform pos: 81.5,-49.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 10721 components: - type: Transform pos: 81.5,-41.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 10752 components: - type: Transform pos: 81.5,-40.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 10889 components: - type: Transform pos: -17.5,-73.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 11716 components: - type: Transform pos: -30.5,-46.5 parent: 2 - - uid: 11872 + - type: DeltaPressure + gridUid: 2 + - uid: 12851 components: - type: Transform pos: 49.5,-62.5 parent: 2 - - uid: 12851 - components: - - type: Transform - pos: 59.5,-22.5 - parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 13647 components: - type: Transform pos: 52.5,-58.5 parent: 2 - - uid: 13803 - components: - - type: Transform - pos: 51.5,-60.5 - parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 13888 components: - type: Transform pos: -14.5,-32.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 13963 components: - type: Transform pos: -0.5,-42.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 13981 components: - type: Transform pos: -30.5,-44.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14115 components: - type: Transform pos: -26.5,-73.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14189 components: - type: Transform pos: -28.5,-73.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14587 components: - type: Transform pos: -20.5,-73.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 15156 components: - type: Transform pos: 83.5,-48.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 15157 components: - type: Transform pos: 82.5,-48.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 15164 components: - type: Transform pos: 81.5,-48.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 15166 components: - type: Transform pos: 81.5,-50.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 15230 components: - type: Transform pos: -19.5,-73.5 parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 15252 + components: + - type: Transform + pos: 55.5,-64.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 15960 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-14.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 16314 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 16445 components: - type: Transform pos: 46.5,-62.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 16449 components: - type: Transform pos: 49.5,-78.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 16677 components: - type: Transform pos: -22.5,-53.5 parent: 2 - - uid: 17655 - components: - - type: Transform - pos: 48.5,-62.5 - parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 17657 components: - type: Transform pos: -18.5,-15.5 parent: 2 - - uid: 18416 - components: - - type: Transform - pos: 58.5,-22.5 - parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 18467 components: - type: Transform pos: -18.5,-73.5 parent: 2 - - uid: 18636 - components: - - type: Transform - pos: 55.5,-64.5 - parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 18734 components: - type: Transform pos: 56.5,-63.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 18767 components: - type: Transform pos: 2.5,-37.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 18787 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-16.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 18804 components: - type: Transform pos: 32.5,-60.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 18932 components: - type: Transform pos: -16.5,-70.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 19193 components: - type: Transform pos: -20.5,-21.5 parent: 2 - - uid: 19208 - components: - - type: Transform - pos: 54.5,-63.5 - parent: 2 - - uid: 19293 - components: - - type: Transform - pos: 52.5,-64.5 - parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 19321 components: - type: Transform pos: -27.5,-73.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 19347 components: - type: Transform pos: 26.5,-62.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 19348 components: - type: Transform pos: 26.5,-63.5 parent: 2 + - type: DeltaPressure + gridUid: 2 ... diff --git a/Resources/Prototypes/Accents/word_replacements.yml b/Resources/Prototypes/Accents/word_replacements.yml index 9678cb313e..9220abcac4 100644 --- a/Resources/Prototypes/Accents/word_replacements.yml +++ b/Resources/Prototypes/Accents/word_replacements.yml @@ -448,6 +448,7 @@ chatsan-word-65: chatsan-replacement-65 chatsan-word-66: chatsan-replacement-66 chatsan-word-67: chatsan-replacement-67 + chatsan-word-68: chatsan-replacement-68 - type: accent id: liar diff --git a/Resources/Prototypes/Actions/types.yml b/Resources/Prototypes/Actions/types.yml index 6202b49333..61babbfcea 100644 --- a/Resources/Prototypes/Actions/types.yml +++ b/Resources/Prototypes/Actions/types.yml @@ -7,6 +7,14 @@ components: - type: Action +# base proto for an action that requires a DoAfter +- type: entity + abstract: true + parent: BaseAction + id: BaseDoAfterAction + components: + - type: DoAfterArgs + # an action that is done all in le head and cant be prevented by any means - type: entity abstract: true diff --git a/Resources/Prototypes/Atmospherics/thresholds.yml b/Resources/Prototypes/Atmospherics/Thresholds/airalarms.yml similarity index 100% rename from Resources/Prototypes/Atmospherics/thresholds.yml rename to Resources/Prototypes/Atmospherics/Thresholds/airalarms.yml diff --git a/Resources/Prototypes/Atmospherics/Thresholds/deltapressure.yml b/Resources/Prototypes/Atmospherics/Thresholds/deltapressure.yml new file mode 100644 index 0000000000..e82beec6f6 --- /dev/null +++ b/Resources/Prototypes/Atmospherics/Thresholds/deltapressure.yml @@ -0,0 +1,85 @@ +## Base prototypes for DeltaPressureComponent settings, to make it easy to just +## parent to them and just them globally here. + +## For reinforced plasma windows +- type: entity + abstract: true + id: BaseDeltaPressureReinforcedPlasma + components: + - type: DeltaPressure + minPressure: 150000 + minPressureDelta: 100000 + scalingType: Linear + scalingPower: 0.0001 + +## For quarter reinforced plasma windows +- type: entity + abstract: true + id: BaseDeltaPressureReinforcedPlasmaQuarter + components: + - type: DeltaPressure + minPressure: 37500 + minPressureDelta: 25000 + scalingType: Threshold + +## For plasma windows +- type: entity + abstract: true + id: BaseDeltaPressurePlasma + components: + - type: DeltaPressure + minPressure: 75000 + minPressureDelta: 50000 + scalingType: Linear + scalingPower: 0.0005 + +## For quarter plasma windows +- type: entity + abstract: true + id: BaseDeltaPressurePlasmaQuarter + components: + - type: DeltaPressure + minPressure: 18750 + minPressureDelta: 12500 + scalingType: Threshold + +## For reinforced glass windows +- type: entity + abstract: true + id: BaseDeltaPressureReinforcedGlass + components: + - type: DeltaPressure + minPressure: 15000 + minPressureDelta: 10000 + scalingType: Threshold + +## For quarter reinforced glass windows +- type: entity + abstract: true + id: BaseDeltaPressureReinforcedGlassQuarter + components: + - type: DeltaPressure + minPressure: 3750 + minPressureDelta: 2500 + +## For glass windows +- type: entity + abstract: true + id: BaseDeltaPressureGlass + components: + - type: DeltaPressure + minPressure: 1000 + minPressureDelta: 750 + scalingType: Linear + scalingPower: 0.0005 + +## For quarter glass windows +- type: entity + abstract: true + id: BaseDeltaPressureGlassQuarter + components: + - type: DeltaPressure + minPressure: 250 + minPressureDelta: 187.5 + scalingType: Threshold + diff --git a/Resources/Prototypes/Catalog/Fills/Boxes/emergency.yml b/Resources/Prototypes/Catalog/Fills/Boxes/emergency.yml index 69433fa7c0..972eb5074b 100644 --- a/Resources/Prototypes/Catalog/Fills/Boxes/emergency.yml +++ b/Resources/Prototypes/Catalog/Fills/Boxes/emergency.yml @@ -212,7 +212,7 @@ - id: EmergencyOxygenTankFilled - id: EmergencyMedipen - id: Flare - - id: FoodBreadBaguette + - id: FoodSnackNutribrick - id: DrinkWaterBottleFull - type: entity @@ -226,7 +226,7 @@ - id: EmergencyNitrogenTankFilled - id: EmergencyMedipen - id: Flare - - id: FoodBreadBaguette + - id: FoodSnackNutribrick - id: DrinkWaterBottleFull - type: Sprite layers: @@ -246,7 +246,7 @@ - id: EmergencyOxygenTankFilled - id: EmergencyMedipen - id: Flare - - id: FoodBreadBaguetteCotton + - id: FoodSnackNutribrick - id: DrinkWaterBottleFull - type: entity diff --git a/Resources/Prototypes/Catalog/Fills/Boxes/syndicate.yml b/Resources/Prototypes/Catalog/Fills/Boxes/syndicate.yml index 5e44c49c72..98748799ff 100644 --- a/Resources/Prototypes/Catalog/Fills/Boxes/syndicate.yml +++ b/Resources/Prototypes/Catalog/Fills/Boxes/syndicate.yml @@ -74,6 +74,14 @@ name: combat bakery kit description: A kit of clandestine baked weapons. components: + - type: Storage + grid: + - 0,0,3,3 + maxItemSize: Normal + - type: Item + size: Huge + shape: + - 0,0,3,3 - type: Sprite layers: - state: box_of_doom diff --git a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml index 6e26006ef1..997b3d91b4 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml @@ -414,6 +414,8 @@ - id: ClothingShoesClownLarge - id: ClothingHeadHatMagician - id: BeachBall + - id: TennisBall + amount: 2 - id: ClothingShoesSkates - id: RubberChicken diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml index cfdc967a7e..a3ca44871a 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml @@ -108,7 +108,7 @@ parent: [ ClothingShoesBase, BaseJanitorContraband ] id: ClothingShoesGaloshes name: galoshes - description: Rubber boots. + description: Specialised non-slip rubber boots, designed to reduce janitorial workplace accidents; a tider's treasure. components: - type: Sprite sprite: Clothing/Shoes/Specific/galoshes.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/base_clothinguniforms.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/base_clothinguniforms.yml index eafc5acf79..cd8ef614e5 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/base_clothinguniforms.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/base_clothinguniforms.yml @@ -64,3 +64,14 @@ - type: Clothing slots: [innerclothing] femaleMask: UniformTop + +- type: entity + abstract: true + id: ClothingUniformFoldableBase + components: + - type: Foldable + canFoldInsideContainer: true + unfoldVerbText: unfold-verb-clothing-jacket + foldVerbText: fold-verb-clothing-jacket + - type: FoldableClothing + foldedEquippedPrefix: folded \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml index 0f1a079320..98fa96eea0 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml @@ -21,15 +21,13 @@ sprite: Clothing/Uniforms/Jumpsuit/ancient.rsi - type: entity - parent: ClothingUniformBase + parent: [ClothingUniformBase, ClothingUniformFoldableBase] id: ClothingUniformJumpsuitBartender name: bartender's uniform description: A nice and tidy uniform. Shame about the bar though. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/bartender.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/bartender.rsi - type: entity parent: ClothingUniformBase @@ -69,37 +67,31 @@ sprite: Clothing/Uniforms/Jumpsuit/captain.rsi - type: entity - parent: ClothingUniformBase + parent: [ClothingUniformBase, ClothingUniformFoldableBase] id: ClothingUniformJumpsuitCargo name: cargo tech jumpsuit description: A sturdy jumpsuit, issued to members of the Cargo department. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/cargotech.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/cargotech.rsi - type: entity - parent: ClothingUniformBase + parent: [ClothingUniformBase, ClothingUniformFoldableBase] id: ClothingUniformJumpsuitSalvageSpecialist name: salvage specialist's jumpsuit description: It's a snappy jumpsuit with a sturdy set of overalls. It's very dirty. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/salvage.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/salvage.rsi - type: entity - parent: [ClothingUniformBase, BaseCommandContraband] + parent: [ClothingUniformBase, BaseCommandContraband, ClothingUniformFoldableBase] id: ClothingUniformJumpsuitChiefEngineer name: chief engineer's jumpsuit description: It's a high visibility jumpsuit given to those engineers insane enough to achieve the rank of Chief Engineer. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/ce.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/ce.rsi - type: entity parent: [ClothingUniformBase, BaseCommandContraband] @@ -168,15 +160,13 @@ sprite: Clothing/Uniforms/Jumpsuit/chef.rsi - type: entity - parent: ClothingUniformBase + parent: [ClothingUniformBase, ClothingUniformFoldableBase] id: ClothingUniformJumpsuitChemistry name: chemistry jumpsuit description: There's some odd stains on this jumpsuit. Hm. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/chemistry.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/chemistry.rsi - type: entity parent: ClothingUniformBase @@ -253,15 +243,13 @@ sprite: Clothing/Uniforms/Jumpsuit/jester2.rsi - type: entity - parent: [ClothingUniformBase, BaseCommandContraband] + parent: [ClothingUniformBase, BaseCommandContraband, ClothingUniformFoldableBase] id: ClothingUniformJumpsuitCMO name: chief medical officer's jumpsuit description: It's a jumpsuit worn by those with the experience to be Chief Medical Officer. It provides minor biological protection. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/cmo.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/cmo.rsi - type: entity parent: [ClothingUniformBase, BaseCommandContraband] @@ -297,37 +285,31 @@ sprite: Clothing/Uniforms/Jumpsuit/detective_grey.rsi - type: entity - parent: ClothingUniformBase + parent: [ClothingUniformBase, ClothingUniformFoldableBase] id: ClothingUniformJumpsuitEngineering name: engineering jumpsuit description: If this suit was non-conductive, maybe engineers would actually do their damn job. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/engineering.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/engineering.rsi - type: entity - parent: ClothingUniformBase + parent: [ClothingUniformBase, ClothingUniformFoldableBase] id: ClothingUniformJumpsuitEngineeringHazard name: hazard jumpsuit description: Woven in a grungy, warm orange. Lets others around you know that you really mean business when it comes to work. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi - type: entity - parent: [ClothingUniformBase, BaseCommandContraband] + parent: [ClothingUniformBase, BaseCommandContraband, ClothingUniformFoldableBase] id: ClothingUniformJumpsuitHoP name: head of personnel's jumpsuit description: Rather bland and inoffensive. Perfect for vanishing off the face of the universe. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/hop.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/hop.rsi - type: entity parent: [ClothingUniformBase, BaseCommandContraband] @@ -408,26 +390,22 @@ sprite: Clothing/Uniforms/Jumpsuit/commandgeneric.rsi - type: entity - parent: ClothingUniformBase + parent: [ClothingUniformBase, ClothingUniformFoldableBase] id: ClothingUniformJumpsuitHydroponics name: hydroponics jumpsuit description: Has a strong earthy smell to it. Hopefully it's merely dirty as opposed to soiled. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/hydro.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/hydro.rsi - type: entity - parent: ClothingUniformBase + parent: [ClothingUniformBase, ClothingUniformFoldableBase] id: ClothingUniformJumpsuitJanitor name: janitor jumpsuit description: The jumpsuit for the poor sop with a mop. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/janitor.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/janitor.rsi - type: entity parent: ClothingUniformBase @@ -441,15 +419,13 @@ sprite: Clothing/Uniforms/Jumpsuit/kimono.rsi - type: entity - parent: ClothingUniformBase + parent: [ClothingUniformBase, ClothingUniformFoldableBase] id: ClothingUniformJumpsuitMedicalDoctor name: medical doctor jumpsuit description: It's made of a special fiber that provides minor protection against biohazards. It has a cross on the chest denoting that the wearer is trained medical personnel. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/medical.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/medical.rsi - type: entity parent: ClothingUniformBase @@ -569,15 +545,13 @@ sprite: Clothing/Uniforms/Jumpsuit/rnd.rsi - type: entity - parent: ClothingUniformBase + parent: [ClothingUniformBase, ClothingUniformFoldableBase] id: ClothingUniformJumpsuitScientist name: scientist jumpsuit description: It's made of a special fiber that increases perceived intelligence and decreases personal ethics. It has markings that denote the wearer as a scientist. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/scientist.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/scientist.rsi - type: entity parent: ClothingUniformBase @@ -591,26 +565,22 @@ sprite: Clothing/Uniforms/Jumpsuit/scientist_formal.rsi - type: entity - parent: ClothingUniformBase + parent: [ClothingUniformBase, ClothingUniformFoldableBase] id: ClothingUniformJumpsuitRoboticist name: roboticist jumpsuit description: It's a slimming black with reinforced seams; great for industrial work. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/roboticist.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/roboticist.rsi - type: entity - parent: [ClothingUniformBase, BaseSecurityContraband] + parent: [ClothingUniformBase, BaseSecurityContraband, ClothingUniformFoldableBase] id: ClothingUniformJumpsuitSec name: security jumpsuit description: A jumpsuit made of strong material, providing robust protection. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/security.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/security.rsi - type: Item inhandVisuals: left: @@ -896,26 +866,22 @@ sprite: Clothing/Uniforms/Jumpsuit/ninja.rsi - type: entity - parent: ClothingUniformBase + parent: [ClothingUniformBase, ClothingUniformFoldableBase] id: ClothingUniformJumpsuitAtmos name: atmospheric technician jumpsuit description: I am at work. I can't leave work. Work is breathing. I am testing air quality. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/atmos.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/atmos.rsi - type: entity - parent: ClothingUniformBase + parent: [ClothingUniformBase, ClothingUniformFoldableBase] id: ClothingUniformJumpsuitAtmosCasual name: atmospheric technician's casual jumpsuit description: Might as well relax with a job as easy as yours. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/atmos_casual.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/atmos_casual.rsi - type: entity parent: ClothingUniformBase diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Decals/dirt.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Decals/dirt.yml index 3286abe78e..dec1be8754 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Decals/dirt.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Decals/dirt.yml @@ -10,7 +10,7 @@ - DirtHeavy maxDecalsPerTile: 1 snapPosition: true - zIndex: 1 + zIndex: 5 prob: 0.8 color: '#FFFFFF7F' cleanable: true diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Decals/flora.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Decals/flora.yml index 5164ca7aea..aacad99bdd 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Decals/flora.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Decals/flora.yml @@ -5,7 +5,7 @@ components: - type: RandomDecalSpawner radius: 0.3 - zIndex: 1 + zIndex: 5 deleteSpawnerAfterSpawn: true tileWhitelist: - FloorAstroGrass diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Decals/splatters.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Decals/splatters.yml index f498616fe8..7bfcf4a429 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Decals/splatters.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Decals/splatters.yml @@ -11,7 +11,7 @@ randomRotation: true maxDecals: 3 prob: 0.5 - zIndex: 1 + zIndex: 5 color: '#9900007F' cleanable: true deleteSpawnerAfterSpawn: true diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml index c223efe1a0..bb3829a2dd 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml @@ -114,6 +114,7 @@ - id: ToySkeleton - id: Basketball - id: Football + - id: TennisBall - id: BalloonNT - id: BalloonCorgi - id: MysteryFigureBox diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml index 1b9fbed3ac..8940e031e9 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml @@ -317,6 +317,13 @@ - BorgModuleMedical hasMindState: medical_e noMindState: medical_e_r + - type: SolutionScanner + - type: ShowHealthBars + damageContainers: + - Biological + - type: ShowHealthIcons + damageContainers: + - Biological - type: entity parent: BaseBorgChassisDerelict diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 916b91b1f4..c8bf6f23c3 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -838,6 +838,7 @@ behaviors: - !type:GibBehavior recursive: false + - type: ZombieImmune - type: entity name: cow diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bagel.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bagel.yml index 114b3e01f2..9a905db90a 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bagel.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bagel.yml @@ -2,11 +2,13 @@ # Base - type: entity - id: FoodBagelBase - parent: FoodInjectableBase abstract: true + parent: FoodInjectableBase + id: FoodBagelBase description: A delicious bagel. components: + - type: Item + size: Tiny - type: FlavorProfile flavors: - bread @@ -22,13 +24,13 @@ Quantity: 5 - type: entity + parent: FoodBagelBase id: FoodBagel name: bagel - parent: FoodBagelBase - type: entity - id: FoodBagelPoppy parent: FoodBagelBase + id: FoodBagelPoppy name: poppy seed bagel description: A delicious bagel topped with bicaridine-infused poppy seeds. components: @@ -49,8 +51,8 @@ Quantity: 5 - type: entity - id: FoodBagelCotton parent: FoodBagelBase + id: FoodBagelCotton name: cotton bagel description: A delicious bagel made with cotton dough. components: @@ -60,7 +62,7 @@ - cotton - type: Sprite state: bagel-cottondough - - type: Food + - type: Edible requiresSpecialDigestion: true - type: Tag tags: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml index d817d53b18..bce7ace58a 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml @@ -2,14 +2,15 @@ # Base - type: entity + abstract: true parent: FoodInjectableBase id: FoodBreadBase - abstract: true components: + - type: Item + size: Normal - type: FlavorProfile flavors: - bread - - type: Food - type: Sprite sprite: Objects/Consumable/Food/Baked/bread.rsi - type: Tag @@ -53,7 +54,6 @@ id: FoodBreadVolcanic description: A dark loaf. Resembles pumice. components: - - type: Food - type: Sprite layers: - state: alpha @@ -69,7 +69,6 @@ id: FoodBreadVolcanicSlice description: A slice of dark loaf. Resembles pumice. components: - - type: Food - type: Sprite layers: - state: alpha-slice @@ -89,7 +88,6 @@ flavors: - banana - bread - - type: Food - type: Sprite layers: - state: banana @@ -111,7 +109,6 @@ flavors: - banana - bread - - type: Food - type: Sprite layers: - state: banana-slice @@ -122,16 +119,16 @@ - Slice - type: entity - name: cotton bread parent: FoodBreadBase id: FoodBreadCotton + name: cotton bread description: Bread, but for moff. components: - type: FlavorProfile flavors: - cotton - bread - - type: Food + - type: Edible requiresSpecialDigestion: true - type: Sprite layers: @@ -162,7 +159,7 @@ flavors: - cotton - bread - - type: Food + - type: Edible requiresSpecialDigestion: true - type: Sprite layers: @@ -192,7 +189,6 @@ flavors: - bread - corn - - type: Food - type: Sprite layers: - state: cornbread @@ -217,7 +213,6 @@ flavors: - bread - corn - - type: Food - type: Sprite layers: - state: cornbread-slice @@ -240,7 +235,6 @@ - cheesy - creamy - bread - - type: Food - type: Sprite layers: - state: creamcheese @@ -268,7 +262,6 @@ - cheesy - creamy - bread - - type: Food - type: Sprite layers: - state: creamcheese-slice @@ -292,7 +285,6 @@ flavors: - meaty - bread - - type: Food - type: Sprite layers: - state: meat @@ -323,7 +315,6 @@ flavors: - meaty - bread - - type: Food - type: Sprite layers: - state: meat-slice @@ -352,7 +343,6 @@ flavors: - nothing - bread - - type: Food - type: Sprite layers: - state: mimana @@ -383,7 +373,6 @@ flavors: - nothing - bread - - type: Food - type: Sprite layers: - state: mimana-slice @@ -407,7 +396,6 @@ id: FoodBreadPlain description: Some plain old earthen bread. components: - - type: Food - type: Sprite layers: - state: plain @@ -420,7 +408,6 @@ id: FoodBreadPlainSlice description: A slice of home. components: - - type: Food - type: Sprite layers: - state: plain-slice @@ -435,7 +422,6 @@ flavors: - meaty - bread - - type: Food - type: Sprite layers: - state: sausage @@ -467,7 +453,6 @@ flavors: - meaty - bread - - type: Food - type: Sprite layers: - state: sausage-slice @@ -498,7 +483,6 @@ flavors: - cobwebs - bread - - type: Food - type: Sprite layers: - state: spidermeat @@ -529,7 +513,6 @@ flavors: - cobwebs - bread - - type: Food - type: Sprite layers: - state: spidermeat-slice @@ -558,7 +541,6 @@ flavors: - tofu - bread - - type: Food - type: Sprite layers: - state: tofu @@ -585,7 +567,6 @@ flavors: - tofu - bread - - type: Food - type: Sprite layers: - state: tofu-slice @@ -609,7 +590,6 @@ flavors: - acid - bread - - type: Food - type: Sprite layers: - state: xenomeat @@ -640,7 +620,6 @@ flavors: - acid - bread - - type: Food - type: Sprite layers: - state: xenomeat-slice @@ -662,9 +641,9 @@ # Other than bread/slices - type: entity - name: baguette parent: FoodBreadBase id: FoodBreadBaguette + name: baguette description: Bon appétit! components: - type: Sprite @@ -690,6 +669,9 @@ equippedPrefix: baguette quickEquip: false - type: Item + shape: + - 0,0,0,3 + storedRotation: -45 inhandVisuals: left: - state: baguette-inhand-left @@ -703,16 +685,16 @@ # Tastes like France. - type: entity - name: cotton baguette parent: FoodBreadBaguette id: FoodBreadBaguetteCotton + name: cotton baguette description: Bon azzétit! components: - type: Sprite state: baguette-cotton - type: SliceableFood slice: FoodBreadBaguetteCottonSlice - - type: Food + - type: Edible requiresSpecialDigestion: true - type: Tag tags: @@ -721,6 +703,9 @@ - type: Clothing equippedPrefix: baguette-cotton - type: Item + shape: + - 0,0,0,3 + storedRotation: -45 inhandVisuals: left: - state: baguette-cotton-inhand-left @@ -765,14 +750,14 @@ Quantity: 0.1 - type: entity - name: cotton crostini parent: FoodBreadBaguetteSlice id: FoodBreadBaguetteCottonSlice + name: cotton crostini description: Bon az-zetite! components: - type: Sprite state: crostini-cotton - - type: Food + - type: Edible requiresSpecialDigestion: true - type: Tag tags: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml index c7a10d4212..ddfadb6fb6 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml @@ -6,7 +6,6 @@ id: FoodBakedBase abstract: true components: - - type: Food - type: Sprite sprite: Objects/Consumable/Food/Baked/misc.rsi - type: SolutionContainerManager @@ -27,7 +26,7 @@ id: FoodBakedMuffin description: A delicious and spongy little cake. components: - - type: Food + - type: Edible trash: - FoodPlateMuffinTin - type: Sprite @@ -625,7 +624,7 @@ - cotton - type: Sprite state: chevrechaud-cotton - - type: Food + - type: Edible requiresSpecialDigestion: true - type: Tag tags: @@ -643,11 +642,14 @@ Quantity: 0.5 - type: entity - name: brownies parent: FoodBakedBase id: FoodBakedBrownieBatch + name: brownies description: A pan of brownies. components: + - type: Item + size: Normal + storedOffset: 0,-3 - type: FlavorProfile flavors: - sweet @@ -696,11 +698,14 @@ - Slice - type: entity - name: special brownies parent: FoodBakedBase id: FoodBakedCannabisBrownieBatch + name: special brownies description: A pan of "special" brownies. components: + - type: Item + size: Normal + storedOffset: 0,-3 - type: FlavorProfile flavors: - sweet @@ -725,9 +730,9 @@ slice: FoodBakedCannabisBrownie - type: entity - name: special brownie parent: FoodBakedBase id: FoodBakedCannabisBrownie + name: special brownie description: A "special" brownie. components: - type: FlavorProfile @@ -778,11 +783,17 @@ Quantity: 1 - type: entity - name: croissant parent: FoodBakedBase id: FoodBakedCroissant + name: croissant description: Buttery, flaky goodness. components: + - type: Item + size: Small + shape: + - 0,0,1,0 + - 0,1,0,1 + storedOffset: -2,-4 - type: FlavorProfile flavors: - bread @@ -806,11 +817,16 @@ Blunt: 0 # so the damage stats icon doesn't immediately give away the syndie ones - type: entity - name: cotton croissant parent: FoodBakedCroissant id: FoodBakedCroissantCotton + name: cotton croissant description: Buttery, flaky, fibery goodness. components: + - type: Item + size: Small + shape: + - 0,0,1,0 + - 0,1,0,1 - type: FlavorProfile flavors: - bread @@ -818,7 +834,7 @@ - cotton - type: Sprite state: croissant-cotton - - type: Food + - type: Edible requiresSpecialDigestion: true - type: Tag tags: @@ -838,11 +854,15 @@ Quantity: 1 - type: entity - name: grilled cheese sandwich parent: FoodBakedBase id: FoodBakedGrilledCheeseSandwich + name: grilled cheese sandwich description: Bread and cheese toasted with butter, perfect for a chilly day in space. components: + - type: Item + size: Small + shape: + - 0,0,1,0 - type: FlavorProfile flavors: - cheesy @@ -863,7 +883,7 @@ Quantity: 3 - type: entity - parent: FoodBakedBase + parent: FoodBakedGrilledCheeseSandwich id: FoodBakedGrilledCheeseSandwichCotton name: cotton grilled cheese sandwich description: Cotton bread slightly burnt in butter, with melted cheese. Moths find it difficult to resist this combination. @@ -876,7 +896,7 @@ - type: Sprite sprite: Objects/Consumable/Food/Baked/misc.rsi state: grilled-cheese-cotton - - type: Food + - type: Edible requiresSpecialDigestion: true - type: Tag tags: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml index c031559b58..b2dd9257b5 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml @@ -2,12 +2,13 @@ # Base - type: entity + abstract: true parent: FoodInjectableBase id: FoodPieBase - abstract: true components: - type: Item - storedRotation: -90 + shape: + - 0,0,1,0 - type: FlavorProfile flavors: - sweet @@ -24,7 +25,7 @@ Quantity: 14 - ReagentId: Sugar Quantity: 5 - - type: Food #All pies here made with a pie tin; unless you're some kind of savage, you're probably not destroying this when you eat or slice the pie! + - type: Edible #It's actually possible now to have a pie stored in a tin rather than spawning trash when you finish eating it. But right now I'm just cleaning up. trash: - FoodPlateTin - type: SliceableFood diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml index 5d6b9f9316..a288ad001c 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml @@ -2,15 +2,14 @@ # Base - type: entity + abstract: true parent: FoodInjectableBase id: FoodPizzaBase - abstract: true components: - type: FlavorProfile flavors: - oily - bread - - type: Food - type: Sprite sprite: Objects/Consumable/Food/Baked/pizza.rsi - type: SolutionContainerManager @@ -28,6 +27,7 @@ size: Normal shape: - 0,0,2,1 + storedOffset: 0,-5 - type: Tag tags: - Pizza @@ -42,7 +42,6 @@ flavors: - oily - bread - - type: Food - type: Sprite sprite: Objects/Consumable/Food/Baked/pizza.rsi - type: SolutionContainerManager @@ -654,7 +653,7 @@ - type: Sprite layers: - state: cotton-pizza - - type: Food + - type: Edible requiresSpecialDigestion: true - type: SliceableFood slice: FoodPizzaCottonSlice diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml index ffccf07ab6..1ac5dce0e8 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml @@ -1,13 +1,15 @@ # Bowls - type: entity - name: bowl parent: ReagentContainerBase id: FoodBowlBig + name: bowl description: A simple bowl, used for soups and salads. components: - type: Item - storedRotation: -90 + shape: + - 0,0,1,0 + storedOffset: 0,-3 - type: SolutionContainerManager solutions: food: @@ -21,10 +23,10 @@ visible: false - type: MixableSolution solution: food - - type: Drink + - type: Edible + edible: Drink solution: food - useSound: - path: /Audio/Items/drink.ogg + destroyOnEmpty: false - type: DamageOnLand damage: types: @@ -65,11 +67,15 @@ - Trash - type: entity - name: broken bowl parent: BaseItem id: FoodBowlBigTrash + name: broken bowl description: A simple bowl, broken and useless. components: + - type: Item + shape: + - 0,0,1,0 + storedOffset: 0,-3 - type: Sprite sprite: Objects/Consumable/Food/bowl.rsi state: bowl-trash diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml index a0cc580118..5717a12462 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml @@ -46,7 +46,9 @@ - Donut - type: Item sprite: Objects/Consumable/Food/Baked/donut.rsi - size: Small + size: Normal + shape: + - 0,0,2,1 heldPrefix: box - type: StorageFill contents: @@ -128,7 +130,10 @@ - Egg - type: Item sprite: Objects/Consumable/Food/egg.rsi - size: Small + size: Normal + shape: + - 0,0,2,1 + storedOffset: 0,-6 - type: StorageFill contents: - id: FoodEgg @@ -223,6 +228,7 @@ heldPrefix: box shape: - 0,0,2,1 + storedOffset: 0,-6 - type: Appearance - type: EntityStorageVisuals stateDoorOpen: box-open @@ -367,7 +373,10 @@ - DonkPocket - type: Item sprite: Objects/Consumable/Food/Baked/donkpocket.rsi - size: Small + size: Normal + shape: + - 0,0,2,1 + storedOffset: -1,1 - type: StorageFill contents: - id: FoodDonkpocket @@ -714,8 +723,6 @@ components: - type: StorageFill contents: - - id: FoodBurgerCrazy - orGroup: Burgers - id: FoodBurgerCheese orGroup: Burgers - id: DrinkColaCan @@ -880,6 +887,8 @@ - ClothMade - type: Item size: Normal + shape: + - 0,0,1,1 - type: StorageFill contents: - id: MaterialCloth10 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml index ac2cf22c59..55d22e3980 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/plate.yml @@ -132,9 +132,9 @@ # Plastic Plate - type: entity - name: plastic plate parent: BaseItem id: FoodPlatePlastic + name: large plastic plate description: A large blue plastic plate, excellent for a birthday cake. components: - type: Sprite @@ -154,9 +154,9 @@ - Trash - type: entity - name: plastic plate parent: BaseItem id: FoodPlateSmallPlastic + name: small plastic plate description: A blue plastic plate, excellent for slices of birthday cake. components: - type: Sprite @@ -202,19 +202,19 @@ # Muffin Tin - type: entity - name: muffin tin parent: BaseItem id: FoodPlateMuffinTin + name: muffin tin description: A cheap foil tin for muffins. components: - type: Sprite sprite: Objects/Consumable/Food/plates.rsi state: muffin-tin - type: Item - size: Small + size: Tiny shape: - - 0,0,1,0 - storedOffset: 0,-3 + - 0,0,0,0 + storedOffset: 0,-2 - type: Tag tags: - Trash diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/tin.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/tin.yml index 3fbf14a6d6..ff92ad0417 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/tin.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/tin.yml @@ -37,7 +37,7 @@ - type: Item sprite: Objects/Consumable/Food/snacks.rsi heldPrefix: packet - size: Tiny + size: Small - type: DamageOnLand damage: types: @@ -63,7 +63,7 @@ - type: Item sprite: Objects/Consumable/Food/snacks.rsi heldPrefix: packet - size: Tiny + size: Small - type: PhysicalComposition materialComposition: Steel: 100 @@ -81,14 +81,16 @@ name: tinned peaches description: Just a nice can of ripe peaches swimming in their own juices. components: + - type: Item + storedOffset: 0,-3 - type: Sprite sprite: Objects/Consumable/Food/Tins/peaches.rsi - type: FlavorProfile flavors: - sweet - funny - - type: Food - trash: + - type: Edible + trash: - FoodTinPeachesTrash - type: Tag tags: @@ -99,6 +101,8 @@ id: FoodTinPeachesTrash name: tinned peaches components: + - type: Item + storedOffset: 0,-3 - type: Sprite sprite: Objects/Consumable/Food/Tins/peaches.rsi @@ -110,8 +114,8 @@ components: - type: Sprite sprite: Objects/Consumable/Food/Tins/maint_peaches.rsi - - type: Food - trash: + - type: Edible + trash: - FoodTinPeachesMaintTrash # only exists for backwards compatibility with a few maps, nothing else uses it @@ -132,6 +136,8 @@ id: FoodTinPeachesMaintTrash name: maintenance peaches components: + - type: Item + storedOffset: 0,-3 - type: Sprite sprite: Objects/Consumable/Food/Tins/maint_peaches.rsi @@ -141,6 +147,8 @@ name: tin of beans description: Musical fruit in a slightly less musical container. components: + - type: Item + storedOffset: 0,-3 - type: Sprite sprite: Objects/Consumable/Food/Tins/beans.rsi - type: FlavorProfile @@ -148,8 +156,8 @@ - savory - salty - cheap - - type: Food - trash: + - type: Edible + trash: - FoodTinBeansTrash - type: entity @@ -157,6 +165,8 @@ id: FoodTinBeansTrash name: tin of beans components: + - type: Item + storedOffset: 0,-3 - type: Sprite sprite: Objects/Consumable/Food/Tins/beans.rsi @@ -168,6 +178,10 @@ name: tinned meat description: A standard issue tin of meat with a convenient pull tab. components: + - type: Item + size: Tiny + shape: + - 0,0,0,0 - type: Sprite sprite: Objects/Consumable/Food/Tins/meat.rsi # the convenient pull tab @@ -178,8 +192,8 @@ - meaty - salty - cheap - - type: Food - trash: + - type: Edible + trash: - FoodTinMRETrash - type: Tag tags: @@ -190,5 +204,9 @@ id: FoodTinMRETrash name: tinned meat components: + - type: Item + size: Tiny + shape: + - 0,0,0,0 - type: Sprite sprite: Objects/Consumable/Food/Tins/meat.rsi diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/breakfast.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/breakfast.yml index 01df50b5d5..c9b9cdcce1 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/breakfast.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/breakfast.yml @@ -3,14 +3,13 @@ # Base - type: entity + abstract: true parent: FoodInjectableBase id: FoodBreakfastBase - abstract: true description: A full breakfast, rise and shine! components: - type: Item - storedRotation: -90 - - type: Food + size: Normal - type: Sprite sprite: Objects/Consumable/Food/breakfast.rsi - type: SolutionContainerManager @@ -26,9 +25,9 @@ # Breakfasts - type: entity - name: full american breakfast parent: FoodBreakfastBase id: FoodBreakfastAmerican + name: full american breakfast description: A huge plate of protein and carbs, more likely to put you back in bed than get you out of it. Oh, what fresh hell is this? components: - type: FlavorProfile @@ -38,9 +37,9 @@ state: fullamerican - type: entity - name: full english breakfast parent: FoodBreakfastBase id: FoodBreakfastEnglish + name: full english breakfast description: A huge plate of protein and carbs, more likely to put you back in bed than get you out of it. Don't mention the war! components: - type: FlavorProfile diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml index 1d50d62f31..30f307b6eb 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml @@ -2,12 +2,11 @@ # Bun - type: entity - name: bun parent: FoodBreadSliceBase id: FoodBreadBun + name: bun description: A hamburger bun. Round and convenient to hold. components: - - type: Food - type: Sprite sprite: Objects/Consumable/Food/burger.rsi layers: @@ -28,14 +27,13 @@ amount: 1 - type: entity - id: FoodBreadBunBottom parent: FoodBreadSliceBase + id: FoodBreadBunBottom name: bottom bun description: It's time to start building the burger tower. components: - type: Item size: Normal #patch until there is an adequate resizing system in place - - type: Food - type: Sprite drawdepth: Mobs noRot: true @@ -63,12 +61,11 @@ Quantity: 3.3 # 1/2 of a bun - type: entity - id: FoodBreadBunTop parent: FoodBreadSliceBase + id: FoodBreadBunTop name: top bun description: The perfect finish for your burger tower. components: - - type: Food - type: Sprite sprite: Objects/Consumable/Food/burger_sequence.rsi layers: @@ -87,9 +84,9 @@ # Base - type: entity + abstract: true parent: FoodInjectableBase id: FoodBurgerBase - abstract: true components: - type: FlavorProfile flavors: @@ -108,6 +105,8 @@ Quantity: 3 - type: Item sprite: Objects/Consumable/Food/burger.rsi + shape: + - 0,0,1,0 # Custom Burger Example @@ -264,11 +263,18 @@ - state: burger-inhand-right - type: entity - name: bearger parent: FoodBurgerBase id: FoodBurgerBear + name: bearger description: Best served rawr. components: + - type: Item + storedOffset: 0,1 + inhandVisuals: + left: + - state: bear-inhand-left + right: + - state: bear-inhand-right - type: FlavorProfile flavors: - bun @@ -289,19 +295,23 @@ - type: Tag tags: - Meat - - type: Item - inhandVisuals: - left: - - state: bear-inhand-left - right: - - state: bear-inhand-right - type: entity - name: big bite burger parent: FoodBurgerBase id: FoodBurgerBig + name: big bite burger description: Forget the Big Mac. THIS is the future! components: + - type: Item + size: Normal + shape: + - 0,0,1,1 + storedOffset: 0,3 + inhandVisuals: + left: + - state: burger-big-inhand-left + right: + - state: burger-big-inhand-right - type: FlavorProfile flavors: # What bun? - meaty @@ -323,20 +333,21 @@ - type: Tag tags: - Meat - - type: Item - inhandVisuals: - left: - - state: burger-big-inhand-left - right: - - state: burger-big-inhand-right # Tastes like bun, silver, magic. - type: entity - name: brain burger parent: FoodBurgerBase id: FoodBurgerBrain + name: brain burger description: A strange looking burger. It looks almost sentient. components: + - type: Item + storedOffset: 0,1 + inhandVisuals: + left: + - state: brain-inhand-left + right: + - state: brain-inhand-right - type: FlavorProfile flavors: - bun @@ -357,20 +368,23 @@ - type: Tag tags: - Meat - - type: Item - inhandVisuals: - left: - - state: brain-inhand-left - right: - - state: brain-inhand-right # Tastes like bun, brains. - type: entity - name: cat burger parent: FoodBurgerBase id: FoodBurgerCat + name: cat burger description: Finally those cats and catpeople are worth something! components: + - type: Item + storedOffset: -1,1 + inhandVisuals: + left: + - state: cat-inhand-left + - state: plain-inhand-left + right: + - state: cat-inhand-right + - state: plain-inhand-right - type: Sprite state: cat - type: FlavorProfile @@ -392,14 +406,6 @@ - type: Tag tags: - Meat - - type: Item - inhandVisuals: - left: - - state: cat-inhand-left - - state: plain-inhand-left - right: - - state: cat-inhand-right - - state: plain-inhand-right - type: entity name: cheese burger @@ -489,11 +495,18 @@ # Tastes like bun, chicken. - type: entity - name: clown burger parent: FoodBurgerBase id: FoodBurgerClown + name: clown burger description: This tastes funny... components: + - type: Item + storedOffset: 0,1 + inhandVisuals: + left: + - state: clown-inhand-left + right: + - state: clown-inhand-right - type: FlavorProfile flavors: - bun @@ -514,12 +527,6 @@ - type: Tag tags: - Meat - - type: Item - inhandVisuals: - left: - - state: clown-inhand-left - right: - - state: clown-inhand-right - type: entity name: corger #not curger @@ -594,11 +601,21 @@ color: "#7e1a07" - type: entity - name: crazy hamburger # Burger for you euro-cucks parent: FoodBurgerBase id: FoodBurgerCrazy + name: crazy hamburger # Burger for you euro-cucks description: This looks like the sort of food that a demented clown in a trenchcoat would make. components: + - type: Item + size: Normal + shape: + - 0,0,1,1 + storedOffset: -2,0 + inhandVisuals: + left: + - state: crazy-inhand-left + right: + - state: crazy-inhand-right - type: FlavorProfile flavors: - bun @@ -625,19 +642,28 @@ - type: Tag tags: - Meat - - type: Item - inhandVisuals: - left: - - state: crazy-inhand-left - right: - - state: crazy-inhand-right - type: entity - name: duck sandwich # Burger for you sick bastards parent: FoodBurgerBase id: FoodBurgerDuck + name: duck sandwich # Burger for you sick bastards description: A duck sandwich, only the criminally insane would dare to eat the meat of such an adorable creature. components: + - type: Item + storedOffset: 0,1 + inhandVisuals: + left: + - state: bun-inhand-left + - state: alpha-filling-inhand-left + color: "#98d966" + - state: alpha-patty-inhand-left + color: "#e8b348" + right: + - state: bun-inhand-right + - state: alpha-filling-inhand-right + color: "#98d966" + - state: alpha-patty-inhand-right + color: "#e8b348" - type: FlavorProfile flavors: - bun @@ -656,28 +682,21 @@ - type: Tag tags: - Meat - - type: Item - inhandVisuals: - left: - - state: bun-inhand-left - - state: alpha-filling-inhand-left - color: "#98d966" - - state: alpha-patty-inhand-left - color: "#e8b348" - right: - - state: bun-inhand-right - - state: alpha-filling-inhand-right - color: "#98d966" - - state: alpha-patty-inhand-right - color: "#e8b348" # Tastes like bun, duck. - type: entity - name: empowered burger parent: FoodBurgerBase id: FoodBurgerEmpowered + name: empowered burger description: It's shockingly good, if you live off of electricity that is. components: + - type: Item + storedOffset: -2,1 + inhandVisuals: + left: + - state: plasma-inhand-left + right: + - state: plasma-inhand-right - type: Sprite state: empowered - type: FlavorProfile @@ -693,30 +712,16 @@ Quantity: 8 - ReagentId: Licoxide Quantity: 5 - - type: Item - inhandVisuals: - left: - - state: plasma-inhand-left - right: - - state: plasma-inhand-right # Tastes like bun, pure electricity. - type: entity - name: fillet-o-carp burger parent: FoodBurgerBase id: FoodBurgerCarp + name: fillet-o-carp burger description: Almost like a carp is yelling somewhere... components: - - type: FlavorProfile - flavors: - - bun - - fishy - - type: Sprite - state: fish - - type: Tag - tags: - - Meat - type: Item + storedOffset: 0,1 inhandVisuals: left: - state: bun-inhand-left @@ -730,14 +735,33 @@ color: "#feffba" - state: alpha-patty-inhand-right color: "#f4bb53" + - type: FlavorProfile + flavors: + - bun + - fishy + - type: Sprite + state: fish + - type: Tag + tags: + - Meat # Tastes like bun, fish. - type: entity - name: five alarm burger parent: FoodBurgerBase id: FoodBurgerFive + name: five alarm burger description: HOT! HOT! HOT! components: + - type: Item + size: Normal + shape: + - 0,0,1,1 + storedOffset: 0,1 + inhandVisuals: + left: + - state: plain-inhand-left + right: + - state: plain-inhand-right - type: FlavorProfile flavors: - meaty @@ -762,21 +786,35 @@ - type: Tag tags: - Meat - - type: Item - inhandVisuals: - left: - - state: plain-inhand-left - right: - - state: plain-inhand-right # Tastes like bun, HEAT. - type: entity - name: ghost burger parent: FoodBurgerBase id: FoodBurgerGhost + name: ghost burger description: Too spooky! components: + - type: Item + size: Normal + shape: + - 0,0,1,1 + storedOffset: 0,3 + inhandVisuals: + left: + - state: alpha-bun-inhand-left + color: "#cededa" + - state: alpha-filling-inhand-left + color: "#6a6281" + - state: alpha-patty-inhand-left + color: "#95a79f" + right: + - state: alpha-bun-inhand-right + color: "#cededa" + - state: alpha-filling-inhand-right + color: "#6a6281" + - state: alpha-patty-inhand-right + color: "#95a79f" - type: FlavorProfile flavors: - bun @@ -796,22 +834,6 @@ tags: - ClothMade - Meat - - type: Item - inhandVisuals: - left: - - state: alpha-bun-inhand-left - color: "#cededa" - - state: alpha-filling-inhand-left - color: "#6a6281" - - state: alpha-patty-inhand-left - color: "#95a79f" - right: - - state: alpha-bun-inhand-right - color: "#cededa" - - state: alpha-filling-inhand-right - color: "#6a6281" - - state: alpha-patty-inhand-right - color: "#95a79f" # Tastes like bun, ectoplasm. - type: entity @@ -848,11 +870,26 @@ - state: plain-inhand-right - type: entity - name: McGuffin parent: FoodBurgerBase id: FoodBurgerMcguffin + name: McGuffin description: A cheap and greasy imitation of an eggs Benedict. components: + - type: Item + storedOffset: 0,1 + inhandVisuals: + left: + - state: bun-inhand-left + - state: alpha-filling-inhand-left + color: "#f2efce" + - state: alpha-patty-inhand-left + color: "#e3756d" + right: + - state: bun-inhand-right + - state: alpha-filling-inhand-right + color: "#f2efce" + - state: alpha-patty-inhand-right + color: "#e3756d" - type: FlavorProfile flavors: - muffin @@ -873,28 +910,14 @@ - type: Tag tags: - Meat - - type: Item - inhandVisuals: - left: - - state: bun-inhand-left - - state: alpha-filling-inhand-left - color: "#f2efce" - - state: alpha-patty-inhand-left - color: "#e3756d" - right: - - state: bun-inhand-right - - state: alpha-filling-inhand-right - color: "#f2efce" - - state: alpha-patty-inhand-right - color: "#e3756d" - type: entity - name: BBQ Rib Sandwich parent: FoodBurgerBase id: FoodBurgerMcrib + name: BBQ Rib Sandwich description: An elusive rib shaped burger with limited availability across the galaxy. Not as good as you remember it. components: - - type: Food + - type: Edible trash: - FoodKebabSkewer - type: FlavorProfile @@ -1082,11 +1105,26 @@ # Tastes like bun, lettuce, sludge. - type: entity - name: soylent burger parent: FoodBurgerBase id: FoodBurgerSoy + name: soylent burger description: After eating this you have the overwhelming urge to purchase overpriced figurines of superheroes. components: + - type: Item + storedOffset: 0,1 + inhandVisuals: + left: + - state: bun-inhand-left + - state: alpha-patty-inhand-left + color: "#91d90b" + - state: alpha-filling-inhand-left + color: "#91d90b" + right: + - state: bun-inhand-right + - state: alpha-patty-inhand-right + color: "#91d90b" + - state: alpha-filling-inhand-right + color: "#91d90b" - type: FlavorProfile flavors: - bun @@ -1102,28 +1140,24 @@ Quantity: 13 - ReagentId: Vitamin Quantity: 5 - - type: Item - inhandVisuals: - left: - - state: bun-inhand-left - - state: alpha-patty-inhand-left - color: "#91d90b" - - state: alpha-filling-inhand-left - color: "#91d90b" - right: - - state: bun-inhand-right - - state: alpha-patty-inhand-right - color: "#91d90b" - - state: alpha-filling-inhand-right - color: "#91d90b" # Tastes like bun, redditors. - type: entity - name: spell burger parent: FoodBurgerBase id: FoodBurgerSpell + name: spell burger description: This is absolutely Ei Nath. components: + - type: Item + size: Normal + shape: + - 0,0,1,1 + storedOffset: -1,2 + inhandVisuals: + left: + - state: spell-inhand-left + right: + - state: spell-inhand-right - type: FlavorProfile flavors: - bun @@ -1141,20 +1175,24 @@ Quantity: 5 - ReagentId: Vitamin Quantity: 10 - - type: Item - inhandVisuals: - left: - - state: spell-inhand-left - right: - - state: spell-inhand-right # Tastes like bun, silver. - type: entity - name: super bite burger parent: FoodBurgerBase id: FoodBurgerSuper + name: super bite burger description: This is a mountain of a burger. FOOD! components: + - type: Item + size: Normal + shape: + - 0,0,1,1 + storedOffset: 0,4 + inhandVisuals: + left: + - state: burger-super-inhand-left + right: + - state: burger-super-inhand-right - type: FlavorProfile flavors: # What bun? - meaty @@ -1178,12 +1216,6 @@ - type: Tag tags: - Meat - - type: Item - inhandVisuals: - left: - - state: burger-super-inhand-left - right: - - state: burger-super-inhand-right # Tastes like bun, diabetes. - type: entity @@ -1270,11 +1302,19 @@ # I'd rather wait for a custom burger component. - type: entity - name: mothroachburger parent: FoodBurgerBase id: FoodBurgerMothRoach + name: mothroachburger description: The last lamp it saw was the one inside the microwave. components: + - type: Item + shape: + - 0,0,0,1 + inhandVisuals: + left: + - state: mothroach-inhand-left + right: + - state: mothroach-inhand-right - type: FlavorProfile flavors: - bun @@ -1296,10 +1336,4 @@ - type: Tag tags: - Meat - - type: Item - inhandVisuals: - left: - - state: mothroach-inhand-left - right: - - state: mothroach-inhand-right diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/frozen.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/frozen.yml index 5cbdbf7820..7f96d07850 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/frozen.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/frozen.yml @@ -6,7 +6,6 @@ id: FoodFrozenBase abstract: true components: - - type: Food - type: Sprite sprite: Objects/Consumable/Food/frozen.rsi - type: SolutionContainerManager @@ -20,20 +19,26 @@ # Ice-cream - type: entity - name: ice-cream sandwich parent: FoodFrozenBase id: FoodFrozenSandwich + name: ice-cream sandwich description: Portable ice-cream in its own packaging. components: + - type: Item + shape: + - 0,0,1,0 - type: Sprite state: sandwich - type: entity - name: strawberry ice-cream sandwich parent: FoodFrozenBase id: FoodFrozenSandwichStrawberry + name: strawberry ice-cream sandwich description: Portable ice-cream in its own packaging of the strawberry variety. components: + - type: Item + shape: + - 0,0,1,0 - type: Sprite state: sandwich-strawberry @@ -56,11 +61,13 @@ state: spacefreezy - type: entity - name: cornuto parent: FoodFrozenBase id: FoodFrozenCornuto + name: strawberry ice-cream sandwich description: A Neapolitan vanilla and chocolate ice-cream cone. It menaces with a sprinkling of caramelized nuts. components: + - type: Item + storedRotation: -45 - type: Sprite state: cornuto - type: SolutionContainerManager @@ -87,8 +94,8 @@ - state: popsicle-base - state: popsicle color: orange - - type: Food - trash: + - type: Edible + trash: - FoodFrozenPopsicleTrash - type: Tag tags: @@ -107,8 +114,8 @@ - state: popsicle-base - state: popsicle color: red - - type: Food - trash: + - type: Edible + trash: - FoodFrozenPopsicleTrash - type: Tag tags: @@ -125,8 +132,8 @@ layers: - state: stick - state: jumbo - - type: Food - trash: + - type: Edible + trash: - FoodFrozenPopsicleTrash - type: SolutionContainerManager solutions: @@ -156,8 +163,8 @@ - state: cone - state: alpha-filling # color: foo - - type: Food - trash: + - type: Edible + trash: - FoodFrozenSnowconeTrash - type: SolutionContainerManager solutions: @@ -195,8 +202,8 @@ layers: - state: cone - state: berry - - type: Food - trash: + - type: Edible + trash: - FoodFrozenSnowconeTrash - type: Tag tags: @@ -212,8 +219,8 @@ layers: - state: cone - state: fruitsalad - - type: Food - trash: + - type: Edible + trash: - FoodFrozenSnowconeTrash - type: Tag tags: @@ -229,8 +236,8 @@ layers: - state: cone - state: clown - - type: Food - trash: + - type: Edible + trash: - FoodFrozenSnowconeTrash - type: entity @@ -243,8 +250,8 @@ layers: - state: cone - state: mime - - type: Food - trash: + - type: Edible + trash: - FoodFrozenSnowconeTrash - type: entity @@ -257,18 +264,20 @@ layers: - state: cone - state: rainbow - - type: Food - trash: + - type: Edible + trash: - FoodFrozenSnowconeTrash # Trash - type: entity - name: paper cone parent: BaseItem id: FoodFrozenSnowconeTrash + name: paper cone description: A crumpled paper cone used for an icy treat. Worthless. components: + - type: Item + size: Tiny - type: Sprite sprite: Objects/Consumable/Food/frozen.rsi state: cone-trash diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml index 344827534b..76ea3073e5 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml @@ -281,11 +281,13 @@ - Ingredient - type: entity - name: dough parent: FoodBakingBase id: FoodDough + name: dough description: A piece of dough. components: + - type: Item + size: Normal - type: FlavorProfile flavors: - dough @@ -299,11 +301,13 @@ node: start - type: entity - name: dough slice parent: FoodBakingBase id: FoodDoughSlice + name: dough slice description: A slice of dough. Can be cooked into a bun. components: + - type: Item + size: Tiny - type: FlavorProfile flavors: - dough @@ -324,11 +328,13 @@ Quantity: 5 - type: entity - name: dough rope parent: FoodBakingBase id: FoodDoughRope + name: dough rope description: A thin noodle of dough. Can be cooked into a bagel. components: + - type: Item + storedRotation: -45 - type: FlavorProfile flavors: - dough @@ -346,11 +352,13 @@ Quantity: 5 - type: entity - name: cornmeal dough parent: FoodBakingBase id: FoodDoughCornmeal + name: cornmeal dough description: A piece of cornmeal dough. components: + - type: Item + size: Normal - type: FlavorProfile flavors: - chalky @@ -362,11 +370,13 @@ slice: FoodDoughCornmealSlice - type: entity - name: cornmeal dough slice parent: FoodBakingBase id: FoodDoughCornmealSlice + name: cornmeal dough slice description: A slice of cornmeal dough. components: + - type: Item + size: Tiny - type: FlavorProfile flavors: - chalky @@ -378,11 +388,13 @@ - Slice - type: entity - name: tortilla dough parent: FoodBakingBase id: FoodDoughTortilla + name: tortilla dough description: A piece of tortilla dough. components: + - type: Item + size: Normal - type: FlavorProfile flavors: - chalky @@ -394,11 +406,13 @@ slice: FoodDoughTortillaSlice - type: entity - name: tortilla dough slice parent: FoodBakingBase id: FoodDoughTortillaSlice + name: tortilla dough slice description: A slice of tortilla dough. components: + - type: Item + size: Tiny - type: FlavorProfile flavors: - chalky @@ -413,11 +427,13 @@ - Slice - type: entity - name: flattened tortilla dough parent: FoodBakingBase id: FoodDoughTortillaFlat + name: flattened tortilla dough description: A flattened slice of tortilla dough, cook this to get a taco shell. components: + - type: Item + size: Tiny - type: FlavorProfile flavors: - chalky @@ -429,11 +445,13 @@ node: flat - type: entity - name: cotton dough parent: FoodBakingBase id: FoodDoughCotton + name: cotton dough description: A piece of fabric dough. components: + - type: Item + size: Normal - type: FlavorProfile flavors: - dough @@ -461,11 +479,13 @@ Quantity: 10 - type: entity - name: cotton dough slice parent: FoodBakingBase id: FoodDoughCottonSlice + name: cotton dough slice description: A slice of cotton dough. components: + - type: Item + size: Tiny - type: FlavorProfile flavors: - dough @@ -490,11 +510,13 @@ Quantity: 3.5 - type: entity - name: cotton dough rope parent: FoodBakingBase id: FoodDoughCottonRope + name: cotton dough rope description: A thin noodle of cotton dough. Can be cooked into a cotton bagel. components: + - type: Item + storedRotation: -45 - type: FlavorProfile flavors: - dough @@ -537,20 +559,26 @@ state: dough-pastry-baked - type: entity - name: pie dough parent: FoodBakingBase id: FoodDoughPie + name: pie dough description: Cook it to get a pie. components: + - type: Item + size: Normal - type: Sprite state: dough-pie - type: entity - name: flat dough parent: FoodBakingBase id: FoodDoughFlat + name: flat dough description: A flattened dough. components: + - type: Item + size: Normal + shape: + - 0,0,2,1 - type: Sprite state: dough-flat - type: Construction @@ -561,11 +589,15 @@ slice: FoodCroissantRaw - type: entity - name: flat cotton dough parent: FoodBakingBase id: FoodDoughCottonFlat + name: flat cotton dough description: A flattened cotton dough. components: + - type: Item + size: Normal + shape: + - 0,0,2,1 - type: Sprite state: cotton-dough-flat - type: Construction @@ -576,20 +608,26 @@ slice: FoodCroissantRawCotton - type: entity - name: pizza bread parent: FoodBakingBase id: FoodDoughPizzaBaked + name: pizza bread description: Add ingredients to make a pizza. components: + - type: Item + size: Normal + shape: + - 0,0,2,1 - type: Sprite state: pizzabread - type: entity - name: cake batter parent: FoodBakingBase id: FoodCakeBatter + name: cake batter description: Cook it to get a cake. components: + - type: Item + size: Normal - type: FlavorProfile flavors: - sweetdough @@ -597,11 +635,14 @@ state: cakebatter - type: entity - name: stick of butter parent: FoodBakingBase id: FoodButter + name: stick of butter description: A stick of delicious, golden, fatty goodness. components: + - type: Item + shape: + - 0,0,1,0 - type: Sprite state: butter - type: Slippery @@ -639,11 +680,13 @@ slice: FoodButterSlice - type: entity - name: butter slice parent: FoodBakingBase id: FoodButterSlice + name: butter slice description: A pat of delicious, golden, fatty goodness. components: + - type: Item + size: Tiny - type: Sprite state: butter-slice - type: SolutionContainerManager @@ -696,9 +739,9 @@ slice: FoodCheeseSlice - type: entity - name: cheese wedge parent: FoodBakingBase id: FoodCheeseSlice + name: cheese wedge description: A wedge of delicious Cheddar. The cheese wheel it was cut from can't have gone far. components: - type: FlavorProfile @@ -721,6 +764,8 @@ Taco: CheeseTaco Burger: CheeseBurger - type: Item + size: Tiny + storedOffset: 0,-3 inhandVisuals: left: - state: cheesewedge-inhand-left @@ -728,11 +773,15 @@ - state: cheesewedge-inhand-right - type: entity - name: chèvre log parent: FoodBakingBase id: FoodChevre + name: chèvre log description: A soft log of creamy Chèvre. components: + - type: Item + shape: + - 0,0,1,0 + storedOffset: 0,-2 - type: FlavorProfile flavors: - nutty @@ -753,11 +802,13 @@ Quantity: 0.6 - type: entity - name: chèvre disk parent: FoodBakingBase id: FoodChevreSlice + name: chèvre disk description: A small disk of creamy Chèvre. An ideal adornment for French side dishes. components: + - type: Item + size: Tiny - type: FlavorProfile flavors: - nutty @@ -778,11 +829,13 @@ - Slice - type: entity - name: tofu parent: FoodBakingBase id: FoodTofu + name: tofu description: Solid white block with a subtle flavor. components: + - type: Item + size: Normal - type: FlavorProfile flavors: - tofu @@ -802,11 +855,13 @@ slice: FoodTofuSlice - type: entity - name: tofu slice parent: FoodBakingBase id: FoodTofuSlice + name: tofu slice description: A slice of tofu. Ingredient of various vegetarian dishes. components: + - type: Item + size: Tiny - type: FlavorProfile flavors: - tofu @@ -882,11 +937,16 @@ - Ingredient - type: entity - name: raw croissant parent: FoodBakingBase id: FoodCroissantRaw + name: raw croissant description: Buttery, flaky goodness waiting to happen. components: + - type: Item + shape: + - 0,0,1,0 + - 0,1,0,1 + storedOffset: -2,-4 - type: FlavorProfile flavors: - dough @@ -901,11 +961,16 @@ Quantity: 3 - type: entity - name: raw cotton croissant parent: FoodCroissantRaw id: FoodCroissantRawCotton + name: raw cotton croissant description: Buttery, flaky, fibery goodness waiting to happen. components: + - type: Item + shape: + - 0,0,1,0 + - 0,1,0,1 + storedOffset: -2,-4 - type: FlavorProfile flavors: - dough diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml index 4be9b9f600..4561464d18 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml @@ -5,14 +5,14 @@ # Base - type: entity + abstract: true parent: FoodInjectableBase id: FoodMealBase - abstract: true description: A delicious meal, cooked with love. components: - type: Item - storedRotation: -90 - - type: Food + shape: + - 0,0,1,0 - type: Sprite sprite: Objects/Consumable/Food/meals.rsi - type: SolutionContainerManager @@ -26,11 +26,13 @@ # Meals - type: entity - name: loaded baked potato parent: FoodMealBase id: FoodMealPotatoLoaded + name: loaded baked potato description: Totally baked. components: + - type: Item + storedOffset: 0,-2 - type: FlavorProfile flavors: - cheesy @@ -40,11 +42,13 @@ # Tastes like potato. - type: entity - name: space fries parent: FoodMealBase id: FoodMealFries + name: space fries description: AKA, French Fries, Freedom Fries, etc. components: + - type: Item + storedOffset: 0,-3 - type: FlavorProfile flavors: - potatoes @@ -54,11 +58,13 @@ # Tastes like fries, salt. - type: entity - name: cheesy fries parent: FoodMealBase id: FoodMealFriesCheesy + name: cheesy fries description: Fries. Covered in cheese. Duh. components: + - type: Item + storedOffset: 0,-3 - type: FlavorProfile flavors: - potatoes @@ -69,11 +75,13 @@ # Tastes like fries, cheese. - type: entity - name: carrot fries parent: FoodMealBase id: FoodMealFriesCarrot + name: carrot fries description: Tasty fries from fresh carrots. components: + - type: Item + storedOffset: 0,-3 - type: FlavorProfile flavors: - carrots @@ -93,12 +101,14 @@ # Tastes like carrots, salt. - type: entity - name: nachos parent: FoodMealBase id: FoodMealNachos + name: nachos description: Chips from Space Mexico. components: - - type: Food + - type: Item + storedOffset: 0,-2 + - type: Edible trash: - FoodPlateSmall - type: FlavorProfile @@ -118,12 +128,14 @@ # Tastes like nachos. - type: entity - name: cheesy nachos parent: FoodMealBase id: FoodMealNachosCheesy + name: cheesy nachos description: The delicious combination of nachos and melting cheese. components: - - type: Food + - type: Item + storedOffset: 0,-2 + - type: Edible trash: - FoodPlateSmall - type: FlavorProfile @@ -144,12 +156,14 @@ # Tastes like nachos, cheese. - type: entity - name: Cuban nachos parent: FoodMealBase id: FoodMealNachosCuban + name: Cuban nachos description: That's some dangerously spicy nachos. components: - - type: Food + - type: Item + storedOffset: 0,-2 + - type: Edible trash: - FoodPlateSmall - type: FlavorProfile @@ -173,11 +187,13 @@ # Tastes like nachos, hot pepper. - type: entity - name: mint parent: FoodMealBase id: FoodMealMint + name: mint description: It's wafer thin. components: + - type: Item + storedOffset: 0,-1 - type: FlavorProfile flavors: - minty @@ -194,11 +210,13 @@ # Tastes like parsnips, salt. - type: entity - name: eggplant parmigiana parent: FoodMealBase id: FoodMealEggplantParm + name: eggplant parmigiana description: The only good recipe for eggplant. components: + - type: Item + storedOffset: 0,-2 - type: FlavorProfile flavors: - eggplant @@ -220,11 +238,13 @@ # Tastes like eggplant, cheese. - type: entity - name: yaki imo parent: FoodMealBase id: FoodMealPotatoYaki + name: yaki imo description: Made with roasted sweet potatoes! components: + - type: Item + storedOffset: 0,-2 - type: FlavorProfile flavors: - sweet @@ -234,11 +254,13 @@ # Tastes like sweet potato. - type: entity - name: Cuban carp parent: FoodMealBase id: FoodMealCubancarp + name: Cuban carp description: A grifftastic sandwich that burns your tongue and then leaves it numb! components: + - type: Item + storedOffset: 3,-7 - type: FlavorProfile flavors: - fishy @@ -266,11 +288,13 @@ # Tastes like fish, batter, hot peppers. - type: entity - name: corned beef and cabbage parent: FoodMealBase id: FoodMealCornedbeef + name: corned beef and cabbage description: Now you can feel like a real tourist vacationing in Ireland. components: + - type: Item + storedOffset: 0,-1 - type: FlavorProfile flavors: - meaty @@ -292,11 +316,16 @@ # Tastes like meat, cabbage. - type: entity - name: filet migrawr parent: FoodMealBase id: FoodMealBearsteak + name: filet migrawr description: Because eating bear wasn't manly enough. components: + - type: Item + size: Normal + shape: + - 0,0,1,1 + storedOffset: -1,4 - type: FlavorProfile flavors: - meaty @@ -318,11 +347,15 @@ # Tastes like meat, salmon. - type: entity - name: pig in a blanket parent: FoodMealBase id: FoodMealPigblanket + name: pig in a blanket description: A tiny sausage wrapped in a flakey, buttery roll. Free this pig from its blanket prison by eating it. components: + - type: Item + size: Tiny + shape: + - 0,0,0,0 - type: FlavorProfile flavors: - meaty @@ -344,12 +377,14 @@ # Tastes like meat, butter. - type: entity - name: bbq ribs parent: FoodMealBase id: FoodMealRibs + name: bbq ribs description: BBQ ribs, slathered in a healthy coating of BBQ sauce. The least vegan thing to ever exist. components: - - type: Food + - type: Item + storedOffset: 0,-4 + - type: Edible trash: - FoodKebabSkewer - type: FlavorProfile @@ -375,9 +410,9 @@ # Tastes like meat, smokey sauce. - type: entity - name: eggs benedict parent: FoodMealBase id: FoodMealEggsbenedict + name: eggs benedict description: There is only one egg on this, how rude. components: - type: FlavorProfile @@ -402,11 +437,13 @@ # Tastes like eggs, bacon, bun. - type: entity - name: cheese omelette parent: FoodMealBase id: FoodMealOmelette + name: cheese omelette description: Cheesy. components: + - type: Item + storedOffset: 0,-1 - type: FlavorProfile flavors: - egg @@ -426,11 +463,13 @@ # Tastes like egg, cheese. - type: entity - name: fried egg parent: FoodMealBase id: FoodMealFriedegg + name: fried egg description: A fried egg, with a touch of salt and pepper. components: + - type: Item + storedOffset: 0,-1 - type: FlavorProfile flavors: - egg @@ -455,11 +494,15 @@ # Tastes like egg, salt, pepper. - type: entity - name: milk ape parent: FoodMealBase id: FoodMealMilkape + name: milk ape description: The king of Jungle Thick. components: + - type: Item + size: Normal + shape: + - 0,0,1,1 - type: FlavorProfile flavors: - milk @@ -469,11 +512,14 @@ # Tastes like milk, chocolate, the jungle. - type: entity - name: memory leek parent: FoodMealBase id: FoodMealMemoryleek + name: memory leek description: This should refresh your memory. components: + - type: Item + shape: + - 0,0,0,1 - type: FlavorProfile flavors: - memoryleek @@ -491,11 +537,16 @@ # Tastes like pain. - type: entity - name: salty sweet miso cola soup parent: FoodMealBase id: DisgustingSweptSoup + name: salty sweet miso cola soup description: Jesus christ. components: + - type: Item + size: Normal + shape: + - 0,0,1,1 + storedOffset: 0,-2 - type: Sprite state: saltysweet - type: SolutionContainerManager @@ -512,11 +563,13 @@ # Tastes awesome. - type: entity - name: queso parent: FoodMealBase id: FoodMealQueso + name: queso description: A classic dipping sauce that you can't go wrong with. components: + - type: Item + storedOffset: 0,-6 - type: FlavorProfile flavors: - cheesy @@ -550,11 +603,13 @@ # tastes exotic - type: entity - name: enchiladas parent: FoodMealBase id: FoodMealEnchiladas + name: enchiladas description: Viva La Mexico! components: + - type: Item + storedOffset: -1,0 - type: FlavorProfile flavors: - meaty @@ -579,11 +634,13 @@ # What do Europeans eat instead of enchiladas? 25.4 millimeter-iladas. - type: entity - name: melon fruit bowl parent: FoodMealBase id: FoodSaladWatermelonFruitBowl + name: melon fruit bowl description: The only salad where you can eat the bowl. components: + - type: Item + storedOffset: 0,-3 - type: FlavorProfile flavors: - fruity @@ -610,12 +667,14 @@ - Fruit - type: entity - name: corn in butter parent: FoodMealBase id: FoodMealCornInButter + name: corn in butter description: Buttery. components: - - type: Food + - type: Item + storedOffset: 0,-5 + - type: Edible trash: - FoodPlate - type: FlavorProfile diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml index b603ffe011..642a068069 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml @@ -1,9 +1,9 @@ # Base - type: entity + abstract: true parent: FoodInjectableBase id: FoodMeatBase - abstract: true components: - type: FlavorProfile flavors: @@ -24,7 +24,8 @@ - ReagentId: Fat Quantity: 5 - type: Item - size: Tiny + shape: + - 0,0,1,0 - type: Fixtures fixtures: fix1: @@ -82,9 +83,9 @@ # Raw - type: entity - name: raw meat parent: FoodMeatRawBase id: FoodMeat + name: raw meat description: A slab of raw meat. components: - type: Sprite @@ -110,6 +111,7 @@ tags: - Meat - type: Item + storedOffset: -2,1 inhandVisuals: left: - state: plain-inhand-left @@ -117,9 +119,9 @@ - state: plain-inhand-right - type: entity - name: raw human meat parent: FoodMeatRawBase id: FoodMeatHuman + name: raw human meat description: Gross. components: - type: Sprite @@ -134,6 +136,7 @@ count: 3 slice: FoodMeatCutlet - type: Item + storedOffset: -2,1 inhandVisuals: left: - state: plain-inhand-left @@ -141,10 +144,10 @@ - state: plain-inhand-right - type: entity - name: raw carp fillet parent: FoodMeatBase # MeatFish?... id: FoodMeatFish + name: raw carp fillet description: Your last words being "Wow, exotic!" are not worth it. The taste itself though? Maybe. components: - type: FlavorProfile @@ -168,6 +171,7 @@ - ReagentId: CarpoToxin Quantity: 5 - type: Item + storedOffset: -1,1 inhandVisuals: left: - state: generic-pink-inhand-left @@ -175,10 +179,10 @@ - state: generic-pink-inhand-right - type: entity - name: raw bacon # bacon is cured so not raw = cant rot parent: FoodMeatBase id: FoodMeatBacon + name: raw bacon description: A raw piece of bacon. components: - type: Tag @@ -204,6 +208,7 @@ node: start defaultTarget: bacon - type: Item + storedOffset: -1,0 inhandVisuals: left: - state: generic-pink-inhand-left @@ -211,9 +216,9 @@ - state: generic-pink-inhand-right - type: entity - name: raw bear meat parent: FoodMeatRawBase id: FoodMeatBear + name: raw bear meat description: A very manly slab of raw bear meat. components: - type: Sprite @@ -234,6 +239,7 @@ node: start defaultTarget: filet migrawr - type: Item + storedOffset: -1,2 inhandVisuals: left: - state: generic-pink-inhand-left @@ -243,9 +249,9 @@ color: "#934C64" - type: entity - name: raw penguin meat parent: FoodMeatRawBase id: FoodMeatPenguin + name: raw penguin meat description: A slab of raw penguin meat. Can be used as a substitute for fish in recipes. components: - type: Sprite @@ -266,6 +272,7 @@ node: start defaultTarget: cooked penguin - type: Item + storedOffset: -1,1 inhandVisuals: left: - state: generic-pink-inhand-left @@ -273,9 +280,9 @@ - state: generic-pink-inhand-right - type: entity - name: raw chicken meat parent: FoodMeatRawBase id: FoodMeatChicken + name: raw chicken meat description: A slab of raw chicken. Remember to wash your hands! components: - type: Sprite @@ -298,6 +305,7 @@ node: start defaultTarget: cooked chicken - type: Item + storedOffset: -1,1 inhandVisuals: left: - state: generic-pink-inhand-left @@ -305,9 +313,9 @@ - state: generic-pink-inhand-right - type: entity - name: raw duck meat parent: FoodMeatRawBase id: FoodMeatDuck + name: raw duck meat description: A slab of raw duck. Remember to wash your hands! components: - type: Sprite @@ -328,6 +336,7 @@ node: start defaultTarget: cooked duck - type: Item + storedOffset: -1,1 inhandVisuals: left: - state: generic-pink-inhand-left @@ -366,11 +375,13 @@ - state: corgi-inhand-right - type: entity - name: raw crab meat parent: FoodMeatRawBase id: FoodMeatCrab + name: raw crab meat description: A pile of raw crab meat. components: + - type: Item + storedOffset: -1,2 - type: FlavorProfile flavors: - crabby @@ -390,9 +401,9 @@ defaultTarget: cooked crab - type: entity - name: raw goliath meat parent: FoodMeatRawBase id: FoodMeatGoliath + name: raw goliath meat description: A slab of goliath meat. It's not very edible now, but it cooks great in lava. components: - type: Sprite @@ -412,6 +423,7 @@ node: start defaultTarget: goliath steak - type: Item + storedOffset: -1,0 inhandVisuals: left: - state: plain-inhand-left @@ -419,9 +431,9 @@ - state: plain-inhand-right - type: entity - name: dragon flesh parent: FoodMeatBase id: FoodMeatDragon + name: dragon flesh description: The dense meat of the space-era apex predator is oozing with its mythical ichor. Ironically, best eaten raw. components: - type: Tag @@ -452,6 +464,7 @@ node: start defaultTarget: dragon steak - type: Item + storedOffset: -2,1 inhandVisuals: left: - state: dragon-inhand-left @@ -459,9 +472,9 @@ - state: dragon-inhand-right - type: entity - name: raw rat meat parent: FoodMeatRawBase id: FoodMeatRat + name: raw rat meat description: Prime meat from maintenance! components: - type: Sprite @@ -478,6 +491,7 @@ count: 3 slice: FoodMeatCutlet - type: Item + storedOffset: -2,1 inhandVisuals: left: - state: plain-inhand-left @@ -485,9 +499,9 @@ - state: plain-inhand-right - type: entity - name: raw lizard meat parent: FoodMeatRawBase id: FoodMeatLizard + name: raw lizard meat description: Delicious dino damage. components: - type: Sprite @@ -508,6 +522,7 @@ node: start defaultTarget: lizard steak - type: Item + storedOffset: -1,1 inhandVisuals: left: - state: plain-inhand-left @@ -526,9 +541,9 @@ state: plant - type: entity - name: rotten meat parent: FoodMeatBase id: FoodMeatRotten + name: rotten meat description: Halfway to becoming fertilizer for your garden. components: - type: Tag @@ -550,6 +565,7 @@ - ReagentId: Fat Quantity: 4 - type: Item + storedOffset: -2,1 inhandVisuals: left: - state: rotten-inhand-left @@ -557,9 +573,9 @@ - state: rotten-inhand-right - type: entity - name: raw spider meat parent: FoodMeatRawBase id: FoodMeatSpider + name: raw spider meat description: A slab of spider meat. That's so Kafkaesque. components: - type: Sprite @@ -576,12 +592,13 @@ count: 3 slice: FoodMeatSpiderCutlet - type: Item + storedOffset: 0,2 heldPrefix: spider - type: entity - name: raw spider leg parent: FoodMeatBase id: FoodMeatSpiderLeg + name: raw spider leg description: A still twitching leg of a giant spider... you don't really want to eat this, do you? components: - type: Sprite @@ -595,6 +612,9 @@ - ReagentId: Fat Quantity: 3 - type: Item + size: Normal + shape: + - 0,0,1,1 inhandVisuals: left: - state: snake-inhand-left @@ -604,9 +624,9 @@ color: "#333333" - type: entity - name: meatwheat clump parent: FoodMeatBase id: FoodMeatWheat + name: meatwheat clump description: This doesn't look like meat, but your standards aren't that high to begin with. components: - type: FlavorProfile @@ -621,6 +641,9 @@ - ReagentId: UncookedAnimalProteins Quantity: 1 - type: Item + size: Tiny + shape: + - 0,0,0,0 inhandVisuals: left: - state: generic-pink-inhand-left @@ -630,9 +653,9 @@ color: "#934C64" - type: entity - name: raw snake meat parent: FoodMeatBase id: FoodMeatSnake + name: raw snake meat description: A long piece of snake meat, hopefully not poisonous. components: - type: Tag @@ -650,6 +673,7 @@ - ReagentId: Toxin Quantity: 2 - type: Item + storedOffset: -1,3 inhandVisuals: left: - state: snake-inhand-left @@ -657,10 +681,10 @@ - state: snake-inhand-right - type: entity - name: raw xeno meat # not raw since acid kills bacteria or something, same as xeno parent: FoodMeatBase id: FoodMeatXeno + name: raw xeno meat description: A slab of xeno meat, dripping with acid. components: - type: FlavorProfile @@ -683,6 +707,7 @@ count: 3 slice: FoodMeatXenoCutlet - type: Item + storedOffset: -2,1 inhandVisuals: left: - state: plain-inhand-left @@ -727,9 +752,9 @@ - state: plain-inhand-right - type: entity - name: killer tomato meat parent: FoodMeatBase id: FoodMeatTomato + name: killer tomato meat description: A slice from a huge tomato. components: - type: Sprite @@ -740,6 +765,7 @@ - type: StaticPrice price: 100 - type: Item + storedOffset: 0,-2 inhandVisuals: left: - state: tomato-inhand-left @@ -747,11 +773,13 @@ - state: tomato-inhand-right - type: entity - name: salami parent: FoodMeatBase id: FoodMeatSalami + name: salami description: A large tube of salami. Best not to ask what went into it. components: + - type: Item + storedOffset: 0,1 - type: Tag tags: - Raw @@ -773,11 +801,13 @@ Blunt: 2 - type: entity - name: meat clown parent: FoodMeatBase id: FoodMeatClown + name: meat clown description: A delicious, round piece of meat clown. How horrifying. components: + - type: Item + storedOffset: 0,3 - type: FlavorProfile flavors: - meaty @@ -792,11 +822,16 @@ slice: FoodMeatSalamiSlice - type: entity - name: meatball parent: FoodMeatBase id: FoodMeatMeatball + name: meatball description: A raw ball of meat. Meat ball. components: + - type: Item + size: Tiny + shape: + - 0,0,0,0 + storedOffset: -1,2 - type: Tag tags: - Raw @@ -810,9 +845,9 @@ # meat patty - grillin' time - type: entity - name: meat patty parent: FoodMeatBase id: FoodMeatPatty + name: meat patty description: A flat slab of ground meat. Ready for grillin'. components: - type: Tag @@ -828,12 +863,15 @@ node: start defaultTarget: cooked meat patty - type: Item + size: Tiny + shape: + - 0,0,0,0 heldPrefix: generic-pink - type: entity - name: slimeball parent: FoodMeatBase id: FoodMeatSlime + name: slimeball description: A gelatinous shaping of slime jelly. components: - type: FlavorProfile @@ -851,6 +889,7 @@ - type: Sprite state: slime - type: Item + storedOffset: -1,2 inhandVisuals: left: - state: slime-inhand-left @@ -858,9 +897,9 @@ - state: slime-inhand-right - type: entity - name: raw snail meat parent: FoodMeatRawBase id: FoodMeatSnail + name: raw snail meat description: Improved with salt. components: - type: Sprite @@ -877,6 +916,7 @@ - ReagentId: Water Quantity: 4 #It makes saline if you add salt! - type: Item + storedOffset: -1,-3 inhandVisuals: left: - state: generic-pink-inhand-left @@ -886,9 +926,9 @@ color: "#E2AE7C" - type: entity - name: anomalous meat mass parent: FoodMeatRawBase id: FoodMeatAnomaly + name: anomalous meat mass description: An impossibly dense slab of meat. Just looking at it makes you uncomfortable. components: - type: Sprite @@ -915,6 +955,9 @@ tags: - Meat - type: Item + size: Normal + shape: + - 0,0,1,1 inhandVisuals: left: - state: plain-inhand-left @@ -929,6 +972,8 @@ name: smile extract description: It's a real panacea. But at what cost? components: + - type: Item + size: Tiny - type: Extractable grindableSolutionName: food - type: FlavorProfile @@ -956,9 +1001,9 @@ - Meat - type: entity - name: steak parent: FoodMeatBase id: FoodMeatCooked + name: steak description: A cooked slab of meat. Smells primal. components: - type: Tag @@ -988,6 +1033,7 @@ Burger: MeatSteak Taco: MeatSteak - type: Item + storedOffset: -2,1 inhandVisuals: left: - state: plain-cooked-inhand-left @@ -995,9 +1041,9 @@ - state: plain-cooked-inhand-right - type: entity - name: bacon parent: FoodMeatBase id: FoodMeatBaconCooked + name: bacon description: A delicious piece of cooked bacon. components: - type: Tag @@ -1029,6 +1075,7 @@ Burger: MeatBacon Taco: MeatBacon - type: Item + storedOffset: -1,0 inhandVisuals: left: - state: generic-pink-inhand-left @@ -1038,9 +1085,9 @@ color: "#5B3E2A" - type: entity - name: cooked bear parent: FoodMeatBase id: FoodMeatBearCooked + name: cooked bear description: A well-cooked slab of bear meat. Tough, but tasty with the right sides. components: - type: Tag @@ -1070,12 +1117,13 @@ Burger: MeatBearBurger Taco: MeatBear - type: Item + storedOffset: -1,1 heldPrefix: meatball - type: entity - name: penguin filet parent: FoodMeatBase id: FoodMeatPenguinCooked + name: penguin filet description: A cooked filet of penguin. Can be used as a substitute for fish in recipes. components: - type: Tag @@ -1104,6 +1152,7 @@ Burger: MeatPenguinBurger Taco: MeatPenguin - type: Item + storedOffset: -1,1 inhandVisuals: left: - state: plain-cooked-inhand-left @@ -1113,9 +1162,9 @@ color: "#F7E3A3" - type: entity - name: cooked chicken parent: FoodMeatBase id: FoodMeatChickenCooked + name: cooked chicken description: A cooked piece of chicken. Best used in other recipes. components: - type: Tag @@ -1144,6 +1193,7 @@ Burger: MeatChicken Taco: MeatChicken - type: Item + storedOffset: -1,1 inhandVisuals: left: - state: plain-cooked-inhand-left @@ -1193,9 +1243,9 @@ color: "#F7E3A3" - type: entity - name: cooked duck parent: FoodMeatBase id: FoodMeatDuckCooked + name: cooked duck description: A cooked piece of duck. Best used in other recipes. components: - type: Tag @@ -1224,6 +1274,7 @@ Burger: MeatDuck Taco: MeatDuck - type: Item + storedOffset: -1,1 inhandVisuals: left: - state: plain-cooked-inhand-left @@ -1233,9 +1284,9 @@ color: "#F7E3A3" - type: entity - name: cooked crab parent: FoodMeatBase id: FoodMeatCrabCooked + name: cooked crab description: Some deliciously cooked crab meat. components: - type: FlavorProfile @@ -1264,6 +1315,7 @@ Burger: MeatCrabBurger Taco: MeatCrab - type: Item + storedOffset: -1,2 inhandVisuals: left: - state: plain-cooked-inhand-left @@ -1271,9 +1323,9 @@ - state: plain-cooked-inhand-right - type: entity - name: goliath steak parent: FoodMeatBase id: FoodMeatGoliathCooked + name: goliath steak description: A delicious, lava cooked steak. components: - type: Tag @@ -1300,6 +1352,7 @@ Burger: MeatGoliathBurger Taco: MeatGoliath - type: Item + storedOffset: -1,0 inhandVisuals: left: - state: plain-cooked-inhand-left @@ -1347,9 +1400,9 @@ - state: plain-cooked-inhand-right - type: entity - name: lizard steak parent: FoodMeatBase id: FoodMeatLizardCooked + name: lizard steak description: Cooked, tough lizard meat. components: - type: Tag @@ -1379,6 +1432,7 @@ Burger: MeatLizardBurger Taco: MeatLizard - type: Item + storedOffset: -1,1 inhandVisuals: left: - state: plain-cooked-inhand-left @@ -1386,9 +1440,9 @@ - state: plain-cooked-inhand-right - type: entity - name: boiled spider leg parent: FoodMeatBase id: FoodMeatSpiderlegCooked + name: boiled spider leg description: A giant spider's leg that's still twitching after being cooked. Gross! components: - type: Tag @@ -1411,6 +1465,7 @@ Burger: MeatSpiderBurger Taco: MeatSpider - type: Item + storedOffset: -1,-1 inhandVisuals: left: - state: snake-inhand-left @@ -1420,9 +1475,9 @@ color: "#44201A" - type: entity - name: meatball parent: FoodMeatBase id: FoodMeatMeatballCooked + name: meatball description: A cooked meatball. Perfect to add to other dishes... except fruity ones. components: - type: Tag @@ -1447,12 +1502,16 @@ graph: MeatMeatballCooked node: meatball cooked - type: Item + size: Tiny + shape: + - 0,0,0,0 + storedOffset: -1,2 heldPrefix: meatball - type: entity - name: cooked meat patty parent: FoodMeatBase id: FoodMeatPattyCooked + name: cooked meat patty description: A cooked meat patty. components: - type: Tag @@ -1478,12 +1537,15 @@ Burger: MeatPatty Taco: MeatPatty - type: Item + size: Tiny + shape: + - 0,0,0,0 heldPrefix: meatball - type: entity - name: boiled snail parent: FoodMeatBase id: FoodMeatSnailCooked + name: boiled snail description: Improved with salt. components: - type: Tag @@ -1509,6 +1571,7 @@ Burger: MeatSnail Taco: MeatSnail - type: Item + storedOffset: -1,-3 inhandVisuals: left: - state: generic-pink-inhand-left @@ -1518,9 +1581,9 @@ color: "#5B3E2A" - type: entity - name: anomalous steak parent: FoodMeatBase id: FoodMeatAnomalyCooked + name: anomalous steak description: A gigantic mass of cooked meat. A meal for a dinner party, or someone REALLY hungry. components: - type: Tag @@ -1546,6 +1609,9 @@ graph: AnomalyMeatSteak node: anomaly steak - type: Item + size: Normal + shape: + - 0,0,1,1 inhandVisuals: left: - state: plain-cooked-inhand-left @@ -1553,9 +1619,9 @@ - state: plain-cooked-inhand-right - type: entity - name: dragon steak parent: FoodMeatBase id: FoodMeatDragonCooked + name: dragon steak description: Pouring ketchup on this is considered a capital crime on most stations. components: - type: Tag @@ -1587,6 +1653,7 @@ Burger: DragonSteak Taco: DragonSteak - type: Item + storedOffset: 0,-1 inhandVisuals: left: - state: dragon-cooked-inhand-left @@ -1598,9 +1665,9 @@ # Raw - type: entity - name: raw cutlet parent: FoodMeatBase id: FoodMeatCutlet + name: raw cutlet description: A raw meat cutlet. components: - type: Tag @@ -1623,6 +1690,9 @@ node: start defaultTarget: cutlet - type: Item + size: Tiny + shape: + - 0,0,0,0 inhandVisuals: left: - state: generic-pink-inhand-left @@ -1630,9 +1700,9 @@ - state: generic-pink-inhand-right - type: entity - name: raw bear cutlet parent: FoodMeatBase id: FoodMeatBearCutlet + name: raw bear cutlet description: A very manly cutlet of raw bear meat. components: - type: Tag @@ -1658,6 +1728,9 @@ node: start defaultTarget: bear cutlet - type: Item + size: Tiny + shape: + - 0,0,0,0 inhandVisuals: left: - state: generic-pink-inhand-left @@ -1667,9 +1740,9 @@ color: brown - type: entity - name: raw penguin cutlet parent: FoodMeatBase id: FoodMeatPenguinCutlet + name: raw penguin cutlet description: A cutlet of raw penguin meat. Can be used as a substitute for fish in recipes. components: - type: Tag @@ -1693,6 +1766,9 @@ node: start defaultTarget: penguin cutlet - type: Item + size: Tiny + shape: + - 0,0,0,0 inhandVisuals: left: - state: generic-pink-inhand-left @@ -1702,9 +1778,9 @@ color: white - type: entity - name: raw chicken cutlet parent: FoodMeatBase id: FoodMeatChickenCutlet + name: raw chicken cutlet description: A cutlet of raw chicken. Remember to wash your hands! components: - type: Tag @@ -1728,6 +1804,9 @@ node: start defaultTarget: chicken cutlet - type: Item + size: Tiny + shape: + - 0,0,0,0 inhandVisuals: left: - state: generic-pink-inhand-left @@ -1735,9 +1814,9 @@ - state: generic-pink-inhand-right - type: entity - name: raw duck cutlet parent: FoodMeatBase id: FoodMeatDuckCutlet + name: raw duck cutlet description: A cutlet of raw duck. Remember to wash your hands! components: - type: Tag @@ -1761,6 +1840,9 @@ node: start defaultTarget: duck cutlet - type: Item + size: Tiny + shape: + - 0,0,0,0 inhandVisuals: left: - state: generic-pink-inhand-left @@ -1768,9 +1850,9 @@ - state: generic-pink-inhand-right - type: entity - name: raw lizard cutlet parent: FoodMeatBase id: FoodMeatLizardCutlet + name: raw lizard cutlet description: Delicious dino cutlet. components: - type: Tag @@ -1797,6 +1879,9 @@ node: start defaultTarget: lizard cutlet - type: Item + size: Tiny + shape: + - 0,0,0,0 inhandVisuals: left: - state: generic-pink-inhand-left @@ -1806,9 +1891,9 @@ color: green - type: entity - name: raw spider cutlet parent: FoodMeatBase id: FoodMeatSpiderCutlet + name: raw spider cutlet description: A cutlet of raw spider meat. So Kafkaesque. components: - type: Tag @@ -1831,6 +1916,9 @@ node: start defaultTarget: spider cutlet - type: Item + size: Tiny + shape: + - 0,0,0,0 inhandVisuals: left: - state: generic-pink-inhand-left @@ -1840,9 +1928,9 @@ color: green - type: entity - name: raw xeno cutlet parent: FoodMeatBase id: FoodMeatXenoCutlet + name: raw xeno cutlet description: A slab of raw xeno meat, dripping with acid. components: - type: FlavorProfile @@ -1867,6 +1955,9 @@ node: start defaultTarget: xeno cutlet - type: Item + size: Tiny + shape: + - 0,0,0,0 inhandVisuals: left: - state: generic-pink-inhand-left @@ -1876,11 +1967,16 @@ color: green - type: entity - name: raw killer tomato cutlet parent: FoodMeatBase id: FoodMeatTomatoCutlet + name: raw killer tomato cutlet description: A cutlet from a slab of tomato. components: + - type: Item + size: Tiny + shape: + - 0,0,0,0 + storedOffset: -1,0 - type: Tag tags: - Cutlet @@ -1892,11 +1988,16 @@ price: 30 - type: entity - name: salami slice parent: FoodMeatBase id: FoodMeatSalamiSlice + name: salami slice description: A slice of cured salami. components: + - type: Item + size: Tiny + shape: + - 0,0,0,0 + storedOffset: -1,0 - type: Tag tags: - Raw @@ -1914,9 +2015,9 @@ Quantity: 1 - type: entity - name: raw dragon cutlet parent: FoodMeatBase id: FoodMeatDragonCutlet + name: raw dragon cutlet description: A raw dragon meat cutlet. components: - type: Tag @@ -1940,6 +2041,9 @@ node: start defaultTarget: dragon cutlet - type: Item + size: Tiny + shape: + - 0,0,0,0 inhandVisuals: left: - state: generic-pink-inhand-left @@ -1951,9 +2055,9 @@ # Cooked - type: entity - name: cutlet parent: FoodMeatBase id: FoodMeatCutletCooked + name: cutlet description: A cooked meat cutlet. Needs some seasoning. components: - type: Tag @@ -1979,6 +2083,10 @@ Burger: MeatCutlet Taco: MeatCutlet - type: Item + size: Tiny + shape: + - 0,0,0,0 + storedOffset: -1,1 inhandVisuals: left: - state: generic-pink-inhand-left @@ -1988,9 +2096,9 @@ color: "#5B3614" - type: entity - name: bear cutlet parent: FoodMeatBase id: FoodMeatBearCutletCooked + name: bear cutlet description: A very manly cutlet of cooked bear meat. components: - type: Tag @@ -2019,6 +2127,10 @@ Burger: BearCutletBurger Taco: BearCutlet - type: Item + size: Tiny + shape: + - 0,0,0,0 + storedOffset: -1,1 inhandVisuals: left: - state: generic-pink-inhand-left @@ -2028,9 +2140,9 @@ color: "#5B3614" - type: entity - name: penguin cutlet parent: FoodMeatBase id: FoodMeatPenguinCutletCooked + name: penguin cutlet description: A cutlet of cooked penguin meat. components: - type: Tag @@ -2057,6 +2169,10 @@ Burger: PenguinCutletBurger Taco: PenguinCutlet - type: Item + size: Tiny + shape: + - 0,0,0,0 + storedOffset: -1,1 inhandVisuals: left: - state: generic-pink-inhand-left @@ -2066,9 +2182,9 @@ color: "#5B3614" - type: entity - name: chicken cutlet parent: FoodMeatBase id: FoodMeatChickenCutletCooked + name: chicken cutlet description: A cutlet of cooked chicken. Remember to wash your hands! components: - type: Tag @@ -2095,6 +2211,10 @@ Burger: ChickenCutlet Taco: ChickenCutlet - type: Item + size: Tiny + shape: + - 0,0,0,0 + storedOffset: -1,1 inhandVisuals: left: - state: generic-pink-inhand-left @@ -2104,9 +2224,9 @@ color: "#5B3614" - type: entity - name: duck cutlet parent: FoodMeatBase id: FoodMeatDuckCutletCooked + name: duck cutlet description: A cutlet of cooked duck. Remember to wash your hands! components: - type: Tag @@ -2133,6 +2253,10 @@ Burger: DuckCutlet Taco: DuckCutlet - type: Item + size: Tiny + shape: + - 0,0,0,0 + storedOffset: -1,1 inhandVisuals: left: - state: generic-pink-inhand-left @@ -2142,9 +2266,9 @@ color: "#5B3614" - type: entity - name: lizard cutlet parent: FoodMeatBase id: FoodMeatLizardCutletCooked + name: lizard cutlet description: Delicious cooked dino cutlet. components: - type: Tag @@ -2172,6 +2296,10 @@ Burger: LizardCutletBurger Taco: LizardCutlet - type: Item + size: Tiny + shape: + - 0,0,0,0 + storedOffset: -1,1 inhandVisuals: left: - state: generic-pink-inhand-left @@ -2181,9 +2309,9 @@ color: "#153F06" - type: entity - name: spider cutlet parent: FoodMeatBase id: FoodMeatSpiderCutletCooked + name: spider cutlet description: A cutlet of cooked spider meat. Finally edible. components: - type: Tag @@ -2209,6 +2337,10 @@ Burger: SpiderCutletBurger Taco: SpiderCutlet - type: Item + size: Tiny + shape: + - 0,0,0,0 + storedOffset: -1,0 inhandVisuals: left: - state: generic-pink-inhand-left @@ -2218,9 +2350,9 @@ color: "#153F06" - type: entity - name: xeno cutlet parent: FoodMeatBase id: FoodMeatXenoCutletCooked + name: xeno cutlet description: A cutlet of cooked xeno, dripping with... tastiness? components: - type: Tag @@ -2246,6 +2378,10 @@ Burger: XenoCutlet Taco: XenoCutlet - type: Item + size: Tiny + shape: + - 0,0,0,0 + storedOffset: -1,1 inhandVisuals: left: - state: generic-pink-inhand-left @@ -2255,9 +2391,9 @@ color: "#153F06" - type: entity - name: dragon cutlet parent: FoodMeatBase id: FoodMeatDragonCutletCooked + name: dragon cutlet description: It's a meal for kings! components: - type: Tag @@ -2285,6 +2421,10 @@ Burger: DragonCutlet Taco: DragonCutlet - type: Item + size: Tiny + shape: + - 0,0,0,0 + storedOffset: -1,1 inhandVisuals: left: - state: generic-pink-inhand-left diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/noodles.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/noodles.yml index 580038115f..ce20fbb46c 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/noodles.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/noodles.yml @@ -2,13 +2,14 @@ # Base - type: entity + abstract: true parent: FoodInjectableBase id: FoodNoodlesBase - abstract: true description: Now that's a nice pasta! components: - type: Item - storedRotation: -90 + shape: + - 0,0,1,0 - type: Sprite sprite: Objects/Consumable/Food/noodles.rsi - type: SolutionContainerManager @@ -22,11 +23,13 @@ # Noodles - type: entity - name: boiled spaghetti parent: FoodNoodlesBase id: FoodNoodlesBoiled + name: boiled spaghetti description: A plain dish of noodles, this needs more ingredients. components: + - type: Item + storedOffset: 0,-4 - type: FlavorProfile flavors: - pasta @@ -35,11 +38,13 @@ # Tastes like pasta. - type: entity - name: spaghetti parent: FoodNoodlesBase id: FoodNoodles + name: spaghetti description: Spaghetti and crushed tomatoes. Just like your abusive father used to make! components: + - type: Item + storedOffset: 0,-4 - type: FlavorProfile flavors: - pasta @@ -59,12 +64,16 @@ # Tastes like pasta, tomato. - type: entity - name: copypasta parent: FoodNoodlesBase id: FoodNoodlesCopy + name: copypasta description: You probably shouldn't try this, you always hear people talking about how bad it is... components: - - type: Food + - type: Item + size: Normal + shape: + - 0,0,1,1 + - type: Edible trash: - FoodPlateSmall - FoodPlateSmall @@ -83,11 +92,13 @@ # Tastes like pasta, bad humor. - type: entity - name: spaghetti and meatballs parent: FoodNoodlesBase id: FoodNoodlesMeatball + name: spaghetti and meatballs description: Now that's a nice-a meatball! components: + - type: Item + storedOffset: 0,-4 - type: FlavorProfile flavors: - pasta @@ -109,11 +120,13 @@ # Tastes like pasta, meat. - type: entity - name: spesslaw parent: FoodNoodlesBase id: FoodNoodlesSpesslaw + name: spesslaw description: A lawyer's favourite. components: + - type: Item + storedOffset: 0,-4 - type: FlavorProfile flavors: - pasta @@ -159,11 +172,13 @@ # Tastes like pasta, tomato. - type: entity - name: butter noodles parent: FoodNoodlesBase id: FoodNoodlesButter + name: butter noodles description: Noodles covered in savory butter. Simple and slippery, but delicious. components: + - type: Item + storedOffset: 0,-4 - type: FlavorProfile flavors: - pasta diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/skewer.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/skewer.yml index 7b9db1f41f..f49e3a1256 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/skewer.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/skewer.yml @@ -2,21 +2,25 @@ # Kebabs - type: entity - name: skewer parent: BaseItem id: FoodKebabSkewer + name: skewer description: A thin rod of metal used to skewer just about anything and cook it. components: + - type: Item + shape: + - 0,0,1,0 + storedOffset: 0,-2 - type: Sprite sprite: Objects/Consumable/Food/skewer.rsi - state: + state: layers: - state: skewer - map: ["foodSequenceLayers"] - type: LandAtCursor - type: Fixtures fixtures: - fix1: + fix1: shape: !type:PolygonShape vertices: - -0.40,-0.20 @@ -49,8 +53,8 @@ tags: - Trash - Skewer - - type: Food - trash: + - type: Edible + trash: - FoodKebabSkewer - type: SolutionContainerManager solutions: @@ -61,8 +65,8 @@ key: Skewer maxLayers: 4 startPosition: -0.27, -0.19 - inverseLayers: true + inverseLayers: true offset: 0.2, 0.1 nameGeneration: food-sequence-skewer-gen contentSeparator: ", " - allowHorizontalFlip: false \ No newline at end of file + allowHorizontalFlip: false diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml index c8b0e2d1f8..e53e99e9db 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml @@ -6,7 +6,6 @@ id: FoodSnackBase abstract: true components: - - type: Food - type: Tag tags: - FoodSnack @@ -41,7 +40,7 @@ state: boritos - type: Item heldPrefix: boritos - - type: Food + - type: Edible trash: - FoodPacketBoritosTrash @@ -58,7 +57,7 @@ state: cnds - type: Item heldPrefix: cnds - - type: Food + - type: Edible trash: - FoodPacketCnDsTrash @@ -76,7 +75,7 @@ state: cheesiehonkers - type: Item heldPrefix: cheesiehonkers - - type: Food + - type: Edible trash: - FoodPacketCheesieTrash @@ -95,14 +94,14 @@ state: chips - type: Item heldPrefix: chips - - type: Food + - type: Edible trash: - FoodPacketChipsTrash - type: entity - name: chocolate bar parent: BaseItem id: FoodSnackChocolate + name: chocolate bar description: Tastes like cardboard. components: - type: Sprite @@ -111,6 +110,7 @@ - type: Item heldPrefix: chocolatebar size: Tiny + storedOffset: 1,-1 - type: Tag tags: - FoodSnack @@ -122,9 +122,9 @@ path: /Audio/Effects/unwrap.ogg - type: entity - name: chocolate bar parent: FoodSnackBase id: FoodSnackChocolateBar + name: chocolate bar description: Tastes like cardboard. components: - type: FlavorProfile @@ -134,6 +134,7 @@ state: chocolatebar-open - type: Item heldPrefix: chocolatebar-open + storedOffset: 1,-2 - type: Tag tags: - FoodSnack @@ -151,15 +152,16 @@ Quantity: 1 - type: entity - name: energy bar parent: FoodSnackBase id: FoodSnackEnergy + name: energy bar description: An energy bar with a lot of punch. components: - type: Sprite state: energybar - type: Item heldPrefix: energybar + storedOffset: 0,-1 - type: SpawnItemsOnUse items: - id: FoodPacketEnergyTrash @@ -168,9 +170,9 @@ path: /Audio/Effects/unwrap.ogg - type: entity - name: energy bar parent: FoodSnackBase id: FoodSnackEnergyBar + name: energy bar description: An energy bar with a lot of punch. components: - type: FlavorProfile @@ -183,11 +185,12 @@ state: energybar-open - type: Item heldPrefix: energybar-open + storedOffset: 0,-2 - type: entity - name: Sweetie's pistachios parent: FoodSnackBase id: FoodSnackPistachios + name: Sweetie's pistachios description: Sweeties's name-brand pistachios. Probably won't give you diseases. Probably. components: - type: FlavorProfile @@ -198,7 +201,8 @@ state: pistachio - type: Item heldPrefix: pistachio - - type: Food + storedOffset: 1,0 + - type: Edible trash: - FoodPacketPistachioTrash - type: Tag @@ -221,7 +225,7 @@ state: popcorn - type: Item heldPrefix: popcorn - - type: Food + - type: Edible trash: - FoodPacketPopcornTrash @@ -238,7 +242,7 @@ state: raisins - type: Item heldPrefix: raisins - - type: Food + - type: Edible trash: - FoodPacketRaisinsTrash - type: Tag @@ -246,9 +250,9 @@ - Fruit - type: entity - name: bob's semki sunflower seeds parent: FoodSnackBase id: FoodSnackSemki + name: bob's semki sunflower seeds description: Proudly produced by the Bob Bobson nutritional corporation. Perfect for spitting at people. components: - type: FlavorProfile @@ -258,7 +262,8 @@ state: semki - type: Item heldPrefix: semki - - type: Food + storedOffset: 1,0 + - type: Edible trash: - FoodPacketSemkiTrash @@ -275,7 +280,7 @@ state: susjerky - type: Item heldPrefix: susjerky - - type: Food + - type: Edible trash: - FoodPacketSusTrash - type: Tag @@ -295,7 +300,7 @@ state: syndicakes - type: Item heldPrefix: syndicakes - - type: Food + - type: Edible trash: - FoodPacketSyndiTrash @@ -320,11 +325,12 @@ Quantity: 5 - type: Sprite state: ramen - - type: Food + - type: Edible trash: - FoodPacketCupRamenTrash - type: Item heldPrefix: ramen + storedOffset: 0,-1 - type: entity parent: DrinkRamen @@ -343,9 +349,9 @@ Quantity: 5 - type: entity - name: chow mein parent: FoodSnackBase id: FoodSnackChowMein + name: chow mein description: A salty fried noodle snack. Looks like they forgot the vegetables. components: - type: FlavorProfile @@ -357,6 +363,7 @@ state: chinese1 - type: Item heldPrefix: chinese1 + storedOffset: 1,-2 - type: SolutionContainerManager solutions: food: @@ -366,14 +373,14 @@ Quantity: 10 - ReagentId: Soysauce Quantity: 2 - - type: Food + - type: Edible trash: - FoodPacketChowMeinTrash - type: entity - name: dan dan noodles parent: FoodSnackBase id: FoodSnackDanDanNoodles + name: dan dan noodles description: A spicy Sichuan noodle snack. The chili oil slick pools on top. components: - type: FlavorProfile @@ -385,6 +392,7 @@ state: chinese2 - type: Item heldPrefix: chinese2 + storedOffset: 0,-2 - type: SolutionContainerManager solutions: food: @@ -396,14 +404,14 @@ Quantity: 2 - ReagentId: Soysauce Quantity: 2 - - type: Food + - type: Edible trash: - FoodPacketDanDanTrash - type: entity - name: fortune cookie parent: FoodSnackBase id: FoodSnackCookieFortune + name: fortune cookie description: A boring cardboard tasting snack with a fortune inside. Surprise! You're boring too. components: - type: FlavorProfile @@ -421,19 +429,21 @@ - type: Item sprite: Objects/Consumable/Food/snacks.rsi heldPrefix: cookie_fortune + storedOffset: 1,-1 size: Tiny - - type: Food + - type: Edible trash: - FoodCookieFortune - type: entity - id: FoodSnackNutribrick parent: BaseItem + id: FoodSnackNutribrick name: nutribrick description: A carefully synthesized brick designed to contain the highest ratio of nutriment to volume. Tastes like shit. components: - type: Item size: Small + storedOffset: -1,0 heldPrefix: nutribrick - type: Tag tags: @@ -449,8 +459,8 @@ path: /Audio/Effects/unwrap.ogg - type: entity - id: FoodSnackNutribrickOpen parent: FoodSnackBase + id: FoodSnackNutribrickOpen name: nutribrick description: A carefully synthesized brick designed to contain the highest ratio of nutriment to volume. Tastes like shit. components: @@ -459,13 +469,13 @@ - nutribrick - type: Item size: Small + storedOffset: -1,0 heldPrefix: nutribrick-open - type: Tag tags: - ReptilianFood - type: Sprite state: nutribrick-open - - type: Food - type: SolutionContainerManager solutions: food: @@ -475,8 +485,8 @@ Quantity: 20 - type: entity - id: FoodSnackMREBrownie parent: BaseItem + id: FoodSnackMREBrownie name: brownie description: A precisely mixed brownie, made to withstand blunt trauma and harsh conditions. Tastes like shit. components: @@ -485,6 +495,8 @@ state: mre-brownie - type: Item heldPrefix: mre-brownie + size: Tiny + storedOffset: -1,-1 - type: Tag tags: - FoodSnack @@ -496,8 +508,8 @@ path: /Audio/Effects/unwrap.ogg - type: entity - id: FoodSnackMREBrownieOpen parent: FoodSnackBase + id: FoodSnackMREBrownieOpen name: brownie suffix: MRE description: A precisely mixed brownie, made to withstand blunt trauma and harsh conditions. Tastes like shit. @@ -509,7 +521,7 @@ state: mre-brownie-open - type: Item heldPrefix: mre-brownie-open - - type: Food + storedOffset: -1,-1 - type: SolutionContainerManager solutions: food: @@ -521,9 +533,9 @@ Quantity: 3 - type: entity - name: swirl lollipop parent: FoodSnackBase id: FoodSnackSwirlLollipop + name: swirl lollipop description: A swirly circle of pure concentrated sugar. Who's the biggest kid on the playground now? components: - type: Sprite @@ -533,6 +545,8 @@ sprite: Objects/Consumable/Food/candy.rsi heldPrefix: swirl_lollipop size: Small + storedRotation: -45 + storedOffset: 0,-1 - type: Tag tags: - FoodSnack @@ -585,7 +599,7 @@ reagents: - ReagentId: ToxinTrash Quantity: 5 - - type: Food + - type: Edible requiresSpecialDigestion: true - type: entity @@ -845,7 +859,7 @@ name: MRE wrapper description: A general purpose wrapper for a variety of military food goods. components: - - type: Food + - type: Edible requiresSpecialDigestion: true - type: SolutionContainerManager solutions: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml index ecc4b22894..47db7366f7 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml @@ -1,13 +1,15 @@ # When adding new food also add to random spawner located in Resources\Prototypes\Entities\Markers\Spawners\Random\Food_Drinks\food_meal.yml - type: entity + abstract: true parent: FoodInjectableBase id: FoodBowlBase - abstract: true components: - type: Item - storedRotation: -90 - - type: Food + shape: + - 0,0,1,0 + storedOffset: 0,-3 + - type: Edible trash: - FoodBowlBig utensil: Spoon @@ -315,7 +317,7 @@ - ReagentId: Sugar Quantity: 8 - ReagentId: Vitamin - Quantity: 17 + Quantity: 17 - type: Tag tags: - Fruit @@ -557,11 +559,14 @@ - state: spacelibertyduff - type: entity - name: amanita jelly parent: FoodInjectableBase id: FoodJellyAmanita + name: amanita jelly description: It's evil, don't touch it! components: + - type: Item + size: Normal + storedOffset: 0,-3 - type: FlavorProfile flavors: - mushroom @@ -978,7 +983,7 @@ - type: FlavorProfile flavors: - miso - - type: Food + - type: Edible trash: - FoodBowlFancy - type: Sprite @@ -1183,11 +1188,16 @@ # Tastes like crab. - type: entity - name: electron soup parent: FoodBowlBase id: FoodSoupElectron + name: electron soup description: A gastronomic curiosity of ethereal origin. components: + - type: Item + size: Normal + shape: + - 0,0,1,1 + storedOffset: 0,2 - type: FlavorProfile flavors: - mushrooms diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/taco.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/taco.yml index d680d16765..ff647216c0 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/taco.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/taco.yml @@ -1,14 +1,14 @@ # When adding new food also add to random spawner located in Resources\Prototypes\Entities\Markers\Spawners\Random\Food_Drinks\food_single.yml - type: entity - name: taco shell parent: FoodMealBase id: FoodTacoShell + name: taco shell description: A taco shell, easy to hold, but falls on its side when put down. components: - type: Item - storedRotation: -90 - - type: Food + storedOffset: 0,-3 + - type: Edible transferAmount: 3 - type: Sprite sprite: Objects/Consumable/Food/taco_sequence.rsi @@ -38,15 +38,15 @@ # Old tacos - type: entity + abstract: true parent: FoodInjectableBase id: FoodTacoBase - abstract: true components: - type: FlavorProfile flavors: - meaty - cheesy - - type: Food + - type: Edible transferAmount: 3 - type: Sprite sprite: Objects/Consumable/Food/taco.rsi @@ -61,7 +61,9 @@ Quantity: 4 - type: Item sprite: Objects/Consumable/Food/taco.rsi - storedRotation: -90 + shape: + - 0,0,1,0 + storedOffset: 0,1 - type: Tag tags: - Meat @@ -72,7 +74,6 @@ id: FoodTacoBeef description: A very basic and run of the mill beef taco, now with cheese! components: - - type: Food - type: Sprite state: beeftaco @@ -82,7 +83,6 @@ id: FoodTacoChicken description: A very basic and run of the mill chicken taco, now with cheese! components: - - type: Food - type: Sprite state: chickentaco @@ -96,7 +96,6 @@ flavors: - onion - fishy - - type: Food - type: Sprite state: fishtaco - type: SolutionContainerManager @@ -115,7 +114,6 @@ id: FoodTacoRat description: Yeah, that looks about right... components: - - type: Food - type: Sprite state: rattaco - type: SolutionContainerManager @@ -134,7 +132,6 @@ id: FoodTacoBeefSupreme description: It's like a regular beef taco, but supreme! components: - - type: Food - type: Sprite state: beeftacosupreme - type: SolutionContainerManager @@ -153,7 +150,6 @@ id: FoodTacoChickenSupreme description: It's like a regular chicken taco, but supreme! components: - - type: Food - type: Sprite state: chickentacosupreme - type: SolutionContainerManager @@ -167,16 +163,17 @@ Quantity: 6 - type: entity - name: draco parent: FoodTacoBase id: FoodTacoDragon + name: draco description: A dragon taco, which is technically also a fish taco. components: + - type: Item + storedOffset: 0,3 - type: FlavorProfile flavors: - meaty - spicy - - type: Food - type: Sprite state: dragontaco - type: SolutionContainerManager diff --git a/Resources/Prototypes/Entities/Objects/Decoration/present.yml b/Resources/Prototypes/Entities/Objects/Decoration/present.yml index de25ec9eb4..5b0c9448a6 100644 --- a/Resources/Prototypes/Entities/Objects/Decoration/present.yml +++ b/Resources/Prototypes/Entities/Objects/Decoration/present.yml @@ -100,6 +100,8 @@ orGroup: GiftPool - id: ClothingNeckCloakMoth orGroup: GiftPool + - id: TennisBall + orGroup: GiftPool - id: ToyMouse orGroup: GiftPool - id: ToyAi diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index c1aea7ecd5..0c8ef383c5 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -453,6 +453,47 @@ size: Small sprite: Objects/Fun/Balls/football.rsi +- type: entity + parent: BaseItem + id: TennisBall + name: tennis ball + description: A fuzzy orb of endless betrayal. + components: + - type: Sprite + sprite: Objects/Fun/Balls/tennisball.rsi + state: icon + - type: Fixtures + fixtures: + fix1: + shape: !type:PhysShapeCircle + radius: 0.25 + density: 20 + mask: + - ItemMask + restitution: 0.5 # a little bouncy + friction: 0.2 + - type: Catchable + catchChance: 0.8 + catchSuccessSound: + path: /Audio/Effects/Footsteps/bounce.ogg + - type: EmitSoundOnCollide + sound: + path: /Audio/Effects/Footsteps/bounce.ogg + - type: Item + size: Small + sprite: Objects/Fun/Balls/tennisball.rsi + - type: EmitSoundOnUse + sound: + collection: ToySqueak + params: + volume: -4 + - type: UseDelay + - type: Clothing + slots: [mask] + - type: Tag + tags: + - PetWearable + - type: entity parent: BaseItem id: BeachBall diff --git a/Resources/Prototypes/Entities/Objects/Misc/inflatable_wall.yml b/Resources/Prototypes/Entities/Objects/Misc/inflatable_wall.yml index 176c7f79ff..2bb93c682b 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/inflatable_wall.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/inflatable_wall.yml @@ -1,4 +1,5 @@ - type: entity + parent: BaseDeltaPressureGlass id: InflatableWall name: inflatable barricade description: An inflated membrane. Activate to deflate. Do not puncture. @@ -35,11 +36,6 @@ disassembleTime: 3 - type: InflatableSafeDisassembly - type: Airtight - - type: DeltaPressure - minPressure: 1000 - minPressureDelta: 750 - scalingType: Linear - scalingPower: 0.0005 - type: Transform anchored: true placement: @@ -48,7 +44,7 @@ - type: entity id: InflatableDoor name: inflatable door - parent: BaseMaterialDoor + parent: [BaseMaterialDoor, BaseDeltaPressureGlass] description: An inflated membrane. Activate to deflate. Now with a door. Do not puncture. components: - type: Clickable @@ -90,8 +86,3 @@ - type: InflatableSafeDisassembly - type: Occluder enabled: false - - type: DeltaPressure - minPressure: 1000 - minPressureDelta: 750 - scalingType: Linear - scalingPower: 0.0005 diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml index 843515cffa..cd4cbb3834 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml @@ -366,6 +366,10 @@ maxVol: 15 - type: Injector injectOnly: false + transferAmounts: + - 5 + - 10 + - 15 - type: ExaminableSolution solution: injector exactVolume: true diff --git a/Resources/Prototypes/Entities/Objects/Tools/appraisal.yml b/Resources/Prototypes/Entities/Objects/Tools/appraisal.yml index 8b6ca5e02c..27733e59c5 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/appraisal.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/appraisal.yml @@ -9,10 +9,7 @@ state: icon - type: Item sprite: Objects/Tools/appraisal-tool.rsi - shape: - - 0,0,1,0 - - 0,1,0,1 - storedOffset: -3,-3 + size: Small - type: PriceGun - type: UseDelay delay: 3 diff --git a/Resources/Prototypes/Entities/Objects/Tools/tools.yml b/Resources/Prototypes/Entities/Objects/Tools/tools.yml index 71c1e6bf4e..339ba9eeae 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/tools.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/tools.yml @@ -499,6 +499,7 @@ - type: Item sprite: Objects/Tools/rolling_pin.rsi size: Small + storedRotation: -45 - type: Clothing sprite: Objects/Tools/rolling_pin.rsi quickEquip: false diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml index 3b034eafbb..821f63856e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -26,6 +26,38 @@ - type: StaticPrice price: 500 +- type: entity + parent: [BaseWeaponBattery, BaseGunWieldable] + id: BaseLaserRifle + abstract: true + components: + - type: Item + size: Large + - type: Sprite + sprite: Objects/Weapons/Guns/Battery/laser_gun.rsi + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-unshaded-4 + map: ["enum.GunVisualLayers.MagUnshaded"] + shader: unshaded + - type: MagazineVisuals + magState: mag + steps: 5 + zeroVisible: false + - type: Appearance + - type: Clothing + sprite: Objects/Weapons/Guns/Battery/laser_gun.rsi + - type: Gun + selectedMode: SemiAuto + availableModes: + - SemiAuto + - type: HitscanBatteryAmmoProvider + proto: RedLaser + fireCost: 62.5 + - type: StaticPrice + price: 420 + - type: entity id: BaseWeaponPowerCell parent: BaseItem @@ -216,40 +248,13 @@ - type: entity name: laser carbine - parent: [BaseWeaponBattery, BaseGunWieldable] + parent: [BaseLaserRifle, BaseGunWieldable, BaseSecurityContraband] id: WeaponLaserCarbine description: Favoured by Nanotrasen Security for being cheap and easy to use. - components: - - type: Item - size: Large - - type: Sprite - sprite: Objects/Weapons/Guns/Battery/laser_gun.rsi - layers: - - state: base - map: ["enum.GunVisualLayers.Base"] - - state: mag-unshaded-4 - map: ["enum.GunVisualLayers.MagUnshaded"] - shader: unshaded - - type: MagazineVisuals - magState: mag - steps: 5 - zeroVisible: false - - type: Appearance - - type: Clothing - sprite: Objects/Weapons/Guns/Battery/laser_gun.rsi - - type: Gun - selectedMode: SemiAuto - availableModes: - - SemiAuto - - type: HitscanBatteryAmmoProvider - proto: RedLaser - fireCost: 62.5 - - type: StaticPrice - price: 420 - type: entity name: practice laser carbine - parent: [WeaponLaserCarbine, BaseGunWieldable] + parent: [BaseLaserRifle, BaseGunWieldable] id: WeaponLaserCarbinePractice description: This modified laser carbine fires nearly harmless beams in the 40-watt range, for target practice. components: @@ -640,10 +645,6 @@ id: WeaponAntiqueLaser description: This is an antique laser pistol. All craftsmanship is of the highest quality. It is decorated with a mahogany grip and chrome filigree. The object menaces with spikes of energy. On the item is an image of a captain and a clown. The clown is dead. The captain is striking a heroic pose. components: - - type: Item - size: Normal - shape: - - 0,0,1,1 - type: Sprite sprite: Objects/Weapons/Guns/Battery/antiquelasergun.rsi layers: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml index 71e6d16382..aadf15153e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/knife.yml @@ -29,9 +29,9 @@ path: /Audio/Items/Culinary/chop.ogg - type: entity - name: kitchen knife parent: BaseKnife id: KitchenKnife + name: kitchen knife description: A general purpose Chef's Knife made by Asters Merchant Guild. Guaranteed to stay sharp for years to come.. components: - type: Tag @@ -43,6 +43,8 @@ state: icon - type: Item sprite: Objects/Weapons/Melee/kitchen_knife.rsi + storedOffset: -1,1 + storedRotation: -45 - type: GuideHelp guides: - Chef diff --git a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml index fc1bc2285a..b242a0bebe 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml @@ -107,7 +107,7 @@ - type: entity id: ShuttersNormal - parent: BaseShutter + parent: [BaseDeltaPressureGlass, BaseShutter] components: - type: Occluder - type: Construction @@ -115,11 +115,6 @@ node: Shutters containers: - board - - type: DeltaPressure - minPressure: 1000 - minPressureDelta: 750 - scalingType: Linear - scalingPower: 0.0005 - type: entity id: ShuttersNormalOpen @@ -139,7 +134,7 @@ - type: entity id: ShuttersRadiation - parent: BaseShutter + parent: [BaseDeltaPressureGlass, BaseShutter] name: radiation shutters description: Why did they make these shutters radioactive? components: @@ -156,11 +151,6 @@ node: ShuttersRadiation containers: - board - - type: DeltaPressure - minPressure: 1000 - minPressureDelta: 750 - scalingType: Linear - scalingPower: 0.0005 - type: RadiationBlocker resistance: 4 @@ -182,7 +172,7 @@ - type: entity id: ShuttersWindow - parent: BaseShutter + parent: [BaseDeltaPressureGlass, BaseShutter] name: window shutters description: The Best (TM) place to see your friends explode! components: @@ -198,11 +188,6 @@ node: ShuttersWindow containers: - board - - type: DeltaPressure - minPressure: 1000 - minPressureDelta: 750 - scalingType: Linear - scalingPower: 0.0005 - type: RadiationBlocker resistance: 1 diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml index 07618243d4..ce331499ab 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml @@ -1,7 +1,7 @@ #Normal windoors - type: entity id: BaseWindoor - parent: BaseStructure + parent: [BaseDeltaPressureGlassQuarter, BaseStructure] abstract: true placement: mode: SnapgridCenter @@ -163,10 +163,6 @@ noAirWhenFullyAirBlocked: false airBlockedDirection: - South - - type: DeltaPressure - minPressure: 250 - minPressureDelta: 187.5 - scalingType: Threshold - type: Construction graph: Windoor node: windoor @@ -178,7 +174,7 @@ - type: entity id: BaseSecureWindoor - parent: BaseWindoor + parent: [BaseDeltaPressureReinforcedGlassQuarter, BaseWindoor] abstract: true components: - type: Sprite @@ -239,10 +235,6 @@ - type: Construction graph: Windoor node: windoorSecure - - type: DeltaPressure - minPressure: 3750 - minPressureDelta: 2500 - scalingType: Threshold - type: StaticPrice price: 350 - type: Tag @@ -254,7 +246,7 @@ #Plasma Windoors - type: entity id: BasePlasmaWindoor - parent: BaseWindoor + parent: [BaseDeltaPressurePlasmaQuarter, BaseWindoor] abstract: true components: - type: Sprite @@ -312,10 +304,6 @@ - type: Construction graph: Windoor node: pwindoor - - type: DeltaPressure - minPressure: 18750 - minPressureDelta: 12500 - scalingType: Threshold - type: StaticPrice price: 500 - type: RadiationBlocker @@ -323,7 +311,7 @@ - type: entity id: BaseSecurePlasmaWindoor - parent: BaseSecureWindoor + parent: [BaseDeltaPressureReinforcedPlasmaQuarter, BaseSecureWindoor] abstract: true components: - type: Sprite @@ -382,10 +370,6 @@ - type: Construction graph: Windoor node: pwindoorSecure - - type: DeltaPressure - minPressure: 37500 - minPressureDelta: 25000 - scalingType: Threshold - type: StaticPrice price: 500 - type: RadiationBlocker @@ -399,7 +383,7 @@ #Uranium Windoors - type: entity id: BaseUraniumWindoor - parent: BaseWindoor + parent: [BaseDeltaPressurePlasmaQuarter, BaseWindoor] abstract: true components: - type: Sprite @@ -454,10 +438,6 @@ max: 2 - !type:DoActsBehavior acts: [ "Destruction" ] - - type: DeltaPressure - minPressure: 18750 - minPressureDelta: 12500 - scalingType: Threshold - type: Construction graph: Windoor node: uwindoor @@ -468,7 +448,7 @@ - type: entity id: BaseSecureUraniumWindoor - parent: BaseSecureWindoor + parent: [BaseDeltaPressureReinforcedPlasmaQuarter, BaseSecureWindoor] abstract: true components: - type: Sprite @@ -524,10 +504,6 @@ max: 2 - !type:DoActsBehavior acts: [ "Destruction" ] - - type: DeltaPressure - minPressure: 37500 - minPressureDelta: 25000 - scalingType: Threshold - type: Construction graph: Windoor node: uwindoorSecure diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml index 84df160258..27990fb04a 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml @@ -128,6 +128,7 @@ - PlasticBanana - RevolverCapGun - SnapPopBox + - TennisBall - ToyMouse - ToyAi - ToyNuke diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/big_boxes.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/big_boxes.yml index a6d5a49f67..64069e7c6a 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/big_boxes.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/big_boxes.yml @@ -55,6 +55,7 @@ node: basebigbox containers: - entity_storage + - type: GravityAffected - type: entity id: StealthBox @@ -109,4 +110,4 @@ - type: EntityStorage isCollidableWhenOpen: false openOnMove: false - airtight: false \ No newline at end of file + airtight: false diff --git a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml index d6761239a8..b48de80ce0 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml @@ -1,7 +1,7 @@ - type: entity id: PlasmaWindow name: plasma window - parent: WindowRCDResistant + parent: [BaseDeltaPressurePlasma, WindowRCDResistant] components: - type: Sprite drawdepth: WallTops @@ -48,11 +48,6 @@ trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi - - type: DeltaPressure - minPressure: 75000 - minPressureDelta: 50000 - scalingType: Linear - scalingPower: 0.0005 - type: StaticPrice price: 100 - type: RadiationBlocker @@ -60,7 +55,7 @@ - type: entity id: PlasmaWindowDirectional - parent: WindowDirectionalRCDResistant + parent: [BaseDeltaPressurePlasmaQuarter, WindowDirectionalRCDResistant] name: directional plasma window description: Don't smudge up the glass down there. placement: @@ -109,10 +104,6 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] - - type: DeltaPressure - minPressure: 18750 - minPressureDelta: 12500 - scalingType: Threshold - type: StaticPrice price: 50 - type: RadiationBlocker diff --git a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml index 912313c13d..c4284a1377 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml @@ -1,7 +1,7 @@ - type: entity id: ReinforcedWindow name: reinforced window - parent: Window + parent: [BaseDeltaPressureReinforcedGlass, Window] components: - type: Sprite drawdepth: WallTops @@ -55,14 +55,10 @@ trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi - - type: DeltaPressure - minPressure: 15000 - minPressureDelta: 10000 - scalingType: Threshold - type: entity id: WindowReinforcedDirectional - parent: WindowDirectional + parent: [BaseDeltaPressureReinforcedGlassQuarter, WindowDirectional] name: directional reinforced window description: Don't smudge up the glass down there. placement: @@ -117,9 +113,6 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] - - type: DeltaPressure - minPressure: 3750 - minPressureDelta: 2500 - type: StaticPrice price: 22.5 diff --git a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml index 2506560572..5a4a6ceacc 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml @@ -1,7 +1,7 @@ - type: entity id: ReinforcedPlasmaWindow name: reinforced plasma window - parent: WindowRCDResistant + parent: [BaseDeltaPressureReinforcedPlasma, WindowRCDResistant] components: - type: Sprite drawdepth: WallTops @@ -53,17 +53,12 @@ trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi - - type: DeltaPressure - minPressure: 150000 - minPressureDelta: 100000 - scalingType: Linear - scalingPower: 0.0001 - type: StaticPrice price: 132 - type: entity id: PlasmaReinforcedWindowDirectional - parent: WindowDirectionalRCDResistant + parent: [BaseDeltaPressureReinforcedPlasmaQuarter, WindowDirectionalRCDResistant] name: directional reinforced plasma window description: Don't smudge up the glass down there. placement: @@ -116,10 +111,6 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] - - type: DeltaPressure - minPressure: 37500 - minPressureDelta: 25000 - scalingType: Threshold - type: StaticPrice price: 66 diff --git a/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml b/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml index 943c9c66b7..57e9a03c83 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml @@ -1,7 +1,7 @@ - type: entity id: ReinforcedUraniumWindow name: reinforced uranium window - parent: WindowRCDResistant + parent: [BaseDeltaPressureReinforcedPlasma, WindowRCDResistant] components: - type: Sprite drawdepth: WallTops @@ -48,11 +48,6 @@ trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi - - type: DeltaPressure - minPressure: 150000 - minPressureDelta: 100000 - scalingType: Linear - scalingPower: 0.0001 - type: StaticPrice price: 215 - type: RadiationBlocker @@ -60,7 +55,7 @@ - type: entity id: UraniumReinforcedWindowDirectional - parent: WindowDirectionalRCDResistant + parent: [BaseDeltaPressureReinforcedPlasmaQuarter, WindowDirectionalRCDResistant] name: directional reinforced uranium window description: Don't smudge up the glass down there. placement: @@ -111,10 +106,6 @@ max: 2 - !type:DoActsBehavior acts: [ "Destruction" ] - - type: DeltaPressure - minPressure: 37500 - minPressureDelta: 25000 - scalingType: Threshold - type: StaticPrice price: 110 - type: RadiationBlocker diff --git a/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml b/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml index fde110faf8..581983a8f2 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml @@ -1,7 +1,7 @@ - type: entity id: ShuttleWindow name: shuttle window - parent: WindowRCDResistant + parent: [BaseDeltaPressureReinforcedGlass, WindowRCDResistant] components: - type: Sprite drawdepth: WallTops @@ -51,11 +51,6 @@ trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi - - type: DeltaPressure - minPressure: 15000 - minPressureDelta: 10000 - scalingType: Linear - scalingPower: 0.0005 - type: StaticPrice price: 150 diff --git a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml index 00645ca1f0..06c450092b 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml @@ -1,7 +1,7 @@ - type: entity id: UraniumWindow name: uranium window - parent: WindowRCDResistant + parent: [BaseDeltaPressurePlasma, WindowRCDResistant] components: - type: Sprite drawdepth: WallTops @@ -46,11 +46,6 @@ trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi - - type: DeltaPressure - minPressure: 75000 - minPressureDelta: 50000 - scalingType: Linear - scalingPower: 0.0005 - type: StaticPrice price: 200 - type: RadiationBlocker @@ -58,7 +53,7 @@ - type: entity id: UraniumWindowDirectional - parent: WindowDirectionalRCDResistant + parent: [BaseDeltaPressurePlasmaQuarter, WindowDirectionalRCDResistant] name: directional uranium window description: Don't smudge up the glass down there. placement: @@ -104,10 +99,6 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] - - type: DeltaPressure - minPressure: 18750 - minPressureDelta: 12500 - scalingType: Threshold - type: StaticPrice price: 100 - type: RadiationBlocker diff --git a/Resources/Prototypes/Entities/Structures/Windows/window.yml b/Resources/Prototypes/Entities/Structures/Windows/window.yml index 99c19c1a70..02e0513aa1 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/window.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/window.yml @@ -1,6 +1,6 @@ - type: entity id: Window - parent: BaseStructure + parent: [BaseDeltaPressureGlass, BaseStructure] name: window description: Don't smudge up the glass down there. placement: @@ -75,11 +75,6 @@ - !type:DoActsBehavior acts: [ "Destruction" ] - type: Airtight - - type: DeltaPressure - minPressure: 1000 - minPressureDelta: 750 - scalingType: Linear - scalingPower: 0.0005 - type: IconSmooth key: windows base: window @@ -131,7 +126,7 @@ - type: entity id: WindowDirectional - parent: BaseStructure + parent: [BaseDeltaPressureGlassQuarter, BaseStructure] name: directional window description: Don't smudge up the glass down there. placement: @@ -211,10 +206,6 @@ noAirWhenFullyAirBlocked: false airBlockedDirection: - South - - type: DeltaPressure - minPressure: 250 - minPressureDelta: 187.5 - scalingType: Threshold - type: Construction graph: WindowDirectional node: windowDirectional diff --git a/Resources/Prototypes/Entities/Structures/Windows/xenoresin.yml b/Resources/Prototypes/Entities/Structures/Windows/xenoresin.yml index 558cd9c0e5..9f111e6547 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/xenoresin.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/xenoresin.yml @@ -1,5 +1,5 @@ - type: entity - parent: Window + parent: ReinforcedWindow id: XenoResinWindow name: resin window description: Transparent and hardened, yet slightly sticky to the touch. Slightly stronger than a normal reinforced window. @@ -9,16 +9,6 @@ sprite: Structures/Windows/xeno_resin.rsi - type: Icon sprite: Structures/Windows/xeno_resin.rsi - - type: Repairable - fuelCost: 10 - doAfterDelay: 2 - - type: Damageable - damageContainer: StructuralInorganic - damageModifierSet: RGlass - - type: RCDDeconstructable - cost: 6 - delay: 6 - fx: EffectRCDDeconstruct6 - type: Destructible thresholds: - trigger: @@ -46,10 +36,6 @@ acts: [ "Destruction" ] - type: IconSmooth base: xwindow - - type: Construction - graph: Window - node: reinforcedWindow - - type: Appearance - type: DamageVisuals thresholds: [5, 10, 20] damageDivisor: 4 diff --git a/Resources/Prototypes/Guidebook/engineering.yml b/Resources/Prototypes/Guidebook/engineering.yml index 96e049a399..24dc623086 100644 --- a/Resources/Prototypes/Guidebook/engineering.yml +++ b/Resources/Prototypes/Guidebook/engineering.yml @@ -230,6 +230,7 @@ children: - Fires - Spacing + - DeltaPressure - type: guideEntry id: Fires @@ -241,6 +242,11 @@ name: guide-entry-spacing text: "/ServerInfo/Guidebook/Engineering/Spacing.xml" +- type: guideEntry + id: DeltaPressure + name: guide-entry-deltapressure + text: "/ServerInfo/Guidebook/Engineering/DeltaPressure.xml" + - type: guideEntry id: AtmosTools name: guide-entry-atmostools diff --git a/Resources/Prototypes/Magic/staves.yml b/Resources/Prototypes/Magic/staves.yml index 97ca55e066..424dfea339 100644 --- a/Resources/Prototypes/Magic/staves.yml +++ b/Resources/Prototypes/Magic/staves.yml @@ -70,6 +70,7 @@ parent: BaseAction id: ActionRgbLight components: + - type: TargetAction - type: EntityTargetAction whitelist: { components: [ PointLight ] } event: !type:ChangeComponentsSpellEvent diff --git a/Resources/Prototypes/XenoArch/triggers.yml b/Resources/Prototypes/XenoArch/triggers.yml index 5e70843c1d..e03e46280d 100644 --- a/Resources/Prototypes/XenoArch/triggers.yml +++ b/Resources/Prototypes/XenoArch/triggers.yml @@ -242,6 +242,7 @@ - Slime - AmmoniaBlood - ZombieBlood + - Sap - type: xenoArchTrigger id: TriggerThrow diff --git a/Resources/ServerInfo/Guidebook/Engineering/DeltaPressure.xml b/Resources/ServerInfo/Guidebook/Engineering/DeltaPressure.xml new file mode 100644 index 0000000000..777351245a --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Engineering/DeltaPressure.xml @@ -0,0 +1,69 @@ + + # Delta Pressure + Delta Pressure, or ΔP, is the difference in pressure between two areas. + This difference in pressure can exert a force on objects between the two areas, dealing [bold]pressure damage[/bold] to some objects in its way. + + Various objects made out of glass, such as Windows, Windoors, and Shutters can experience pressure damage if the ΔP between the two sides is high enough. + This damage can cause these objects to shatter, allowing gas to flow freely between the two areas. + + Different types of objects have different thresholds for how much ΔP they can withstand before shattering. + Generally, the stronger the glass, the higher the threshold. Objects that are thin will also have lower thresholds. + + Objects like walls, airlocks, and firelocks are not affected by ΔP. + + ## Standard Glass and Objects + + + + + + + + + Standard full-size glass and other weak objects can withstand a ΔP of up to [color=orange][protodata="Window" comp="DeltaPressure" member="MinPressureDelta"/] kPa[/color] before starting to crack. + + Quarter-size glass, such as directional windows, can withstand a ΔP of up to [color=orange][protodata="WindowDirectional" comp="DeltaPressure" member="MinPressureDelta"/] kPa[/color] before starting to crack. + + ## Reinforced Glass and Objects + + + + + + + + Reinforced full-size glass can withstand a ΔP of up to [color=orange][protodata="ReinforcedWindow" comp="DeltaPressure" member="MinPressureDelta"/] kPa[/color] before starting to crack. + + Reinforced quarter-size glass can withstand a ΔP of up to [color=orange][protodata="WindowReinforcedDirectional" comp="DeltaPressure" member="MinPressureDelta"/] kPa[/color] before starting to crack. + + ## Plasma/Uranium Glass + + + + + + + + + + Plasma glass and uranium glass can withstand a ΔP of up to [color=orange][protodata="PlasmaWindow" comp="DeltaPressure" member="MinPressureDelta"/] kPa[/color] before starting to crack. + + Plasma and uranium quarter-size glass can withstand a ΔP of up to [color=orange][protodata="PlasmaWindowDirectional" comp="DeltaPressure" member="MinPressureDelta"/] kPa[/color] before starting to crack. + + ## Reinforced Plasma/Uranium Glass + + + + + + + + + + + + Reinforced plasma glass and uranium glass can withstand a ΔP of up to [color=orange][protodata="ReinforcedPlasmaWindow" comp="DeltaPressure" member="MinPressureDelta"/] kPa[/color] before starting to crack. + + Reinforced plasma and uranium quarter-size glass can withstand a ΔP of up to [color=orange][protodata="PlasmaReinforcedWindowDirectional" comp="DeltaPressure" member="MinPressureDelta"/] kPa[/color] before starting to crack. + + diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/folded-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/folded-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..0f4d4b6183 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/folded-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/meta.json index 1ec7ec2828..7b1360bf3a 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/tgstation/tgstation/commit/beaea876ea426c0e215cee64619862dc19bd9cd8, monkey made by brainfood1183 (github)", + "copyright": "https://github.com/tgstation/tgstation/commit/beaea876ea426c0e215cee64619862dc19bd9cd8, monkey made by brainfood1183 (github), folded-equipped-INNERCLOTHING edited by TiniestShark (github)", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, + { + "name": "folded-equipped-INNERCLOTHING", + "directions": 4 + }, { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 @@ -27,4 +31,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos_casual.rsi/folded-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos_casual.rsi/folded-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..eb1b473ab0 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos_casual.rsi/folded-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos_casual.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos_casual.rsi/meta.json index 7cd0cba745..a9a78e9e97 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos_casual.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/atmos_casual.rsi/meta.json @@ -14,6 +14,10 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, + { + "name": "folded-equipped-INNERCLOTHING", + "directions": 4 + }, { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/folded-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/folded-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..091f6582b9 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/folded-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/meta.json index b02e5f4b8a..d77d70001d 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/bartender.rsi/meta.json @@ -14,6 +14,10 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, + { + "name": "folded-equipped-INNERCLOTHING", + "directions": 4 + }, { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/folded-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/folded-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..dcdcaeb83a Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/folded-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/meta.json index 12bdb72c4a..8ecd272ddf 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cargotech.rsi/meta.json @@ -14,6 +14,10 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, + { + "name": "folded-equipped-INNERCLOTHING", + "directions": 4 + }, { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/folded-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/folded-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..39a640b26d Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/folded-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json index 425e6eaae2..9da8dd64ef 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json @@ -14,6 +14,10 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, + { + "name": "folded-equipped-INNERCLOTHING", + "directions": 4 + }, { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/folded-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/folded-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..aee5ab426e Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/folded-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/meta.json index 3f72fb4460..08ce600884 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/chemistry.rsi/meta.json @@ -14,6 +14,10 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, + { + "name": "folded-equipped-INNERCLOTHING", + "directions": 4 + }, { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/folded-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/folded-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..ad71010b46 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/folded-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/meta.json index 3f72fb4460..08ce600884 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/cmo.rsi/meta.json @@ -14,6 +14,10 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, + { + "name": "folded-equipped-INNERCLOTHING", + "directions": 4 + }, { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/folded-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/folded-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..56db6b87bb Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/folded-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/meta.json index 1fb9cf1b66..63ed96bfdf 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14, folded-equipped-INNERCLOTHING edited by TiniestShark (github)", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, + { + "name": "folded-equipped-INNERCLOTHING", + "directions": 4 + }, { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/folded-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/folded-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..0774a27010 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/folded-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/meta.json index 1fb9cf1b66..8384c705b9 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/engineering_hazard.rsi/meta.json @@ -14,6 +14,10 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, + { + "name": "folded-equipped-INNERCLOTHING", + "directions": 4 + }, { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/folded-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/folded-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..edbe52e759 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/folded-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/meta.json index 3f72fb4460..08ce600884 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hop.rsi/meta.json @@ -14,6 +14,10 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, + { + "name": "folded-equipped-INNERCLOTHING", + "directions": 4 + }, { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/folded-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/folded-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..8bc0d303c3 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/folded-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/meta.json index 3f72fb4460..08ce600884 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hydro.rsi/meta.json @@ -14,6 +14,10 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, + { + "name": "folded-equipped-INNERCLOTHING", + "directions": 4 + }, { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/janitor.rsi/folded-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/janitor.rsi/folded-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..77eb214a55 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/janitor.rsi/folded-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/janitor.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/janitor.rsi/meta.json index 1fb9cf1b66..8384c705b9 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/janitor.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/janitor.rsi/meta.json @@ -14,6 +14,10 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, + { + "name": "folded-equipped-INNERCLOTHING", + "directions": 4 + }, { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/folded-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/folded-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..a495f1d167 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/folded-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/meta.json index 3f72fb4460..08ce600884 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/medical.rsi/meta.json @@ -14,6 +14,10 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, + { + "name": "folded-equipped-INNERCLOTHING", + "directions": 4 + }, { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/folded-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/folded-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..2d89552421 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/folded-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/meta.json index 16b45eec87..fa0b5a36dd 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/meta.json @@ -14,6 +14,10 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, + { + "name": "folded-equipped-INNERCLOTHING", + "directions": 4 + }, { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/salvage.rsi/folded-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/salvage.rsi/folded-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..c919509adc Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/salvage.rsi/folded-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/salvage.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/salvage.rsi/meta.json index da8e85d0a1..fef223e092 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/salvage.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/salvage.rsi/meta.json @@ -14,6 +14,10 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, + { + "name": "folded-equipped-INNERCLOTHING", + "directions": 4 + }, { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/folded-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/folded-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..885809cdc3 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/folded-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/meta.json index 3f72fb4460..08ce600884 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/scientist.rsi/meta.json @@ -14,6 +14,10 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, + { + "name": "folded-equipped-INNERCLOTHING", + "directions": 4 + }, { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/folded-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/folded-equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..d22e70dac4 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/folded-equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/meta.json index 8fe98eacbe..e1ac2a6635 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Created by Flareguy using sprites from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039 & the jumpsuit base found in color.rsi.", + "copyright": "Created by Flareguy using sprites from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039 & the jumpsuit base found in color.rsi. folded-equipped-INNERCLOTHING edited by Dutch-VanDerLinde", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, + { + "name": "folded-equipped-INNERCLOTHING", + "directions": 4 + }, { "name": "overlay-inhand-left", "directions": 4 diff --git a/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/equipped-MASK-dog.png b/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/equipped-MASK-dog.png new file mode 100644 index 0000000000..7a8d57d65c Binary files /dev/null and b/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/equipped-MASK-dog.png differ diff --git a/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/equipped-MASK-fox.png b/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/equipped-MASK-fox.png new file mode 100644 index 0000000000..deb668c8df Binary files /dev/null and b/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/equipped-MASK-fox.png differ diff --git a/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/equipped-MASK-puppy.png b/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/equipped-MASK-puppy.png new file mode 100644 index 0000000000..6ee92fcac6 Binary files /dev/null and b/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/equipped-MASK-puppy.png differ diff --git a/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/equipped-MASK-reptilian.png b/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/equipped-MASK-reptilian.png new file mode 100644 index 0000000000..4a2dce685f Binary files /dev/null and b/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/equipped-MASK-reptilian.png differ diff --git a/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/equipped-MASK-vox.png b/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/equipped-MASK-vox.png new file mode 100644 index 0000000000..0e7315ac9d Binary files /dev/null and b/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..96a574bbfe Binary files /dev/null and b/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/equipped-MASK.png b/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/equipped-MASK.png new file mode 100644 index 0000000000..2e909e1a06 Binary files /dev/null and b/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/equipped-MASK.png differ diff --git a/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/icon.png b/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/icon.png new file mode 100644 index 0000000000..f874ccb247 Binary files /dev/null and b/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/inhand-left.png b/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/inhand-left.png new file mode 100644 index 0000000000..be1f1252d1 Binary files /dev/null and b/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/inhand-right.png b/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/inhand-right.png new file mode 100644 index 0000000000..00d9479511 Binary files /dev/null and b/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/meta.json b/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/meta.json new file mode 100644 index 0000000000..57651f6be9 --- /dev/null +++ b/Resources/Textures/Objects/Fun/Balls/tennisball.rsi/meta.json @@ -0,0 +1,50 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Created by IproduceWidgets (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-MASK", + "directions": 4 + }, + { + "name": "equipped-MASK-reptilian", + "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-MASK-dog", + "directions": 4 + }, + { + "name": "equipped-MASK-fox", + "directions": 4 + }, + { + "name": "equipped-MASK-puppy", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Fun/Darts/dart_blue.rsi/inhand-left.png b/Resources/Textures/Objects/Fun/Darts/dart_blue.rsi/inhand-left.png index 21a72d1303..6913eafd62 100644 Binary files a/Resources/Textures/Objects/Fun/Darts/dart_blue.rsi/inhand-left.png and b/Resources/Textures/Objects/Fun/Darts/dart_blue.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Fun/Darts/dart_blue.rsi/inhand-right.png b/Resources/Textures/Objects/Fun/Darts/dart_blue.rsi/inhand-right.png index 6913eafd62..21a72d1303 100644 Binary files a/Resources/Textures/Objects/Fun/Darts/dart_blue.rsi/inhand-right.png and b/Resources/Textures/Objects/Fun/Darts/dart_blue.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Fun/Darts/dart_purple.rsi/inhand-left.png b/Resources/Textures/Objects/Fun/Darts/dart_purple.rsi/inhand-left.png index 21066439d1..5aa88947a0 100644 Binary files a/Resources/Textures/Objects/Fun/Darts/dart_purple.rsi/inhand-left.png and b/Resources/Textures/Objects/Fun/Darts/dart_purple.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Fun/Darts/dart_purple.rsi/inhand-right.png b/Resources/Textures/Objects/Fun/Darts/dart_purple.rsi/inhand-right.png index 5aa88947a0..21066439d1 100644 Binary files a/Resources/Textures/Objects/Fun/Darts/dart_purple.rsi/inhand-right.png and b/Resources/Textures/Objects/Fun/Darts/dart_purple.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Fun/Darts/dart_red.rsi/inhand-left.png b/Resources/Textures/Objects/Fun/Darts/dart_red.rsi/inhand-left.png index da6906085d..392b36fcc5 100644 Binary files a/Resources/Textures/Objects/Fun/Darts/dart_red.rsi/inhand-left.png and b/Resources/Textures/Objects/Fun/Darts/dart_red.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Fun/Darts/dart_red.rsi/inhand-right.png b/Resources/Textures/Objects/Fun/Darts/dart_red.rsi/inhand-right.png index 392b36fcc5..da6906085d 100644 Binary files a/Resources/Textures/Objects/Fun/Darts/dart_red.rsi/inhand-right.png and b/Resources/Textures/Objects/Fun/Darts/dart_red.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Fun/Darts/dart_yellow.rsi/inhand-left.png b/Resources/Textures/Objects/Fun/Darts/dart_yellow.rsi/inhand-left.png index 2a948757c3..fbbfe1e5a8 100644 Binary files a/Resources/Textures/Objects/Fun/Darts/dart_yellow.rsi/inhand-left.png and b/Resources/Textures/Objects/Fun/Darts/dart_yellow.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Fun/Darts/dart_yellow.rsi/inhand-right.png b/Resources/Textures/Objects/Fun/Darts/dart_yellow.rsi/inhand-right.png index fbbfe1e5a8..2a948757c3 100644 Binary files a/Resources/Textures/Objects/Fun/Darts/dart_yellow.rsi/inhand-right.png and b/Resources/Textures/Objects/Fun/Darts/dart_yellow.rsi/inhand-right.png differ diff --git a/Resources/clientCommandPerms.yml b/Resources/clientCommandPerms.yml index 1cef3812cb..d83fdcc353 100644 --- a/Resources/clientCommandPerms.yml +++ b/Resources/clientCommandPerms.yml @@ -78,6 +78,9 @@ - Flags: MAPPING Commands: - mapping + - mappingclientsidesetup + - showsubfloor + - showsubfloorforever - toggleautosave - toggledecals - showaccessreaders diff --git a/Resources/shuttle_attributions.txt b/Resources/shuttle_attributions.txt new file mode 100644 index 0000000000..4060bc0d64 --- /dev/null +++ b/Resources/shuttle_attributions.txt @@ -0,0 +1,164 @@ +- files: ["Shuttles/AdminSpawn/ERT-Large-Base.yml"] + authors: TsjipTsjip, LuckyShotPictures, IProduceWidgets + +- files: ["Shuttles/AdminSpawn/ERT-Large-Med-Sec.yml"] + authors: TsjipTsjip, LuckyShotPictures, IProduceWidgets + +- files: ["Shuttles/AdminSpawn/ERT-Medium-Base.yml"] + authors: TsjipTsjip, LuckyShotPictures, IProduceWidgets + +- files: ["Shuttles/AdminSpawn/ERT-Medium-BasePlus.yml"] + authors: TsjipTsjip, LuckyShotPictures, IProduceWidgets + +- files: ["Shuttles/AdminSpawn/ERT-Medium-Eng-Jani.yml"] + authors: TsjipTsjip, LuckyShotPictures, IProduceWidgets + +- files: ["Shuttles/AdminSpawn/ERT-Medium-Med.yml"] + authors: TsjipTsjip, LuckyShotPictures, IProduceWidgets + +- files: ["Shuttles/AdminSpawn/ERT-Medium-Sec.yml"] + authors: TsjipTsjip, LuckyShotPictures, IProduceWidgets + +- files: ["Shuttles/AdminSpawn/ERT-Small-Base.yml"] + authors: TsjipTsjip, LuckyShotPictures, IProduceWidgets + +- files: ["Shuttles/AdminSpawn/ERT-Small-CBURN.yml"] + authors: TsjipTsjip, LuckyShotPictures, IProduceWidgets + +- files: ["Shuttles/AdminSpawn/ERT-Small-Deathsquad.yml"] + authors: TsjipTsjip, LuckyShotPictures, IProduceWidgets + +- files: ["Shuttles/AdminSpawn/ERT-Small-Eng.yml"] + authors: TsjipTsjip, LuckyShotPictures, IProduceWidgets + +- files: ["Shuttles/AdminSpawn/ERT-Small-Jani.yml"] + authors: TsjipTsjip, LuckyShotPictures, IProduceWidgets + +- files: ["Shuttles/AdminSpawn/ERT-Small-Med.yml"] + authors: TsjipTsjip, LuckyShotPictures, IProduceWidgets + +- files: ["Shuttles/AdminSpawn/ERT-Small-Sec.yml"] + authors: TsjipTsjip, LuckyShotPictures, IProduceWidgets + +- files: ["Shuttles/arrivals.yml"] + authors: + +- files: ["Shuttles/briggle.yml"] + authors: IProduceWidgets + +- files: ["Shuttles/cargo.yml"] + authors: + +- files: ["Shuttles/cargo_core.yml"] + authors: + +- files: ["Shuttles/cargo_fland.yml"] + authors: + +- files: ["Shuttles/dart.yml"] + authors: + +- files: ["Shuttles/emergency.yml"] + authors: + +- files: ["Shuttles/emergency_accordia.yml"] + authors: IProduceWidgets + +- files: ["Shuttles/emergency_box.yml"] + authors: + +- files: ["Shuttles/emergency_cluster.yml"] + authors: + +- files: ["Shuttles/emergency_courser.yml"] + authors: + +- files: ["Shuttles/emergency_delta.yml"] + authors: + +- files: ["Shuttles/emergency_lox.yml"] + authors: + +- files: ["Shuttles/emergency_meta.yml"] + authors: + +- files: ["Shuttles/emergency_omega.yml"] + authors: + +- files: ["Shuttles/emergency_raven.yml"] + authors: + +- files: ["Shuttles/emergency_rod.yml"] + authors: + +- files: ["Shuttles/emergency_wode.yml"] + authors: + +- files: ["Shuttles/infiltrator.yml"] + authors: Emisse + +- files: ["Shuttles/mining.yml"] + authors: + +- files: ["Shuttles/pirate.yml"] + authors: + +- files: ["Shuttles/shittle.yml"] + authors: + +- files: ["Shuttles/trading_outpost.yml"] + authors: + +- files: ["Shuttles/wizard.yml"] + authors: + +- files: ["Shuttles/ShuttleEvent/cruiser.yml"] + authors: IProduceWidgets + +- files: ["Shuttles/ShuttleEvent/disaster_evacpod.yml"] + authors: TheShuEd + +- files: ["Shuttles/ShuttleEvent/eternal.yml"] + authors: IProduceWidgets + +- files: ["Shuttles/ShuttleEvent/flatline.yml"] + authors: IProduceWidgets + +- files: ["Shuttles/ShuttleEvent/gym.yml"] + authors: IProduceWidgets + +- files: ["Shuttles/ShuttleEvent/honki.yml"] + authors: TheShuEd + +- files: ["Shuttles/ShuttleEvent/incorporation.yml"] + authors: IProduceWidgets + +- files: ["Shuttles/ShuttleEvent/joe.yml"] + authors: IProduceWidgets + +- files: ["Shuttles/ShuttleEvent/lambordeere.yml"] + authors: IProduceWidgets + +- files: ["Shuttles/ShuttleEvent/lost_cargo.yml"] + authors: TheShuEd + +- files: ["Shuttles/ShuttleEvent/meatzone.yml"] + authors: IProduceWidgets + +- files: ["Shuttles/ShuttleEvent/microshuttle.yml"] + authors: IProduceWidgets + +- files: ["Shuttles/ShuttleEvent/quark.yml"] + authors: IProduceWidgets + +- files: ["Shuttles/ShuttleEvent/spacebus.yml"] + authors: IProduceWidgets + +- files: ["Shuttles/ShuttleEvent/striker"] + authors: IProduceWidgets + +- files: ["Shuttles/ShuttleEvent/syndie_evacpod.yml"] + authors: TheShuEd + +- files: ["Shuttles/ShuttleEvent/traveling_china_cuisine.yml"] + authors: TheShuEd