diff --git a/.github/CODEOWNERS.txt b/.github/CODEOWNERS.txt
new file mode 100644
index 000000000000..d1e17dd79299
--- /dev/null
+++ b/.github/CODEOWNERS.txt
@@ -0,0 +1,94 @@
+# Last match in file takes precedence.
+
+# Sorting by path instead of by who added it one day :(
+# this isn't how codeowners rules work pls read the first comment instead of trying to force a sorting order
+#/Resources/ConfigPresets/WizardsDen/ @Chief-Engineer
+
+# Moony's Gargantuan List Of Things She Cares About, or MGLOTSCA for short.
+# You need to add your name to these entries, not make a new one, if you care about them.
+#/Content.*/Toolshed/ @moonheart08
+#**/Toolshed/** @moonheart08
+#*Command.cs @moonheart08
+#/Content.*/Administration/ @moonheart08 @DrSmugleaf @Chief-Engineer
+#/Content.*/Station/ @moonheart08
+#/Content.*/Maps/ @moonheart08
+#/Content.*/GameTicking/ @moonheart08 @EmoGarbage404
+#/Resources/ServerInfo/ @moonheart08 @Chief-Engineer
+#/Resources/ServerInfo/Guidebook/ @moonheart08 @EmoGarbage404
+#/Resources/engineCommandPerms.yml @moonheart08 @Chief-Engineer
+#/Resources/clientCommandPerms.yml @moonheart08 @Chief-Engineer
+
+#/Resources/Prototypes/Maps/ @Emisse
+
+#/Resources/Prototypes/Body/ @DrSmugleaf # suffering
+#/Resources/Prototypes/Entities/Mobs/Player/ @DrSmugleaf
+#/Resources/Prototypes/Entities/Mobs/Species/ @DrSmugleaf
+#/Content.*/Body/ @DrSmugleaf
+#/Content.YAMLLinter @DrSmugleaf
+#/Content.Shared/Damage/ @DrSmugleaf
+
+#/Content.*/Anomaly/ @EmoGarbage404
+#/Content.*/Lathe/ @EmoGarbage404
+#/Content.*/Materials/ @EmoGarbage404
+#/Content.*/Mech/ @EmoGarbage404
+#/Content.*/Research/ @EmoGarbage404
+#/Content.*/Stack/ @EmoGarbage404
+#/Content.*/Xenoarchaeology/ @EmoGarbage404
+#/Content.*/Zombies/ @EmoGarbage404
+#/Resources/Prototypes/Entities/Structures/Specific/anomalies.yml @EmoGarbage404
+#/Resources/Prototypes/Research/ @EmoGarbage404
+
+#/Content.*/Forensics/ @ficcialfaint
+
+# SKREEEE
+#/Content.*.Database/ @PJB3005 @DrSmugleaf
+#/Content.Shared.Database/Log*.cs @PJB3005 @DrSmugleaf @Chief-Engineer
+#/Pow3r/ @PJB3005
+#/Content.Server/Power/Pow3r/ @PJB3005
+
+# notafet
+#/Content.*/Atmos/ @Partmedia
+#/Content.*/Botany/ @Partmedia
+
+#Jezi
+#/Content.*/Medical @Jezithyr
+#/Content.*/Body @Jezithyr
+
+## Frontier goes here:
+
+# Config files
+/Resources/ConfigPresets/* @Cheackraze
+
+# Mapchecker
+/.github/mapchecker/* @TsjipTsjip
+/.github/workflows/frontier-mapchecker.yml @TsjipTsjip
+
+# All maps
+/Resources/Maps/_NF/* @MagnusCrowe
+/Resources/Prototypes/_NF/Shipyard/* @MagnusCrowe
+
+# Bluespace Events
+/Resources/Maps/_NF/Bluespace/asteroidbunker.yml @MagnusCrowe @FoxxoTrystan
+/Resources/Maps/_NF/Bluespace/asteroidvault.yml @MagnusCrowe @FoxxoTrystan
+
+# Shuttles
+# McCargo
+/Resources/Maps/_NF/Shuttles/mccargo.yml @MagnusCrowe @dvir001
+/Resources/Prototypes/_NF/Shipyard/mccargo.yml @MagnusCrowe @dvir001
+# McDelivery
+/Resources/Maps/_NF/Shuttles/mcdelivery.yml @MagnusCrowe @dvir001
+/Resources/Prototypes/_NF/Shipyard/mcdelivery.yml @MagnusCrowe @dvir001
+# Hunter
+/Resources/Maps/_NF/Shuttles/hunter.yml @MagnusCrowe @FoxxoTrystan
+/Resources/Prototypes/_NF/Shipyard/hunter.yml @MagnusCrowe @FoxxoTrystan
+# Infiltrator
+/Resources/Maps/_NF/Shuttles/infiltrator.yml @MagnusCrowe @FoxxoTrystan
+/Resources/Prototypes/_NF/Shipyard/infiltrator.yml @MagnusCrowe @FoxxoTrystan
+
+# Races - Trystan wanted a ping on this
+/Resources/Prototypes/Entities/Mobs/Player/* @FoxxoTrystan
+/Resources/Prototypes/Entities/Mobs/Species/* @FoxxoTrystan
+/Resources/Prototypes/DeltaV/Entities/Mobs/Species/* @FoxxoTrystan
+/Resources/Prototypes/DeltaV/Entities/Mobs/Player/* @FoxxoTrystan
+/Resources/Prototypes/_Nyano/Entities/Mobs/Species/* @FoxxoTrystan
+/Resources/Prototypes/_Nyano/Entities/Mobs/Player/* @FoxxoTrystan
diff --git a/Content.Client/Shuttles/UI/RadarControl.cs b/Content.Client/Shuttles/UI/RadarControl.cs
index d3a9b6ddd9ac..18d073030158 100644
--- a/Content.Client/Shuttles/UI/RadarControl.cs
+++ b/Content.Client/Shuttles/UI/RadarControl.cs
@@ -1,9 +1,11 @@
using System.Numerics;
+using Content.Client.Resources;
using Content.Client.UserInterface.Controls;
using Content.Shared.Shuttles.BUIStates;
using Content.Shared.Shuttles.Components;
using JetBrains.Annotations;
using Robust.Client.Graphics;
+using Robust.Client.ResourceManagement;
using Robust.Client.UserInterface;
using Robust.Client.UserInterface.Controls;
using Robust.Shared.Collections;
@@ -23,10 +25,15 @@ public sealed class RadarControl : MapGridControl
{
[Dependency] private readonly IEntityManager _entManager = default!;
[Dependency] private readonly IMapManager _mapManager = default!;
- private SharedTransformSystem _transform;
+ [Dependency] private readonly IResourceCache _resourceCache;
+ [Dependency] private readonly IUserInterfaceManager _uiManager = default!;
+ private readonly SharedTransformSystem _transform;
private const float GridLinesDistance = 32f;
+ private const int RadarBlipSize = 15;
+ private const int RadarFontSize = 10;
+
///
/// Used to transform all of the radar objects. Typically is a shuttle console parented to a grid.
///
@@ -37,9 +44,9 @@ public sealed class RadarControl : MapGridControl
///
/// Shows a label on each radar object.
///
- private Dictionary _iffControls = new();
+ private readonly Dictionary _iffControls = new();
- private Dictionary> _docks = new();
+ private readonly Dictionary> _docks = new();
public bool ShowIFF { get; set; } = true;
public bool ShowIFFShuttles { get; set; } = true;
@@ -65,6 +72,7 @@ public sealed class RadarControl : MapGridControl
public RadarControl() : base(64f, 256f, 256f)
{
_transform = _entManager.System();
+ _resourceCache = IoCManager.Resolve();
}
public void SetMatrix(EntityCoordinates? coordinates, Angle? angle)
@@ -84,30 +92,28 @@ protected override void KeyBindUp(GUIBoundKeyEventArgs args)
}
var a = InverseScalePosition(args.RelativePosition);
- var relativeWorldPos = new Vector2(a.X, -a.Y);
+ var relativeWorldPos = a with { Y = -a.Y };
relativeWorldPos = _rotation.Value.RotateVec(relativeWorldPos);
var coords = _coordinates.Value.Offset(relativeWorldPos);
OnRadarClick?.Invoke(coords);
}
///
- /// Gets the entitycoordinates of where the mouseposition is, relative to the control.
+ /// Gets the entity coordinates of where the mouse position is, relative to the control.
///
[PublicAPI]
- public EntityCoordinates GetMouseCoordinates(ScreenCoordinates screen)
+ public EntityCoordinates GetMouseCoordinatesFromCenter()
{
if (_coordinates == null || _rotation == null)
{
return EntityCoordinates.Invalid;
}
- var pos = screen.Position / UIScale - GlobalPosition;
+ var pos = _uiManager.MousePositionScaled.Position - GlobalPosition;
+ var relativeWorldPos = _rotation.Value.RotateVec(pos);
- var a = InverseScalePosition(pos);
- var relativeWorldPos = new Vector2(a.X, -a.Y);
- relativeWorldPos = _rotation.Value.RotateVec(relativeWorldPos);
- var coords = _coordinates.Value.Offset(relativeWorldPos);
- return coords;
+ // I am not sure why the resulting point is 20 units under the mouse.
+ return _coordinates.Value.Offset(relativeWorldPos);
}
public void UpdateState(RadarConsoleBoundInterfaceState ls)
@@ -126,6 +132,7 @@ public void UpdateState(RadarConsoleBoundInterfaceState ls)
_docks.Clear();
+ // This draws the purple dots where docking airlocks are located.
foreach (var state in ls.Docks)
{
var coordinates = state.Coordinates;
@@ -134,13 +141,18 @@ public void UpdateState(RadarConsoleBoundInterfaceState ls)
}
}
+ public class BlipData
+ {
+ public bool IsOutsideRadarCircle { get; set; }
+ public Vector2 UiPosition { get; set; }
+ public Vector2 VectorToPosition { get; set; }
+ public Color Color { get; set; }
+ }
+
protected override void Draw(DrawingHandleScreen handle)
{
base.Draw(handle);
- var fakeAA = new Color(0.08f, 0.08f, 0.08f);
-
- handle.DrawCircle(new Vector2(MidPoint, MidPoint), ScaledMinimapRadius + 1, fakeAA);
handle.DrawCircle(new Vector2(MidPoint, MidPoint), ScaledMinimapRadius, Color.Black);
// No data
@@ -207,6 +219,9 @@ protected override void Draw(DrawingHandleScreen handle)
_grids.Clear();
_mapManager.FindGridsIntersecting(xform.MapID, new Box2(pos - MaxRadarRangeVector, pos + MaxRadarRangeVector), ref _grids);
+ // Frontier - collect blip location data outside foreach - more changes ahead
+ var blipDataList = new List();
+
// Draw other grids... differently
foreach (var grid in _grids)
{
@@ -223,18 +238,18 @@ protected override void Draw(DrawingHandleScreen handle)
_entManager.TryGetComponent(gUid, out var iff);
- // Hide it entirely.
- if (iff != null &&
- (iff.Flags & IFFFlags.Hide) != 0x0)
+ var hideShuttleLabels = iff != null && (iff.Flags & IFFFlags.Hide) != 0x0;
+ if (hideShuttleLabels)
{
continue;
}
shown.Add(gUid);
var name = metaQuery.GetComponent(gUid).EntityName;
-
if (name == string.Empty)
+ {
name = Loc.GetString("shuttle-console-unknown");
+ }
var gridMatrix = _transform.GetWorldMatrix(gUid);
Matrix3.Multiply(in gridMatrix, in offsetMatrix, out var matty);
@@ -244,29 +259,14 @@ protected override void Draw(DrawingHandleScreen handle)
// Color.FromHex("#FFC000FF")
// Hostile default: Color.Firebrick
- if (ShowIFF &&
- (iff == null && IFFComponent.ShowIFFDefault ||
- (iff.Flags & IFFFlags.HideLabel) == 0x0))
+ /****************************************************************************
+ * FRONTIER - BEGIN radar improvements
+ * Everything below until end block belong to frontier improvements to radar
+ *****************************************************************************/
+
+ if (ShowIFF && (iff == null && IFFComponent.ShowIFFDefault || (iff.Flags & IFFFlags.HideLabel) == 0x0))
{
var gridBounds = grid.Comp.LocalAABB;
- Label label;
-
- if (!_iffControls.TryGetValue(gUid, out var control))
- {
- label = new Label()
- {
- HorizontalAlignment = HAlignment.Left,
- };
-
- _iffControls[gUid] = label;
- AddChild(label);
- }
- else
- {
- label = (Label) control;
- }
-
- label.FontColorOverride = color;
var gridCentre = matty.Transform(gridBody.LocalCenter);
gridCentre.Y = -gridCentre.Y;
var distance = gridCentre.Length();
@@ -276,35 +276,98 @@ protected override void Draw(DrawingHandleScreen handle)
// The actual position in the UI. We offset the matrix position to render it off by half its width
// plus by the offset.
- var uiPosition = ScalePosition(gridCentre) / UIScale - new Vector2(label.Width / 2f, -yOffset);
+ var uiPosition = ScalePosition(gridCentre) / UIScale;
// Confines the UI position within the viewport.
- var uiXCentre = (int) (Width - label.Width) / 2;
- var uiYCentre = (int) (Height - label.Height) / 2;
+ var uiXCentre = (int) Width / 2;
+ var uiYCentre = (int) Height / 2;
var uiXOffset = uiPosition.X - uiXCentre;
var uiYOffset = uiPosition.Y - uiYCentre;
var uiDistance = (int) Math.Sqrt(Math.Pow(uiXOffset, 2) + Math.Pow(uiYOffset, 2));
var uiX = uiXCentre * uiXOffset / uiDistance;
var uiY = uiYCentre * uiYOffset / uiDistance;
- if (uiDistance > Math.Abs(uiX) && uiDistance > Math.Abs(uiY))
+
+ var isOutsideRadarCircle = uiDistance > Math.Abs(uiX) && uiDistance > Math.Abs(uiY);
+ if (isOutsideRadarCircle)
{
- uiPosition = new Vector2(uiX + uiXCentre, uiY + uiYCentre);
+ // 0.95f for offsetting the icons slightly away from edge of radar so it doesnt clip.
+ uiX = uiXCentre * uiXOffset / uiDistance * 0.95f;
+ uiY = uiYCentre * uiYOffset / uiDistance * 0.95f;
+ uiPosition = new Vector2(
+ x: uiX + uiXCentre,
+ y: uiY + uiYCentre
+ );
}
- label.Visible = ShowIFFShuttles
- || iff == null || (iff.Flags & IFFFlags.IsPlayerShuttle) == 0x0;
+ var scaledMousePosition = GetMouseCoordinatesFromCenter().Position * UIScale;
+ var isMouseOver = Vector2.Distance(scaledMousePosition, uiPosition * UIScale) < 30f;
+
+ // Distant stations that are not player controlled ships
+ var isDistantPOI = iff != null || (iff == null || (iff.Flags & IFFFlags.IsPlayerShuttle) == 0x0);
+
+ if (!isOutsideRadarCircle || isDistantPOI || isMouseOver)
+ {
+ Label label;
- if (IFFFilter != null)
- label.Visible &= IFFFilter(gUid, grid.Comp, iff);
+ if (!_iffControls.TryGetValue(gUid, out var control))
+ {
+ label = new Label
+ {
+ HorizontalAlignment = HAlignment.Left,
+ };
+
+ _iffControls[gUid] = label;
+ AddChild(label);
+ }
+ else
+ {
+ label = (Label) control;
+ }
+
+ label.FontColorOverride = color;
+ label.FontOverride = _resourceCache.GetFont("/Fonts/NotoSans/NotoSans-Regular.ttf", RadarFontSize);
+ label.Visible = ShowIFFShuttles || iff == null || (iff.Flags & IFFFlags.IsPlayerShuttle) == 0x0 || isMouseOver;
+ if (IFFFilter != null)
+ {
+ label.Visible &= IFFFilter(gUid, grid.Comp, iff);
+ }
+
+ // Shows decimal when distance is < 50m, otherwise pointless to show it.
+ var displayedDistance = distance < 50f ? $"{distance:0.0}" : distance < 1000 ? $"{distance:0}" : $"{distance / 1000:0.0}k";
+ label.Text = Loc.GetString("shuttle-console-iff-label", ("name", name), ("distance", displayedDistance));
+
+ var sideCorrection = isOutsideRadarCircle && uiPosition.X > Width / 2 ? -label.Size.X -20 : 0;
+ var blipCorrection = (RadarBlipSize * 0.7f);
+ var correctedUiPosition = uiPosition with
+ {
+ X = uiPosition.X > Width / 2
+ ? uiPosition.X + blipCorrection + sideCorrection
+ : uiPosition.X + blipCorrection,
+ Y = uiPosition.Y - 10 // Wanted to use half the label height, but this makes text jump when visibility changes.
+ };
- label.Text = Loc.GetString("shuttle-console-iff-label", ("name", name), ("distance", $"{distance:0.0}"));
- LayoutContainer.SetPosition(label, uiPosition);
+ LayoutContainer.SetPosition(label, correctedUiPosition);
+ }
+ else
+ {
+ ClearLabel(gUid);
+ }
+
+ blipDataList.Add(new BlipData
+ {
+ IsOutsideRadarCircle = isOutsideRadarCircle,
+ UiPosition = uiPosition,
+ VectorToPosition = uiPosition - new Vector2(uiXCentre, uiYCentre),
+ Color = color
+ });
}
else
{
ClearLabel(gUid);
}
+ DrawBlips(handle, blipDataList);
+
// Detailed view
DrawGrid(handle, matty, grid, color, true);
@@ -313,11 +376,92 @@ protected override void Draw(DrawingHandleScreen handle)
foreach (var (ent, _) in _iffControls)
{
- if (shown.Contains(ent)) continue;
+ if (shown.Contains(ent))
+ {
+ continue;
+ }
ClearLabel(ent);
}
}
+ /**
+ * Frontier - Adds blip style triangles that are on ships or pointing towards ships on the edges of the radar.
+ * Draws blips at the BlipData's uiPosition and uses VectorToPosition to rotate to point towards ships.
+ */
+ private void DrawBlips(
+ DrawingHandleBase handle,
+ List blipDataList
+ )
+ {
+ var blipValueList = new Dictionary>();
+
+ foreach (var blipData in blipDataList)
+ {
+ var triangleShapeVectorPoints = new[]
+ {
+ new Vector2(0, 0),
+ new Vector2(RadarBlipSize, 0),
+ new Vector2(RadarBlipSize * 0.5f, RadarBlipSize)
+ };
+
+ if (blipData.IsOutsideRadarCircle)
+ {
+ // Calculate the angle of rotation
+ var angle = (float) Math.Atan2(blipData.VectorToPosition.Y, blipData.VectorToPosition.X) + -1.6f;
+
+ // Manually create a rotation matrix
+ var cos = (float) Math.Cos(angle);
+ var sin = (float) Math.Sin(angle);
+ float[,] rotationMatrix = { { cos, -sin }, { sin, cos } };
+
+ // Rotate each vertex
+ for (var i = 0; i < triangleShapeVectorPoints.Length; i++)
+ {
+ var vertex = triangleShapeVectorPoints[i];
+ var x = vertex.X * rotationMatrix[0, 0] + vertex.Y * rotationMatrix[0, 1];
+ var y = vertex.X * rotationMatrix[1, 0] + vertex.Y * rotationMatrix[1, 1];
+ triangleShapeVectorPoints[i] = new Vector2(x, y);
+ }
+ }
+
+ var triangleCenterVector =
+ (triangleShapeVectorPoints[0] + triangleShapeVectorPoints[1] + triangleShapeVectorPoints[2]) / 3;
+
+ // Calculate the vectors from the center to each vertex
+ var vectorsFromCenter = new Vector2[3];
+ for (int i = 0; i < 3; i++)
+ {
+ vectorsFromCenter[i] = (triangleShapeVectorPoints[i] - triangleCenterVector) * UIScale;
+ }
+
+ // Calculate the vertices of the new triangle
+ var newVerts = new Vector2[3];
+ for (var i = 0; i < 3; i++)
+ {
+ newVerts[i] = (blipData.UiPosition * UIScale) + vectorsFromCenter[i];
+ }
+
+ if (!blipValueList.TryGetValue(blipData.Color, out var valueList))
+ {
+ valueList = new ValueList();
+
+ }
+ valueList.Add(newVerts[0]);
+ valueList.Add(newVerts[1]);
+ valueList.Add(newVerts[2]);
+ blipValueList[blipData.Color] = valueList;
+ }
+
+ // One draw call for every color we have
+ foreach (var color in blipValueList)
+ {
+ handle.DrawPrimitives(DrawPrimitiveTopology.TriangleList, color.Value.Span, color.Key);
+ }
+ }
+ /****************************************************************************
+ * FRONTIER - END radar improvements
+ *****************************************************************************/
+
private void Clear()
{
foreach (var (_, label) in _iffControls)
@@ -330,7 +474,10 @@ private void Clear()
private void ClearLabel(EntityUid uid)
{
- if (!_iffControls.TryGetValue(uid, out var label)) return;
+ if (!_iffControls.TryGetValue(uid, out var label))
+ {
+ return;
+ }
label.Dispose();
_iffControls.Remove(uid);
}
diff --git a/Content.Client/_NF/Contraband/BUI/ContrabandPalletConsoleBoundUserInterface.cs b/Content.Client/_NF/Contraband/BUI/ContrabandPalletConsoleBoundUserInterface.cs
new file mode 100644
index 000000000000..e35af8fa1c88
--- /dev/null
+++ b/Content.Client/_NF/Contraband/BUI/ContrabandPalletConsoleBoundUserInterface.cs
@@ -0,0 +1,60 @@
+using Content.Client._NF.Contraband.UI;
+using Content.Shared._NF.Contraband.BUI;
+using Content.Shared._NF.Contraband.Events;
+using Robust.Shared.Utility;
+
+namespace Content.Client._NF.Contraband.BUI;
+
+public sealed class ContrabandPalletConsoleBoundUserInterface : BoundUserInterface
+{
+ [ViewVariables]
+ private ContrabandPalletMenu? _menu;
+
+ public ContrabandPalletConsoleBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey)
+ {
+ }
+
+ protected override void Open()
+ {
+ base.Open();
+ var disclaimer = new FormattedMessage();
+ disclaimer.AddText(Loc.GetString($"contraband-pallet-disclaimer"));
+ _menu = new ContrabandPalletMenu();
+ _menu.AppraiseRequested += OnAppraisal;
+ _menu.SellRequested += OnSell;
+ _menu.OnClose += Close;
+ _menu.Disclaimer.SetMessage(disclaimer);
+ _menu.OpenCentered();
+ }
+
+ protected override void Dispose(bool disposing)
+ {
+ base.Dispose(disposing);
+ if (disposing)
+ {
+ _menu?.Dispose();
+ }
+ }
+
+ private void OnAppraisal()
+ {
+ SendMessage(new ContrabandPalletAppraiseMessage());
+ }
+
+ private void OnSell()
+ {
+ SendMessage(new ContrabandPalletSellMessage());
+ }
+
+ protected override void UpdateState(BoundUserInterfaceState state)
+ {
+ base.UpdateState(state);
+
+ if (state is not ContrabandPalletConsoleInterfaceState palletState)
+ return;
+
+ _menu?.SetEnabled(palletState.Enabled);
+ _menu?.SetAppraisal(palletState.Appraisal);
+ _menu?.SetCount(palletState.Count);
+ }
+}
diff --git a/Content.Client/_NF/Contraband/UI/ContrabandPalletMenu.xaml b/Content.Client/_NF/Contraband/UI/ContrabandPalletMenu.xaml
new file mode 100644
index 000000000000..488325846566
--- /dev/null
+++ b/Content.Client/_NF/Contraband/UI/ContrabandPalletMenu.xaml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Content.Client/_NF/Contraband/UI/ContrabandPalletMenu.xaml.cs b/Content.Client/_NF/Contraband/UI/ContrabandPalletMenu.xaml.cs
new file mode 100644
index 000000000000..a1bb6cf0282b
--- /dev/null
+++ b/Content.Client/_NF/Contraband/UI/ContrabandPalletMenu.xaml.cs
@@ -0,0 +1,47 @@
+using Content.Client.UserInterface.Controls;
+using Content.Shared._NF.Contraband.Components;
+using Robust.Client.AutoGenerated;
+using Robust.Client.UserInterface.Controls;
+using Robust.Client.UserInterface.XAML;
+
+namespace Content.Client._NF.Contraband.UI;
+
+[GenerateTypedNameReferences]
+public sealed partial class ContrabandPalletMenu : FancyWindow
+{
+ public Action? SellRequested;
+ public Action? AppraiseRequested;
+
+ public ContrabandPalletMenu()
+ {
+ RobustXamlLoader.Load(this);
+ SellButton.OnPressed += OnSellPressed;
+ AppraiseButton.OnPressed += OnAppraisePressed;
+ Title = Loc.GetString("contraband-pallet-console-menu-title");
+ }
+
+ public void SetAppraisal(int amount)
+ {
+ AppraisalLabel.Text = Loc.GetString("contraband-console-menu-points-amount", ("amount", amount.ToString()));
+ }
+
+ public void SetCount(int count)
+ {
+ CountLabel.Text = count.ToString();
+ }
+ public void SetEnabled(bool enabled)
+ {
+ AppraiseButton.Disabled = !enabled;
+ SellButton.Disabled = !enabled;
+ }
+
+ private void OnSellPressed(BaseButton.ButtonEventArgs obj)
+ {
+ SellRequested?.Invoke();
+ }
+
+ private void OnAppraisePressed(BaseButton.ButtonEventArgs obj)
+ {
+ AppraiseRequested?.Invoke();
+ }
+}
diff --git a/Content.Client/_NF/Latejoin/NFLateJoinGui.xaml.cs b/Content.Client/_NF/Latejoin/NFLateJoinGui.xaml.cs
index 299e29e71e62..a304c83946ce 100644
--- a/Content.Client/_NF/Latejoin/NFLateJoinGui.xaml.cs
+++ b/Content.Client/_NF/Latejoin/NFLateJoinGui.xaml.cs
@@ -22,7 +22,7 @@ public sealed partial class NFLateJoinGui : FancyWindow
private ClientGameTicker _gameTicker;
- private NetEntity _lastSelection = NetEntity.Invalid;
+ private NetEntity _lastSelection;
private readonly Dictionary _buttons = new();
@@ -36,11 +36,13 @@ public NFLateJoinGui()
{
UpdateUi(_gameTicker.JobsAvailable);
};
- CrewManifestButton.OnPressed += args =>
+ CrewManifestButton.OnPressed += _ =>
{
EntitySystem.Get().RequestCrewManifest(_lastSelection);
};
+ _lastSelection = _gameTicker.JobsAvailable.Keys.FirstOrNull() ?? NetEntity.Invalid;
+
UpdateUi(_gameTicker.JobsAvailable);
}
@@ -50,11 +52,6 @@ protected override void Dispose(bool disposing)
_gameTicker.LobbyJobsAvailableUpdated -= UpdateUi;
}
- public void UpdateUi()
- {
- UpdateUi(_gameTicker.JobsAvailable);
- }
-
public void UpdateUi(IReadOnlyDictionary> obj)
{
if (VesselSelection.Selected is null)
@@ -91,7 +88,6 @@ public void UpdateUi(IReadOnlyDictionary> o
var newButton = new NewFrontierLateJoinJobButton(station, jobId, _gameTicker, _prototypeManager);
newButton.OnPressed += args =>
{
-
Logger.InfoS("latejoin", $"Late joining as ID: {jobId}");
_consoleHost.ExecuteCommand($"joingame {CommandParsing.Escape(jobId)} {station}");
Close();
diff --git a/Content.Client/_NF/Latejoin/VesselListControl.xaml.cs b/Content.Client/_NF/Latejoin/VesselListControl.xaml.cs
index ef5c08ca740b..d1404e458aaa 100644
--- a/Content.Client/_NF/Latejoin/VesselListControl.xaml.cs
+++ b/Content.Client/_NF/Latejoin/VesselListControl.xaml.cs
@@ -10,6 +10,7 @@ namespace Content.Client._NF.Latejoin;
[GenerateTypedNameReferences]
public sealed partial class VesselListControl : BoxContainer
{
+
private ClientGameTicker _gameTicker;
public Comparison? Comparison;
@@ -25,6 +26,7 @@ public NetEntity? Selected
return (NetEntity) i.Metadata!;
}
}
+
private IReadOnlyDictionary>? _lastJobState;
public VesselListControl()
@@ -33,10 +35,10 @@ public VesselListControl()
IoCManager.InjectDependencies(this);
RobustXamlLoader.Load(this);
_gameTicker.LobbyJobsAvailableUpdated += UpdateUi;
- UpdateUi(_gameTicker.JobsAvailable);
-
Comparison = DefaultComparison;
+ UpdateUi(_gameTicker.JobsAvailable);
+
FilterLineEdit.OnTextChanged += _ =>
{
if (_lastJobState != null)
@@ -52,13 +54,42 @@ protected override void Dispose(bool disposing)
private int DefaultComparison(NetEntity x, NetEntity y)
{
- // Negated to enforce descending order
- return -(int)(_gameTicker.JobsAvailable[x].Values.Sum(a => a ?? 0) - _gameTicker.JobsAvailable[y].Values.Sum(b => b ?? 0));
+ var xContainsHop = _gameTicker.JobsAvailable[x].ContainsKey("HeadOfPersonnel");
+ var yContainsHop = _gameTicker.JobsAvailable[y].ContainsKey("HeadOfPersonnel");
+
+ var xContainsHos = _gameTicker.JobsAvailable[x].ContainsKey("HeadOfSecurity");
+ var yContainsHos = _gameTicker.JobsAvailable[y].ContainsKey("HeadOfSecurity");
+
+ // Prioritize "HeadOfPersonnel"
+ switch (xContainsHop)
+ {
+ case true when !yContainsHop:
+ return -1;
+ case false when yContainsHop:
+ return 1;
+ }
+
+ // If both or neither contain "HeadOfPersonnel", prioritize "HeadOfSecurity"
+ switch (xContainsHos)
+ {
+ case true when !yContainsHos:
+ return -1;
+ case false when yContainsHos:
+ return 1;
+ }
+
+ // If both or neither contain "HeadOfPersonnel" and "HeadOfSecurity", sort by jobCountComparison
+ var jobCountComparison = -(int) (_gameTicker.JobsAvailable[x].Values.Sum(a => a ?? 0) -
+ _gameTicker.JobsAvailable[y].Values.Sum(b => b ?? 0));
+ var nameComparison = string.Compare(_gameTicker.StationNames[x], _gameTicker.StationNames[y], StringComparison.Ordinal);
+
+ // Combine the comparisons
+ return jobCountComparison != 0 ? jobCountComparison : nameComparison;
}
- public void Sort()
+ private void Sort()
{
- if(Comparison != null)
+ if (Comparison != null)
VesselItemList.Sort((a, b) => Comparison((NetEntity) a.Metadata!, (NetEntity) b.Metadata!));
}
@@ -68,16 +99,15 @@ private void UpdateUi(IReadOnlyDictionary>
foreach (var (key, name) in _gameTicker.StationNames)
{
- if (VesselItemList.Any(x => ((NetEntity)x.Metadata!) == key))
+ if (VesselItemList.Any(x => ((NetEntity) x.Metadata!) == key))
continue;
- var jobsAvailable = _gameTicker.JobsAvailable[key].Values.Sum(a => a ?? 0).ToString();
+ var jobsAvailable = _gameTicker.JobsAvailable[key].Values.Sum(a => a ?? 0);
var item = new ItemList.Item(VesselItemList)
{
Metadata = key,
Text = name + $" ({jobsAvailable})"
};
-
if (!string.IsNullOrEmpty(FilterLineEdit.Text) &&
!name.ToLowerInvariant().Contains(FilterLineEdit.Text.Trim().ToLowerInvariant()))
{
@@ -87,8 +117,12 @@ private void UpdateUi(IReadOnlyDictionary>
VesselItemList.Add(item);
}
+ _lastJobState = obj;
Sort();
- _lastJobState = obj;
+ if (Selected == null && VesselItemList.Count > 0)
+ {
+ VesselItemList.First().Selected = true;
+ }
}
}
diff --git a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs
index d6d88639f3b1..478064f961dc 100644
--- a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs
+++ b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs
@@ -166,9 +166,12 @@ private void OnApproveOrderMessage(EntityUid uid, CargoOrderConsoleComponent com
// Log order approval
_adminLogger.Add(LogType.Action, LogImpact.Low,
$"{ToPrettyString(player):user} approved order [orderId:{order.OrderId}, quantity:{order.OrderQuantity}, product:{order.ProductId}, requester:{order.Requester}, reason:{order.Reason}] with balance at {bankAccount.Balance}");
- if (TryComp(_station.GetOwningStation(uid), out var stationBank))
+
+ var stationQuery = EntityQuery();
+
+ foreach (var stationBankComp in stationQuery)
{
- DeductFunds(stationBank, (int) -(Math.Floor(cost * 0.65f)));
+ DeductFunds(stationBankComp, (int) -(Math.Floor(cost * 0.45f)));
}
_bankSystem.TryBankWithdraw(player, cost);
diff --git a/Content.Server/Construction/Components/ComputerTabletopBoardComponent.cs b/Content.Server/Construction/Components/ComputerTabletopBoardComponent.cs
new file mode 100644
index 000000000000..78e892cd9475
--- /dev/null
+++ b/Content.Server/Construction/Components/ComputerTabletopBoardComponent.cs
@@ -0,0 +1,15 @@
+using Robust.Shared.Prototypes;
+using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
+
+namespace Content.Server.Construction.Components
+{
+ ///
+ /// Used for construction graphs in building tabletop computers.
+ ///
+ [RegisterComponent]
+ public sealed partial class ComputerTabletopBoardComponent : Component
+ {
+ [DataField("prototype", customTypeSerializer: typeof(PrototypeIdSerializer))]
+ public string? Prototype { get; private set; }
+ }
+}
diff --git a/Content.Server/Construction/NodeEntities/BoardNodeEntity.cs b/Content.Server/Construction/NodeEntities/BoardNodeEntity.cs
index 4f95945262d0..28c25eef04db 100644
--- a/Content.Server/Construction/NodeEntities/BoardNodeEntity.cs
+++ b/Content.Server/Construction/NodeEntities/BoardNodeEntity.cs
@@ -29,6 +29,14 @@ public sealed partial class BoardNodeEntity : IGraphNodeEntity
var board = container.ContainedEntities[0];
+ // Frontier - adds tabletop variants
+ if (args.EntityManager.TryGetComponent(container.Owner, out ConstructionComponent? constructionComponent)
+ && constructionComponent.Graph == "GraphComputerTabletop"
+ && args.EntityManager.TryGetComponent(board, out ComputerTabletopBoardComponent? tabletopComputer))
+ {
+ return tabletopComputer.Prototype;
+ }
+
// There should not be a case where both of these components exist on the same entity...
if (args.EntityManager.TryGetComponent(board, out MachineBoardComponent? machine))
return machine.Prototype;
diff --git a/Content.Server/Database/ServerBanDef.cs b/Content.Server/Database/ServerBanDef.cs
index 9d67537bd228..5b68c3104374 100644
--- a/Content.Server/Database/ServerBanDef.cs
+++ b/Content.Server/Database/ServerBanDef.cs
@@ -86,6 +86,7 @@ public string FormatBanMessage(IConfigurationManager cfg, ILocalizationManager l
{loc.GetString("ban-banned-2", ("reason", Reason))}
{expires}
{loc.GetString("ban-banned-3")}
+ {loc.GetString("ban-banned-4")}
""";
}
}
diff --git a/Content.Server/Info/ShowRulesCommand.cs b/Content.Server/Info/ShowRulesCommand.cs
index 286e371b2c43..07107cf65c32 100644
--- a/Content.Server/Info/ShowRulesCommand.cs
+++ b/Content.Server/Info/ShowRulesCommand.cs
@@ -12,6 +12,7 @@ namespace Content.Server.Info;
[AdminCommand(AdminFlags.Admin)]
public sealed class ShowRulesCommand : IConsoleCommand
{
+ [Dependency] private readonly IPlayerManager _playerManager = default!;
public string Command => "showrules";
public string Description => "Opens the rules popup for the specified player.";
public string Help => "showrules [seconds]";
@@ -63,4 +64,28 @@ public async void Execute(IConsoleShell shell, string argStr, string[] args)
var player = IoCManager.Resolve().GetSessionByUserId(located.UserId);
netManager.ServerSendMessage(message, player.ConnectedClient);
}
+
+ public CompletionResult GetCompletion(IConsoleShell shell, string[] args)
+ {
+ if (args.Length == 1)
+ {
+ return CompletionResult.FromHintOptions(
+ CompletionHelper.SessionNames(players: _playerManager),
+ Loc.GetString(""));
+ }
+
+ if (args.Length == 2)
+ {
+ var durations = new CompletionOption[]
+ {
+ new("300", Loc.GetString("5 minutes")),
+ new("600", Loc.GetString("10 minutes")),
+ new("1200", Loc.GetString("20 minutes")),
+ };
+
+ return CompletionResult.FromHintOptions(durations, Loc.GetString("[seconds]"));
+ }
+
+ return CompletionResult.Empty;
+ }
}
diff --git a/Content.Server/Nyanotrasen/Carrying/CarryingSystem.cs b/Content.Server/Nyanotrasen/Carrying/CarryingSystem.cs
index fc0cb23aa137..589a5847de0a 100644
--- a/Content.Server/Nyanotrasen/Carrying/CarryingSystem.cs
+++ b/Content.Server/Nyanotrasen/Carrying/CarryingSystem.cs
@@ -1,3 +1,4 @@
+using System.Numerics;
using System.Threading;
using Content.Server.DoAfter;
using Content.Server.Body.Systems;
@@ -5,6 +6,8 @@
using Content.Server.Resist;
using Content.Server.Popups;
using Content.Server.Contests;
+using Content.Server.Item.PseudoItem;
+using Content.Server.Storage.EntitySystems;
using Content.Shared.Climbing; // Shared instead of Server
using Content.Shared.Mobs;
using Content.Shared.DoAfter;
@@ -22,9 +25,14 @@
using Content.Shared.Pulling.Components;
using Content.Shared.Standing;
using Content.Shared.ActionBlocker;
+using Content.Shared.Item;
+using Content.Shared.Item.PseudoItem;
+using Content.Shared.Mind.Components;
using Content.Shared.Throwing;
using Content.Shared.Physics.Pull;
using Content.Shared.Mobs.Systems;
+using Content.Shared.Popups;
+using Content.Shared.Storage;
using Robust.Shared.Map.Components;
namespace Content.Server.Carrying
@@ -42,7 +50,7 @@ public sealed class CarryingSystem : EntitySystem
[Dependency] private readonly PopupSystem _popupSystem = default!;
[Dependency] private readonly ContestsSystem _contests = default!;
[Dependency] private readonly MovementSpeedModifierSystem _movementSpeed = default!;
- [Dependency] private readonly RespiratorSystem _respirator = default!;
+ [Dependency] private readonly PseudoItemSystem _pseudoItem = default!;
public override void Initialize()
{
@@ -61,6 +69,7 @@ public override void Initialize()
SubscribeLocalEvent(OnStartClimb);
SubscribeLocalEvent(OnBuckleChange);
SubscribeLocalEvent(OnDoAfter);
+ SubscribeLocalEvent>(AddInsertCarriedVerb); // Frontier
}
@@ -124,7 +133,12 @@ private void OnThrow(EntityUid uid, CarryingComponent component, BeforeThrowEven
private void OnParentChanged(EntityUid uid, CarryingComponent component, ref EntParentChangedMessage args)
{
- if (Transform(uid).MapID != args.OldMapId)
+ var xform = Transform(uid);
+ if (xform.MapID != args.OldMapId)
+ return;
+
+ // Do not drop the carried entity if the new parent is a grid
+ if (xform.ParentUid == xform.GridUid)
return;
DropCarried(uid, component.Carried);
@@ -157,6 +171,9 @@ private void OnMoveInput(EntityUid uid, BeingCarriedComponent component, ref Mov
if (!TryComp(uid, out var escape))
return;
+ if (args.OldMovement == MoveButtons.None || args.OldMovement == MoveButtons.Walk)
+ return; // Don't try to escape if not moving *cries*
+
if (_actionBlockerSystem.CanInteract(uid, component.Carrier))
{
_escapeInventorySystem.AttemptEscape(uid, component.Carrier, escape, _contests.MassContest(uid, component.Carrier));
@@ -206,15 +223,10 @@ private void OnDoAfter(EntityUid uid, CarriableComponent component, CarryDoAfter
Carry(args.Args.User, uid);
args.Handled = true;
}
+
private void StartCarryDoAfter(EntityUid carrier, EntityUid carried, CarriableComponent component)
{
- TimeSpan length = TimeSpan.FromSeconds(3);
-
- var mod = _contests.MassContest(carrier, carried);
-
- if (mod != 0)
- length /= mod;
-
+ var length = GetPickupDuration(carrier, carried); // Frontier: instead of in-line calculation, use a separate function
if (length >= TimeSpan.FromSeconds(9))
{
_popupSystem.PopupEntity(Loc.GetString("carry-too-heavy"), carried, carrier, Shared.Popups.PopupType.SmallCaution);
@@ -234,6 +246,8 @@ private void StartCarryDoAfter(EntityUid carrier, EntityUid carried, CarriableCo
NeedHand = true
};
_doAfterSystem.TryStartDoAfter(args);
+
+ _popupSystem.PopupEntity(Loc.GetString("carry-started", ("carrier", carrier)), carried, carried);
}
private void Carry(EntityUid carrier, EntityUid carried)
@@ -241,6 +255,10 @@ private void Carry(EntityUid carrier, EntityUid carried)
if (TryComp(carried, out var pullable))
_pullingSystem.TryStopPull(pullable);
+ // Don't allow people to stack upon each other. They're too weak for that!
+ if (TryComp(carried, out var carryComp))
+ DropCarried(carried, carryComp.Carried);
+
Transform(carrier).AttachToGridOrMap();
Transform(carried).AttachToGridOrMap();
Transform(carried).Coordinates = Transform(carrier).Coordinates;
@@ -310,5 +328,77 @@ public bool CanCarry(EntityUid carrier, EntityUid carried, CarriableComponent? c
return true;
}
+
+ public override void Update(float frameTime)
+ {
+ var query = EntityQueryEnumerator();
+ while (query.MoveNext(out var carried, out var comp))
+ {
+ var carrier = comp.Carrier;
+ if (carrier is not { Valid: true } || carried is not { Valid: true })
+ continue;
+
+ // Make sure the carried entity is always centered relative to the carrier, as gravity pulls can offset it otherwise
+ var xform = Transform(carried);
+ if (!xform.LocalPosition.EqualsApprox(Vector2.Zero))
+ {
+ xform.LocalPosition = Vector2.Zero;
+ }
+ }
+ query.Dispose();
+ }
+
+ public TimeSpan GetPickupDuration(EntityUid carrier, EntityUid carried)
+ {
+ TimeSpan length = TimeSpan.FromSeconds(3);
+
+ var mod = _contests.MassContest(carrier, carried);
+ if (mod != 0)
+ length /= mod;
+
+ return length;
+ }
+
+ public bool TryCarry(EntityUid carrier, EntityUid toCarry, CarriableComponent? carriedComp = null)
+ {
+ if (!Resolve(toCarry, ref carriedComp, false))
+ return false;
+
+ if (!CanCarry(carrier, toCarry, carriedComp))
+ return false;
+
+ // The second one means that carrier *is also* inside a bag.
+ if (HasComp(carrier) || HasComp(carrier))
+ return false;
+
+ if (GetPickupDuration(carrier, toCarry) > TimeSpan.FromSeconds(9))
+ return false;
+
+ Carry(carrier, toCarry);
+
+ return true;
+ }
+
+ private void AddInsertCarriedVerb(EntityUid uid, CarryingComponent component, GetVerbsEvent args)
+ {
+ var toInsert = args.Using;
+ if (toInsert is not { Valid: true } || !args.CanAccess || !TryComp(toInsert, out var pseudoItem))
+ return;
+
+ if (!HasComp(args.Target))
+ return; // Can't check if the person would actually fit here
+
+ InnateVerb verb = new()
+ {
+ Act = () =>
+ {
+ DropCarried(uid, toInsert.Value);
+ _pseudoItem.TryInsert(args.Target, toInsert.Value, args.User, pseudoItem);
+ },
+ Text = Loc.GetString("action-name-insert-other", ("target", toInsert)),
+ Priority = 2
+ };
+ args.Verbs.Add(verb);
+ }
}
}
diff --git a/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemSystem.cs b/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemSystem.cs
index 214ebe1898de..6f0a8b3d7b52 100644
--- a/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemSystem.cs
+++ b/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemSystem.cs
@@ -1,5 +1,6 @@
using Content.Server.Actions;
using Content.Server.Bed.Sleep;
+using Content.Server.Carrying;
using Content.Server.DoAfter;
using Content.Server.Popups;
using Content.Server.Storage.EntitySystems;
@@ -22,6 +23,7 @@ public sealed class PseudoItemSystem : EntitySystem
[Dependency] private readonly ItemSystem _itemSystem = default!;
[Dependency] private readonly DoAfterSystem _doAfter = default!;
[Dependency] private readonly TagSystem _tagSystem = default!;
+ [Dependency] private readonly CarryingSystem _carrying = default!; // Frontier
[Dependency] private readonly ActionsSystem _actions = default!; // Frontier
[Dependency] private readonly PopupSystem _popup = default!; // Frontier
@@ -115,6 +117,20 @@ private void OnGettingPickedUpAttempt(EntityUid uid, PseudoItemComponent compone
if (args.User == args.Item)
return;
+ // Frontier: prevent people from pushing each other from a bag
+ if (HasComp(args.User))
+ {
+ args.Cancel();
+ return;
+ }
+
+ // Frontier: try to carry the person when taking them out of a bag.
+ if (_carrying.TryCarry(args.User, uid))
+ {
+ args.Cancel();
+ return;
+ }
+
Transform(uid).AttachToGridOrMap();
args.Cancel();
}
diff --git a/Content.Server/Pinpointer/PinpointerSystem.cs b/Content.Server/Pinpointer/PinpointerSystem.cs
index 63b39b388c65..755a81dd647d 100644
--- a/Content.Server/Pinpointer/PinpointerSystem.cs
+++ b/Content.Server/Pinpointer/PinpointerSystem.cs
@@ -160,6 +160,15 @@ private void UpdateDirectionToTarget(EntityUid uid, PinpointerComponent pinpoint
var dirVec = CalculateDirection(uid, target.Value);
var oldDist = pinpointer.DistanceToTarget;
+
+ // Frontier: if the pinpointer has a max range and the distance to target is greater than the max range, set the distance to unknown
+ if (pinpointer.MaxRange > 0 && dirVec != null && dirVec.Value.LengthSquared() > pinpointer.MaxRange * pinpointer.MaxRange)
+ {
+ SetDistance(uid, Distance.Unknown, pinpointer);
+ TrySetArrowAngle(uid, Angle.Zero, pinpointer);
+ return;
+ }
+
if (dirVec != null)
{
var angle = dirVec.Value.ToWorldAngle();
diff --git a/Content.Server/Power/Pow3r/BatteryRampPegSolver.cs b/Content.Server/Power/Pow3r/BatteryRampPegSolver.cs
index 5d52bde37775..9a4f8f55abf0 100644
--- a/Content.Server/Power/Pow3r/BatteryRampPegSolver.cs
+++ b/Content.Server/Power/Pow3r/BatteryRampPegSolver.cs
@@ -275,8 +275,9 @@ private void UpdateNetwork(Network network, PowerState state, float frameTime)
battery.SupplyRampTarget = battery.MaxEffectiveSupply * relativeTargetBatteryOutput - battery.CurrentReceiving * battery.Efficiency;
- DebugTools.Assert(battery.SupplyRampTarget + battery.CurrentReceiving * battery.Efficiency <= battery.LoadingNetworkDemand
- || MathHelper.CloseToPercent(battery.SupplyRampTarget + battery.CurrentReceiving * battery.Efficiency, battery.LoadingNetworkDemand, 0.001));
+ // #Frontier - This is causing server crashes on debug builds, disabling it for now. Happens when big new group of demanding machines turn on causing a surge.
+ //DebugTools.Assert(battery.SupplyRampTarget + battery.CurrentReceiving * battery.Efficiency <= battery.LoadingNetworkDemand
+ // || MathHelper.CloseToPercent(battery.SupplyRampTarget + battery.CurrentReceiving * battery.Efficiency, battery.LoadingNetworkDemand, 0.001));
}
}
diff --git a/Content.Server/Procedural/DungeonJob.Generator.cs b/Content.Server/Procedural/DungeonJob.Generator.cs
index 7720110fd240..4415ec66d4af 100644
--- a/Content.Server/Procedural/DungeonJob.Generator.cs
+++ b/Content.Server/Procedural/DungeonJob.Generator.cs
@@ -184,8 +184,8 @@ private async Task GeneratePrefabDungeon(PrefabDunGen prefab, EntityUid
{
for (var y = roomSize.Bottom; y < roomSize.Top; y++)
{
- var index = matty.Transform(new Vector2(x, y) + grid.TileSizeHalfVector - packCenter).Floored();
- tiles.Add((index, new Tile(_tileDefManager["FloorPlanetGrass"].TileId)));
+ // var index = matty.Transform(new Vector2(x, y) + grid.TileSizeHalfVector - packCenter).Floored();
+ // tiles.Add((index, new Tile(_tileDefManager["FloorPlanetGrass"].TileId))); // This creates grass in space and places it should not have grass in it
}
}
diff --git a/Content.Server/Research/Systems/ResearchSystem.Client.cs b/Content.Server/Research/Systems/ResearchSystem.Client.cs
index 87fa7ea75f3b..1edd5d14befa 100644
--- a/Content.Server/Research/Systems/ResearchSystem.Client.cs
+++ b/Content.Server/Research/Systems/ResearchSystem.Client.cs
@@ -1,5 +1,6 @@
using System.Diagnostics.CodeAnalysis;
using System.Linq;
+using System.Threading.Tasks;
using Content.Server.Power.EntitySystems;
using Content.Shared.Research.Components;
@@ -57,12 +58,20 @@ private void OnClientRegistrationChanged(EntityUid uid, ResearchClientComponent
private void OnClientMapInit(EntityUid uid, ResearchClientComponent component, MapInitEvent args)
{
- var allServers = EntityQuery(true).ToArray();
- if (allServers.Length > 0)
+ // If the actual RD server on a map is initialized later, it won't work if we run this immediately.
+ // For the time being while a better solution is found, we register/unregister a little bit later.
+ // If we don't run this later, RD servers won't appear in the list on all machines on a ship.
+ Task.Run(async () =>
{
- RegisterClient(uid, allServers[0].Owner, component, allServers[0]);
- UnregisterClient(uid, component); // Unrigister a new computer from servers, this is need right after to make sure it didnt register unser someone else server.
- }
+ await Task.Delay(TimeSpan.FromSeconds(10));
+
+ var allServers = EntityQuery(true).ToArray();
+ if (allServers.Length > 0)
+ {
+ RegisterClient(uid, allServers[0].Owner, component, allServers[0]);
+ UnregisterClient(uid, component);
+ }
+ });
}
private void OnClientShutdown(EntityUid uid, ResearchClientComponent component, ComponentShutdown args)
diff --git a/Content.Server/Research/Systems/ResearchSystem.Server.cs b/Content.Server/Research/Systems/ResearchSystem.Server.cs
index 2a802a91a321..4325ac15f602 100644
--- a/Content.Server/Research/Systems/ResearchSystem.Server.cs
+++ b/Content.Server/Research/Systems/ResearchSystem.Server.cs
@@ -81,7 +81,7 @@ public void RegisterClient(EntityUid client, EntityUid server, ResearchClientCom
}
///
- /// Unregisterse a client from its server
+ /// Unregisters a client from its server
///
///
///
diff --git a/Content.Server/Resist/CanEscapeInventoryComponent.cs b/Content.Server/Resist/CanEscapeInventoryComponent.cs
index 19b4abf7d0c8..6d211c8d77b1 100644
--- a/Content.Server/Resist/CanEscapeInventoryComponent.cs
+++ b/Content.Server/Resist/CanEscapeInventoryComponent.cs
@@ -15,4 +15,8 @@ public sealed partial class CanEscapeInventoryComponent : Component
[DataField("doAfter")]
public DoAfterId? DoAfter;
+
+ // Frontier
+ [DataField]
+ public EntityUid? EscapeCancelAction;
}
diff --git a/Content.Server/Resist/EscapeInventorySystem.cs b/Content.Server/Resist/EscapeInventorySystem.cs
index be6edef521b7..876bf0e8933b 100644
--- a/Content.Server/Resist/EscapeInventorySystem.cs
+++ b/Content.Server/Resist/EscapeInventorySystem.cs
@@ -16,6 +16,9 @@
using Robust.Shared.Containers;
using Content.Server.Storage.Components;
using Content.Server.Carrying;
+using Content.Shared.Actions;
+using Content.Shared.Movement.Systems;
+using Robust.Shared.Prototypes;
namespace Content.Server.Resist;
@@ -28,6 +31,12 @@ public sealed class EscapeInventorySystem : EntitySystem
[Dependency] private readonly SharedHandsSystem _handsSystem = default!;
[Dependency] private readonly ContestsSystem _contests = default!;
[Dependency] private readonly CarryingSystem _carryingSystem = default!; // Carrying system from Nyanotrasen.
+ [Dependency] private readonly SharedActionsSystem _actions = default!;
+ [Dependency] private readonly EntityManager _entityManager = default!;
+
+ // Frontier - cancel inventory escape
+ [ValidatePrototypeId]
+ private readonly string _escapeCancelAction = "ActionCancelEscape";
///
/// You can't escape the hands of an entity this many times more massive than you.
@@ -41,6 +50,7 @@ public override void Initialize()
SubscribeLocalEvent(OnRelayMovement);
SubscribeLocalEvent(OnEscape);
SubscribeLocalEvent(OnDropped);
+ SubscribeLocalEvent(OnCancelEscape); // Frontier
}
private void OnRelayMovement(EntityUid uid, CanEscapeInventoryComponent component, ref MoveInputEvent args)
@@ -48,6 +58,9 @@ private void OnRelayMovement(EntityUid uid, CanEscapeInventoryComponent componen
if (!_containerSystem.TryGetContainingContainer(uid, out var container) || !_actionBlockerSystem.CanInteract(uid, container.Owner))
return;
+ if (args.OldMovement == MoveButtons.None || args.OldMovement == MoveButtons.Walk)
+ return; // This event gets fired when the user holds down shift, which makes no sense
+
// Contested
if (_handsSystem.IsHolding(container.Owner, uid, out var inHand))
{
@@ -87,9 +100,13 @@ private void OnRelayMovement(EntityUid uid, CanEscapeInventoryComponent componen
if (!_doAfterSystem.TryStartDoAfter(doAfterEventArgs, out component.DoAfter))
return;
- Dirty(user, component);
+ //Dirty(user, component);
_popupSystem.PopupEntity(Loc.GetString("escape-inventory-component-start-resisting"), user, user);
_popupSystem.PopupEntity(Loc.GetString("escape-inventory-component-start-resisting-target"), container, container);
+
+ // Frontier - escape cancel action
+ if (component.EscapeCancelAction is not { Valid: true })
+ _actions.AddAction(user, ref component.EscapeCancelAction, _escapeCancelAction);
}
private void OnEscape(EntityUid uid, CanEscapeInventoryComponent component, EscapeInventoryEvent args)
@@ -100,6 +117,8 @@ private void OnEscape(EntityUid uid, CanEscapeInventoryComponent component, Esca
if (args.Handled || args.Cancelled)
return;
+ RemoveCancelAction(uid, component); // Frontier
+
if (TryComp(uid, out var carried)) // Start of carrying system of nyanotrasen.
{
_carryingSystem.DropCarried(carried.Carrier, uid);
@@ -114,5 +133,26 @@ private void OnDropped(EntityUid uid, CanEscapeInventoryComponent component, Dro
{
if (component.DoAfter != null)
_doAfterSystem.Cancel(component.DoAfter);
+
+ RemoveCancelAction(uid, component); // Frontier
+ }
+
+ // Frontier
+ private void RemoveCancelAction(EntityUid uid, CanEscapeInventoryComponent component)
+ {
+ if (component.EscapeCancelAction is not { Valid: true })
+ return;
+
+ _actions.RemoveAction(uid, component.EscapeCancelAction);
+ component.EscapeCancelAction = null;
+ }
+
+ // Frontier
+ private void OnCancelEscape(EntityUid uid, CanEscapeInventoryComponent component, EscapeInventoryCancelActionEvent args)
+ {
+ if (component.DoAfter != null)
+ _doAfterSystem.Cancel(component.DoAfter);
+
+ RemoveCancelAction(uid, component);
}
}
diff --git a/Content.Server/VendingMachines/VendingMachineSystem.cs b/Content.Server/VendingMachines/VendingMachineSystem.cs
index c83d0a4cf293..d3dc711ac441 100644
--- a/Content.Server/VendingMachines/VendingMachineSystem.cs
+++ b/Content.Server/VendingMachines/VendingMachineSystem.cs
@@ -405,10 +405,13 @@ public void AuthorizedVend(EntityUid uid, EntityUid sender, InventoryType type,
{
if (TryEjectVendorItem(uid, type, itemId, component.CanShoot, bank.Balance, component))
{
- if (TryComp(_station.GetOwningStation(uid), out var stationBank))
+ var stationQuery = EntityQuery();
+
+ foreach (var stationBankComp in stationQuery)
{
- _cargo.DeductFunds(stationBank, (int) -(Math.Floor(totalPrice * 0.65f)));
+ _cargo.DeductFunds(stationBankComp, (int) -(Math.Floor(totalPrice * 0.45f)));
}
+
UpdateVendingMachineInterfaceState(uid, component, bank.Balance);
}
}
diff --git a/Content.Server/_NF/Contraband/Components/ContrabandPalletComponent.cs b/Content.Server/_NF/Contraband/Components/ContrabandPalletComponent.cs
new file mode 100644
index 000000000000..bb5eb4754579
--- /dev/null
+++ b/Content.Server/_NF/Contraband/Components/ContrabandPalletComponent.cs
@@ -0,0 +1,7 @@
+namespace Content.Server._NF.Contraband.Components;
+
+///
+/// Any entities intersecting when a shuttle is recalled will be sold.
+///
+[RegisterComponent]
+public sealed partial class ContrabandPalletComponent : Component {}
diff --git a/Content.Server/_NF/Contraband/Components/ContrabandPalletConsoleComponent.cs b/Content.Server/_NF/Contraband/Components/ContrabandPalletConsoleComponent.cs
new file mode 100644
index 000000000000..829a541026e3
--- /dev/null
+++ b/Content.Server/_NF/Contraband/Components/ContrabandPalletConsoleComponent.cs
@@ -0,0 +1,13 @@
+using Content.Server._NF.Contraband.Systems;
+using Content.Shared.Stacks;
+using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
+
+namespace Content.Server._NF.Contraband.Components;
+
+[RegisterComponent]
+[Access(typeof(ContrabandSystem))]
+public sealed partial class ContrabandPalletConsoleComponent : Component
+{
+ [ViewVariables(VVAccess.ReadWrite), DataField("cashType", customTypeSerializer:typeof(PrototypeIdSerializer))]
+ public string RewardType = "FrontierUplinkCoin";
+}
diff --git a/Content.Server/_NF/Contraband/Systems/ContrabandSystem.cs b/Content.Server/_NF/Contraband/Systems/ContrabandSystem.cs
new file mode 100644
index 000000000000..798fe1ff6597
--- /dev/null
+++ b/Content.Server/_NF/Contraband/Systems/ContrabandSystem.cs
@@ -0,0 +1,211 @@
+using Content.Server._NF.Contraband.Components;
+using Content.Server.Cargo.Components;
+using Content.Server.Cargo.Systems;
+using Content.Server.Stack;
+using Content.Server.Station.Systems;
+using Content.Shared._NF.Contraband;
+using Content.Shared._NF.Contraband.BUI;
+using Content.Shared._NF.Contraband.Components;
+using Content.Shared._NF.Contraband.Events;
+using Content.Shared.Stacks;
+using Robust.Server.GameObjects;
+using Content.Shared.Coordinates;
+using Content.Shared.Mobs;
+using Content.Shared.Mobs.Components;
+using Robust.Shared.Prototypes;
+
+namespace Content.Server._NF.Contraband.Systems;
+
+///
+/// Contraband system. Contraband Pallet UI Console is mostly a copy of the system in cargo. Checkraze Note: copy of my code from cargosystems.shuttles.cs
+///
+public sealed partial class ContrabandSystem : SharedContrabandSystem
+{
+ [Dependency] private readonly IPrototypeManager _protoMan = default!;
+ [Dependency] private readonly EntityLookupSystem _lookup = default!;
+ [Dependency] private readonly StackSystem _stack = default!;
+ [Dependency] private readonly StationSystem _station = default!;
+ [Dependency] private readonly UserInterfaceSystem _uiSystem = default!;
+
+ private EntityQuery _mobQuery;
+ private EntityQuery _xformQuery;
+ private EntityQuery _blacklistQuery;
+
+ public override void Initialize()
+ {
+ base.Initialize();
+
+ _xformQuery = GetEntityQuery();
+ _blacklistQuery = GetEntityQuery();
+ _mobQuery = GetEntityQuery();
+
+ SubscribeLocalEvent(OnPalletSale);
+ SubscribeLocalEvent(OnPalletAppraise);
+ SubscribeLocalEvent(OnPalletUIOpen);
+ }
+
+ private void UpdatePalletConsoleInterface(EntityUid uid, ContrabandPalletConsoleComponent comp)
+ {
+ var bui = _uiSystem.GetUi(uid, ContrabandPalletConsoleUiKey.Contraband);
+ if (Transform(uid).GridUid is not EntityUid gridUid)
+ {
+ _uiSystem.SetUiState(bui,
+ new ContrabandPalletConsoleInterfaceState(0, 0, false));
+ return;
+ }
+
+ GetPalletGoods(gridUid, comp, out var toSell, out var amount);
+
+ _uiSystem.SetUiState(bui,
+ new ContrabandPalletConsoleInterfaceState((int) amount, toSell.Count, true));
+ }
+
+ private void OnPalletUIOpen(EntityUid uid, ContrabandPalletConsoleComponent component, BoundUIOpenedEvent args)
+ {
+ var player = args.Session.AttachedEntity;
+
+ if (player == null)
+ return;
+
+ UpdatePalletConsoleInterface(uid, component);
+ }
+
+ ///
+ /// Ok so this is just the same thing as opening the UI, its a refresh button.
+ /// I know this would probably feel better if it were like predicted and dynamic as pallet contents change
+ /// However.
+ /// I dont want it to explode if cargo uses a conveyor to move 8000 pineapple slices or whatever, they are
+ /// known for their entity spam i wouldnt put it past them
+ ///
+
+ private void OnPalletAppraise(EntityUid uid, ContrabandPalletConsoleComponent component, ContrabandPalletAppraiseMessage args)
+ {
+ var player = args.Session.AttachedEntity;
+
+ if (player == null)
+ return;
+
+ UpdatePalletConsoleInterface(uid, component);
+ }
+
+ private List<(EntityUid Entity, ContrabandPalletComponent Component)> GetContrabandPallets(EntityUid gridUid)
+ {
+ var pads = new List<(EntityUid, ContrabandPalletComponent)>();
+ var query = AllEntityQuery();
+
+ while (query.MoveNext(out var uid, out var comp, out var compXform))
+ {
+ if (compXform.ParentUid != gridUid ||
+ !compXform.Anchored)
+ {
+ continue;
+ }
+
+ pads.Add((uid, comp));
+ }
+
+ return pads;
+ }
+
+ private void SellPallets(EntityUid gridUid, ContrabandPalletConsoleComponent component, EntityUid? station, out int amount)
+ {
+ station ??= _station.GetOwningStation(gridUid);
+ GetPalletGoods(gridUid, component, out var toSell, out amount);
+
+ Log.Debug($"NFSD sold {toSell.Count} contraband items for {amount}");
+
+ if (station != null)
+ {
+ var ev = new EntitySoldEvent(station.Value, toSell);
+ RaiseLocalEvent(ref ev);
+ }
+
+ foreach (var ent in toSell)
+ {
+ Del(ent);
+ }
+ }
+
+ private void GetPalletGoods(EntityUid gridUid, ContrabandPalletConsoleComponent console, out HashSet toSell, out int amount)
+ {
+ amount = 0;
+ toSell = new HashSet();
+
+ foreach (var (palletUid, _) in GetContrabandPallets(gridUid))
+ {
+ foreach (var ent in _lookup.GetEntitiesIntersecting(palletUid,
+ LookupFlags.Dynamic | LookupFlags.Sundries | LookupFlags.Approximate))
+ {
+ // Dont sell:
+ // - anything already being sold
+ // - anything anchored (e.g. light fixtures)
+ // - anything blacklisted (e.g. players).
+ if (toSell.Contains(ent) ||
+ _xformQuery.TryGetComponent(ent, out var xform) &&
+ (xform.Anchored || !CanSell(ent, xform)))
+ {
+ continue;
+ }
+
+ if (_blacklistQuery.HasComponent(ent))
+ continue;
+
+ if (TryComp(ent, out var comp) && comp.Currency == console.RewardType)
+ {
+ if (comp.Value == 0)
+ continue;
+ toSell.Add(ent);
+ amount += comp.Value;
+ }
+ }
+ }
+ }
+
+ private bool CanSell(EntityUid uid, TransformComponent xform)
+ {
+ if (_mobQuery.HasComponent(uid))
+ {
+ if (_mobQuery.GetComponent(uid).CurrentState == MobState.Alive)
+ {
+ return false;
+ }
+ return true;
+ }
+
+ // Recursively check for mobs at any point.
+ var children = xform.ChildEnumerator;
+ while (children.MoveNext(out var child))
+ {
+ if (!CanSell(child, _xformQuery.GetComponent(child)))
+ return false;
+ }
+ // Look for blacklisted items and stop the selling of the container.
+ if (_blacklistQuery.HasComponent(uid))
+ {
+ return false;
+ }
+ return true;
+ }
+
+ private void OnPalletSale(EntityUid uid, ContrabandPalletConsoleComponent component, ContrabandPalletSellMessage args)
+ {
+ var player = args.Session.AttachedEntity;
+
+ if (player == null)
+ return;
+
+ var bui = _uiSystem.GetUi(uid, ContrabandPalletConsoleUiKey.Contraband);
+ if (Transform(uid).GridUid is not EntityUid gridUid)
+ {
+ _uiSystem.SetUiState(bui,
+ new ContrabandPalletConsoleInterfaceState(0, 0, false));
+ return;
+ }
+
+ SellPallets(gridUid, component, null, out var price);
+
+ var stackPrototype = _protoMan.Index(component.RewardType);
+ _stack.Spawn(price, stackPrototype, uid.ToCoordinates());
+ UpdatePalletConsoleInterface(uid, component);
+ }
+}
diff --git a/Content.Shared/Pinpointer/PinpointerComponent.cs b/Content.Shared/Pinpointer/PinpointerComponent.cs
index e83a2e38d608..ae3150494d52 100644
--- a/Content.Shared/Pinpointer/PinpointerComponent.cs
+++ b/Content.Shared/Pinpointer/PinpointerComponent.cs
@@ -62,6 +62,18 @@ public sealed partial class PinpointerComponent : Component
[ViewVariables]
public bool HasTarget => DistanceToTarget != Distance.Unknown;
+
+ // Frontier - if greater than 0, then the pinpointer stops pointing to the target when it's further than this value
+ [DataField("maxRange")]
+ public float MaxRange = -1;
+
+ // Frontier - time in seconds to retarget
+ [DataField("retargetDoAfter")]
+ public float RetargetDoAfter = 15f;
+
+ // Frontier - whether this pinpointer can target mobs
+ [DataField("canTargetMobs")]
+ public bool CanTargetMobs = false;
}
[Serializable, NetSerializable]
diff --git a/Content.Shared/Pinpointer/SharedPinpointerSystem.cs b/Content.Shared/Pinpointer/SharedPinpointerSystem.cs
index 43550f29195c..bd05175d2096 100644
--- a/Content.Shared/Pinpointer/SharedPinpointerSystem.cs
+++ b/Content.Shared/Pinpointer/SharedPinpointerSystem.cs
@@ -1,15 +1,20 @@
using Content.Shared.Administration.Logs;
using Content.Shared.Database;
+using Content.Shared.DoAfter;
using Content.Shared.Emag.Systems;
using Content.Shared.Examine;
using Content.Shared.IdentityManagement;
using Content.Shared.Interaction;
+using Content.Shared.Mobs.Components;
+using Robust.Shared.Serialization;
namespace Content.Shared.Pinpointer;
public abstract class SharedPinpointerSystem : EntitySystem
{
[Dependency] private readonly ISharedAdminLogManager _adminLogger = default!;
+ [Dependency] private readonly SharedDoAfterSystem _doAfter = default!;
+ [Dependency] private readonly IEntityManager _endMan = default!;
public override void Initialize()
{
@@ -17,6 +22,8 @@ public override void Initialize()
SubscribeLocalEvent(OnEmagged);
SubscribeLocalEvent(OnAfterInteract);
SubscribeLocalEvent(OnExamined);
+ // Frontier
+ SubscribeLocalEvent(OnPinpointerDoAfter);
}
///
@@ -30,10 +37,41 @@ private void OnAfterInteract(EntityUid uid, PinpointerComponent component, After
if (!component.CanRetarget || component.IsActive)
return;
+ // Frontier: disallow pinpointing mobs
+ if (!component.CanTargetMobs && HasComp(args.Target))
+ return;
+
// TODO add doafter once the freeze is lifted
args.Handled = true;
+
+ // Frontier: the below was made into a do-after, see OnPinpointerDoAfter.
+ // component.Target = args.Target;
+ // _adminLogger.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(args.User):player} set target of {ToPrettyString(uid):pinpointer} to {ToPrettyString(component.Target.Value):target}");
+ // if (component.UpdateTargetName)
+ // component.TargetName = component.Target == null ? null : Identity.Name(component.Target.Value, EntityManager);
+
+ // Frontier: do-after
+ var daArgs = new DoAfterArgs(_endMan, args.User, TimeSpan.FromSeconds(component.RetargetDoAfter),
+ new PinpointerDoAfterEvent(), uid, args.Target, uid)
+ {
+ BreakOnUserMove = true,
+ BreakOnDamage = true,
+ BreakOnWeightlessMove = true,
+ CancelDuplicate = true,
+ BreakOnHandChange = true,
+ NeedHand = true,
+ BreakOnTargetMove = true
+ };
+ _doAfter.TryStartDoAfter(daArgs);
+ }
+
+ private void OnPinpointerDoAfter(EntityUid uid, PinpointerComponent component, PinpointerDoAfterEvent args)
+ {
+ if (args.Cancelled)
+ return;
+
component.Target = args.Target;
- _adminLogger.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(args.User):player} set target of {ToPrettyString(uid):pinpointer} to {ToPrettyString(component.Target.Value):target}");
+ _adminLogger.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(args.User):player} set target of {ToPrettyString(uid):pinpointer} to {ToPrettyString(component.Target):target}");
if (component.UpdateTargetName)
component.TargetName = component.Target == null ? null : Identity.Name(component.Target.Value, EntityManager);
}
@@ -141,3 +179,9 @@ private void OnEmagged(EntityUid uid, PinpointerComponent component, ref GotEmag
component.CanRetarget = true;
}
}
+
+// Frontier - do-after
+[Serializable, NetSerializable]
+public sealed partial class PinpointerDoAfterEvent : SimpleDoAfterEvent
+{
+}
diff --git a/Content.Shared/Preferences/HumanoidCharacterProfile.cs b/Content.Shared/Preferences/HumanoidCharacterProfile.cs
index 3a1b5c2c7992..75f8964f7f48 100644
--- a/Content.Shared/Preferences/HumanoidCharacterProfile.cs
+++ b/Content.Shared/Preferences/HumanoidCharacterProfile.cs
@@ -365,7 +365,7 @@ public void EnsureValid()
{
var prototypeManager = IoCManager.Resolve();
- if (!prototypeManager.TryIndex(Species, out var speciesPrototype))
+ if (!prototypeManager.TryIndex(Species, out var speciesPrototype) || speciesPrototype.RoundStart == false)
{
Species = SharedHumanoidAppearanceSystem.DefaultSpecies;
speciesPrototype = prototypeManager.Index(Species);
diff --git a/Content.Shared/Research/Prototypes/TechDisciplinePrototype.cs b/Content.Shared/Research/Prototypes/TechDisciplinePrototype.cs
index b48d8256b731..ea0a2f282ef5 100644
--- a/Content.Shared/Research/Prototypes/TechDisciplinePrototype.cs
+++ b/Content.Shared/Research/Prototypes/TechDisciplinePrototype.cs
@@ -44,5 +44,5 @@ public sealed partial class TechDisciplinePrototype : IPrototype
/// Purchasing this tier of technology causes a server to become "locked" to this discipline.
///
[DataField("lockoutTier")]
- public int LockoutTier = 3;
+ public int LockoutTier = 4;
}
diff --git a/Content.Shared/Research/Systems/SharedResearchSystem.cs b/Content.Shared/Research/Systems/SharedResearchSystem.cs
index 12f27d0b9c92..30c6e3547180 100644
--- a/Content.Shared/Research/Systems/SharedResearchSystem.cs
+++ b/Content.Shared/Research/Systems/SharedResearchSystem.cs
@@ -216,6 +216,7 @@ public bool IsTechnologyUnlocked(EntityUid uid, string technologyId, TechnologyD
public void TrySetMainDiscipline(TechnologyPrototype prototype, EntityUid uid, TechnologyDatabaseComponent? component = null)
{
+ return;
if (!Resolve(uid, ref component))
return;
diff --git a/Content.Shared/Resist/EscapeInventoryCancelEvent.cs b/Content.Shared/Resist/EscapeInventoryCancelEvent.cs
new file mode 100644
index 000000000000..28428ea100d7
--- /dev/null
+++ b/Content.Shared/Resist/EscapeInventoryCancelEvent.cs
@@ -0,0 +1,5 @@
+using Content.Shared.Actions;
+
+public sealed partial class EscapeInventoryCancelActionEvent : InstantActionEvent
+{
+}
diff --git a/Content.Shared/Storage/Components/MagnetPickupComponent.cs b/Content.Shared/Storage/Components/MagnetPickupComponent.cs
index 2e046a0fc1da..0e9f33bea8e3 100644
--- a/Content.Shared/Storage/Components/MagnetPickupComponent.cs
+++ b/Content.Shared/Storage/Components/MagnetPickupComponent.cs
@@ -1,4 +1,5 @@
using Content.Shared.Inventory;
+using Robust.Shared.GameStates;
// namespace Content.Server.Storage.Components;
namespace Content.Shared.Storage.Components; // Frontier
@@ -7,6 +8,7 @@ namespace Content.Shared.Storage.Components; // Frontier
/// Applies an ongoing pickup area around the attached entity.
///
[RegisterComponent]
+[NetworkedComponent, AutoGenerateComponentState] // Frontier
public sealed partial class MagnetPickupComponent : Component
{
[ViewVariables(VVAccess.ReadWrite), DataField("nextScan")]
@@ -26,6 +28,6 @@ public sealed partial class MagnetPickupComponent : Component
///
/// Is the magnet currently enabled?
///
- [ViewVariables(VVAccess.ReadWrite), DataField("magnetEnabled")]
+ [AutoNetworkedField, ViewVariables(VVAccess.ReadWrite), DataField("magnetEnabled")]
public bool MagnetEnabled = true;
}
diff --git a/Content.Shared/Storage/EntitySystems/MagnetPickupSystem.cs b/Content.Shared/Storage/EntitySystems/MagnetPickupSystem.cs
index 84b27758f83b..de9e9d84c27b 100644
--- a/Content.Shared/Storage/EntitySystems/MagnetPickupSystem.cs
+++ b/Content.Shared/Storage/EntitySystems/MagnetPickupSystem.cs
@@ -83,9 +83,8 @@ private void OnExamined(EntityUid uid, MagnetPickupComponent component, Examined
// Frontier, used to toggle the magnet on the ore bag/box
public bool ToggleMagnet(EntityUid uid, MagnetPickupComponent comp)
{
- var query = EntityQueryEnumerator();
comp.MagnetEnabled = !comp.MagnetEnabled;
-
+ Dirty(uid, comp);
return comp.MagnetEnabled;
}
diff --git a/Content.Shared/_NF/Contraband/BUI/ContrabandPalletConsoleInterfaceState.cs b/Content.Shared/_NF/Contraband/BUI/ContrabandPalletConsoleInterfaceState.cs
new file mode 100644
index 000000000000..5eaa8443bf6c
--- /dev/null
+++ b/Content.Shared/_NF/Contraband/BUI/ContrabandPalletConsoleInterfaceState.cs
@@ -0,0 +1,29 @@
+using Robust.Shared.Serialization;
+
+namespace Content.Shared._NF.Contraband.BUI;
+
+[NetSerializable, Serializable]
+public sealed class ContrabandPalletConsoleInterfaceState : BoundUserInterfaceState
+{
+ ///
+ /// estimated appraised value of all the contraband on top of pallets on the same grid as the console
+ ///
+ public int Appraisal;
+
+ ///
+ /// number of contraband entities on top of pallets on the same grid as the console
+ ///
+ public int Count;
+
+ ///
+ /// are the buttons enabled
+ ///
+ public bool Enabled;
+
+ public ContrabandPalletConsoleInterfaceState(int appraisal, int count, bool enabled)
+ {
+ Appraisal = appraisal;
+ Count = count;
+ Enabled = enabled;
+ }
+}
diff --git a/Content.Shared/_NF/Contraband/Components/ContrabandComponent.cs b/Content.Shared/_NF/Contraband/Components/ContrabandComponent.cs
new file mode 100644
index 000000000000..f58337eedc02
--- /dev/null
+++ b/Content.Shared/_NF/Contraband/Components/ContrabandComponent.cs
@@ -0,0 +1,24 @@
+using Content.Shared.Stacks;
+using Robust.Shared.Prototypes;
+using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
+
+namespace Content.Shared._NF.Contraband.Components;
+
+///
+/// This is used for identifying contraband items and can be added to items through yml
+///
+[RegisterComponent]
+public sealed partial class ContrabandComponent : Component
+{
+ ///
+ /// The value of the contraband. Defaults to 1 for easy addition to any number of items.
+ ///
+ [DataField("value")]
+ public int Value = 1;
+
+ ///
+ /// The currency stack prototype ID to spawn as reward.
+ ///
+ [DataField("currency", customTypeSerializer: typeof(PrototypeIdSerializer))]
+ public string Currency = "FrontierUplinkCoin";
+}
diff --git a/Content.Shared/_NF/Contraband/Events/ContrabandPalletAppraiseMessage.cs b/Content.Shared/_NF/Contraband/Events/ContrabandPalletAppraiseMessage.cs
new file mode 100644
index 000000000000..cba855a190e7
--- /dev/null
+++ b/Content.Shared/_NF/Contraband/Events/ContrabandPalletAppraiseMessage.cs
@@ -0,0 +1,12 @@
+using Robust.Shared.Serialization;
+
+namespace Content.Shared._NF.Contraband.Events;
+
+///
+/// Raised on a client request to refresh the pallet console
+///
+[Serializable, NetSerializable]
+public sealed class ContrabandPalletAppraiseMessage : BoundUserInterfaceMessage
+{
+
+}
diff --git a/Content.Shared/_NF/Contraband/Events/ContrabandPalletSellMessage.cs b/Content.Shared/_NF/Contraband/Events/ContrabandPalletSellMessage.cs
new file mode 100644
index 000000000000..1d16df116033
--- /dev/null
+++ b/Content.Shared/_NF/Contraband/Events/ContrabandPalletSellMessage.cs
@@ -0,0 +1,12 @@
+using Robust.Shared.Serialization;
+
+namespace Content.Shared._NF.Contraband.Events;
+
+///
+/// Raised on a client request pallet sale
+///
+[Serializable, NetSerializable]
+public sealed class ContrabandPalletSellMessage : BoundUserInterfaceMessage
+{
+
+}
diff --git a/Content.Shared/_NF/Contraband/SharedContrabandSystem.cs b/Content.Shared/_NF/Contraband/SharedContrabandSystem.cs
new file mode 100644
index 000000000000..7cf6230a902f
--- /dev/null
+++ b/Content.Shared/_NF/Contraband/SharedContrabandSystem.cs
@@ -0,0 +1,11 @@
+using Robust.Shared.Serialization;
+
+namespace Content.Shared._NF.Contraband;
+
+[NetSerializable, Serializable]
+public enum ContrabandPalletConsoleUiKey : byte
+{
+ Contraband
+}
+
+public abstract class SharedContrabandSystem : EntitySystem {}
diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml
index b4d573e9527a..3acbf2d8f822 100644
--- a/Resources/Changelog/Changelog.yml
+++ b/Resources/Changelog/Changelog.yml
@@ -3280,3 +3280,262 @@ Entries:
message: CE suit 100<95% rad protection.
id: 4814
time: '2024-02-12T22:55:59.0000000+00:00'
+- author: MagnusCrowe
+ changes:
+ - type: Remove
+ message: Removed syndicate turret box from Caduceus.
+ id: 4815
+ time: '2024-02-13T01:16:22.0000000+00:00'
+- author: erhardsteinhauer
+ changes:
+ - type: Tweak
+ message: New diagonal windows now match Frontier windows.
+ id: 4816
+ time: '2024-02-14T16:01:20.0000000+00:00'
+- author: erhardsteinhauer
+ changes:
+ - type: Tweak
+ message: Shuttle Secret doors are actually constructible now.
+ id: 4817
+ time: '2024-02-15T01:13:24.0000000+00:00'
+- author: erhardsteinhauer
+ changes:
+ - type: Tweak
+ message: Updated NT Honker to new mapping standards.
+ id: 4818
+ time: '2024-02-15T01:19:24.0000000+00:00'
+- author: erhardsteinhauer
+ changes:
+ - type: Tweak
+ message: Updated NR Phoenix to current mapping standards.
+ id: 4819
+ time: '2024-02-15T01:23:34.0000000+00:00'
+- author: erhardsteinhauer
+ changes:
+ - type: Tweak
+ message: Updated NT Comet to current mapping standards.
+ id: 4820
+ time: '2024-02-15T01:25:18.0000000+00:00'
+- author: ThatOneGoblin25
+ changes:
+ - type: Add
+ message: Added sparrow.yml, which re-lists the vessel in the shipyard again.
+ id: 4821
+ time: '2024-02-15T01:30:09.0000000+00:00'
+- author: erhardsteinhauer
+ changes:
+ - type: Tweak
+ message: Updated NC Loader to current mapping standards.
+ id: 4822
+ time: '2024-02-15T01:32:55.0000000+00:00'
+- author: erhardsteinhauer
+ changes:
+ - type: Tweak
+ message: >-
+ Changed how whitelisting works for weapon racks. Also to put/retrieve
+ weapon from rack use Alt+Click.
+ id: 4823
+ time: '2024-02-15T01:34:39.0000000+00:00'
+- author: erhardsteinhauer
+ changes:
+ - type: Tweak
+ message: NT Gasbender now comes with Flatpacker 1001.
+ - type: Tweak
+ message: NC Pioneer now comes equipped with smaller gyroscope.
+ - type: Tweak
+ message: NC Legman now comes equipped with smaller gyroscope.
+ id: 4824
+ time: '2024-02-15T01:42:53.0000000+00:00'
+- author: Mnemotechnician
+ changes:
+ - type: Tweak
+ message: >-
+ You no longer drop the carried person when walking across different
+ grids.
+ - type: Add
+ message: You can now halt your attempt to escape from a bag or someone's hands.
+ - type: Add
+ message: Trying to take someone out of a bag now results in carrying them.
+ - type: Add
+ message: You can now insert carried people into bags.
+ id: 4825
+ time: '2024-02-15T01:51:20.0000000+00:00'
+- author: AjexRose
+ changes:
+ - type: Add
+ message: >-
+ Added a new bluespace event: The Data Carrier, with lots of loot,
+ enemies, and a small focus on R&D
+ - type: Tweak
+ message: >-
+ Arcadia Industries mobs have been slightly reworked to no longer bleed
+ blood.
+ - type: Tweak
+ message: Fixed the ArcadiaDrobe's vendor sprite
+ id: 4826
+ time: '2024-02-15T02:57:02.0000000+00:00'
+- author: Cheackraze
+ changes:
+ - type: Fix
+ message: Fixed Arachnid blood to copper blood.
+ id: 4827
+ time: '2024-02-15T03:01:31.0000000+00:00'
+- author: dvir01
+ changes:
+ - type: Fix
+ message: Dungeons should spawn with less issues now.
+ id: 4828
+ time: '2024-02-16T06:56:13.0000000+00:00'
+- author: Cheackraze
+ changes:
+ - type: Tweak
+ message: >-
+ Changed sharkminnows to be less frequent, less deadly, and less
+ teleporty
+ id: 4829
+ time: '2024-02-17T22:26:54.0000000+00:00'
+- author: arimah
+ changes:
+ - type: Add
+ message: Added a new medium-sized fine-dining restaurant ship, NC Ceres.
+ id: 4830
+ time: '2024-02-19T19:52:34.0000000+00:00'
+- author: erhardsteinhauer
+ changes:
+ - type: Add
+ message: Expanded the list of constructible furniture.
+ - type: Add
+ message: >-
+ Added Plant-O-Matic - a vending machine that sells potted plants.
+ Sprites by @minnie.
+ - type: Add
+ message: >-
+ Added Tile-Meister 5000 - tile/carpet printer. The circuit board can be
+ bought from CircuitVend.
+ id: 4831
+ time: '2024-02-19T20:12:47.0000000+00:00'
+- author: erhardsteinhauer
+ changes:
+ - type: Add
+ message: Added The Menace - black market mail truck.
+ id: 4832
+ time: '2024-02-19T20:51:44.0000000+00:00'
+- author: dvir001
+ changes:
+ - type: Add
+ message: >-
+ Added the plant box storage, you can now buy a big storage for plants
+ from cargo.
+ id: 4833
+ time: '2024-02-19T21:38:41.0000000+00:00'
+- author: crystalHex
+ changes:
+ - type: Tweak
+ message: Updated the DYS Dove and Dragonfly to meet mapping guidelines.
+ id: 4834
+ time: '2024-02-19T21:41:16.0000000+00:00'
+- author: ThatOneGoblin25
+ changes:
+ - type: Tweak
+ message: Updated and reworked the Investigator.
+ id: 4835
+ time: '2024-02-19T21:44:27.0000000+00:00'
+- author: MagnusCrowe
+ changes:
+ - type: Add
+ message: Adds mini hyposprays!
+ - type: Tweak
+ message: Replaces normal hyposprays with mini hyposprays wherever they may be.
+ id: 4836
+ time: '2024-02-21T04:21:06.0000000+00:00'
+- author: Cheackraze
+ changes:
+ - type: Tweak
+ message: NFSD now has their own bank account for payroll
+ id: 4837
+ time: '2024-02-21T18:35:17.0000000+00:00'
+- author: Mnemotechnician
+ changes:
+ - type: Fix
+ message: Fixed the buggy client-side magnet belt pickup animation
+ id: 4838
+ time: '2024-02-21T22:01:14.0000000+00:00'
+- author: dvir001
+ changes:
+ - type: Add
+ message: Added Security contraband exchange uplink
+ id: 4839
+ time: '2024-02-21T22:03:53.0000000+00:00'
+- author: MagnusCrowe
+ changes:
+ - type: Remove
+ message: Removed the perfect IFF from the Menace.
+ id: 4840
+ time: '2024-02-22T03:47:01.0000000+00:00'
+- author: erhardsteinhauer
+ changes:
+ - type: Fix
+ message: Advanced Magboots can be printed after they were researched.
+ id: 4841
+ time: '2024-02-24T13:08:14.0000000+00:00'
+- author: erhardsteinhauer
+ changes:
+ - type: Tweak
+ message: Now you can pull down pilot mask.
+ - type: Tweak
+ message: >-
+ Players who join round as Pilots now start with filled extended capacity
+ gas tank in their pocket.
+ id: 4842
+ time: '2024-02-24T13:09:53.0000000+00:00'
+- author: MoistBiscuits
+ changes:
+ - type: Fix
+ message: Fixed Microreactor cells not being printable at protolathes.
+ id: 4843
+ time: '2024-02-24T13:21:10.0000000+00:00'
+- author: ErhardSteinhauer
+ changes:
+ - type: Add
+ message: >-
+ A janitor found under one of the tables in the old SR office a manual on
+ how to construct tabletop consoles.
+ id: 4844
+ time: '2024-02-25T21:58:36.0000000+00:00'
+- author: dvir01
+ changes:
+ - type: Tweak
+ message: >-
+ Mining drill has been moved back to sci tech, ask someone to print you
+ some.
+ id: 4845
+ time: '2024-02-25T21:59:38.0000000+00:00'
+- author: Mnemotechnician
+ changes:
+ - type: Add
+ message: >-
+ The contravend now sells vials of vestine, a precursor to a few powerful
+ chemicals.
+ id: 4846
+ time: '2024-02-25T23:11:59.0000000+00:00'
+- author: nyozzl
+ changes:
+ - type: Add
+ message: New scrapyard ship disciple
+ id: 4847
+ time: '2024-02-27T01:30:16.0000000+00:00'
+- author: NkoKirkto
+ changes:
+ - type: Add
+ message: Added the Placebo a small Psychologist ship.
+ id: 4848
+ time: '2024-02-29T06:03:25.0000000+00:00'
+- author: Mnemotechnician
+ changes:
+ - type: Tweak
+ message: >-
+ Pinpointers now take time to change their target, throughout which it
+ must stand absolutely still, and can no longer be used to pinpoint
+ people.
+ id: 4849
+ time: '2024-03-02T01:15:56.0000000+00:00'
diff --git a/Resources/Locale/en-US/_NF/contraband/contraband-exchange-console.ftl b/Resources/Locale/en-US/_NF/contraband/contraband-exchange-console.ftl
new file mode 100644
index 000000000000..dedaadfeb29b
--- /dev/null
+++ b/Resources/Locale/en-US/_NF/contraband/contraband-exchange-console.ftl
@@ -0,0 +1,10 @@
+
+#Contraband Exchange Console
+contraband-pallet-console-menu-title = Contraband Exchange
+contraband-console-menu-points-amount = {$amount} FUC
+contraband-pallet-menu-no-goods-text = No contraband detected
+contraband-pallet-menu-appraisal-label = Estimated Value:{" "}
+contraband-pallet-menu-count-label = Number of items:{" "}
+contraband-pallet-appraise-button = Appraise
+contraband-pallet-sell-button = Sell
+contraband-pallet-disclaimer = Please place all contraband items directly onto the scanner. Items inside other containers are unable to be scanned properly.
diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/vending-crates.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/vending-crates.ftl
index 1e7a4a263b8a..b0cebeca7df7 100644
--- a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/vending-crates.ftl
+++ b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/vending-crates.ftl
@@ -21,3 +21,6 @@ ent-CrateVendingMachineRestockLessLethalVendFilled = LessLethalVend restock crat
ent-CrateVendingMachineRestockAutoTuneVendFilled = AutoTuneVend restock crate
.desc = Contains two restock boxes for the AutoTuneVend vending machine.
+
+ent-CrateVendingMachineRestockPottedPlantVendFilled = Plant-O-Matic restock crate
+ .desc = Contains two restock boxes for the Plant-O-Matic vending machine.
diff --git a/Resources/Locale/en-US/_NF/store/currency.ftl b/Resources/Locale/en-US/_NF/store/currency.ftl
new file mode 100644
index 000000000000..e6bb89669303
--- /dev/null
+++ b/Resources/Locale/en-US/_NF/store/currency.ftl
@@ -0,0 +1 @@
+store-currency-display-security-telecrystal = FUC
diff --git a/Resources/Locale/en-US/_NF/store/uplink-catalog.ftl b/Resources/Locale/en-US/_NF/store/uplink-catalog.ftl
index 89f0c2cf6c2e..ab446a4b247e 100644
--- a/Resources/Locale/en-US/_NF/store/uplink-catalog.ftl
+++ b/Resources/Locale/en-US/_NF/store/uplink-catalog.ftl
@@ -1,2 +1,114 @@
uplink-emp-grenade-launcher-bundle-name = EMP China-Lake Bundle
-uplink-emp-grenade-launcher-bundle-desc = An old China-Lake grenade launcher bundled with 8 rounds of EMP.
\ No newline at end of file
+uplink-emp-grenade-launcher-bundle-desc = An old China-Lake grenade launcher bundled with 8 rounds of EMP.
+
+store-category-sechardsuits = EVA Suits
+store-category-secweapons = Weapons
+store-category-secutility = Utility
+store-category-secammo = Ammunition
+
+uplink-security-hardsuit-name = Security HardSuit
+uplink-security-hardsuit-desc = Standard issue armored EVA suit. Bulky armor plating slightly limits movement speed.
+uplink-security-hardsuit-patrol-name = Security Patrol HardSuit
+uplink-security-hardsuit-patrol-desc = A light-weight variant of the Security EVA suit. Greater movement speed comes at the cost of slightly lower protection.
+uplink-security-hardsuit-brigmedic-name = BrigMedic HardSuit
+uplink-security-hardsuit-brigmedic-desc = A lightly armored EVA suit. Designed for rescue operations, it sacrifices most of its armor in favor of movement speed.
+uplink-security-hardsuit-warden-name = Bailiff HardSuit
+uplink-security-hardsuit-warden-desc = A moderately reinforced variant of the Security EVA suit. Modern plating increases resistances without sacrificing range of motion.
+uplink-security-hardsuit-syndie-re-name = Reverse Engineered Combat Suit
+uplink-security-hardsuit-syndie-re-desc = An advanced combat suit recovered from the Syndicate Wars. Heavily protected and extremely mobile.
+uplink-security-hardsuit-sheriff-name = Sheriff's HardSuit
+uplink-security-hardsuit-sheriff-desc = A heavily reinforced Security EVA suit. Provides maximum resistance while maintaining the range of motion expected of security forces.
+uplink-security-mk58-name = MK 58
+uplink-security-mk58-desc = Cheap, standard issue side-arm. Uses .35 Auto.
+uplink-security-kammerer-name = Kammerer
+uplink-security-kammerer-desc = Pump action shotgun. Uses .50 shotgun shells. Holds 4.
+uplink-security-disabler-name = Disabler
+uplink-security-disabler-desc = Standard issue non-lethal stun gun. Has an internal battery, but requires using a security charging dock.
+uplink-security-stunbaton-name = Stun Baton
+uplink-security-stunbaton-desc = Standard issue non-lethal stun baton. Has an internal battery, but requires using a security charging dock.
+uplink-security-deckard-name = Deckard
+uplink-security-deckard-desc = A very capable revolver, imported from the Tannhouser Gate. Uses .45 magnum.
+uplink-security-emitter-name = EMP Emitter
+uplink-security-emitter-desc = A high-energy pulse emitter tuned to disrupt electronics and power systems. Harmless to living things. Projectiles pass through glass. Has an internal battery, but requires using a security charging dock.
+uplink-security-n1984-name = N1984
+uplink-security-n1984-desc = Standard issue Officer's pistol. Uses .45 magnum magazines.
+uplink-security-enforcer-name = Enforcer
+uplink-security-enforcer-desc = An updated model of the Kammerer, boasts a 7 shell magazine. Uses .50 shotgun shells.
+uplink-security-lecter-name = Lecter
+uplink-security-lecter-desc = Standard issue fully automatic rifle. Uses .20 rifle.
+uplink-security-lasercarbine-name = Laser Rifle
+uplink-security-lasercarbine-desc = Standard issue laser carbine. Has an internal battery, but requires using a security charging dock. Fires through glass.
+uplink-security-disablersmg-name = Disabler SMG
+uplink-security-disablersmg-desc = Fully automatic, rapid fire disabler. Tuned to the same frequency as standard disablers, the ultimate less-lethal instrument. Has an internal battery, but requires using a security charging dock.
+uplink-security-energysword-name = Energy Sword
+uplink-security-energysword-desc = Legally Distinct Energy Sword. Chance to reflect projectiles.
+uplink-security-wt550-name = WT 550
+uplink-security-wt550-desc = A fully automatic sub machine gun. This design uses special top-mounted magazines, allowing for simpler and faster operation in the field. Uses .35 auto.
+uplink-security-energygun-name = Energy Gun
+uplink-security-energygun-desc = A semi automatic energy gun capable of firing both non-lethal stun bolts, as well as overcharged lethal energy bolts. Has an internal battery, but requires using a security charging dock.
+uplink-security-emprpg-name = RPG-7
+uplink-security-emprpg-desc = A rocket propelled grenade launcher. Comes with 1 EMP round.
+uplink-security-empgrenade-name = EMP Grenade
+uplink-security-empgrenade-desc = A handheld grenade that emits a high energy pulse that disrupts electronics and power systems in a moderately large radius.
+uplink-security-holo-name = Holo Barrier
+uplink-security-holo-desc = A battery powered holo projecter that places temporary barriers to bar movement.
+uplink-security-jetpack-name = Jetpack
+uplink-security-jetpack-desc = A pre-filled jetpack for EVA. Comes in a fashionable red.
+uplink-security-magboots-name = Combat Magboots
+uplink-security-magboots-desc = Light weight magboots designed to keep the wearer grounded in low and no gravity environments.
+uplink-security-techfab-name = Security Techfab
+uplink-security-techfab-desc = A circuit board for a Security Techfab. Allows the production of ammunition, magazines, weapons, and numerous other utilities. Uses raw resources. Can be upgraded.
+uplink-security-key-name = Security Encryption Keys
+uplink-security-key-desc = A box of 4 encryption keys that give access to the NFSD radio channel
+uplink-security-emprocket-name = EMP Rocket
+uplink-security-emprocket-desc = An EMP Rocket for the RPG-7
+uplink-security-thrusterkit-name = Thruster Upgrade Kit
+uplink-security-thrusterkit-desc = Contains 12 Super Capaciters. Perfect for upgrading a ship's thrusters.
+uplink-security-magazinepistol-name = .35 auto pistol magazines
+uplink-security-magazinepistol-desc = A box containing 4 magazines for .35 auto.
+uplink-security-20riflemagazine-name = .20 rifle magazines
+uplink-security-20riflemagazine-desc = A box containing 4 magazines for .20 rifle.
+uplink-security-wt550magazine-name = .35 auto top-mounted magazines
+uplink-security-wt550magazine-desc = A box containing 3 magazines for .35 auto top-mounted.
+uplink-security-hypo-name = Hypo Spray
+uplink-security-hypo-desc = A sterile medical injector for instant delivery of medications.
+uplink-security-ambuzol-name = Ambuzol Syringe
+uplink-security-ambuzol-desc = 15u of anti-viral medication to halt the progress of the highly contagious zombie virus.
+uplink-security-medkit-name = Combat Medkit
+uplink-security-medkit-desc = A kit containing advanced medical supplies suitable for use in the field.
+uplink-security-inspector-name = Inspector
+uplink-security-inspector-desc = Standard issue revolver. Cheaply mass produced and found in all corners of the known universe. Uses .45 magnum.
+uplink-security-mateba-name = Mateba
+uplink-security-mateba-desc = The Mateba Autorevolver's unique barrel alignment and recoil driven cylinder and hammer allow for unparalleled fire rate and accuracy.
+uplink-security-truncheon-name = Truncheon
+uplink-security-truncheon-desc = Standard issue blunt object. Excellent for cracking windows and skulls alike.
+uplink-security-armingsword-name = Plasteel Arming Sword
+uplink-security-armingsword-desc = Ancient design meets modern materials.
+uplink-security-captainsword-name = Captain's Sabre
+uplink-security-captainsword-desc = A sword normally reserved for Captains, Admirality, and other high-command. Has a small chance to reflect incoming projectiles.
+uplink-security-pulsepistol-name = Pulse Pistol
+uplink-security-pulsepistol-desc = A high powered laser pistol normally reserved for elite ERT units. Has an internal battery, but requires using a security charging dock.
+uplink-security-pulsecarbine-name = Pulse Carbine
+uplink-security-pulsecarbine-desc = A high powered laser carbine normally reserved for elite ERT and Combat units. Has an internal battery, but requires using a security charging dock.
+uplink-security-hammer-name = Breaching Hammer
+uplink-security-hammer-desc = A large two handed hammer that is perfect for breaking down doors, or breaching through hull plating.
+uplink-security-teleshield-name = Telescopic Shield
+uplink-security-teleshield-desc = An expandable hand-held shield offering excellent protection.
+uplink-security-energyshield-name = Energy Shield
+uplink-security-energyshield-desc = An exotic energy shield that blocks most incoming damage.
+uplink-security-swat-name = Swat Gas Mask
+uplink-security-swat-desc = A full-face covering version of the standard issue Security Gas Mask.
+uplink-security-speedloader-name = .45 Magnum Speed Loader
+uplink-security-speedloader-desc = A revolver speed loader that comes pre-loaded with .45 magnum.
+uplink-security-speedloaderrubber-name = .45 Magnum Rubber Speed Loader
+uplink-security-speedloaderrubber-desc = A revolver speed loader that comes pre-loaded with .45 magnum rubber.
+uplink-security-shotlethal-name = Lethal Shotgun Shells
+uplink-security-shotlethal-desc = A box of lethal .50 calibre pellet shotgun shells.
+uplink-security-shotbeanbag-name = Beanbag Shotgun Shells
+uplink-security-shotbeanbag-desc = A box of non-lethal .50 calibre beanbag shotgun shells.
+uplink-security-shotincend-name = Incendiary Shotgun Shells
+uplink-security-shotincend-desc = A box of lethal .50 calibre incendiary shotgun shells.
+uplink-security-shotslug-name = Lethal Shotgun Slug Shells
+uplink-security-shotslug-desc = A box of lethal .50 calibre slug shotgun shells.
+uplink-security-cash1000-name = 1000 Spesos
+uplink-security-cash1000-desc = Cold, hard cash.
diff --git a/Resources/Locale/en-US/connection-messages.ftl b/Resources/Locale/en-US/connection-messages.ftl
index 7f4afce8b965..a7f20eb86afe 100644
--- a/Resources/Locale/en-US/connection-messages.ftl
+++ b/Resources/Locale/en-US/connection-messages.ftl
@@ -32,10 +32,11 @@ ban-banned-permanent-appeal = This ban will only be removed via appeal. You can
ban-expires = This ban is for {$duration} minutes and will expire at {$time} UTC.
ban-banned-1 = You, or another user of this computer or connection, are banned from playing here.
ban-banned-2 = The ban reason is: "{$reason}"
-ban-banned-3 = Attempts to circumvent this ban such as creating a new account will be logged.
+ban-banned-3 = If this ban was a mistake or was made without a justification feel free to appeal on the discord following the guidelines.
+ban-banned-4 = Attempts to circumvent this ban such as creating a new account will result on escalation up to a community ban.
soft-player-cap-full = The server is full!
panic-bunker-account-denied = This server is in panic bunker mode, often enabled as a precaution against raids. New connections by accounts not meeting certain requirements are temporarily not accepted. Try again later
panic-bunker-account-denied-reason = This server is in panic bunker mode, often enabled as a precaution against raids. New connections by accounts not meeting certain requirements are temporarily not accepted. Try again later. Reason: "{$reason}"
-panic-bunker-account-reason-account = Your Space Station 14 account is too new. It must be older than {$minutes} minutes
+panic-bunker-account-reason-account = Your account is new to this server. Your first connection was less than {$minutes} minutes ago
panic-bunker-account-reason-overall = Your overall playtime on the server must be greater than {$hours} hours
diff --git a/Resources/Locale/en-US/nyanotrasen/carrying/carry.ftl b/Resources/Locale/en-US/nyanotrasen/carrying/carry.ftl
index 4fa1abae8bd3..490daced3f2b 100644
--- a/Resources/Locale/en-US/nyanotrasen/carrying/carry.ftl
+++ b/Resources/Locale/en-US/nyanotrasen/carrying/carry.ftl
@@ -1,3 +1,4 @@
carry-verb = Carry
carry-too-heavy = You're not strong enough.
+carry-started = {THE($carrier)} is trying to pick you up!
diff --git a/Resources/Maps/Shuttles/comet.yml b/Resources/Maps/Shuttles/comet.yml
deleted file mode 100644
index 6380076881bc..000000000000
--- a/Resources/Maps/Shuttles/comet.yml
+++ /dev/null
@@ -1,4572 +0,0 @@
-meta:
- format: 6
- postmapinit: false
-tilemap:
- 0: Space
- 29: FloorDarkDiagonalMini
- 36: FloorDarkPlastic
- 84: FloorSteel
- 96: FloorTechMaint
- 97: FloorTechMaint2
- 112: Lattice
- 113: Plating
-entities:
-- proto: ""
- entities:
- - uid: 1
- components:
- - name: grid
- type: MetaData
- - parent: invalid
- type: Transform
- - chunks:
- 0,0:
- ind: 0,0
- tiles: JAAAAAABJAAAAAABJAAAAAABJAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAADJAAAAAAAJAAAAAADJAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAACHQAAAAABcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAABHQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- -1,0:
- ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAJAAAAAAAJAAAAAAAJAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAJAAAAAADJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAJAAAAAAAJAAAAAAAJAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHQAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAHQAAAAADHQAAAAABHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAHQAAAAABHQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAHQAAAAABHQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAHQAAAAABHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAHQAAAAAAHQAAAAAD
- version: 6
- 0,-1:
- ind: 0,-1
- tiles: YAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAADJAAAAAADJAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAACJAAAAAABJAAAAAADcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- -1,-1:
- ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAJAAAAAAAJAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAJAAAAAABJAAAAAAA
- version: 6
- -1,1:
- ind: -1,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 0,1:
- ind: 0,1
- tiles: HQAAAAACHQAAAAABHQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAAAHQAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- -1,-2:
- ind: -1,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAA
- version: 6
- 0,-2:
- ind: 0,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- type: MapGrid
- - type: Broadphase
- - bodyStatus: InAir
- angularDamping: 0.05
- linearDamping: 0.05
- fixedRotation: False
- bodyType: Dynamic
- type: Physics
- - fixtures: {}
- type: Fixtures
- - type: OccluderTree
- - type: SpreaderGrid
- - type: Shuttle
- - type: GridPathfinding
- - gravityShakeSound: !type:SoundPathSpecifier
- path: /Audio/Effects/alert.ogg
- type: Gravity
- - chunkCollection:
- version: 2
- nodes:
- - node:
- color: '#FFFFFFFF'
- id: Arrows
- decals:
- 12: 0,-13
- - node:
- angle: 1.5707963267948966 rad
- color: '#FFFFFFFF'
- id: Caution
- decals:
- 13: -2,10
- - node:
- angle: 4.71238898038469 rad
- color: '#FFFFFFFF'
- id: Caution
- decals:
- 14: 2,10
- - node:
- color: '#FFFFFFFF'
- id: Delivery
- decals:
- 18: 3,11
- 19: 3,10
- 20: 3,9
- - node:
- angle: 1.5707963267948966 rad
- color: '#FFFFFFFF'
- id: Delivery
- decals:
- 21: -3,11
- 22: -3,10
- 23: -3,9
- - node:
- angle: 3.141592653589793 rad
- color: '#FFFFFFFF'
- id: LoadingArea
- decals:
- 10: -2,13
- 11: 2,13
- - node:
- color: '#334E6DC8'
- id: MiniTileOverlay
- decals:
- 62: -3,2
- 63: -3,1
- 64: -2,1
- 65: -1,1
- 66: 0,1
- 67: 1,1
- 68: 2,1
- 69: 3,1
- 70: 3,2
- 71: 0,0
- 72: 0,-1
- 73: 0,-2
- - node:
- color: '#EFB34196'
- id: MiniTileOverlay
- decals:
- 56: 0,-3
- 57: 0,-4
- 58: 0,-5
- 59: -1,-5
- 60: -1,-6
- 61: -1,-7
- - node:
- angle: 4.71238898038469 rad
- color: '#EFB34196'
- id: MiniTileOverlay
- decals:
- 25: 1,7
- 26: -1,7
- 27: -1,15
- 28: 0,15
- 29: 1,15
- 30: 0,14
- 31: 0,13
- 32: 0,12
- 33: 0,11
- 34: 0,10
- 35: 0,9
- 36: 0,8
- 37: 0,7
- 38: 0,6
- 39: 0,5
- 40: -1,5
- 41: -2,5
- 42: -3,5
- 43: -3,4
- 44: 1,5
- 45: 2,5
- 46: 3,5
- 47: 3,4
- - node:
- color: '#334E6DC8'
- id: MiniTileWhiteEndE
- decals:
- 75: 3,0
- 76: -2,0
- - node:
- color: '#EFB34196'
- id: MiniTileWhiteEndN
- decals:
- 48: -1,11
- 49: 1,11
- - node:
- color: '#334E6DC8'
- id: MiniTileWhiteEndS
- decals:
- 78: -1,2
- 79: 0,2
- 80: 1,2
- - node:
- color: '#EFB34196'
- id: MiniTileWhiteEndS
- decals:
- 50: 1,9
- 51: -1,9
- - node:
- color: '#334E6DC8'
- id: MiniTileWhiteEndW
- decals:
- 74: 2,0
- 77: -3,0
- - node:
- color: '#334E6DC8'
- id: MiniTileWhiteLineE
- decals:
- 81: -2,-1
- 82: -2,-2
- - node:
- color: '#EFB34196'
- id: MiniTileWhiteLineE
- decals:
- 52: 1,10
- 53: -1,10
- - node:
- color: '#334E6DC8'
- id: MiniTileWhiteLineW
- decals:
- 83: 2,-2
- 84: 2,-1
- - node:
- color: '#EFB34196'
- id: MiniTileWhiteLineW
- decals:
- 54: 1,10
- 55: -1,10
- - node:
- angle: 1.5707963267948966 rad
- color: '#FFFFFFFF'
- id: StandClear
- decals:
- 16: -2.189696,9.003693
- 17: -2.189696,11.055776
- - node:
- angle: 4.71238898038469 rad
- color: '#FFFFFFFF'
- id: StandClear
- decals:
- 15: 2.1853042,11.024526
- 24: 2.1935434,8.93114
- - node:
- color: '#FFFFFFFF'
- id: WarnLineE
- decals:
- 0: -1,-8
- 1: -1,-9
- 2: -1,-10
- - node:
- color: '#FFFFFFFF'
- id: WarnLineS
- decals:
- 4: 1,-11
- 6: -1,-8
- 7: -1,-9
- 8: -1,-10
- 9: -1,-11
- - node:
- color: '#FFFFFFFF'
- id: WarnLineW
- decals:
- 3: 0,-11
- 5: 1,-12
- type: DecalGrid
- - version: 2
- data:
- tiles:
- 0,0:
- 0: 65535
- 0,1:
- 0: 65535
- 0,2:
- 0: 65535
- 0,3:
- 0: 65535
- 1,0:
- 0: 4915
- 1,1:
- 0: 13073
- 1,2:
- 0: 12595
- 1,3:
- 0: 4915
- -1,0:
- 0: 65535
- -1,1:
- 0: 65023
- 1: 512
- -1,2:
- 0: 65535
- -1,3:
- 0: 65535
- 0,-4:
- 0: 32743
- 2: 16
- 0,-3:
- 0: 65535
- 0,-2:
- 0: 63743
- 3: 256
- 4: 512
- 5: 1024
- 0,-1:
- 0: 64511
- 6: 1024
- 1,-2:
- 0: 4369
- 1,-1:
- 0: 4369
- -1,-2:
- 0: 64511
- 5: 1024
- -1,-1:
- 0: 48127
- 7: 16384
- 8: 1024
- -1,-3:
- 0: 61438
- -1,-4:
- 0: 52972
- -1,4:
- 0: 3822
- 0,4:
- 0: 4095
- -1,-5:
- 0: 35968
- 0,-5:
- 0: 14129
- -2,0:
- 0: 2184
- -2,1:
- 0: 34816
- -2,2:
- 0: 32904
- -2,3:
- 0: 2184
- 1,-3:
- 0: 272
- 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.14996
- moles:
- - 20.06861
- - 75.49619
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - volume: 2500
- temperature: 293.14996
- moles:
- - 20.078888
- - 75.53487
- - 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.824806
- - 82.102844
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - volume: 2500
- temperature: 293.15
- moles:
- - 21.813705
- - 82.06108
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - volume: 2500
- temperature: 293.14996
- moles:
- - 19.950384
- - 75.051445
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - volume: 2500
- temperature: 293.15
- moles:
- - 23.710548
- - 89.19683
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - volume: 2500
- temperature: 293.14993
- moles:
- - 18.463121
- - 69.4565
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- chunkSize: 4
- type: GridAtmosphere
- - type: GasTileOverlay
- - type: RadiationGridResistance
- - id: Comet
- type: BecomesStation
-- proto: AirAlarm
- entities:
- - uid: 544
- components:
- - rot: -1.5707963267948966 rad
- pos: 3.5,-0.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 542
- - 474
- - 515
- - 435
- type: DeviceNetwork
- - devices:
- - 542
- - 474
- - 515
- - 435
- type: DeviceList
- - uid: 545
- components:
- - rot: -1.5707963267948966 rad
- pos: 3.5,-5.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 542
- - 474
- - 515
- - 435
- - 385
- - 393
- - 396
- type: DeviceNetwork
- - devices:
- - 542
- - 474
- - 515
- - 435
- - 385
- - 393
- - 396
- type: DeviceList
-- proto: AirlockAtmosphericsGlass
- entities:
- - uid: 684
- components:
- - pos: 0.5,-2.5
- parent: 1
- type: Transform
-- proto: AirlockCommandGlass
- entities:
- - uid: 689
- components:
- - pos: 3.5,3.5
- parent: 1
- type: Transform
- - links:
- - 736
- type: DeviceLinkSink
- - uid: 690
- components:
- - pos: -2.5,3.5
- parent: 1
- type: Transform
- - links:
- - 736
- type: DeviceLinkSink
-- proto: AirlockEngineeringGlass
- entities:
- - uid: 686
- components:
- - pos: -0.5,-6.5
- parent: 1
- type: Transform
- - secondsUntilStateChange: -2720.4558
- state: Opening
- type: Door
-- proto: AirlockExternalGlass
- entities:
- - uid: 443
- components:
- - pos: -0.5,15.5
- parent: 1
- type: Transform
- - uid: 637
- components:
- - pos: 1.5,15.5
- parent: 1
- type: Transform
- - uid: 648
- components:
- - pos: 0.5,15.5
- parent: 1
- type: Transform
-- proto: AirlockGlassShuttle
- entities:
- - uid: 146
- components:
- - rot: 3.141592653589793 rad
- pos: -0.5,18.5
- parent: 1
- type: Transform
- - uid: 147
- components:
- - rot: 3.141592653589793 rad
- pos: 0.5,18.5
- parent: 1
- type: Transform
- - uid: 148
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,18.5
- parent: 1
- type: Transform
-- proto: AmeController
- entities:
- - uid: 200
- components:
- - pos: 1.5,-10.5
- parent: 1
- type: Transform
- - injecting: True
- type: AmeController
- - containers:
- AmeFuel: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 201
- type: ContainerContainer
-- proto: AmeJar
- entities:
- - uid: 201
- components:
- - flags: InContainer
- type: MetaData
- - parent: 200
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 204
- components:
- - pos: 1.4955716,-11.5337925
- parent: 1
- type: Transform
-- proto: AmeShielding
- entities:
- - uid: 192
- components:
- - pos: 2.5,-8.5
- parent: 1
- type: Transform
- - uid: 193
- components:
- - pos: 0.5,-7.5
- parent: 1
- type: Transform
- - uid: 194
- components:
- - pos: 1.5,-9.5
- parent: 1
- type: Transform
- - uid: 195
- components:
- - pos: 2.5,-7.5
- parent: 1
- type: Transform
- - uid: 196
- components:
- - pos: 0.5,-8.5
- parent: 1
- type: Transform
- - uid: 197
- components:
- - rot: -1.5707963267948966 rad
- pos: 1.5,-8.5
- parent: 1
- type: Transform
- - radius: 2
- enabled: True
- type: PointLight
- - uid: 198
- components:
- - pos: 1.5,-7.5
- parent: 1
- type: Transform
- - uid: 199
- components:
- - pos: 2.5,-9.5
- parent: 1
- type: Transform
- - uid: 440
- components:
- - pos: 0.5,-9.5
- parent: 1
- type: Transform
-- proto: APCBasic
- entities:
- - uid: 208
- components:
- - rot: -1.5707963267948966 rad
- pos: -2.5,-5.5
- parent: 1
- type: Transform
- - uid: 209
- components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,8.5
- parent: 1
- type: Transform
-- proto: AtmosDeviceFanTiny
- entities:
- - uid: 243
- components:
- - rot: 3.141592653589793 rad
- pos: -3.5,9.5
- parent: 1
- type: Transform
- - uid: 244
- components:
- - rot: 3.141592653589793 rad
- pos: -3.5,10.5
- parent: 1
- type: Transform
- - uid: 245
- components:
- - rot: 3.141592653589793 rad
- pos: -3.5,11.5
- parent: 1
- type: Transform
- - uid: 246
- components:
- - rot: 3.141592653589793 rad
- pos: 4.5,9.5
- parent: 1
- type: Transform
- - uid: 247
- components:
- - rot: 3.141592653589793 rad
- pos: 4.5,10.5
- parent: 1
- type: Transform
- - uid: 248
- components:
- - rot: 3.141592653589793 rad
- pos: 4.5,11.5
- parent: 1
- type: Transform
- - uid: 249
- components:
- - rot: 3.141592653589793 rad
- pos: -0.5,18.5
- parent: 1
- type: Transform
- - uid: 250
- components:
- - rot: 3.141592653589793 rad
- pos: 0.5,18.5
- parent: 1
- type: Transform
- - uid: 251
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,18.5
- parent: 1
- type: Transform
- - uid: 617
- components:
- - pos: -1.5,18.5
- parent: 1
- type: Transform
- - uid: 618
- components:
- - pos: 2.5,18.5
- parent: 1
- type: Transform
-- proto: Autolathe
- entities:
- - uid: 445
- components:
- - pos: 3.5,6.5
- parent: 1
- type: Transform
-- proto: BlastDoor
- entities:
- - uid: 10
- components:
- - pos: -3.5,9.5
- parent: 1
- type: Transform
- - links:
- - 693
- type: DeviceLinkSink
- - uid: 191
- components:
- - pos: -3.5,10.5
- parent: 1
- type: Transform
- - links:
- - 693
- type: DeviceLinkSink
- - uid: 238
- components:
- - pos: 4.5,9.5
- parent: 1
- type: Transform
- - links:
- - 711
- type: DeviceLinkSink
- - uid: 239
- components:
- - pos: 4.5,10.5
- parent: 1
- type: Transform
- - links:
- - 711
- type: DeviceLinkSink
- - uid: 240
- components:
- - pos: 4.5,11.5
- parent: 1
- type: Transform
- - links:
- - 711
- type: DeviceLinkSink
- - uid: 264
- components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,18.5
- parent: 1
- type: Transform
- - links:
- - 252
- type: DeviceLinkSink
- - uid: 265
- components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,15.5
- parent: 1
- type: Transform
- - links:
- - 252
- type: DeviceLinkSink
- - uid: 266
- components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,15.5
- parent: 1
- type: Transform
- - links:
- - 252
- type: DeviceLinkSink
- - uid: 268
- components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,18.5
- parent: 1
- type: Transform
- - links:
- - 252
- type: DeviceLinkSink
- - uid: 683
- components:
- - pos: -3.5,11.5
- parent: 1
- type: Transform
- - links:
- - 693
- type: DeviceLinkSink
-- proto: CableApcExtension
- entities:
- - uid: 9
- components:
- - pos: -2.5,-10.5
- parent: 1
- type: Transform
- - uid: 17
- components:
- - pos: 4.5,13.5
- parent: 1
- type: Transform
- - uid: 18
- components:
- - pos: -3.5,13.5
- parent: 1
- type: Transform
- - uid: 19
- components:
- - pos: -3.5,15.5
- parent: 1
- type: Transform
- - uid: 20
- components:
- - pos: -3.5,14.5
- parent: 1
- type: Transform
- - uid: 22
- components:
- - pos: -2.5,15.5
- parent: 1
- type: Transform
- - uid: 24
- components:
- - pos: 3.5,15.5
- parent: 1
- type: Transform
- - uid: 25
- components:
- - pos: 4.5,15.5
- parent: 1
- type: Transform
- - uid: 26
- components:
- - pos: 4.5,14.5
- parent: 1
- type: Transform
- - uid: 27
- components:
- - pos: -3.5,-1.5
- parent: 1
- type: Transform
- - uid: 28
- components:
- - pos: -2.5,-1.5
- parent: 1
- type: Transform
- - uid: 29
- components:
- - pos: 4.5,-1.5
- parent: 1
- type: Transform
- - uid: 30
- components:
- - pos: 3.5,-1.5
- parent: 1
- type: Transform
- - uid: 31
- components:
- - pos: 4.5,-6.5
- parent: 1
- type: Transform
- - uid: 32
- components:
- - pos: 3.5,-6.5
- parent: 1
- type: Transform
- - uid: 34
- components:
- - pos: 3.5,-7.5
- parent: 1
- type: Transform
- - uid: 35
- components:
- - pos: -3.5,-6.5
- parent: 1
- type: Transform
- - uid: 36
- components:
- - pos: -2.5,-6.5
- parent: 1
- type: Transform
- - uid: 38
- components:
- - pos: -2.5,-7.5
- parent: 1
- type: Transform
- - uid: 39
- components:
- - pos: -2.5,-11.5
- parent: 1
- type: Transform
- - uid: 40
- components:
- - pos: -2.5,-10.5
- parent: 1
- type: Transform
- - uid: 41
- components:
- - pos: 3.5,-11.5
- parent: 1
- type: Transform
- - uid: 42
- components:
- - pos: 3.5,-10.5
- parent: 1
- type: Transform
- - uid: 43
- components:
- - pos: 2.5,-15.5
- parent: 1
- type: Transform
- - uid: 44
- components:
- - pos: 2.5,-14.5
- parent: 1
- type: Transform
- - uid: 45
- components:
- - pos: -1.5,-15.5
- parent: 1
- type: Transform
- - uid: 46
- components:
- - pos: -1.5,-14.5
- parent: 1
- type: Transform
- - uid: 47
- components:
- - pos: -0.5,-18.5
- parent: 1
- type: Transform
- - uid: 48
- components:
- - pos: -0.5,-17.5
- parent: 1
- type: Transform
- - uid: 49
- components:
- - pos: 0.5,-19.5
- parent: 1
- type: Transform
- - uid: 50
- components:
- - pos: 0.5,-18.5
- parent: 1
- type: Transform
- - uid: 51
- components:
- - pos: 1.5,-18.5
- parent: 1
- type: Transform
- - uid: 52
- components:
- - pos: 1.5,-17.5
- parent: 1
- type: Transform
- - uid: 59
- components:
- - pos: -0.5,-16.5
- parent: 1
- type: Transform
- - uid: 60
- components:
- - pos: 0.5,-16.5
- parent: 1
- type: Transform
- - uid: 61
- components:
- - pos: 1.5,-16.5
- parent: 1
- type: Transform
- - uid: 161
- components:
- - pos: -2.5,13.5
- parent: 1
- type: Transform
- - uid: 162
- components:
- - pos: 3.5,13.5
- parent: 1
- type: Transform
- - uid: 237
- components:
- - pos: -2.5,-11.5
- parent: 1
- type: Transform
- - uid: 258
- components:
- - pos: 3.5,-9.5
- parent: 1
- type: Transform
- - uid: 259
- components:
- - pos: 4.5,-9.5
- parent: 1
- type: Transform
- - uid: 263
- components:
- - pos: 4.5,-10.5
- parent: 1
- type: Transform
- - uid: 270
- components:
- - pos: -1.5,13.5
- parent: 1
- type: Transform
- - uid: 271
- components:
- - pos: -1.5,14.5
- parent: 1
- type: Transform
- - uid: 272
- components:
- - pos: -1.5,15.5
- parent: 1
- type: Transform
- - uid: 273
- components:
- - pos: -1.5,16.5
- parent: 1
- type: Transform
- - uid: 274
- components:
- - pos: -1.5,17.5
- parent: 1
- type: Transform
- - uid: 275
- components:
- - pos: -0.5,17.5
- parent: 1
- type: Transform
- - uid: 276
- components:
- - pos: 0.5,17.5
- parent: 1
- type: Transform
- - uid: 277
- components:
- - pos: 1.5,17.5
- parent: 1
- type: Transform
- - uid: 278
- components:
- - pos: 2.5,17.5
- parent: 1
- type: Transform
- - uid: 279
- components:
- - pos: 2.5,16.5
- parent: 1
- type: Transform
- - uid: 280
- components:
- - pos: 2.5,15.5
- parent: 1
- type: Transform
- - uid: 281
- components:
- - pos: 2.5,14.5
- parent: 1
- type: Transform
- - uid: 282
- components:
- - pos: 2.5,13.5
- parent: 1
- type: Transform
- - uid: 283
- components:
- - pos: -2.5,3.5
- parent: 1
- type: Transform
- - uid: 284
- components:
- - pos: -2.5,4.5
- parent: 1
- type: Transform
- - uid: 285
- components:
- - pos: -2.5,5.5
- parent: 1
- type: Transform
- - uid: 286
- components:
- - pos: -2.5,6.5
- parent: 1
- type: Transform
- - uid: 287
- components:
- - pos: 2.5,8.5
- parent: 1
- type: Transform
- - uid: 288
- components:
- - pos: 3.5,10.5
- parent: 1
- type: Transform
- - uid: 289
- components:
- - pos: 3.5,8.5
- parent: 1
- type: Transform
- - uid: 290
- components:
- - pos: 4.5,8.5
- parent: 1
- type: Transform
- - uid: 291
- components:
- - pos: -2.5,12.5
- parent: 1
- type: Transform
- - uid: 292
- components:
- - pos: -2.5,7.5
- parent: 1
- type: Transform
- - uid: 293
- components:
- - pos: 3.5,9.5
- parent: 1
- type: Transform
- - uid: 294
- components:
- - pos: 1.5,8.5
- parent: 1
- type: Transform
- - uid: 295
- components:
- - pos: 0.5,8.5
- parent: 1
- type: Transform
- - uid: 296
- components:
- - pos: -0.5,8.5
- parent: 1
- type: Transform
- - uid: 297
- components:
- - pos: -1.5,8.5
- parent: 1
- type: Transform
- - uid: 298
- components:
- - pos: -2.5,8.5
- parent: 1
- type: Transform
- - uid: 299
- components:
- - pos: -2.5,9.5
- parent: 1
- type: Transform
- - uid: 300
- components:
- - pos: -2.5,10.5
- parent: 1
- type: Transform
- - uid: 301
- components:
- - pos: -2.5,11.5
- parent: 1
- type: Transform
- - uid: 302
- components:
- - pos: 3.5,11.5
- parent: 1
- type: Transform
- - uid: 303
- components:
- - pos: 3.5,12.5
- parent: 1
- type: Transform
- - uid: 304
- components:
- - pos: -1.5,3.5
- parent: 1
- type: Transform
- - uid: 305
- components:
- - pos: -0.5,3.5
- parent: 1
- type: Transform
- - uid: 306
- components:
- - pos: 0.5,3.5
- parent: 1
- type: Transform
- - uid: 307
- components:
- - pos: 1.5,3.5
- parent: 1
- type: Transform
- - uid: 308
- components:
- - pos: 2.5,3.5
- parent: 1
- type: Transform
- - uid: 309
- components:
- - pos: 3.5,3.5
- parent: 1
- type: Transform
- - uid: 310
- components:
- - pos: 3.5,4.5
- parent: 1
- type: Transform
- - uid: 311
- components:
- - pos: 3.5,5.5
- parent: 1
- type: Transform
- - uid: 312
- components:
- - pos: 3.5,6.5
- parent: 1
- type: Transform
- - uid: 313
- components:
- - pos: 3.5,7.5
- parent: 1
- type: Transform
- - uid: 314
- components:
- - pos: -1.5,-5.5
- parent: 1
- type: Transform
- - uid: 315
- components:
- - pos: -0.5,-5.5
- parent: 1
- type: Transform
- - uid: 316
- components:
- - pos: 0.5,-5.5
- parent: 1
- type: Transform
- - uid: 317
- components:
- - pos: 1.5,-5.5
- parent: 1
- type: Transform
- - uid: 318
- components:
- - pos: 2.5,-5.5
- parent: 1
- type: Transform
- - uid: 319
- components:
- - pos: 2.5,-4.5
- parent: 1
- type: Transform
- - uid: 322
- components:
- - pos: 2.5,-3.5
- parent: 1
- type: Transform
- - uid: 323
- components:
- - pos: 2.5,-2.5
- parent: 1
- type: Transform
- - uid: 324
- components:
- - pos: 2.5,-1.5
- parent: 1
- type: Transform
- - uid: 325
- components:
- - pos: 2.5,-0.5
- parent: 1
- type: Transform
- - uid: 326
- components:
- - pos: 2.5,0.5
- parent: 1
- type: Transform
- - uid: 327
- components:
- - pos: 3.5,0.5
- parent: 1
- type: Transform
- - uid: 329
- components:
- - pos: 2.5,1.5
- parent: 1
- type: Transform
- - uid: 330
- components:
- - pos: 1.5,1.5
- parent: 1
- type: Transform
- - uid: 331
- components:
- - pos: 0.5,1.5
- parent: 1
- type: Transform
- - uid: 332
- components:
- - pos: -0.5,1.5
- parent: 1
- type: Transform
- - uid: 333
- components:
- - pos: -1.5,1.5
- parent: 1
- type: Transform
- - uid: 335
- components:
- - pos: -2.5,0.5
- parent: 1
- type: Transform
- - uid: 336
- components:
- - pos: -1.5,0.5
- parent: 1
- type: Transform
- - uid: 337
- components:
- - pos: -1.5,-0.5
- parent: 1
- type: Transform
- - uid: 338
- components:
- - pos: -1.5,-1.5
- parent: 1
- type: Transform
- - uid: 339
- components:
- - pos: -1.5,-2.5
- parent: 1
- type: Transform
- - uid: 340
- components:
- - pos: -1.5,-3.5
- parent: 1
- type: Transform
- - uid: 341
- components:
- - pos: -2.5,-3.5
- parent: 1
- type: Transform
- - uid: 342
- components:
- - pos: -2.5,-4.5
- parent: 1
- type: Transform
- - uid: 343
- components:
- - pos: -1.5,-4.5
- parent: 1
- type: Transform
- - uid: 344
- components:
- - pos: -1.5,-6.5
- parent: 1
- type: Transform
- - uid: 345
- components:
- - pos: -1.5,-7.5
- parent: 1
- type: Transform
- - uid: 346
- components:
- - pos: -1.5,-8.5
- parent: 1
- type: Transform
- - uid: 347
- components:
- - pos: -0.5,-8.5
- parent: 1
- type: Transform
- - uid: 348
- components:
- - pos: -0.5,-9.5
- parent: 1
- type: Transform
- - uid: 349
- components:
- - pos: -0.5,-10.5
- parent: 1
- type: Transform
- - uid: 350
- components:
- - pos: -1.5,-9.5
- parent: 1
- type: Transform
- - uid: 351
- components:
- - pos: -0.5,-11.5
- parent: 1
- type: Transform
- - uid: 352
- components:
- - pos: -0.5,-12.5
- parent: 1
- type: Transform
- - uid: 353
- components:
- - pos: 0.5,-12.5
- parent: 1
- type: Transform
- - uid: 354
- components:
- - pos: 0.5,-13.5
- parent: 1
- type: Transform
- - uid: 355
- components:
- - pos: 0.5,-14.5
- parent: 1
- type: Transform
- - uid: 356
- components:
- - pos: 0.5,-15.5
- parent: 1
- type: Transform
- - uid: 357
- components:
- - pos: -0.5,-14.5
- parent: 1
- type: Transform
- - uid: 358
- components:
- - pos: -1.5,-14.5
- parent: 1
- type: Transform
- - uid: 359
- components:
- - pos: 1.5,-14.5
- parent: 1
- type: Transform
- - uid: 360
- components:
- - pos: 2.5,-14.5
- parent: 1
- type: Transform
- - uid: 361
- components:
- - pos: 1.5,-12.5
- parent: 1
- type: Transform
- - uid: 362
- components:
- - pos: 1.5,-11.5
- parent: 1
- type: Transform
- - uid: 363
- components:
- - pos: 1.5,-10.5
- parent: 1
- type: Transform
- - uid: 364
- components:
- - pos: 1.5,-10.5
- parent: 1
- type: Transform
- - uid: 365
- components:
- - pos: 2.5,-10.5
- parent: 1
- type: Transform
- - uid: 366
- components:
- - pos: 3.5,-10.5
- parent: 1
- type: Transform
- - uid: 367
- components:
- - pos: 2.5,-9.5
- parent: 1
- type: Transform
- - uid: 368
- components:
- - pos: 2.5,-8.5
- parent: 1
- type: Transform
- - uid: 369
- components:
- - pos: 2.5,-7.5
- parent: 1
- type: Transform
- - uid: 370
- components:
- - pos: 2.5,-6.5
- parent: 1
- type: Transform
- - uid: 412
- components:
- - pos: -3.5,-10.5
- parent: 1
- type: Transform
- - uid: 425
- components:
- - pos: 4.5,-9.5
- parent: 1
- type: Transform
- - uid: 570
- components:
- - pos: -0.5,-2.5
- parent: 1
- type: Transform
- - uid: 571
- components:
- - pos: 0.5,-2.5
- parent: 1
- type: Transform
- - uid: 572
- components:
- - pos: -0.5,-6.5
- parent: 1
- type: Transform
- - uid: 573
- components:
- - pos: -1.5,-6.5
- parent: 1
- type: Transform
- - uid: 588
- components:
- - pos: -0.5,2.5
- parent: 1
- type: Transform
- - uid: 589
- components:
- - pos: 0.5,2.5
- parent: 1
- type: Transform
- - uid: 590
- components:
- - pos: 1.5,2.5
- parent: 1
- type: Transform
- - uid: 600
- components:
- - pos: -0.5,7.5
- parent: 1
- type: Transform
- - uid: 601
- components:
- - pos: -0.5,6.5
- parent: 1
- type: Transform
- - uid: 602
- components:
- - pos: 0.5,6.5
- parent: 1
- type: Transform
- - uid: 603
- components:
- - pos: 1.5,6.5
- parent: 1
- type: Transform
- - uid: 604
- components:
- - pos: 1.5,7.5
- parent: 1
- type: Transform
- - uid: 605
- components:
- - pos: -0.5,9.5
- parent: 1
- type: Transform
- - uid: 606
- components:
- - pos: -0.5,10.5
- parent: 1
- type: Transform
- - uid: 607
- components:
- - pos: -0.5,11.5
- parent: 1
- type: Transform
- - uid: 608
- components:
- - pos: 0.5,11.5
- parent: 1
- type: Transform
- - uid: 609
- components:
- - pos: 1.5,11.5
- parent: 1
- type: Transform
- - uid: 610
- components:
- - pos: 3.5,0.5
- parent: 1
- type: Transform
- - uid: 611
- components:
- - pos: 3.5,-0.5
- parent: 1
- type: Transform
- - uid: 612
- components:
- - pos: 3.5,-5.5
- parent: 1
- type: Transform
- - uid: 613
- components:
- - pos: -1.5,-7.5
- parent: 1
- type: Transform
- - uid: 614
- components:
- - pos: -1.5,-8.5
- parent: 1
- type: Transform
- - uid: 615
- components:
- - pos: -1.5,-9.5
- parent: 1
- type: Transform
- - uid: 616
- components:
- - pos: -2.5,-5.5
- parent: 1
- type: Transform
- - uid: 626
- components:
- - pos: 3.5,-9.5
- parent: 1
- type: Transform
- - uid: 633
- components:
- - pos: 2.5,2.5
- parent: 1
- type: Transform
- - uid: 668
- components:
- - pos: -3.5,8.5
- parent: 1
- type: Transform
- - uid: 669
- components:
- - pos: -3.5,12.5
- parent: 1
- type: Transform
- - uid: 670
- components:
- - pos: 4.5,12.5
- parent: 1
- type: Transform
- - uid: 671
- components:
- - pos: 4.5,8.5
- parent: 1
- type: Transform
- - uid: 687
- components:
- - pos: -2.5,-9.5
- parent: 1
- type: Transform
- - uid: 688
- components:
- - pos: -3.5,-9.5
- parent: 1
- type: Transform
- - uid: 692
- components:
- - pos: -1.5,-10.5
- parent: 1
- type: Transform
- - uid: 696
- components:
- - pos: -0.5,15.5
- parent: 1
- type: Transform
- - uid: 697
- components:
- - pos: 0.5,15.5
- parent: 1
- type: Transform
- - uid: 698
- components:
- - pos: 1.5,15.5
- parent: 1
- type: Transform
- - uid: 699
- components:
- - pos: 2.5,15.5
- parent: 1
- type: Transform
- - uid: 700
- components:
- - pos: 2.5,14.5
- parent: 1
- type: Transform
- - uid: 701
- components:
- - pos: -1.5,15.5
- parent: 1
- type: Transform
- - uid: 702
- components:
- - pos: -1.5,14.5
- parent: 1
- type: Transform
- - uid: 703
- components:
- - pos: 3.5,8.5
- parent: 1
- type: Transform
- - uid: 704
- components:
- - pos: 3.5,7.5
- parent: 1
- type: Transform
- - uid: 705
- components:
- - pos: 3.5,6.5
- parent: 1
- type: Transform
- - uid: 706
- components:
- - pos: -2.5,7.5
- parent: 1
- type: Transform
- - uid: 707
- components:
- - pos: -2.5,8.5
- parent: 1
- type: Transform
- - uid: 708
- components:
- - pos: -2.5,6.5
- parent: 1
- type: Transform
- - uid: 709
- components:
- - pos: -1.5,-3.5
- parent: 1
- type: Transform
- - uid: 710
- components:
- - pos: -0.5,-3.5
- parent: 1
- type: Transform
- - uid: 715
- components:
- - pos: -2.5,-14.5
- parent: 1
- type: Transform
- - uid: 716
- components:
- - pos: 3.5,-14.5
- parent: 1
- type: Transform
-- proto: CableHV
- entities:
- - uid: 172
- components:
- - pos: 0.5,-11.5
- parent: 1
- type: Transform
- - uid: 173
- components:
- - pos: 0.5,-12.5
- parent: 1
- type: Transform
- - uid: 174
- components:
- - pos: 1.5,-11.5
- parent: 1
- type: Transform
- - uid: 175
- components:
- - pos: -0.5,-12.5
- parent: 1
- type: Transform
- - uid: 176
- components:
- - pos: -0.5,-11.5
- parent: 1
- type: Transform
- - uid: 177
- components:
- - pos: -0.5,-12.5
- parent: 1
- type: Transform
- - uid: 178
- components:
- - pos: 1.5,-9.5
- parent: 1
- type: Transform
- - uid: 179
- components:
- - pos: 1.5,-10.5
- parent: 1
- type: Transform
- - uid: 180
- components:
- - pos: -0.5,-11.5
- parent: 1
- type: Transform
- - uid: 181
- components:
- - pos: -0.5,-10.5
- parent: 1
- type: Transform
- - uid: 182
- components:
- - pos: 2.5,-9.5
- parent: 1
- type: Transform
- - uid: 183
- components:
- - pos: 2.5,-8.5
- parent: 1
- type: Transform
- - uid: 184
- components:
- - pos: 2.5,-7.5
- parent: 1
- type: Transform
- - uid: 185
- components:
- - pos: 2.5,-6.5
- parent: 1
- type: Transform
- - uid: 186
- components:
- - pos: 2.5,-5.5
- parent: 1
- type: Transform
- - uid: 187
- components:
- - pos: -0.5,-9.5
- parent: 1
- type: Transform
- - uid: 188
- components:
- - pos: -1.5,-9.5
- parent: 1
- type: Transform
- - uid: 189
- components:
- - pos: -1.5,-8.5
- parent: 1
- type: Transform
- - uid: 190
- components:
- - pos: -1.5,-7.5
- parent: 1
- type: Transform
-- proto: CableMV
- entities:
- - uid: 210
- components:
- - pos: -1.5,-9.5
- parent: 1
- type: Transform
- - uid: 211
- components:
- - pos: -1.5,-8.5
- parent: 1
- type: Transform
- - uid: 212
- components:
- - pos: -1.5,-7.5
- parent: 1
- type: Transform
- - uid: 213
- components:
- - pos: -1.5,-6.5
- parent: 1
- type: Transform
- - uid: 214
- components:
- - pos: -1.5,-5.5
- parent: 1
- type: Transform
- - uid: 215
- components:
- - pos: -2.5,-5.5
- parent: 1
- type: Transform
- - uid: 216
- components:
- - pos: -2.5,-4.5
- parent: 1
- type: Transform
- - uid: 217
- components:
- - pos: -2.5,-3.5
- parent: 1
- type: Transform
- - uid: 218
- components:
- - pos: -1.5,-3.5
- parent: 1
- type: Transform
- - uid: 219
- components:
- - pos: -1.5,-2.5
- parent: 1
- type: Transform
- - uid: 220
- components:
- - pos: -1.5,-1.5
- parent: 1
- type: Transform
- - uid: 221
- components:
- - pos: -0.5,-1.5
- parent: 1
- type: Transform
- - uid: 222
- components:
- - pos: 0.5,-1.5
- parent: 1
- type: Transform
- - uid: 223
- components:
- - pos: 1.5,-1.5
- parent: 1
- type: Transform
- - uid: 224
- components:
- - pos: 2.5,-1.5
- parent: 1
- type: Transform
- - uid: 225
- components:
- - pos: 2.5,-0.5
- parent: 1
- type: Transform
- - uid: 226
- components:
- - pos: 2.5,0.5
- parent: 1
- type: Transform
- - uid: 227
- components:
- - pos: 3.5,0.5
- parent: 1
- type: Transform
- - uid: 228
- components:
- - pos: 3.5,1.5
- parent: 1
- type: Transform
- - uid: 229
- components:
- - pos: 3.5,2.5
- parent: 1
- type: Transform
- - uid: 230
- components:
- - pos: 3.5,3.5
- parent: 1
- type: Transform
- - uid: 231
- components:
- - pos: 3.5,4.5
- parent: 1
- type: Transform
- - uid: 232
- components:
- - pos: 3.5,5.5
- parent: 1
- type: Transform
- - uid: 233
- components:
- - pos: 3.5,6.5
- parent: 1
- type: Transform
- - uid: 234
- components:
- - pos: 3.5,7.5
- parent: 1
- type: Transform
- - uid: 235
- components:
- - pos: 3.5,8.5
- parent: 1
- type: Transform
- - uid: 236
- components:
- - pos: 4.5,8.5
- parent: 1
- type: Transform
-- proto: CableTerminal
- entities:
- - uid: 169
- components:
- - rot: -1.5707963267948966 rad
- pos: 0.5,-11.5
- parent: 1
- type: Transform
- - uid: 170
- components:
- - rot: -1.5707963267948966 rad
- pos: 0.5,-12.5
- parent: 1
- type: Transform
-- proto: CapacitorStockPart
- entities:
- - uid: 639
- components:
- - pos: 1.241066,4.385109
- parent: 1
- type: Transform
- - uid: 640
- components:
- - pos: 1.3498862,4.5183277
- parent: 1
- type: Transform
- - uid: 641
- components:
- - pos: 1.2457194,4.6718526
- parent: 1
- type: Transform
- - uid: 642
- components:
- - pos: 1.3396094,4.3330364
- parent: 1
- type: Transform
-- proto: Catwalk
- entities:
- - uid: 98
- components:
- - pos: -0.5,10.5
- parent: 1
- type: Transform
- - uid: 99
- components:
- - pos: -0.5,9.5
- parent: 1
- type: Transform
- - uid: 719
- components:
- - pos: -0.5,11.5
- parent: 1
- type: Transform
- - uid: 720
- components:
- - pos: 1.5,11.5
- parent: 1
- type: Transform
- - uid: 721
- components:
- - pos: 1.5,10.5
- parent: 1
- type: Transform
- - uid: 722
- components:
- - pos: 1.5,9.5
- parent: 1
- type: Transform
-- proto: ChairPilotSeat
- entities:
- - uid: 403
- components:
- - rot: 3.141592653589793 rad
- pos: 0.5,1.5
- parent: 1
- type: Transform
-- proto: ComputerFrame
- entities:
- - uid: 406
- components:
- - pos: 1.5,2.5
- parent: 1
- type: Transform
-- proto: ComputerShuttle
- entities:
- - uid: 404
- components:
- - pos: 0.5,2.5
- parent: 1
- type: Transform
-- proto: ComputerStationRecords
- entities:
- - uid: 405
- components:
- - pos: -0.5,2.5
- parent: 1
- type: Transform
-- proto: ConveyorBelt
- entities:
- - uid: 241
- components:
- - rot: 3.141592653589793 rad
- pos: 2.5,17.5
- parent: 1
- type: Transform
- - links:
- - 694
- type: DeviceLinkSink
- - uid: 242
- components:
- - rot: 3.141592653589793 rad
- pos: 2.5,18.5
- parent: 1
- type: Transform
- - links:
- - 694
- type: DeviceLinkSink
- - uid: 253
- components:
- - rot: 3.141592653589793 rad
- pos: -1.5,17.5
- parent: 1
- type: Transform
- - links:
- - 694
- type: DeviceLinkSink
- - uid: 254
- components:
- - rot: 3.141592653589793 rad
- pos: -1.5,16.5
- parent: 1
- type: Transform
- - links:
- - 694
- type: DeviceLinkSink
- - uid: 267
- components:
- - rot: 3.141592653589793 rad
- pos: -1.5,18.5
- parent: 1
- type: Transform
- - links:
- - 694
- type: DeviceLinkSink
- - uid: 269
- components:
- - rot: 3.141592653589793 rad
- pos: 2.5,16.5
- parent: 1
- type: Transform
- - links:
- - 694
- type: DeviceLinkSink
- - uid: 376
- components:
- - rot: 3.141592653589793 rad
- pos: 2.5,15.5
- parent: 1
- type: Transform
- - links:
- - 694
- type: DeviceLinkSink
- - uid: 400
- components:
- - rot: 3.141592653589793 rad
- pos: 2.5,14.5
- parent: 1
- type: Transform
- - links:
- - 694
- type: DeviceLinkSink
- - uid: 401
- components:
- - rot: 3.141592653589793 rad
- pos: -1.5,14.5
- parent: 1
- type: Transform
- - links:
- - 694
- type: DeviceLinkSink
- - uid: 407
- components:
- - rot: 3.141592653589793 rad
- pos: -1.5,15.5
- parent: 1
- type: Transform
- - links:
- - 694
- type: DeviceLinkSink
-- proto: CrateEngineeringAMEJar
- entities:
- - uid: 205
- components:
- - pos: 0.5,-14.5
- parent: 1
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
-- proto: CrateEngineeringCableBulk
- entities:
- - uid: 255
- components:
- - pos: -2.5,6.5
- parent: 1
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 1.7450964
- - 6.564886
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
-- proto: DrinkFlaskOld
- entities:
- - uid: 595
- components:
- - pos: -0.8367934,-3.338994
- parent: 1
- type: Transform
- - uid: 596
- components:
- - pos: -0.79733527,-3.3434365
- parent: 1
- type: Transform
- - uid: 597
- components:
- - pos: -0.73483527,-3.3121865
- parent: 1
- type: Transform
- - uid: 598
- components:
- - pos: -0.90971005,-3.2814004
- parent: 1
- type: Transform
-- proto: FaxMachineShip
- entities:
- - uid: 632
- components:
- - pos: 2.5,2.5
- parent: 1
- type: Transform
-- proto: FireAxeCabinetFilled
- entities:
- - uid: 33
- components:
- - rot: 1.5707963267948966 rad
- pos: -2.5,-0.5
- parent: 1
- type: Transform
-- proto: GasMixer
- entities:
- - uid: 382
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,-3.5
- parent: 1
- type: Transform
- - inletTwoConcentration: 0.78
- inletOneConcentration: 0.22
- type: GasMixer
- - color: '#0335FCFF'
- type: AtmosPipeColor
-- proto: GasPassiveVent
- entities:
- - uid: 523
- components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,15.5
- parent: 1
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
-- proto: GasPipeBend
- entities:
- - uid: 383
- components:
- - rot: -1.5707963267948966 rad
- pos: 0.5,-5.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 389
- components:
- - rot: 3.141592653589793 rad
- pos: -0.5,-10.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 390
- components:
- - pos: 0.5,-10.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 434
- components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,0.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 480
- components:
- - rot: 3.141592653589793 rad
- pos: -2.5,11.5
- parent: 1
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 522
- components:
- - pos: -2.5,15.5
- parent: 1
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 539
- components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,-3.5
- parent: 1
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 540
- components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,-3.5
- parent: 1
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 541
- components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,-4.5
- parent: 1
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 553
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,-4.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 554
- components:
- - rot: 1.5707963267948966 rad
- pos: 0.5,-2.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
-- proto: GasPipeStraight
- entities:
- - uid: 386
- components:
- - pos: -0.5,-7.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 387
- components:
- - pos: -0.5,-8.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 388
- components:
- - pos: -0.5,-9.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 391
- components:
- - pos: 0.5,-11.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 394
- components:
- - rot: 3.141592653589793 rad
- pos: 0.5,-13.5
- parent: 1
- type: Transform
- - uid: 395
- components:
- - rot: 3.141592653589793 rad
- pos: 0.5,-14.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 427
- components:
- - rot: 3.141592653589793 rad
- pos: 0.5,-4.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 429
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,-1.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 430
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,-0.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 432
- components:
- - rot: -1.5707963267948966 rad
- pos: 0.5,0.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 433
- components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,0.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 436
- components:
- - pos: 1.5,1.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 437
- components:
- - pos: 1.5,2.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 438
- components:
- - pos: 1.5,3.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 439
- components:
- - pos: 1.5,4.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 471
- components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,11.5
- parent: 1
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 475
- components:
- - pos: 1.5,9.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 478
- components:
- - pos: 1.5,11.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 479
- components:
- - pos: 1.5,5.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 481
- components:
- - pos: 1.5,12.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 512
- components:
- - pos: 1.5,7.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 513
- components:
- - pos: 1.5,8.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 514
- components:
- - pos: 1.5,10.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 516
- components:
- - pos: 1.5,6.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 517
- components:
- - pos: -0.5,-6.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 518
- components:
- - pos: -0.5,12.5
- parent: 1
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 519
- components:
- - rot: 3.141592653589793 rad
- pos: -2.5,12.5
- parent: 1
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 520
- components:
- - rot: 3.141592653589793 rad
- pos: -2.5,13.5
- parent: 1
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 521
- components:
- - rot: 3.141592653589793 rad
- pos: -2.5,14.5
- parent: 1
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 524
- components:
- - pos: -0.5,10.5
- parent: 1
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 525
- components:
- - pos: -0.5,9.5
- parent: 1
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 526
- components:
- - pos: -0.5,8.5
- parent: 1
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 527
- components:
- - pos: -0.5,7.5
- parent: 1
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 528
- components:
- - pos: -0.5,6.5
- parent: 1
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 529
- components:
- - pos: -0.5,5.5
- parent: 1
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 530
- components:
- - pos: -0.5,4.5
- parent: 1
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 531
- components:
- - pos: -0.5,3.5
- parent: 1
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 532
- components:
- - pos: -0.5,2.5
- parent: 1
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 533
- components:
- - pos: -0.5,1.5
- parent: 1
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 534
- components:
- - pos: -0.5,0.5
- parent: 1
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 535
- components:
- - pos: -0.5,-0.5
- parent: 1
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 538
- components:
- - pos: -0.5,-2.5
- parent: 1
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 555
- components:
- - pos: 0.5,-3.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
-- proto: GasPipeTJunction
- entities:
- - uid: 384
- components:
- - rot: 1.5707963267948966 rad
- pos: -0.5,-5.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 392
- components:
- - rot: 1.5707963267948966 rad
- pos: 0.5,-12.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 428
- components:
- - rot: -1.5707963267948966 rad
- pos: 1.5,-2.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 431
- components:
- - rot: -1.5707963267948966 rad
- pos: 1.5,0.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 469
- components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,11.5
- parent: 1
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 536
- components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,-1.5
- parent: 1
- type: Transform
- - color: '#FF1212FF'
- type: AtmosPipeColor
-- proto: GasPort
- entities:
- - uid: 377
- components:
- - rot: -1.5707963267948966 rad
- pos: 3.5,-3.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 378
- components:
- - rot: -1.5707963267948966 rad
- pos: 3.5,-4.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
-- proto: GasPressurePump
- entities:
- - uid: 379
- components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,-3.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 381
- components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,-4.5
- parent: 1
- type: Transform
- - color: '#0335FCFF'
- type: AtmosPipeColor
-- proto: GasVentPump
- entities:
- - uid: 385
- components:
- - pos: -0.5,-4.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 545
- type: DeviceNetwork
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 393
- components:
- - rot: -1.5707963267948966 rad
- pos: 1.5,-12.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 545
- type: DeviceNetwork
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 396
- components:
- - rot: 3.141592653589793 rad
- pos: 0.5,-15.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 545
- type: DeviceNetwork
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 435
- components:
- - rot: 3.141592653589793 rad
- pos: -1.5,-0.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 544
- - 545
- type: DeviceNetwork
- - color: '#0335FCFF'
- type: AtmosPipeColor
- - uid: 515
- components:
- - pos: 1.5,13.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 544
- - 545
- type: DeviceNetwork
- - color: '#0335FCFF'
- type: AtmosPipeColor
-- proto: GasVentScrubber
- entities:
- - uid: 474
- components:
- - pos: -0.5,13.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 544
- - 545
- type: DeviceNetwork
- - color: '#FF1212FF'
- type: AtmosPipeColor
- - uid: 542
- components:
- - rot: 1.5707963267948966 rad
- pos: -2.5,-4.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 545
- - 544
- type: DeviceNetwork
- - color: '#FF1212FF'
- type: AtmosPipeColor
-- proto: GravityGeneratorMini
- entities:
- - uid: 371
- components:
- - pos: -1.5,-7.5
- parent: 1
- type: Transform
-- proto: Grille
- entities:
- - uid: 56
- components:
- - pos: -0.5,-17.5
- parent: 1
- type: Transform
- - uid: 57
- components:
- - pos: 0.5,-17.5
- parent: 1
- type: Transform
- - uid: 58
- components:
- - pos: 1.5,-17.5
- parent: 1
- type: Transform
- - uid: 70
- components:
- - pos: -1.5,-14.5
- parent: 1
- type: Transform
- - uid: 71
- components:
- - pos: 2.5,-14.5
- parent: 1
- type: Transform
- - uid: 84
- components:
- - rot: 3.141592653589793 rad
- pos: -1.5,-11.5
- parent: 1
- type: Transform
- - uid: 85
- components:
- - rot: 3.141592653589793 rad
- pos: 2.5,-11.5
- parent: 1
- type: Transform
- - uid: 92
- components:
- - pos: 1.5,-14.5
- parent: 1
- type: Transform
- - uid: 93
- components:
- - pos: -0.5,-14.5
- parent: 1
- type: Transform
- - uid: 94
- components:
- - rot: 3.141592653589793 rad
- pos: -2.5,-7.5
- parent: 1
- type: Transform
- - uid: 95
- components:
- - rot: 3.141592653589793 rad
- pos: -2.5,-6.5
- parent: 1
- type: Transform
- - uid: 96
- components:
- - rot: 3.141592653589793 rad
- pos: 3.5,-7.5
- parent: 1
- type: Transform
- - uid: 97
- components:
- - rot: 3.141592653589793 rad
- pos: 3.5,-6.5
- parent: 1
- type: Transform
- - uid: 118
- components:
- - rot: 3.141592653589793 rad
- pos: -2.5,-1.5
- parent: 1
- type: Transform
- - uid: 119
- components:
- - rot: 3.141592653589793 rad
- pos: 3.5,-1.5
- parent: 1
- type: Transform
- - uid: 128
- components:
- - rot: 3.141592653589793 rad
- pos: -3.5,3.5
- parent: 1
- type: Transform
- - uid: 129
- components:
- - rot: 3.141592653589793 rad
- pos: -3.5,4.5
- parent: 1
- type: Transform
- - uid: 130
- components:
- - rot: 3.141592653589793 rad
- pos: -3.5,5.5
- parent: 1
- type: Transform
- - uid: 131
- components:
- - rot: 3.141592653589793 rad
- pos: 4.5,3.5
- parent: 1
- type: Transform
- - uid: 132
- components:
- - rot: 3.141592653589793 rad
- pos: 4.5,4.5
- parent: 1
- type: Transform
- - uid: 133
- components:
- - rot: 3.141592653589793 rad
- pos: 4.5,5.5
- parent: 1
- type: Transform
- - uid: 153
- components:
- - rot: 3.141592653589793 rad
- pos: -2.5,15.5
- parent: 1
- type: Transform
- - uid: 154
- components:
- - rot: 3.141592653589793 rad
- pos: 3.5,15.5
- parent: 1
- type: Transform
- - uid: 206
- components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,-16.5
- parent: 1
- type: Transform
- - uid: 207
- components:
- - rot: -1.5707963267948966 rad
- pos: 1.5,-16.5
- parent: 1
- type: Transform
- - uid: 415
- components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,3.5
- parent: 1
- type: Transform
- - uid: 416
- components:
- - rot: -1.5707963267948966 rad
- pos: 0.5,3.5
- parent: 1
- type: Transform
- - uid: 417
- components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,3.5
- parent: 1
- type: Transform
- - uid: 418
- components:
- - rot: -1.5707963267948966 rad
- pos: 1.5,3.5
- parent: 1
- type: Transform
- - uid: 419
- components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,3.5
- parent: 1
- type: Transform
-- proto: Gyroscope
- entities:
- - uid: 203
- components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,-8.5
- parent: 1
- type: Transform
- - uid: 712
- components:
- - pos: -2.5,-14.5
- parent: 1
- type: Transform
- - uid: 714
- components:
- - pos: 3.5,-14.5
- parent: 1
- type: Transform
-- proto: LockerCaptainFilledHardsuit
- entities:
- - uid: 37
- components:
- - pos: -1.5,-1.5
- parent: 1
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.1495
- moles:
- - 1.6054887
- - 6.0396953
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
-- proto: LockerChiefEngineerFilledHardsuit
- entities:
- - uid: 442
- components:
- - pos: 2.5,-1.5
- parent: 1
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 1.734816
- - 6.5262127
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
-- proto: LockerEngineerFilled
- entities:
- - uid: 380
- components:
- - pos: 2.5,-5.5
- parent: 1
- type: Transform
- - uid: 426
- components:
- - pos: 1.5,-5.5
- parent: 1
- type: Transform
-- proto: MaterialReclaimer
- entities:
- - uid: 630
- components:
- - pos: 3.5,7.5
- parent: 1
- type: Transform
-- proto: MatterBinStockPart
- entities:
- - uid: 727
- components:
- - pos: 1.26107,7.6963973
- parent: 1
- type: Transform
- - uid: 728
- components:
- - rot: 3.141592653589793 rad
- pos: 1.2957922,7.5088973
- parent: 1
- type: Transform
-- proto: MicroManipulatorStockPart
- entities:
- - uid: 729
- components:
- - rot: 1.5707963267948966 rad
- pos: 1.7055144,7.703342
- parent: 1
- type: Transform
- - uid: 730
- components:
- - pos: 1.7263477,7.4463973
- parent: 1
- type: Transform
-- proto: NitrogenCanister
- entities:
- - uid: 586
- components:
- - anchored: True
- pos: 3.5,-3.5
- parent: 1
- type: Transform
- - bodyType: Static
- type: Physics
-- proto: OreProcessor
- entities:
- - uid: 459
- components:
- - pos: 3.5,8.5
- parent: 1
- type: Transform
-- proto: OxygenCanister
- entities:
- - uid: 587
- components:
- - anchored: True
- pos: 3.5,-4.5
- parent: 1
- type: Transform
- - bodyType: Static
- type: Physics
-- proto: Paper
- entities:
- - uid: 651
- components:
- - flags: InContainer
- type: MetaData
- - parent: 650
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 652
- components:
- - flags: InContainer
- type: MetaData
- - parent: 650
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 653
- components:
- - flags: InContainer
- type: MetaData
- - parent: 650
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 654
- components:
- - flags: InContainer
- type: MetaData
- - parent: 650
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 655
- components:
- - flags: InContainer
- type: MetaData
- - parent: 650
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 656
- components:
- - flags: InContainer
- type: MetaData
- - parent: 650
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 657
- components:
- - flags: InContainer
- type: MetaData
- - parent: 650
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 658
- components:
- - flags: InContainer
- type: MetaData
- - parent: 650
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 659
- components:
- - flags: InContainer
- type: MetaData
- - parent: 650
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 660
- components:
- - flags: InContainer
- type: MetaData
- - parent: 650
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 661
- components:
- - flags: InContainer
- type: MetaData
- - parent: 650
- type: Transform
- - canCollide: False
- type: Physics
-- proto: PaperBin10
- entities:
- - uid: 650
- components:
- - rot: 3.141592653589793 rad
- pos: -2.5,0.5
- parent: 1
- type: Transform
- - items:
- - 651
- - 652
- - 653
- - 654
- - 655
- - 656
- - 657
- - 658
- - 659
- - 660
- - 661
- type: Bin
- - containers:
- bin-container: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 651
- - 652
- - 653
- - 654
- - 655
- - 656
- - 657
- - 658
- - 659
- - 660
- - 661
- type: ContainerContainer
-- proto: PenCap
- entities:
- - uid: 663
- components:
- - pos: -1.9694284,0.5056243
- parent: 1
- type: Transform
- - stampedName: Unknown
- type: Stamp
-- proto: PlasticFlapsAirtightClear
- entities:
- - uid: 256
- components:
- - pos: 2.5,18.5
- parent: 1
- type: Transform
- - uid: 257
- components:
- - pos: -1.5,18.5
- parent: 1
- type: Transform
- - uid: 444
- components:
- - pos: -1.5,15.5
- parent: 1
- type: Transform
- - uid: 647
- components:
- - pos: 2.5,15.5
- parent: 1
- type: Transform
-- proto: PortableGeneratorPacmanMachineCircuitboard
- entities:
- - uid: 635
- components:
- - pos: 1.197083,4.3927317
- parent: 1
- type: Transform
- - uid: 636
- components:
- - pos: 1.1936362,4.3561215
- parent: 1
- type: Transform
-- proto: PortableScrubber
- entities:
- - uid: 402
- components:
- - pos: -2.5,-3.5
- parent: 1
- type: Transform
-- proto: PowerCellRecharger
- entities:
- - uid: 646
- components:
- - rot: 1.5707963267948966 rad
- pos: 3.5,0.5
- parent: 1
- type: Transform
-- proto: Poweredlight
- entities:
- - uid: 74
- components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,-0.5
- parent: 1
- type: Transform
- - uid: 574
- components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,-0.5
- parent: 1
- type: Transform
- - uid: 575
- components:
- - rot: 1.5707963267948966 rad
- pos: -2.5,2.5
- parent: 1
- type: Transform
- - uid: 576
- components:
- - rot: 1.5707963267948966 rad
- pos: -2.5,8.5
- parent: 1
- type: Transform
- - uid: 577
- components:
- - rot: 1.5707963267948966 rad
- pos: -2.5,12.5
- parent: 1
- type: Transform
- - uid: 578
- components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,16.5
- parent: 1
- type: Transform
- - uid: 579
- components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,16.5
- parent: 1
- type: Transform
- - uid: 580
- components:
- - rot: -1.5707963267948966 rad
- pos: 3.5,12.5
- parent: 1
- type: Transform
- - uid: 581
- components:
- - rot: -1.5707963267948966 rad
- pos: 3.5,8.5
- parent: 1
- type: Transform
- - uid: 582
- components:
- - rot: -1.5707963267948966 rad
- pos: 3.5,2.5
- parent: 1
- type: Transform
- - uid: 583
- components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,-5.5
- parent: 1
- type: Transform
- - uid: 584
- components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,-5.5
- parent: 1
- type: Transform
-- proto: PoweredlightExterior
- entities:
- - uid: 624
- components:
- - rot: 1.5707963267948966 rad
- pos: 5.5,8.5
- parent: 1
- type: Transform
- - uid: 665
- components:
- - rot: 1.5707963267948966 rad
- pos: 5.5,12.5
- parent: 1
- type: Transform
- - uid: 666
- components:
- - rot: -1.5707963267948966 rad
- pos: -4.5,12.5
- parent: 1
- type: Transform
- - uid: 667
- components:
- - rot: -1.5707963267948966 rad
- pos: -4.5,8.5
- parent: 1
- type: Transform
-- proto: PoweredlightSodium
- entities:
- - uid: 585
- components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,-8.5
- parent: 1
- type: Transform
- - uid: 591
- components:
- - rot: -1.5707963267948966 rad
- pos: 1.5,-12.5
- parent: 1
- type: Transform
- - uid: 625
- components:
- - rot: -1.5707963267948966 rad
- pos: 0.5,-14.5
- parent: 1
- type: Transform
-- proto: Rack
- entities:
- - uid: 202
- components:
- - rot: -1.5707963267948966 rad
- pos: 1.5,-11.5
- parent: 1
- type: Transform
- - uid: 458
- components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,4.5
- parent: 1
- type: Transform
- - uid: 473
- components:
- - rot: -1.570768074193273 rad
- pos: 0.5,4.5
- parent: 1
- type: Transform
- - uid: 634
- components:
- - pos: 1.5,4.5
- parent: 1
- type: Transform
-- proto: ReinforcedWindow
- entities:
- - uid: 21
- components:
- - pos: -0.5,-17.5
- parent: 1
- type: Transform
- - uid: 23
- components:
- - pos: 0.5,-17.5
- parent: 1
- type: Transform
- - uid: 53
- components:
- - pos: 1.5,-17.5
- parent: 1
- type: Transform
- - uid: 54
- components:
- - pos: -0.5,-16.5
- parent: 1
- type: Transform
- - uid: 55
- components:
- - pos: 1.5,-16.5
- parent: 1
- type: Transform
- - uid: 62
- components:
- - pos: -0.5,-14.5
- parent: 1
- type: Transform
- - uid: 63
- components:
- - pos: -1.5,-14.5
- parent: 1
- type: Transform
- - uid: 64
- components:
- - pos: -1.5,-11.5
- parent: 1
- type: Transform
- - uid: 65
- components:
- - pos: 2.5,-11.5
- parent: 1
- type: Transform
- - uid: 66
- components:
- - pos: -2.5,-6.5
- parent: 1
- type: Transform
- - uid: 67
- components:
- - pos: -2.5,-7.5
- parent: 1
- type: Transform
- - uid: 68
- components:
- - pos: 3.5,-6.5
- parent: 1
- type: Transform
- - uid: 69
- components:
- - pos: 3.5,-7.5
- parent: 1
- type: Transform
- - uid: 76
- components:
- - pos: -2.5,-1.5
- parent: 1
- type: Transform
- - uid: 77
- components:
- - pos: 3.5,-1.5
- parent: 1
- type: Transform
- - uid: 78
- components:
- - pos: -3.5,3.5
- parent: 1
- type: Transform
- - uid: 79
- components:
- - pos: -3.5,4.5
- parent: 1
- type: Transform
- - uid: 80
- components:
- - pos: -3.5,5.5
- parent: 1
- type: Transform
- - uid: 81
- components:
- - pos: 4.5,3.5
- parent: 1
- type: Transform
- - uid: 82
- components:
- - pos: 4.5,4.5
- parent: 1
- type: Transform
- - uid: 83
- components:
- - pos: 4.5,5.5
- parent: 1
- type: Transform
- - uid: 158
- components:
- - pos: -2.5,15.5
- parent: 1
- type: Transform
- - uid: 159
- components:
- - pos: 3.5,15.5
- parent: 1
- type: Transform
- - uid: 420
- components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,3.5
- parent: 1
- type: Transform
- - uid: 421
- components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,3.5
- parent: 1
- type: Transform
- - uid: 422
- components:
- - rot: -1.5707963267948966 rad
- pos: 0.5,3.5
- parent: 1
- type: Transform
- - uid: 423
- components:
- - rot: -1.5707963267948966 rad
- pos: 1.5,3.5
- parent: 1
- type: Transform
- - uid: 424
- components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,3.5
- parent: 1
- type: Transform
- - uid: 717
- components:
- - pos: 1.5,-14.5
- parent: 1
- type: Transform
- - uid: 718
- components:
- - pos: 2.5,-14.5
- parent: 1
- type: Transform
-- proto: RubberStampApproved
- entities:
- - uid: 662
- components:
- - pos: -1.6569284,0.6410409
- parent: 1
- type: Transform
-- proto: RubberStampDenied
- entities:
- - uid: 664
- components:
- - pos: -1.3444284,0.41187423
- parent: 1
- type: Transform
-- proto: Screwdriver
- entities:
- - uid: 726
- components:
- - rot: 3.141592653589793 rad
- pos: -0.3833046,7.3700085
- parent: 1
- type: Transform
-- proto: SheetGlass
- entities:
- - uid: 477
- components:
- - pos: -0.4893459,4.6509175
- parent: 1
- type: Transform
- - uid: 552
- components:
- - pos: -0.4893459,4.661334
- parent: 1
- type: Transform
-- proto: SheetPlastic
- entities:
- - uid: 551
- components:
- - pos: 1.6555057,4.603859
- parent: 1
- type: Transform
-- proto: SheetSteel
- entities:
- - uid: 460
- components:
- - pos: 0.5861908,4.6388607
- parent: 1
- type: Transform
- - uid: 549
- components:
- - pos: 0.57577413,4.597194
- parent: 1
- type: Transform
- - uid: 550
- components:
- - pos: 0.59660745,4.6388607
- parent: 1
- type: Transform
-- proto: ShuttersNormalOpen
- entities:
- - uid: 731
- components:
- - pos: 2.5,3.5
- parent: 1
- type: Transform
- - links:
- - 736
- type: DeviceLinkSink
- - uid: 732
- components:
- - pos: 1.5,3.5
- parent: 1
- type: Transform
- - links:
- - 736
- type: DeviceLinkSink
- - uid: 733
- components:
- - pos: 0.5,3.5
- parent: 1
- type: Transform
- - links:
- - 736
- type: DeviceLinkSink
- - uid: 734
- components:
- - pos: -0.5,3.5
- parent: 1
- type: Transform
- - links:
- - 736
- type: DeviceLinkSink
- - uid: 735
- components:
- - pos: -1.5,3.5
- parent: 1
- type: Transform
- - links:
- - 736
- type: DeviceLinkSink
-- proto: SignalButton
- entities:
- - uid: 252
- components:
- - pos: -2.5,14.5
- parent: 1
- type: Transform
- - linkedPorts:
- 265:
- - Pressed: Toggle
- 266:
- - Pressed: Toggle
- 268:
- - Pressed: Toggle
- 264:
- - Pressed: Toggle
- type: DeviceLinkSource
- - uid: 693
- components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,12.5
- parent: 1
- type: Transform
- - linkedPorts:
- 683:
- - Pressed: Toggle
- 191:
- - Pressed: Toggle
- 10:
- - Pressed: Toggle
- type: DeviceLinkSource
- - uid: 711
- components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,12.5
- parent: 1
- type: Transform
- - linkedPorts:
- 240:
- - Pressed: Toggle
- 239:
- - Pressed: Toggle
- 238:
- - Pressed: Toggle
- type: DeviceLinkSource
- - uid: 736
- components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,1.5
- parent: 1
- type: Transform
- - linkedPorts:
- 690:
- - Pressed: DoorBolt
- 735:
- - Pressed: Toggle
- 734:
- - Pressed: Toggle
- 733:
- - Pressed: Toggle
- 732:
- - Pressed: Toggle
- 731:
- - Pressed: Toggle
- 689:
- - Pressed: DoorBolt
- type: DeviceLinkSource
-- proto: SMESBasic
- entities:
- - uid: 167
- components:
- - pos: -0.5,-12.5
- parent: 1
- type: Transform
- - uid: 168
- components:
- - pos: -0.5,-11.5
- parent: 1
- type: Transform
-- proto: soda_dispenser
- entities:
- - uid: 649
- components:
- - pos: -1.5,-3.5
- parent: 1
- type: Transform
-- proto: SolidSecretDoor
- entities:
- - uid: 75
- components:
- - rot: 3.141592653589793 rad
- pos: 0.5,-13.5
- parent: 1
- type: Transform
-- proto: SpawnPointAssistant
- entities:
- - uid: 561
- components:
- - pos: 0.5,15.5
- parent: 1
- type: Transform
- - uid: 672
- components:
- - pos: -0.5,15.5
- parent: 1
- type: Transform
- - uid: 673
- components:
- - pos: 1.5,15.5
- parent: 1
- type: Transform
-- proto: SpawnPointLatejoin
- entities:
- - uid: 674
- components:
- - pos: -0.5,16.5
- parent: 1
- type: Transform
- - uid: 675
- components:
- - pos: 0.5,16.5
- parent: 1
- type: Transform
- - uid: 676
- components:
- - pos: 1.5,16.5
- parent: 1
- type: Transform
-- proto: SubstationBasic
- entities:
- - uid: 171
- components:
- - pos: -1.5,-9.5
- parent: 1
- type: Transform
-- proto: SuitStorageEngi
- entities:
- - uid: 446
- components:
- - pos: 0.5,-5.5
- parent: 1
- type: Transform
- - uid: 447
- components:
- - pos: -1.5,-5.5
- parent: 1
- type: Transform
-- proto: Table
- entities:
- - uid: 723
- components:
- - pos: -0.5,7.5
- parent: 1
- type: Transform
- - uid: 724
- components:
- - pos: 1.5,7.5
- parent: 1
- type: Transform
-- proto: TableCounterMetal
- entities:
- - uid: 592
- components:
- - rot: -1.5707963267948966 rad
- pos: -2.5,0.5
- parent: 1
- type: Transform
- - uid: 593
- components:
- - rot: -1.5707963267948966 rad
- pos: 3.5,0.5
- parent: 1
- type: Transform
- - uid: 631
- components:
- - pos: 2.5,2.5
- parent: 1
- type: Transform
- - uid: 643
- components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,0.5
- parent: 1
- type: Transform
- - uid: 644
- components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,0.5
- parent: 1
- type: Transform
- - uid: 677
- components:
- - pos: -0.5,-3.5
- parent: 1
- type: Transform
- - uid: 678
- components:
- - pos: -1.5,-3.5
- parent: 1
- type: Transform
-- proto: Thruster
- entities:
- - uid: 2
- components:
- - rot: 3.141592653589793 rad
- pos: 0.5,-19.5
- parent: 1
- type: Transform
- - uid: 3
- components:
- - rot: 3.141592653589793 rad
- pos: -0.5,-18.5
- parent: 1
- type: Transform
- - uid: 4
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,-18.5
- parent: 1
- type: Transform
- - uid: 5
- components:
- - rot: 3.141592653589793 rad
- pos: -1.5,-15.5
- parent: 1
- type: Transform
- - uid: 6
- components:
- - rot: 3.141592653589793 rad
- pos: 2.5,-15.5
- parent: 1
- type: Transform
- - uid: 7
- components:
- - rot: 3.141592653589793 rad
- pos: -2.5,-11.5
- parent: 1
- type: Transform
- - uid: 8
- components:
- - rot: 3.141592653589793 rad
- pos: 3.5,-11.5
- parent: 1
- type: Transform
- - uid: 11
- components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,-6.5
- parent: 1
- type: Transform
- - uid: 12
- components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,-6.5
- parent: 1
- type: Transform
- - uid: 13
- components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,-1.5
- parent: 1
- type: Transform
- - uid: 14
- components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,-1.5
- parent: 1
- type: Transform
- - uid: 15
- components:
- - pos: -3.5,15.5
- parent: 1
- type: Transform
- - uid: 16
- components:
- - pos: 4.5,15.5
- parent: 1
- type: Transform
- - uid: 260
- components:
- - pos: 4.5,-9.5
- parent: 1
- type: Transform
- - uid: 261
- components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,-10.5
- parent: 1
- type: Transform
- - uid: 262
- components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,-10.5
- parent: 1
- type: Transform
- - uid: 691
- components:
- - pos: -3.5,-9.5
- parent: 1
- type: Transform
-- proto: TwoWayLever
- entities:
- - uid: 694
- components:
- - pos: -2.5,13.5
- parent: 1
- type: Transform
- - linkedPorts:
- 401:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 407:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 254:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 253:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 267:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 400:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 376:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 269:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 241:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 242:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- type: DeviceLinkSource
-- proto: VendingMachineEngiDrobe
- entities:
- - uid: 629
- components:
- - pos: -2.5,7.5
- parent: 1
- type: Transform
-- proto: VendingMachineSalvage
- entities:
- - uid: 599
- components:
- - pos: -2.5,8.5
- parent: 1
- type: Transform
-- proto: WallReinforced
- entities:
- - uid: 86
- components:
- - pos: -2.5,14.5
- parent: 1
- type: Transform
- - uid: 87
- components:
- - pos: 3.5,18.5
- parent: 1
- type: Transform
- - uid: 88
- components:
- - pos: -2.5,17.5
- parent: 1
- type: Transform
- - uid: 89
- components:
- - pos: -2.5,18.5
- parent: 1
- type: Transform
- - uid: 90
- components:
- - pos: 1.5,-15.5
- parent: 1
- type: Transform
- - uid: 91
- components:
- - pos: -0.5,-15.5
- parent: 1
- type: Transform
- - uid: 100
- components:
- - pos: -1.5,-12.5
- parent: 1
- type: Transform
- - uid: 101
- components:
- - pos: 2.5,-12.5
- parent: 1
- type: Transform
- - uid: 102
- components:
- - pos: 2.5,-13.5
- parent: 1
- type: Transform
- - uid: 103
- components:
- - pos: -1.5,-13.5
- parent: 1
- type: Transform
- - uid: 104
- components:
- - pos: -1.5,-10.5
- parent: 1
- type: Transform
- - uid: 105
- components:
- - pos: -2.5,-10.5
- parent: 1
- type: Transform
- - uid: 106
- components:
- - pos: 2.5,-10.5
- parent: 1
- type: Transform
- - uid: 107
- components:
- - pos: 3.5,-10.5
- parent: 1
- type: Transform
- - uid: 108
- components:
- - pos: -2.5,-9.5
- parent: 1
- type: Transform
- - uid: 109
- components:
- - pos: 3.5,-9.5
- parent: 1
- type: Transform
- - uid: 110
- components:
- - pos: 3.5,-8.5
- parent: 1
- type: Transform
- - uid: 111
- components:
- - pos: -2.5,-8.5
- parent: 1
- type: Transform
- - uid: 112
- components:
- - pos: -2.5,-5.5
- parent: 1
- type: Transform
- - uid: 113
- components:
- - pos: -3.5,-5.5
- parent: 1
- type: Transform
- - uid: 114
- components:
- - pos: 3.5,-5.5
- parent: 1
- type: Transform
- - uid: 115
- components:
- - pos: 4.5,-5.5
- parent: 1
- type: Transform
- - uid: 116
- components:
- - pos: 4.5,-4.5
- parent: 1
- type: Transform
- - uid: 117
- components:
- - pos: 4.5,-3.5
- parent: 1
- type: Transform
- - uid: 120
- components:
- - pos: 4.5,-2.5
- parent: 1
- type: Transform
- - uid: 121
- components:
- - pos: 3.5,-2.5
- parent: 1
- type: Transform
- - uid: 122
- components:
- - pos: -3.5,-2.5
- parent: 1
- type: Transform
- - uid: 123
- components:
- - pos: -3.5,-3.5
- parent: 1
- type: Transform
- - uid: 124
- components:
- - pos: -3.5,-4.5
- parent: 1
- type: Transform
- - uid: 125
- components:
- - pos: -2.5,-2.5
- parent: 1
- type: Transform
- - uid: 126
- components:
- - pos: 4.5,-0.5
- parent: 1
- type: Transform
- - uid: 127
- components:
- - pos: 3.5,-0.5
- parent: 1
- type: Transform
- - uid: 134
- components:
- - pos: -2.5,-0.5
- parent: 1
- type: Transform
- - uid: 135
- components:
- - pos: -3.5,-0.5
- parent: 1
- type: Transform
- - uid: 136
- components:
- - pos: 4.5,0.5
- parent: 1
- type: Transform
- - uid: 137
- components:
- - pos: 4.5,1.5
- parent: 1
- type: Transform
- - uid: 138
- components:
- - pos: 4.5,2.5
- parent: 1
- type: Transform
- - uid: 139
- components:
- - pos: -3.5,0.5
- parent: 1
- type: Transform
- - uid: 140
- components:
- - pos: -3.5,1.5
- parent: 1
- type: Transform
- - uid: 141
- components:
- - pos: -3.5,2.5
- parent: 1
- type: Transform
- - uid: 142
- components:
- - pos: 4.5,6.5
- parent: 1
- type: Transform
- - uid: 143
- components:
- - pos: 4.5,7.5
- parent: 1
- type: Transform
- - uid: 144
- components:
- - pos: 4.5,8.5
- parent: 1
- type: Transform
- - uid: 145
- components:
- - pos: -3.5,6.5
- parent: 1
- type: Transform
- - uid: 149
- components:
- - pos: -3.5,7.5
- parent: 1
- type: Transform
- - uid: 150
- components:
- - pos: -3.5,8.5
- parent: 1
- type: Transform
- - uid: 151
- components:
- - pos: 3.5,14.5
- parent: 1
- type: Transform
- - uid: 152
- components:
- - pos: 3.5,16.5
- parent: 1
- type: Transform
- - uid: 155
- components:
- - pos: 3.5,17.5
- parent: 1
- type: Transform
- - uid: 156
- components:
- - pos: -2.5,16.5
- parent: 1
- type: Transform
- - uid: 157
- components:
- - pos: -3.5,14.5
- parent: 1
- type: Transform
- - uid: 160
- components:
- - pos: 4.5,14.5
- parent: 1
- type: Transform
- - uid: 163
- components:
- - pos: -3.5,12.5
- parent: 1
- type: Transform
- - uid: 164
- components:
- - pos: -3.5,13.5
- parent: 1
- type: Transform
- - uid: 165
- components:
- - pos: 4.5,13.5
- parent: 1
- type: Transform
- - uid: 166
- components:
- - pos: 4.5,12.5
- parent: 1
- type: Transform
- - uid: 397
- components:
- - pos: -1.5,-2.5
- parent: 1
- type: Transform
- - uid: 398
- components:
- - pos: -0.5,-2.5
- parent: 1
- type: Transform
- - uid: 399
- components:
- - pos: 2.5,-2.5
- parent: 1
- type: Transform
- - uid: 685
- components:
- - pos: 1.5,-2.5
- parent: 1
- type: Transform
-- proto: WallSolid
- entities:
- - uid: 72
- components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,-13.5
- parent: 1
- type: Transform
- - uid: 73
- components:
- - rot: -1.5707963267948966 rad
- pos: 1.5,-13.5
- parent: 1
- type: Transform
- - uid: 372
- components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,-6.5
- parent: 1
- type: Transform
- - uid: 373
- components:
- - rot: 1.5707963267948966 rad
- pos: 0.5,-6.5
- parent: 1
- type: Transform
- - uid: 374
- components:
- - rot: 1.5707963267948966 rad
- pos: 1.5,-6.5
- parent: 1
- type: Transform
- - uid: 375
- components:
- - rot: 1.5707963267948966 rad
- pos: 2.5,-6.5
- parent: 1
- type: Transform
-- proto: WarpPointShip
- entities:
- - uid: 543
- components:
- - pos: 0.5,7.5
- parent: 1
- type: Transform
-- proto: WaterTankFull
- entities:
- - uid: 470
- components:
- - anchored: True
- pos: 3.5,12.5
- parent: 1
- type: Transform
- - bodyType: Static
- type: Physics
-- proto: WeaponCapacitorRecharger
- entities:
- - uid: 645
- components:
- - rot: 3.141592653589793 rad
- pos: 2.5,0.5
- parent: 1
- type: Transform
-- proto: WeaponGrapplingGun
- entities:
- - uid: 485
- components:
- - pos: -0.45358524,-3.4684365
- parent: 1
- type: Transform
- - uid: 500
- components:
- - pos: -0.3513549,-3.6559849
- parent: 1
- type: Transform
-- proto: WeldingFuelTankFull
- entities:
- - uid: 476
- components:
- - anchored: True
- pos: 3.5,13.5
- parent: 1
- type: Transform
- - bodyType: Static
- type: Physics
-- proto: Wrench
- entities:
- - uid: 725
- components:
- - rot: -1.5707963267948966 rad
- pos: -0.6402491,7.585286
- parent: 1
- type: Transform
-...
diff --git a/Resources/Maps/Shuttles/investigator.yml b/Resources/Maps/Shuttles/investigator.yml
deleted file mode 100644
index 7d3f40467ebb..000000000000
--- a/Resources/Maps/Shuttles/investigator.yml
+++ /dev/null
@@ -1,4726 +0,0 @@
-meta:
- format: 6
- postmapinit: false
-tilemap:
- 0: Space
- 12: FloorBar
- 27: FloorDark
- 32: FloorDarkMono
- 84: FloorSteel
- 92: FloorSteelMono
- 110: FloorWood
- 112: Lattice
- 113: Plating
-entities:
-- proto: ""
- entities:
- - uid: 2
- components:
- - name: grid
- type: MetaData
- - pos: -2.6107569,3.2554395
- parent: invalid
- type: Transform
- - chunks:
- 0,0:
- ind: 0,0
- tiles: cQAAAAAAXAAAAAADXAAAAAAAXAAAAAABXAAAAAADXAAAAAABcQAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAADXAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAABcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAABcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 0,-1:
- ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAXAAAAAADXAAAAAACXAAAAAAAXAAAAAAAXAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAACXAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- -1,-1:
- ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACGwAAAAACGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAIAAAAAAAGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADGwAAAAABGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAACbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAADDAAAAAABDAAAAAABbgAAAAACbgAAAAAA
- version: 6
- -1,0:
- ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAADAAAAAAADAAAAAADDAAAAAABbgAAAAADbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAADAAAAAADDAAAAAAADAAAAAAAbgAAAAABbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADAAAAAAADAAAAAAADAAAAAABbgAAAAACbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 1,-1:
- ind: 1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 1,0:
- ind: 1,0
- tiles: cAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- type: MapGrid
- - type: Broadphase
- - bodyStatus: InAir
- angularDamping: 0.05
- linearDamping: 0.05
- fixedRotation: False
- bodyType: Dynamic
- type: Physics
- - fixtures: {}
- type: Fixtures
- - type: OccluderTree
- - type: SpreaderGrid
- - type: Shuttle
- - type: GridPathfinding
- - gravityShakeSound: !type:SoundPathSpecifier
- path: /Audio/Effects/alert.ogg
- type: Gravity
- - chunkCollection:
- version: 2
- nodes:
- - node:
- angle: -3.141592653589793 rad
- color: '#FFFFFFFF'
- id: Arrows
- decals:
- 57: 10.79785,0.81085324
- 58: 11.17285,0.81085324
- - node:
- angle: 3.141592653589793 rad
- color: '#FFFFFFFF'
- id: Arrows
- decals:
- 11: 2,-2
- 12: 4,-2
- 13: 3,-2
- 87: 4,5
- 88: 2,5
- - node:
- color: '#FFFFFFFF'
- id: Bot
- decals:
- 0: 2,-1
- 1: 3,-1
- 2: 4,-1
- 3: 1,0
- 4: 5,0
- 66: -5,-5
- 67: -2,-6
- 68: 11,-1
- 69: 11,0
- 70: 3,0
- - node:
- angle: 3.141592653589793 rad
- color: '#FFFFFFFF'
- id: Bot
- decals:
- 7: 2,0
- 8: 4,0
- - node:
- color: '#FFFFFFFF'
- id: BotLeft
- decals:
- 133: -4,-7
- - node:
- color: '#FFFFFFFF'
- id: BotRight
- decals:
- 132: -5,-7
- 134: -3,-7
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkLineE
- decals:
- 63: -3,-7
- 64: -3,-6
- 65: -3,-5
- - node:
- color: '#D4D4D40C'
- id: BrickTileWhiteLineE
- decals:
- 73: 2,2
- 74: 2,5
- 75: 2,2
- 76: 2,5
- - node:
- cleanable: True
- color: '#D4D4D40C'
- id: BrickTileWhiteLineE
- decals:
- 89: 2,4
- 90: 2,4
- - node:
- color: '#D4D4D428'
- id: BrickTileWhiteLineE
- decals:
- 49: 7,-2
- 50: 7,-1
- 51: 7,0
- 52: 7,-2
- 53: 7,-1
- 54: 7,0
- - node:
- color: '#D4D4D40C'
- id: BrickTileWhiteLineW
- decals:
- 71: 4,2
- 72: 4,5
- 77: 4,2
- 78: 4,5
- 79: 4,4
- 80: 4,4
- - node:
- color: '#D4D4D428'
- id: BrickTileWhiteLineW
- decals:
- 55: 11,-2
- 56: 11,-2
- - node:
- color: '#D4D4D428'
- id: CheckerNESW
- decals:
- 14: 1,-3
- 15: 2,-3
- 16: 3,-3
- 17: 5,-3
- 18: 4,-3
- - node:
- color: '#D4D4D40C'
- id: CheckerNWSE
- decals:
- 81: 3,4
- 82: 3,4
- 83: 3,2
- 84: 3,2
- 85: 3,5
- 86: 3,5
- - node:
- color: '#D4D4D428'
- id: CheckerNWSE
- decals:
- 29: 8,0
- 30: 9,0
- 31: 10,0
- 32: 10,-1
- 33: 10,-2
- 34: 9,-2
- 35: 8,-2
- 36: 8,-1
- 37: 9,-1
- 38: 8,-2
- 39: 9,-2
- 40: 10,-2
- 41: 10,-1
- 42: 10,0
- 43: 9,0
- 44: 8,0
- 45: 8,-1
- 46: 9,-1
- - node:
- angle: -3.141592653589793 rad
- color: '#FFFFFFFF'
- id: Delivery
- decals:
- 59: 9,-3
- - node:
- angle: 3.141592653589793 rad
- color: '#FFFFFFFF'
- id: Delivery
- decals:
- 9: 1,-1
- 10: 5,-1
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: DirtHeavy
- decals:
- 97: 5,-2
- 98: 4,-3
- 99: 1,-2
- 100: 2,-3
- 101: 10,1
- 102: 9,0
- 103: 8,1
- 104: 8,-2
- 105: 10,-1
- 106: 11,-2
- 107: 7,2
- 108: -4,-5
- 109: -2,-5
- 110: -1,-5
- 111: -1,-7
- 112: -3,-7
- 113: -3,-6
- 118: 4,5
- 119: 3,4
- 120: 2,4
- 121: 4,2
- 122: 2,2
- 123: -4,0
- 124: -5,1
- 125: -4,2
- 126: -4,1
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: DirtHeavyMonotile
- decals:
- 114: 5,0
- 115: 2,-1
- 116: 2,0
- 117: 4,-1
- 130: 11,0
- 131: 11,-1
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: DirtLight
- decals:
- 127: 10,-7
- 128: 10,-8
- 129: 9,-9
- - node:
- angle: 3.141592653589793 rad
- color: '#FFFFFFFF'
- id: LoadingArea
- decals:
- 5: 5,0
- 6: 1,0
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: WarnLineE
- decals:
- 94: 4,2
- 95: 4,4
- 96: 4,5
- - node:
- color: '#FFFFFFFF'
- id: WarnLineN
- decals:
- 25: 7,-3
- 26: 11,-3
- 47: 8,-3
- 48: 10,-3
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: WarnLineS
- decals:
- 91: 2,2
- 92: 2,4
- 93: 2,5
- - node:
- color: '#FFFFFFFF'
- id: WarnLineW
- decals:
- 27: 8,-7
- 28: 10,-7
- 60: 9,-7
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinCornerSe
- decals:
- 23: -3,-1
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinLineE
- decals:
- 19: -3,0
- 20: -3,1
- 21: -3,2
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinLineN
- decals:
- 24: -5,-1
- 61: -4,-4
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinLineS
- decals:
- 22: -4,-1
- 62: -4,-4
- type: DecalGrid
- - version: 2
- data:
- tiles:
- 0,0:
- 0: 65535
- 1,0:
- 0: 65535
- 0,1:
- 0: 4095
- 1,1:
- 0: 1919
- 2,0:
- 0: 65535
- 2,1:
- 0: 15
- 3,0:
- 0: 4607
- 3,1:
- 0: 1
- 0,-3:
- 0: 4096
- 0,-2:
- 0: 61713
- 0,-1:
- 0: 65535
- 1,-2:
- 0: 64716
- 1,-1:
- 0: 65535
- 1,-3:
- 0: 51200
- 2,-3:
- 0: 65280
- 2,-2:
- 0: 65535
- 2,-1:
- 0: 65535
- 3,-3:
- 0: 4352
- 3,-2:
- 0: 4369
- 3,-1:
- 0: 16369
- -2,-3:
- 0: 52224
- -2,-2:
- 0: 52428
- -2,-1:
- 0: 61436
- -1,-3:
- 0: 65280
- -1,-2:
- 0: 65535
- -1,-1:
- 0: 65535
- -2,0:
- 0: 52479
- -2,1:
- 0: 12
- -1,0:
- 0: 65535
- -1,1:
- 0: 15
- -3,-1:
- 0: 12272
- -3,0:
- 0: 255
- 4,-1:
- 0: 10096
- 4,0:
- 0: 119
- uniqueMixes:
- - volume: 2500
- temperature: 293.15
- moles:
- - 21.824879
- - 82.10312
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- chunkSize: 4
- type: GridAtmosphere
- - type: GasTileOverlay
- - type: RadiationGridResistance
-- proto: AirAlarm
- entities:
- - uid: 251
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,1.5
- parent: 2
- type: Transform
- - ShutdownSubscribers:
- - 228
- - 254
- - 275
- - 309
- type: DeviceNetwork
- - devices:
- - 228
- - 254
- - 275
- - 309
- type: DeviceList
- - uid: 252
- components:
- - rot: -1.5707963267948966 rad
- pos: 0.5,1.5
- parent: 2
- type: Transform
- - ShutdownSubscribers:
- - 229
- - 253
- - 272
- - 308
- - 307
- type: DeviceNetwork
- - devices:
- - 229
- - 253
- - 272
- - 308
- - 307
- type: DeviceList
- - uid: 306
- components:
- - rot: -1.5707963267948966 rad
- pos: 0.5,-4.5
- parent: 2
- type: Transform
- - ShutdownSubscribers:
- - 237
- - 284
- - 289
- - 307
- type: DeviceNetwork
- - devices:
- - 237
- - 284
- - 289
- - 307
- type: DeviceList
-- proto: AirCanister
- entities:
- - uid: 472
- components:
- - anchored: True
- pos: -4.5,-4.5
- parent: 2
- type: Transform
- - bodyType: Static
- type: Physics
-- proto: AirlockCargo
- entities:
- - uid: 110
- components:
- - pos: 0.5,-1.5
- parent: 2
- type: Transform
-- proto: AirlockCommand
- entities:
- - uid: 285
- components:
- - rot: -1.5707963267948966 rad
- pos: -3.5,-3.5
- parent: 2
- type: Transform
-- proto: AirlockExternalGlass
- entities:
- - uid: 692
- components:
- - pos: 2.5,3.5
- parent: 2
- type: Transform
- - uid: 693
- components:
- - pos: 4.5,3.5
- parent: 2
- type: Transform
-- proto: AirlockGlassShuttle
- entities:
- - uid: 444
- components:
- - rot: 3.141592653589793 rad
- pos: 2.5,6.5
- parent: 2
- type: Transform
- - uid: 445
- components:
- - rot: 3.141592653589793 rad
- pos: 4.5,6.5
- parent: 2
- type: Transform
-- proto: AirlockScience
- entities:
- - uid: 111
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,-1.5
- parent: 2
- type: Transform
-- proto: AirlockScienceGlass
- entities:
- - uid: 174
- components:
- - rot: 3.141592653589793 rad
- pos: 9.5,-5.5
- parent: 2
- type: Transform
- - uid: 175
- components:
- - rot: 3.141592653589793 rad
- pos: 9.5,-3.5
- parent: 2
- type: Transform
-- proto: AirSensor
- entities:
- - uid: 253
- components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,0.5
- parent: 2
- type: Transform
- - ShutdownSubscribers:
- - 252
- type: DeviceNetwork
- - uid: 254
- components:
- - rot: -1.5707963267948966 rad
- pos: 7.5,0.5
- parent: 2
- type: Transform
- - ShutdownSubscribers:
- - 251
- type: DeviceNetwork
- - uid: 284
- components:
- - pos: -1.5,-6.5
- parent: 2
- type: Transform
- - ShutdownSubscribers:
- - 306
- type: DeviceNetwork
-- proto: APCBasic
- entities:
- - uid: 334
- components:
- - rot: -1.5707963267948966 rad
- pos: 0.5,2.5
- parent: 2
- type: Transform
- - uid: 335
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,2.5
- parent: 2
- type: Transform
-- proto: AtmosDeviceFanTiny
- entities:
- - uid: 227
- components:
- - rot: 3.141592653589793 rad
- pos: 2.5,-3.5
- parent: 2
- type: Transform
- - uid: 232
- components:
- - rot: 3.141592653589793 rad
- pos: 4.5,-3.5
- parent: 2
- type: Transform
- - uid: 233
- components:
- - rot: 3.141592653589793 rad
- pos: 3.5,-3.5
- parent: 2
- type: Transform
- - uid: 310
- components:
- - rot: -1.5707963267948966 rad
- pos: 9.5,-3.5
- parent: 2
- type: Transform
- - uid: 457
- components:
- - pos: 4.5,6.5
- parent: 2
- type: Transform
- - uid: 458
- components:
- - name: Bolt docks button
- type: MetaData
- - pos: 2.5,6.5
- parent: 2
- type: Transform
-- proto: Autolathe
- entities:
- - uid: 221
- components:
- - pos: 8.5,2.5
- parent: 2
- type: Transform
-- proto: BlastDoor
- entities:
- - uid: 687
- components:
- - pos: 1.5,3.5
- parent: 2
- type: Transform
- - links:
- - 479
- type: DeviceLinkSink
- - uid: 688
- components:
- - pos: 1.5,6.5
- parent: 2
- type: Transform
- - links:
- - 479
- type: DeviceLinkSink
- - uid: 689
- components:
- - pos: 5.5,6.5
- parent: 2
- type: Transform
- - links:
- - 479
- type: DeviceLinkSink
- - uid: 690
- components:
- - pos: 5.5,3.5
- parent: 2
- type: Transform
- - links:
- - 479
- type: DeviceLinkSink
-- proto: BlastDoorOpen
- entities:
- - uid: 88
- components:
- - pos: 2.5,-3.5
- parent: 2
- type: Transform
- - links:
- - 469
- type: DeviceLinkSink
- - uid: 91
- components:
- - pos: 4.5,-3.5
- parent: 2
- type: Transform
- - links:
- - 469
- type: DeviceLinkSink
- - uid: 172
- components:
- - pos: 7.5,-7.5
- parent: 2
- type: Transform
- - links:
- - 198
- type: DeviceLinkSink
- - uid: 467
- components:
- - pos: 3.5,-3.5
- parent: 2
- type: Transform
- - links:
- - 469
- type: DeviceLinkSink
-- proto: BoozeDispenser
- entities:
- - uid: 42
- components:
- - pos: -4.5,2.5
- parent: 2
- type: Transform
-- proto: CableApcExtension
- entities:
- - uid: 7
- components:
- - pos: 3.5,0.5
- parent: 2
- type: Transform
- - uid: 17
- components:
- - pos: 3.5,-0.5
- parent: 2
- type: Transform
- - uid: 365
- components:
- - pos: 0.5,2.5
- parent: 2
- type: Transform
- - uid: 366
- components:
- - pos: -0.5,2.5
- parent: 2
- type: Transform
- - uid: 367
- components:
- - pos: -1.5,2.5
- parent: 2
- type: Transform
- - uid: 368
- components:
- - pos: -3.5,2.5
- parent: 2
- type: Transform
- - uid: 369
- components:
- - pos: -2.5,2.5
- parent: 2
- type: Transform
- - uid: 370
- components:
- - pos: -4.5,2.5
- parent: 2
- type: Transform
- - uid: 371
- components:
- - pos: -1.5,1.5
- parent: 2
- type: Transform
- - uid: 372
- components:
- - pos: -1.5,0.5
- parent: 2
- type: Transform
- - uid: 373
- components:
- - pos: -1.5,-0.5
- parent: 2
- type: Transform
- - uid: 374
- components:
- - pos: -1.5,-1.5
- parent: 2
- type: Transform
- - uid: 375
- components:
- - pos: -1.5,-2.5
- parent: 2
- type: Transform
- - uid: 376
- components:
- - pos: -2.5,-2.5
- parent: 2
- type: Transform
- - uid: 377
- components:
- - pos: -3.5,-2.5
- parent: 2
- type: Transform
- - uid: 378
- components:
- - pos: -4.5,-2.5
- parent: 2
- type: Transform
- - uid: 379
- components:
- - pos: -0.5,-1.5
- parent: 2
- type: Transform
- - uid: 380
- components:
- - pos: 0.5,-1.5
- parent: 2
- type: Transform
- - uid: 381
- components:
- - pos: 1.5,-1.5
- parent: 2
- type: Transform
- - uid: 382
- components:
- - pos: 2.5,-1.5
- parent: 2
- type: Transform
- - uid: 383
- components:
- - pos: 3.5,1.5
- parent: 2
- type: Transform
- - uid: 384
- components:
- - pos: 5.5,-1.5
- parent: 2
- type: Transform
- - uid: 385
- components:
- - pos: 3.5,-1.5
- parent: 2
- type: Transform
- - uid: 386
- components:
- - pos: 6.5,-1.5
- parent: 2
- type: Transform
- - uid: 387
- components:
- - pos: 7.5,-1.5
- parent: 2
- type: Transform
- - uid: 388
- components:
- - pos: 7.5,-0.5
- parent: 2
- type: Transform
- - uid: 389
- components:
- - pos: 7.5,0.5
- parent: 2
- type: Transform
- - uid: 390
- components:
- - pos: 7.5,1.5
- parent: 2
- type: Transform
- - uid: 391
- components:
- - pos: 8.5,1.5
- parent: 2
- type: Transform
- - uid: 392
- components:
- - pos: 9.5,1.5
- parent: 2
- type: Transform
- - uid: 393
- components:
- - pos: 10.5,1.5
- parent: 2
- type: Transform
- - uid: 394
- components:
- - pos: 11.5,1.5
- parent: 2
- type: Transform
- - uid: 395
- components:
- - pos: 7.5,-2.5
- parent: 2
- type: Transform
- - uid: 396
- components:
- - pos: 8.5,-2.5
- parent: 2
- type: Transform
- - uid: 397
- components:
- - pos: 9.5,-2.5
- parent: 2
- type: Transform
- - uid: 398
- components:
- - pos: 10.5,-2.5
- parent: 2
- type: Transform
- - uid: 399
- components:
- - pos: 11.5,-2.5
- parent: 2
- type: Transform
- - uid: 400
- components:
- - pos: 9.5,-3.5
- parent: 2
- type: Transform
- - uid: 401
- components:
- - pos: 9.5,-4.5
- parent: 2
- type: Transform
- - uid: 402
- components:
- - pos: 9.5,-5.5
- parent: 2
- type: Transform
- - uid: 403
- components:
- - pos: 9.5,-6.5
- parent: 2
- type: Transform
- - uid: 404
- components:
- - pos: 9.5,-7.5
- parent: 2
- type: Transform
- - uid: 405
- components:
- - pos: -3.5,-3.5
- parent: 2
- type: Transform
- - uid: 406
- components:
- - pos: -3.5,-4.5
- parent: 2
- type: Transform
- - uid: 407
- components:
- - pos: -3.5,-5.5
- parent: 2
- type: Transform
- - uid: 408
- components:
- - pos: -3.5,-6.5
- parent: 2
- type: Transform
- - uid: 409
- components:
- - pos: -2.5,-5.5
- parent: 2
- type: Transform
- - uid: 410
- components:
- - pos: -1.5,-5.5
- parent: 2
- type: Transform
- - uid: 411
- components:
- - pos: -0.5,-5.5
- parent: 2
- type: Transform
- - uid: 412
- components:
- - pos: -3.5,-7.5
- parent: 2
- type: Transform
- - uid: 413
- components:
- - pos: -3.5,-8.5
- parent: 2
- type: Transform
- - uid: 414
- components:
- - pos: -4.5,-8.5
- parent: 2
- type: Transform
- - uid: 415
- components:
- - pos: -5.5,-8.5
- parent: 2
- type: Transform
- - uid: 416
- components:
- - pos: -5.5,-9.5
- parent: 2
- type: Transform
- - uid: 417
- components:
- - pos: 3.5,-2.5
- parent: 2
- type: Transform
- - uid: 418
- components:
- - pos: 3.5,-3.5
- parent: 2
- type: Transform
- - uid: 419
- components:
- - pos: 3.5,-4.5
- parent: 2
- type: Transform
- - uid: 420
- components:
- - pos: 2.5,-4.5
- parent: 2
- type: Transform
- - uid: 421
- components:
- - pos: 1.5,-4.5
- parent: 2
- type: Transform
- - uid: 422
- components:
- - pos: 4.5,-4.5
- parent: 2
- type: Transform
- - uid: 423
- components:
- - pos: 5.5,-4.5
- parent: 2
- type: Transform
- - uid: 424
- components:
- - pos: 10.5,-4.5
- parent: 2
- type: Transform
- - uid: 425
- components:
- - pos: 11.5,-4.5
- parent: 2
- type: Transform
- - uid: 426
- components:
- - pos: 12.5,-4.5
- parent: 2
- type: Transform
- - uid: 427
- components:
- - pos: 12.5,-5.5
- parent: 2
- type: Transform
- - uid: 428
- components:
- - pos: 12.5,-6.5
- parent: 2
- type: Transform
- - uid: 429
- components:
- - pos: 12.5,-7.5
- parent: 2
- type: Transform
- - uid: 430
- components:
- - pos: 12.5,-8.5
- parent: 2
- type: Transform
- - uid: 431
- components:
- - pos: 12.5,-9.5
- parent: 2
- type: Transform
- - uid: 432
- components:
- - pos: 9.5,2.5
- parent: 2
- type: Transform
- - uid: 433
- components:
- - pos: 9.5,3.5
- parent: 2
- type: Transform
- - uid: 434
- components:
- - pos: 9.5,4.5
- parent: 2
- type: Transform
- - uid: 435
- components:
- - pos: 10.5,4.5
- parent: 2
- type: Transform
- - uid: 436
- components:
- - pos: 11.5,4.5
- parent: 2
- type: Transform
- - uid: 437
- components:
- - pos: 12.5,4.5
- parent: 2
- type: Transform
- - uid: 438
- components:
- - pos: -2.5,3.5
- parent: 2
- type: Transform
- - uid: 439
- components:
- - pos: -2.5,4.5
- parent: 2
- type: Transform
- - uid: 440
- components:
- - pos: -3.5,4.5
- parent: 2
- type: Transform
- - uid: 441
- components:
- - pos: -5.5,4.5
- parent: 2
- type: Transform
- - uid: 442
- components:
- - pos: -4.5,4.5
- parent: 2
- type: Transform
- - uid: 462
- components:
- - pos: 4.5,4.5
- parent: 2
- type: Transform
- - uid: 463
- components:
- - pos: 3.5,2.5
- parent: 2
- type: Transform
- - uid: 465
- components:
- - pos: 3.5,4.5
- parent: 2
- type: Transform
- - uid: 466
- components:
- - pos: 3.5,5.5
- parent: 2
- type: Transform
- - uid: 488
- components:
- - pos: 7.5,2.5
- parent: 2
- type: Transform
- - uid: 490
- components:
- - pos: 6.5,2.5
- parent: 2
- type: Transform
- - uid: 677
- components:
- - pos: -0.5,-4.5
- parent: 2
- type: Transform
- - uid: 678
- components:
- - pos: -0.5,-6.5
- parent: 2
- type: Transform
- - uid: 679
- components:
- - pos: 4.5,3.5
- parent: 2
- type: Transform
- - uid: 680
- components:
- - pos: 4.5,2.5
- parent: 2
- type: Transform
- - uid: 681
- components:
- - pos: 2.5,4.5
- parent: 2
- type: Transform
- - uid: 682
- components:
- - pos: 2.5,3.5
- parent: 2
- type: Transform
- - uid: 683
- components:
- - pos: 2.5,2.5
- parent: 2
- type: Transform
- - uid: 695
- components:
- - pos: -4.5,-0.5
- parent: 2
- type: Transform
- - uid: 696
- components:
- - pos: -4.5,-1.5
- parent: 2
- type: Transform
- - uid: 697
- components:
- - pos: 11.5,-0.5
- parent: 2
- type: Transform
- - uid: 698
- components:
- - pos: 11.5,-1.5
- parent: 2
- type: Transform
-- proto: CableHV
- entities:
- - uid: 170
- components:
- - pos: -4.5,-6.5
- parent: 2
- type: Transform
- - uid: 226
- components:
- - pos: -3.5,-6.5
- parent: 2
- type: Transform
- - uid: 311
- components:
- - pos: -4.5,-8.5
- parent: 2
- type: Transform
- - uid: 312
- components:
- - pos: -3.5,-8.5
- parent: 2
- type: Transform
- - uid: 313
- components:
- - pos: -2.5,-8.5
- parent: 2
- type: Transform
- - uid: 314
- components:
- - pos: -1.5,-8.5
- parent: 2
- type: Transform
- - uid: 315
- components:
- - pos: -0.5,-8.5
- parent: 2
- type: Transform
- - uid: 316
- components:
- - pos: -0.5,-9.5
- parent: 2
- type: Transform
- - uid: 317
- components:
- - pos: -1.5,-9.5
- parent: 2
- type: Transform
- - uid: 318
- components:
- - pos: -2.5,-9.5
- parent: 2
- type: Transform
- - uid: 319
- components:
- - pos: -3.5,-9.5
- parent: 2
- type: Transform
- - uid: 320
- components:
- - pos: -4.5,-9.5
- parent: 2
- type: Transform
- - uid: 321
- components:
- - pos: 0.5,-8.5
- parent: 2
- type: Transform
- - uid: 322
- components:
- - pos: -4.5,-5.5
- parent: 2
- type: Transform
- - uid: 324
- components:
- - pos: -3.5,-7.5
- parent: 2
- type: Transform
- - uid: 507
- components:
- - pos: -2.5,4.5
- parent: 2
- type: Transform
- - uid: 508
- components:
- - pos: -1.5,4.5
- parent: 2
- type: Transform
- - uid: 509
- components:
- - pos: -0.5,4.5
- parent: 2
- type: Transform
- - uid: 510
- components:
- - pos: 7.5,4.5
- parent: 2
- type: Transform
- - uid: 511
- components:
- - pos: 8.5,4.5
- parent: 2
- type: Transform
- - uid: 512
- components:
- - pos: 9.5,4.5
- parent: 2
- type: Transform
- - uid: 513
- components:
- - pos: 12.5,-7.5
- parent: 2
- type: Transform
- - uid: 514
- components:
- - pos: 12.5,-6.5
- parent: 2
- type: Transform
- - uid: 515
- components:
- - pos: 12.5,-5.5
- parent: 2
- type: Transform
- - uid: 516
- components:
- - pos: 12.5,-4.5
- parent: 2
- type: Transform
- - uid: 517
- components:
- - pos: -2.5,-6.5
- parent: 2
- type: Transform
- - uid: 518
- components:
- - pos: -2.5,-5.5
- parent: 2
- type: Transform
- - uid: 519
- components:
- - pos: -2.5,-4.5
- parent: 2
- type: Transform
- - uid: 520
- components:
- - pos: -3.5,-4.5
- parent: 2
- type: Transform
- - uid: 521
- components:
- - pos: -3.5,-3.5
- parent: 2
- type: Transform
- - uid: 522
- components:
- - pos: -3.5,-2.5
- parent: 2
- type: Transform
- - uid: 523
- components:
- - pos: -3.5,-1.5
- parent: 2
- type: Transform
- - uid: 524
- components:
- - pos: -2.5,-1.5
- parent: 2
- type: Transform
- - uid: 525
- components:
- - pos: -1.5,-1.5
- parent: 2
- type: Transform
- - uid: 526
- components:
- - pos: -0.5,-1.5
- parent: 2
- type: Transform
- - uid: 527
- components:
- - pos: 0.5,-1.5
- parent: 2
- type: Transform
- - uid: 528
- components:
- - pos: 1.5,-1.5
- parent: 2
- type: Transform
- - uid: 529
- components:
- - pos: 2.5,-1.5
- parent: 2
- type: Transform
- - uid: 530
- components:
- - pos: 3.5,-1.5
- parent: 2
- type: Transform
- - uid: 531
- components:
- - pos: 4.5,-1.5
- parent: 2
- type: Transform
- - uid: 532
- components:
- - pos: 5.5,-1.5
- parent: 2
- type: Transform
- - uid: 533
- components:
- - pos: 6.5,-1.5
- parent: 2
- type: Transform
- - uid: 534
- components:
- - pos: 7.5,-1.5
- parent: 2
- type: Transform
- - uid: 535
- components:
- - pos: 8.5,-1.5
- parent: 2
- type: Transform
- - uid: 536
- components:
- - pos: 9.5,-1.5
- parent: 2
- type: Transform
- - uid: 537
- components:
- - pos: 9.5,-2.5
- parent: 2
- type: Transform
- - uid: 538
- components:
- - pos: 9.5,-3.5
- parent: 2
- type: Transform
- - uid: 539
- components:
- - pos: 9.5,-4.5
- parent: 2
- type: Transform
- - uid: 540
- components:
- - pos: 10.5,-4.5
- parent: 2
- type: Transform
- - uid: 541
- components:
- - pos: 11.5,-4.5
- parent: 2
- type: Transform
- - uid: 542
- components:
- - pos: 7.5,3.5
- parent: 2
- type: Transform
- - uid: 543
- components:
- - pos: 7.5,2.5
- parent: 2
- type: Transform
- - uid: 544
- components:
- - pos: 7.5,1.5
- parent: 2
- type: Transform
- - uid: 545
- components:
- - pos: 7.5,0.5
- parent: 2
- type: Transform
- - uid: 546
- components:
- - pos: 7.5,-0.5
- parent: 2
- type: Transform
- - uid: 547
- components:
- - pos: -0.5,3.5
- parent: 2
- type: Transform
- - uid: 548
- components:
- - pos: -0.5,2.5
- parent: 2
- type: Transform
- - uid: 549
- components:
- - pos: -0.5,1.5
- parent: 2
- type: Transform
- - uid: 550
- components:
- - pos: -0.5,0.5
- parent: 2
- type: Transform
- - uid: 551
- components:
- - pos: -0.5,-0.5
- parent: 2
- type: Transform
- - uid: 620
- components:
- - pos: -11.5,-1.5
- parent: 2
- type: Transform
- - uid: 621
- components:
- - pos: -11.5,-2.5
- parent: 2
- type: Transform
- - uid: 622
- components:
- - pos: -10.5,-1.5
- parent: 2
- type: Transform
- - uid: 623
- components:
- - pos: -10.5,-2.5
- parent: 2
- type: Transform
- - uid: 624
- components:
- - pos: -9.5,-1.5
- parent: 2
- type: Transform
- - uid: 625
- components:
- - pos: -9.5,-2.5
- parent: 2
- type: Transform
- - uid: 626
- components:
- - pos: -8.5,-1.5
- parent: 2
- type: Transform
- - uid: 627
- components:
- - pos: -8.5,-2.5
- parent: 2
- type: Transform
- - uid: 628
- components:
- - pos: -7.5,-1.5
- parent: 2
- type: Transform
- - uid: 629
- components:
- - pos: -7.5,-2.5
- parent: 2
- type: Transform
- - uid: 630
- components:
- - pos: -6.5,-1.5
- parent: 2
- type: Transform
- - uid: 631
- components:
- - pos: -6.5,-2.5
- parent: 2
- type: Transform
- - uid: 632
- components:
- - pos: -6.5,1.5
- parent: 2
- type: Transform
- - uid: 633
- components:
- - pos: -6.5,0.5
- parent: 2
- type: Transform
- - uid: 634
- components:
- - pos: -7.5,1.5
- parent: 2
- type: Transform
- - uid: 635
- components:
- - pos: -7.5,0.5
- parent: 2
- type: Transform
- - uid: 636
- components:
- - pos: -8.5,1.5
- parent: 2
- type: Transform
- - uid: 637
- components:
- - pos: -8.5,0.5
- parent: 2
- type: Transform
- - uid: 638
- components:
- - pos: -9.5,1.5
- parent: 2
- type: Transform
- - uid: 639
- components:
- - pos: -9.5,0.5
- parent: 2
- type: Transform
- - uid: 640
- components:
- - pos: -10.5,1.5
- parent: 2
- type: Transform
- - uid: 641
- components:
- - pos: -10.5,0.5
- parent: 2
- type: Transform
- - uid: 642
- components:
- - pos: -11.5,1.5
- parent: 2
- type: Transform
- - uid: 643
- components:
- - pos: -11.5,0.5
- parent: 2
- type: Transform
- - uid: 644
- components:
- - pos: 13.5,1.5
- parent: 2
- type: Transform
- - uid: 645
- components:
- - pos: 13.5,0.5
- parent: 2
- type: Transform
- - uid: 646
- components:
- - pos: 14.5,1.5
- parent: 2
- type: Transform
- - uid: 647
- components:
- - pos: 14.5,0.5
- parent: 2
- type: Transform
- - uid: 648
- components:
- - pos: 15.5,1.5
- parent: 2
- type: Transform
- - uid: 649
- components:
- - pos: 15.5,0.5
- parent: 2
- type: Transform
- - uid: 650
- components:
- - pos: 16.5,1.5
- parent: 2
- type: Transform
- - uid: 651
- components:
- - pos: 16.5,0.5
- parent: 2
- type: Transform
- - uid: 652
- components:
- - pos: 17.5,1.5
- parent: 2
- type: Transform
- - uid: 653
- components:
- - pos: 17.5,0.5
- parent: 2
- type: Transform
- - uid: 654
- components:
- - pos: 18.5,1.5
- parent: 2
- type: Transform
- - uid: 655
- components:
- - pos: 18.5,0.5
- parent: 2
- type: Transform
- - uid: 656
- components:
- - pos: 18.5,-1.5
- parent: 2
- type: Transform
- - uid: 657
- components:
- - pos: 18.5,-2.5
- parent: 2
- type: Transform
- - uid: 658
- components:
- - pos: 17.5,-1.5
- parent: 2
- type: Transform
- - uid: 659
- components:
- - pos: 17.5,-2.5
- parent: 2
- type: Transform
- - uid: 660
- components:
- - pos: 16.5,-1.5
- parent: 2
- type: Transform
- - uid: 661
- components:
- - pos: 16.5,-2.5
- parent: 2
- type: Transform
- - uid: 662
- components:
- - pos: 15.5,-1.5
- parent: 2
- type: Transform
- - uid: 663
- components:
- - pos: 15.5,-2.5
- parent: 2
- type: Transform
- - uid: 664
- components:
- - pos: 14.5,-1.5
- parent: 2
- type: Transform
- - uid: 665
- components:
- - pos: 14.5,-2.5
- parent: 2
- type: Transform
- - uid: 666
- components:
- - pos: 13.5,-1.5
- parent: 2
- type: Transform
- - uid: 667
- components:
- - pos: 13.5,-2.5
- parent: 2
- type: Transform
- - uid: 668
- components:
- - pos: 13.5,-0.5
- parent: 2
- type: Transform
- - uid: 669
- components:
- - pos: 17.5,-0.5
- parent: 2
- type: Transform
- - uid: 670
- components:
- - pos: 10.5,-1.5
- parent: 2
- type: Transform
- - uid: 671
- components:
- - pos: 11.5,-1.5
- parent: 2
- type: Transform
- - uid: 672
- components:
- - pos: -6.5,-0.5
- parent: 2
- type: Transform
- - uid: 673
- components:
- - pos: -10.5,-0.5
- parent: 2
- type: Transform
- - uid: 674
- components:
- - pos: -5.5,-1.5
- parent: 2
- type: Transform
- - uid: 675
- components:
- - pos: -4.5,-1.5
- parent: 2
- type: Transform
- - uid: 676
- components:
- - pos: -1.5,-6.5
- parent: 2
- type: Transform
-- proto: CableMV
- entities:
- - uid: 336
- components:
- - pos: 6.5,2.5
- parent: 2
- type: Transform
- - uid: 337
- components:
- - pos: 7.5,2.5
- parent: 2
- type: Transform
- - uid: 338
- components:
- - pos: 8.5,2.5
- parent: 2
- type: Transform
- - uid: 339
- components:
- - pos: 8.5,1.5
- parent: 2
- type: Transform
- - uid: 340
- components:
- - pos: 8.5,0.5
- parent: 2
- type: Transform
- - uid: 341
- components:
- - pos: 8.5,-0.5
- parent: 2
- type: Transform
- - uid: 342
- components:
- - pos: 8.5,-1.5
- parent: 2
- type: Transform
- - uid: 343
- components:
- - pos: 7.5,-1.5
- parent: 2
- type: Transform
- - uid: 344
- components:
- - pos: 6.5,-1.5
- parent: 2
- type: Transform
- - uid: 345
- components:
- - pos: 5.5,-1.5
- parent: 2
- type: Transform
- - uid: 346
- components:
- - pos: 4.5,-1.5
- parent: 2
- type: Transform
- - uid: 347
- components:
- - pos: 3.5,-1.5
- parent: 2
- type: Transform
- - uid: 348
- components:
- - pos: 2.5,-1.5
- parent: 2
- type: Transform
- - uid: 349
- components:
- - pos: 1.5,-1.5
- parent: 2
- type: Transform
- - uid: 350
- components:
- - pos: 0.5,-1.5
- parent: 2
- type: Transform
- - uid: 351
- components:
- - pos: -0.5,-1.5
- parent: 2
- type: Transform
- - uid: 352
- components:
- - pos: -3.5,-3.5
- parent: 2
- type: Transform
- - uid: 353
- components:
- - pos: -3.5,-2.5
- parent: 2
- type: Transform
- - uid: 354
- components:
- - pos: -3.5,-1.5
- parent: 2
- type: Transform
- - uid: 355
- components:
- - pos: -2.5,-1.5
- parent: 2
- type: Transform
- - uid: 356
- components:
- - pos: -1.5,-1.5
- parent: 2
- type: Transform
- - uid: 357
- components:
- - pos: -3.5,-4.5
- parent: 2
- type: Transform
- - uid: 358
- components:
- - pos: -3.5,-5.5
- parent: 2
- type: Transform
- - uid: 359
- components:
- - pos: -4.5,-5.5
- parent: 2
- type: Transform
- - uid: 360
- components:
- - pos: 0.5,2.5
- parent: 2
- type: Transform
- - uid: 361
- components:
- - pos: -0.5,2.5
- parent: 2
- type: Transform
- - uid: 362
- components:
- - pos: -0.5,1.5
- parent: 2
- type: Transform
- - uid: 363
- components:
- - pos: -0.5,0.5
- parent: 2
- type: Transform
- - uid: 364
- components:
- - pos: -0.5,-0.5
- parent: 2
- type: Transform
-- proto: CableTerminal
- entities:
- - uid: 99
- components:
- - rot: -1.5707963267948966 rad
- pos: -3.5,-6.5
- parent: 2
- type: Transform
-- proto: CarpetBlack
- entities:
- - uid: 483
- components:
- - pos: -1.5,-0.5
- parent: 2
- type: Transform
- - uid: 484
- components:
- - pos: -1.5,0.5
- parent: 2
- type: Transform
- - uid: 485
- components:
- - pos: -1.5,1.5
- parent: 2
- type: Transform
- - uid: 486
- components:
- - pos: -1.5,2.5
- parent: 2
- type: Transform
-- proto: Catwalk
- entities:
- - uid: 15
- components:
- - pos: 4.5,1.5
- parent: 2
- type: Transform
- - uid: 16
- components:
- - pos: 3.5,1.5
- parent: 2
- type: Transform
- - uid: 32
- components:
- - pos: 2.5,-3.5
- parent: 2
- type: Transform
- - uid: 33
- components:
- - pos: 3.5,-3.5
- parent: 2
- type: Transform
- - uid: 34
- components:
- - pos: 4.5,-3.5
- parent: 2
- type: Transform
- - uid: 167
- components:
- - rot: -1.5707963267948966 rad
- pos: 7.5,-4.5
- parent: 2
- type: Transform
- - uid: 168
- components:
- - rot: -1.5707963267948966 rad
- pos: 9.5,-4.5
- parent: 2
- type: Transform
- - uid: 169
- components:
- - rot: -1.5707963267948966 rad
- pos: 11.5,-4.5
- parent: 2
- type: Transform
- - uid: 171
- components:
- - rot: -1.5707963267948966 rad
- pos: 10.5,-4.5
- parent: 2
- type: Transform
- - uid: 197
- components:
- - pos: 2.5,1.5
- parent: 2
- type: Transform
- - uid: 208
- components:
- - rot: 1.5707963267948966 rad
- pos: 7.5,-7.5
- parent: 2
- type: Transform
- - uid: 258
- components:
- - rot: -1.5707963267948966 rad
- pos: 10.5,4.5
- parent: 2
- type: Transform
- - uid: 259
- components:
- - rot: -1.5707963267948966 rad
- pos: 11.5,4.5
- parent: 2
- type: Transform
- - uid: 260
- components:
- - rot: -1.5707963267948966 rad
- pos: 12.5,4.5
- parent: 2
- type: Transform
- - uid: 261
- components:
- - rot: -1.5707963267948966 rad
- pos: -5.5,4.5
- parent: 2
- type: Transform
- - uid: 262
- components:
- - rot: -1.5707963267948966 rad
- pos: -3.5,4.5
- parent: 2
- type: Transform
- - uid: 263
- components:
- - rot: -1.5707963267948966 rad
- pos: -4.5,4.5
- parent: 2
- type: Transform
- - uid: 264
- components:
- - rot: -1.5707963267948966 rad
- pos: -5.5,-8.5
- parent: 2
- type: Transform
- - uid: 265
- components:
- - rot: -1.5707963267948966 rad
- pos: -5.5,-9.5
- parent: 2
- type: Transform
- - uid: 266
- components:
- - rot: -1.5707963267948966 rad
- pos: 12.5,-8.5
- parent: 2
- type: Transform
- - uid: 267
- components:
- - rot: -1.5707963267948966 rad
- pos: 12.5,-9.5
- parent: 2
- type: Transform
- - uid: 552
- components:
- - pos: -10.5,1.5
- parent: 2
- type: Transform
- - uid: 553
- components:
- - pos: -10.5,0.5
- parent: 2
- type: Transform
- - uid: 554
- components:
- - pos: -10.5,-0.5
- parent: 2
- type: Transform
- - uid: 555
- components:
- - pos: -10.5,-1.5
- parent: 2
- type: Transform
- - uid: 556
- components:
- - pos: -10.5,-2.5
- parent: 2
- type: Transform
- - uid: 557
- components:
- - pos: -6.5,1.5
- parent: 2
- type: Transform
- - uid: 558
- components:
- - pos: -6.5,0.5
- parent: 2
- type: Transform
- - uid: 559
- components:
- - pos: -6.5,-0.5
- parent: 2
- type: Transform
- - uid: 560
- components:
- - pos: -6.5,-1.5
- parent: 2
- type: Transform
- - uid: 561
- components:
- - pos: -6.5,-2.5
- parent: 2
- type: Transform
- - uid: 562
- components:
- - pos: 13.5,1.5
- parent: 2
- type: Transform
- - uid: 563
- components:
- - pos: 13.5,0.5
- parent: 2
- type: Transform
- - uid: 564
- components:
- - pos: 13.5,-0.5
- parent: 2
- type: Transform
- - uid: 565
- components:
- - pos: 13.5,-1.5
- parent: 2
- type: Transform
- - uid: 566
- components:
- - pos: 13.5,-2.5
- parent: 2
- type: Transform
- - uid: 567
- components:
- - pos: 17.5,1.5
- parent: 2
- type: Transform
- - uid: 568
- components:
- - pos: 17.5,0.5
- parent: 2
- type: Transform
- - uid: 569
- components:
- - pos: 17.5,-0.5
- parent: 2
- type: Transform
- - uid: 570
- components:
- - pos: 17.5,-1.5
- parent: 2
- type: Transform
- - uid: 571
- components:
- - pos: 17.5,-2.5
- parent: 2
- type: Transform
-- proto: ChairOfficeLight
- entities:
- - uid: 216
- components:
- - pos: 10.5,-1.5
- parent: 2
- type: Transform
- - uid: 217
- components:
- - pos: 11.5,-1.5
- parent: 2
- type: Transform
-- proto: ChairPilotSeat
- entities:
- - uid: 269
- components:
- - rot: 3.141592653589793 rad
- pos: -1.5,-5.5
- parent: 2
- type: Transform
-- proto: ClothingNeckScarfStripedPurple
- entities:
- - uid: 473
- components:
- - pos: 10.471153,-1.6616642
- parent: 2
- type: Transform
-- proto: ComputerAnalysisConsole
- entities:
- - uid: 210
- components:
- - rot: 3.141592653589793 rad
- pos: 10.5,-2.5
- parent: 2
- type: Transform
-- proto: ComputerRadar
- entities:
- - uid: 271
- components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,-5.5
- parent: 2
- type: Transform
-- proto: ComputerResearchAndDevelopment
- entities:
- - uid: 196
- components:
- - rot: 3.141592653589793 rad
- pos: 11.5,-2.5
- parent: 2
- type: Transform
-- proto: ComputerShuttle
- entities:
- - uid: 487
- components:
- - pos: -1.5,-4.5
- parent: 2
- type: Transform
-- proto: ComputerSolarControl
- entities:
- - uid: 327
- components:
- - rot: 3.141592653589793 rad
- pos: -1.5,-6.5
- parent: 2
- type: Transform
-- proto: ComputerWallmountWithdrawBankATM
- entities:
- - uid: 333
- components:
- - rot: 3.141592653589793 rad
- pos: 0.5,0.5
- parent: 2
- type: Transform
- - containers:
- board: !type:Container
- ents: []
- bank-ATM-cashSlot: !type:ContainerSlot {}
- type: ContainerContainer
- - type: ItemSlots
-- proto: ConveyorBelt
- entities:
- - uid: 3
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,1.5
- parent: 2
- type: Transform
- - links:
- - 18
- type: DeviceLinkSink
- - uid: 4
- components:
- - rot: 3.141592653589793 rad
- pos: 5.5,1.5
- parent: 2
- type: Transform
- - links:
- - 18
- type: DeviceLinkSink
- - uid: 5
- components:
- - rot: 3.141592653589793 rad
- pos: 5.5,2.5
- parent: 2
- type: Transform
- - links:
- - 18
- type: DeviceLinkSink
- - uid: 6
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,2.5
- parent: 2
- type: Transform
- - links:
- - 18
- type: DeviceLinkSink
- - uid: 447
- components:
- - rot: 3.141592653589793 rad
- pos: 5.5,3.5
- parent: 2
- type: Transform
- - links:
- - 18
- type: DeviceLinkSink
- - uid: 448
- components:
- - rot: 3.141592653589793 rad
- pos: 5.5,4.5
- parent: 2
- type: Transform
- - links:
- - 18
- type: DeviceLinkSink
- - uid: 449
- components:
- - rot: 3.141592653589793 rad
- pos: 5.5,5.5
- parent: 2
- type: Transform
- - links:
- - 18
- type: DeviceLinkSink
- - uid: 450
- components:
- - rot: 3.141592653589793 rad
- pos: 5.5,6.5
- parent: 2
- type: Transform
- - uid: 451
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,6.5
- parent: 2
- type: Transform
- - uid: 452
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,5.5
- parent: 2
- type: Transform
- - links:
- - 18
- type: DeviceLinkSink
- - uid: 453
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,4.5
- parent: 2
- type: Transform
- - links:
- - 18
- type: DeviceLinkSink
- - uid: 454
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,3.5
- parent: 2
- type: Transform
- - links:
- - 18
- type: DeviceLinkSink
-- proto: CrateArtifactContainer
- entities:
- - uid: 98
- components:
- - pos: 5.5,-0.5
- parent: 2
- type: Transform
-- proto: CrateMaterialPlasma
- entities:
- - uid: 325
- components:
- - pos: 2.5,-0.5
- parent: 2
- type: Transform
-- proto: Crowbar
- entities:
- - uid: 209
- components:
- - pos: 8.249144,-2.3469086
- parent: 2
- type: Transform
-- proto: DefibrillatorCabinetFilled
- entities:
- - uid: 495
- components:
- - rot: 1.5707963267948966 rad
- pos: -5.5,-1.5
- parent: 2
- type: Transform
-- proto: DonkpocketBoxSpawner
- entities:
- - uid: 330
- components:
- - pos: 7.5,-2.5
- parent: 2
- type: Transform
-- proto: DrinkGlass
- entities:
- - uid: 107
- components:
- - pos: -2.845461,2.488087
- parent: 2
- type: Transform
- - uid: 108
- components:
- - pos: -2.720461,2.331837
- parent: 2
- type: Transform
-- proto: ExtinguisherCabinetFilled
- entities:
- - uid: 496
- components:
- - pos: 12.5,-1.5
- parent: 2
- type: Transform
-- proto: FaxMachineShip
- entities:
- - uid: 703
- components:
- - pos: -2.5,-4.5
- parent: 2
- type: Transform
-- proto: Firelock
- entities:
- - uid: 307
- components:
- - rot: -1.5707963267948966 rad
- pos: -3.5,-3.5
- parent: 2
- type: Transform
- - ShutdownSubscribers:
- - 306
- - 252
- type: DeviceNetwork
- - uid: 308
- components:
- - rot: -1.5707963267948966 rad
- pos: 0.5,-1.5
- parent: 2
- type: Transform
- - ShutdownSubscribers:
- - 252
- type: DeviceNetwork
- - uid: 309
- components:
- - rot: -1.5707963267948966 rad
- pos: 6.5,-1.5
- parent: 2
- type: Transform
- - ShutdownSubscribers:
- - 251
- type: DeviceNetwork
-- proto: GasMixerFlipped
- entities:
- - uid: 268
- components:
- - rot: 3.141592653589793 rad
- pos: 8.5,-1.5
- parent: 2
- type: Transform
-- proto: GasPassiveVent
- entities:
- - uid: 178
- components:
- - rot: 3.141592653589793 rad
- pos: 3.5,-4.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 276
- components:
- - rot: 3.141592653589793 rad
- pos: 8.5,-7.5
- parent: 2
- type: Transform
-- proto: GasPipeBend
- entities:
- - uid: 230
- components:
- - pos: -2.5,-4.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 235
- components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,-1.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 243
- components:
- - rot: 3.141592653589793 rad
- pos: -3.5,-4.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 250
- components:
- - rot: -1.5707963267948966 rad
- pos: 7.5,-1.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 288
- components:
- - rot: 3.141592653589793 rad
- pos: -1.5,-6.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 296
- components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,1.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 305
- components:
- - rot: -1.5707963267948966 rad
- pos: 7.5,0.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 326
- components:
- - rot: 3.141592653589793 rad
- pos: -4.5,-5.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 491
- components:
- - rot: -1.5707963267948966 rad
- pos: 9.5,-1.5
- parent: 2
- type: Transform
-- proto: GasPipeStraight
- entities:
- - uid: 8
- components:
- - rot: 3.141592653589793 rad
- pos: 3.5,-3.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 9
- components:
- - rot: 3.141592653589793 rad
- pos: 3.5,-2.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 238
- components:
- - rot: -1.5707963267948966 rad
- pos: -2.5,-1.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 239
- components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,-1.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 240
- components:
- - rot: 3.141592653589793 rad
- pos: -3.5,-2.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 241
- components:
- - rot: 3.141592653589793 rad
- pos: -3.5,-3.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 242
- components:
- - pos: -2.5,-5.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 244
- components:
- - rot: 1.5707963267948966 rad
- pos: 0.5,-1.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 245
- components:
- - rot: 1.5707963267948966 rad
- pos: 1.5,-1.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 247
- components:
- - rot: 1.5707963267948966 rad
- pos: 4.5,-1.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 248
- components:
- - rot: 1.5707963267948966 rad
- pos: 5.5,-1.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 249
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,-1.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 279
- components:
- - pos: 8.5,-2.5
- parent: 2
- type: Transform
- - uid: 280
- components:
- - pos: 8.5,-3.5
- parent: 2
- type: Transform
- - uid: 282
- components:
- - pos: 8.5,-5.5
- parent: 2
- type: Transform
- - uid: 283
- components:
- - pos: 8.5,-6.5
- parent: 2
- type: Transform
- - uid: 290
- components:
- - pos: -1.5,-4.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 291
- components:
- - pos: -1.5,-3.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 292
- components:
- - pos: -1.5,-2.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 293
- components:
- - pos: -1.5,-1.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 294
- components:
- - pos: -1.5,-0.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 297
- components:
- - rot: 1.5707963267948966 rad
- pos: -0.5,0.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 298
- components:
- - rot: 1.5707963267948966 rad
- pos: 0.5,0.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 299
- components:
- - rot: 1.5707963267948966 rad
- pos: 1.5,0.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 300
- components:
- - rot: 1.5707963267948966 rad
- pos: 2.5,0.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 301
- components:
- - rot: 1.5707963267948966 rad
- pos: 3.5,0.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 303
- components:
- - rot: 1.5707963267948966 rad
- pos: 5.5,0.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 304
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,0.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 443
- components:
- - pos: 4.5,-0.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 464
- components:
- - pos: 4.5,-1.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 492
- components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,-5.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 493
- components:
- - rot: 1.5707963267948966 rad
- pos: -2.5,-5.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
-- proto: GasPipeTJunction
- entities:
- - uid: 234
- components:
- - pos: 3.5,-1.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 236
- components:
- - rot: 3.141592653589793 rad
- pos: -0.5,-1.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 246
- components:
- - pos: 2.5,-1.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 281
- components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,-5.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 295
- components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,0.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 302
- components:
- - pos: 4.5,0.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
-- proto: GasPort
- entities:
- - uid: 277
- components:
- - pos: 8.5,-0.5
- parent: 2
- type: Transform
- - uid: 489
- components:
- - pos: 9.5,-0.5
- parent: 2
- type: Transform
- - uid: 494
- components:
- - pos: -4.5,-4.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
-- proto: GasPressurePump
- entities:
- - uid: 278
- components:
- - pos: 8.5,-4.5
- parent: 2
- type: Transform
-- proto: GasVentPump
- entities:
- - uid: 272
- components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,1.5
- parent: 2
- type: Transform
- - ShutdownSubscribers:
- - 252
- type: DeviceNetwork
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 274
- components:
- - rot: 3.141592653589793 rad
- pos: 4.5,-2.5
- parent: 2
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 275
- components:
- - pos: 7.5,1.5
- parent: 2
- type: Transform
- - ShutdownSubscribers:
- - 251
- type: DeviceNetwork
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 289
- components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,-6.5
- parent: 2
- type: Transform
- - ShutdownSubscribers:
- - 306
- type: DeviceNetwork
- - color: '#0055CCFF'
- type: AtmosPipeColor
-- proto: GasVentScrubber
- entities:
- - uid: 228
- components:
- - pos: 7.5,-0.5
- parent: 2
- type: Transform
- - ShutdownSubscribers:
- - 251
- type: DeviceNetwork
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 229
- components:
- - pos: -0.5,-0.5
- parent: 2
- type: Transform
- - ShutdownSubscribers:
- - 252
- type: DeviceNetwork
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 237
- components:
- - rot: 3.141592653589793 rad
- pos: -2.5,-6.5
- parent: 2
- type: Transform
- - ShutdownSubscribers:
- - 306
- type: DeviceNetwork
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 273
- components:
- - rot: 3.141592653589793 rad
- pos: 2.5,-2.5
- parent: 2
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
-- proto: GravityGeneratorMini
- entities:
- - uid: 471
- components:
- - pos: -0.5,-6.5
- parent: 2
- type: Transform
-- proto: Grille
- entities:
- - uid: 73
- components:
- - rot: -1.5707963267948966 rad
- pos: 7.5,-3.5
- parent: 2
- type: Transform
- - uid: 86
- components:
- - rot: 1.5707963267948966 rad
- pos: 7.5,3.5
- parent: 2
- type: Transform
- - uid: 87
- components:
- - rot: 1.5707963267948966 rad
- pos: 9.5,3.5
- parent: 2
- type: Transform
- - uid: 89
- components:
- - rot: 1.5707963267948966 rad
- pos: 8.5,3.5
- parent: 2
- type: Transform
- - uid: 92
- components:
- - rot: 1.5707963267948966 rad
- pos: -0.5,3.5
- parent: 2
- type: Transform
- - uid: 93
- components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,3.5
- parent: 2
- type: Transform
- - uid: 94
- components:
- - rot: 1.5707963267948966 rad
- pos: -2.5,3.5
- parent: 2
- type: Transform
- - uid: 112
- components:
- - pos: 0.5,-0.5
- parent: 2
- type: Transform
- - uid: 113
- components:
- - pos: 6.5,-0.5
- parent: 2
- type: Transform
- - uid: 122
- components:
- - rot: 3.141592653589793 rad
- pos: 9.5,-9.5
- parent: 2
- type: Transform
- - uid: 124
- components:
- - rot: -1.5707963267948966 rad
- pos: 8.5,-3.5
- parent: 2
- type: Transform
- - uid: 150
- components:
- - pos: -5.5,-6.5
- parent: 2
- type: Transform
- - uid: 151
- components:
- - pos: -5.5,-5.5
- parent: 2
- type: Transform
- - uid: 152
- components:
- - pos: 0.5,-6.5
- parent: 2
- type: Transform
- - uid: 153
- components:
- - pos: 0.5,-5.5
- parent: 2
- type: Transform
- - uid: 154
- components:
- - pos: -1.5,-7.5
- parent: 2
- type: Transform
- - uid: 155
- components:
- - pos: -2.5,-7.5
- parent: 2
- type: Transform
- - uid: 156
- components:
- - pos: -3.5,-7.5
- parent: 2
- type: Transform
- - uid: 161
- components:
- - rot: -1.5707963267948966 rad
- pos: 10.5,-3.5
- parent: 2
- type: Transform
- - uid: 162
- components:
- - rot: -1.5707963267948966 rad
- pos: 11.5,-3.5
- parent: 2
- type: Transform
- - uid: 164
- components:
- - rot: -1.5707963267948966 rad
- pos: 8.5,-5.5
- parent: 2
- type: Transform
- - uid: 165
- components:
- - rot: -1.5707963267948966 rad
- pos: 10.5,-5.5
- parent: 2
- type: Transform
- - uid: 166
- components:
- - rot: -1.5707963267948966 rad
- pos: 11.5,-7.5
- parent: 2
- type: Transform
- - uid: 176
- components:
- - pos: 0.5,5.5
- parent: 2
- type: Transform
- - uid: 459
- components:
- - pos: 0.5,4.5
- parent: 2
- type: Transform
- - uid: 460
- components:
- - pos: 6.5,5.5
- parent: 2
- type: Transform
- - uid: 461
- components:
- - pos: 6.5,4.5
- parent: 2
- type: Transform
- - uid: 691
- components:
- - pos: 3.5,3.5
- parent: 2
- type: Transform
-- proto: Gyroscope
- entities:
- - uid: 255
- components:
- - rot: 3.141592653589793 rad
- pos: -0.5,-4.5
- parent: 2
- type: Transform
-- proto: IntercomCommon
- entities:
- - uid: 476
- components:
- - rot: -1.5707963267948966 rad
- pos: 6.5,0.5
- parent: 2
- type: Transform
-- proto: KitchenMicrowave
- entities:
- - uid: 222
- components:
- - pos: 9.5,2.5
- parent: 2
- type: Transform
-- proto: Lamp
- entities:
- - uid: 105
- components:
- - rot: 1.5707963267948966 rad
- pos: -3.3664355,-0.08267355
- parent: 2
- type: Transform
-- proto: LockerResearchDirectorFilled
- entities:
- - uid: 705
- components:
- - pos: 7.5,-0.5
- parent: 2
- type: Transform
-- proto: LockerSalvageSpecialistFilled
- entities:
- - uid: 193
- components:
- - pos: -1.5,-2.5
- parent: 2
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
-- proto: MachineArtifactAnalyzer
- entities:
- - uid: 125
- components:
- - rot: -1.5707963267948966 rad
- pos: 9.5,-7.5
- parent: 2
- type: Transform
-- proto: Multitool
- entities:
- - uid: 207
- components:
- - pos: 8.58146,-2.402046
- parent: 2
- type: Transform
-- proto: OreProcessor
- entities:
- - uid: 470
- components:
- - pos: 1.5,-2.5
- parent: 2
- type: Transform
-- proto: PaperOffice
- entities:
- - uid: 704
- components:
- - pos: -2.514917,-4.8300157
- parent: 2
- type: Transform
-- proto: PlasticFlapsAirtightClear
- entities:
- - uid: 455
- components:
- - pos: 1.5,6.5
- parent: 2
- type: Transform
- - uid: 456
- components:
- - pos: 5.5,6.5
- parent: 2
- type: Transform
- - uid: 684
- components:
- - rot: 3.141592653589793 rad
- pos: 5.5,3.5
- parent: 2
- type: Transform
- - uid: 685
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,3.5
- parent: 2
- type: Transform
-- proto: PortableGeneratorPacman
- entities:
- - uid: 286
- components:
- - anchored: True
- pos: -3.5,-6.5
- parent: 2
- type: Transform
- - bodyType: Static
- type: Physics
- - uid: 323
- components:
- - anchored: True
- pos: -2.5,-6.5
- parent: 2
- type: Transform
- - bodyType: Static
- type: Physics
-- proto: PowerCellRecharger
- entities:
- - uid: 104
- components:
- - rot: -1.5707963267948966 rad
- pos: -2.5,2.5
- parent: 2
- type: Transform
-- proto: Poweredlight
- entities:
- - uid: 14
- components:
- - pos: 3.5,5.5
- parent: 2
- type: Transform
- - uid: 47
- components:
- - pos: -1.5,-4.5
- parent: 2
- type: Transform
- - uid: 53
- components:
- - rot: 1.5707963267948966 rad
- pos: 7.5,0.5
- parent: 2
- type: Transform
- - uid: 90
- components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,0.5
- parent: 2
- type: Transform
- - uid: 173
- components:
- - rot: 3.141592653589793 rad
- pos: 9.5,-8.5
- parent: 2
- type: Transform
-- proto: PoweredSmallLight
- entities:
- - uid: 22
- components:
- - rot: 1.5707963267948966 rad
- pos: 1.5,-2.5
- parent: 2
- type: Transform
- - uid: 26
- components:
- - rot: -1.5707963267948966 rad
- pos: 5.5,-2.5
- parent: 2
- type: Transform
- - uid: 215
- components:
- - pos: 11.5,2.5
- parent: 2
- type: Transform
- - uid: 699
- components:
- - rot: 1.5707963267948966 rad
- pos: 13.5,-0.5
- parent: 2
- type: Transform
- - uid: 700
- components:
- - rot: -1.5707963267948966 rad
- pos: -6.5,-0.5
- parent: 2
- type: Transform
-- proto: Protolathe
- entities:
- - uid: 220
- components:
- - pos: 7.5,2.5
- parent: 2
- type: Transform
-- proto: Railing
- entities:
- - uid: 85
- components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,-4.5
- parent: 2
- type: Transform
- - uid: 468
- components:
- - rot: 1.5707963267948966 rad
- pos: 4.5,-4.5
- parent: 2
- type: Transform
-- proto: RandomPosterLegit
- entities:
- - uid: 474
- components:
- - pos: -5.5,0.5
- parent: 2
- type: Transform
- - uid: 475
- components:
- - pos: -5.5,1.5
- parent: 2
- type: Transform
- - uid: 477
- components:
- - pos: 12.5,0.5
- parent: 2
- type: Transform
- - uid: 478
- components:
- - pos: 12.5,1.5
- parent: 2
- type: Transform
-- proto: ReinforcedWindow
- entities:
- - uid: 10
- components:
- - pos: 0.5,5.5
- parent: 2
- type: Transform
- - uid: 11
- components:
- - pos: 6.5,5.5
- parent: 2
- type: Transform
- - uid: 12
- components:
- - pos: 0.5,4.5
- parent: 2
- type: Transform
- - uid: 21
- components:
- - pos: 0.5,-0.5
- parent: 2
- type: Transform
- - uid: 25
- components:
- - pos: 6.5,-0.5
- parent: 2
- type: Transform
- - uid: 63
- components:
- - pos: -2.5,3.5
- parent: 2
- type: Transform
- - uid: 64
- components:
- - pos: -1.5,3.5
- parent: 2
- type: Transform
- - uid: 65
- components:
- - pos: -0.5,3.5
- parent: 2
- type: Transform
- - uid: 66
- components:
- - pos: 7.5,3.5
- parent: 2
- type: Transform
- - uid: 67
- components:
- - pos: 8.5,3.5
- parent: 2
- type: Transform
- - uid: 68
- components:
- - pos: 9.5,3.5
- parent: 2
- type: Transform
- - uid: 72
- components:
- - rot: -1.5707963267948966 rad
- pos: 8.5,-3.5
- parent: 2
- type: Transform
- - uid: 74
- components:
- - rot: -1.5707963267948966 rad
- pos: 11.5,-3.5
- parent: 2
- type: Transform
- - uid: 75
- components:
- - rot: -1.5707963267948966 rad
- pos: 10.5,-3.5
- parent: 2
- type: Transform
- - uid: 76
- components:
- - rot: -1.5707963267948966 rad
- pos: 7.5,-3.5
- parent: 2
- type: Transform
- - uid: 114
- components:
- - rot: -1.5707963267948966 rad
- pos: 8.5,-5.5
- parent: 2
- type: Transform
- - uid: 115
- components:
- - rot: -1.5707963267948966 rad
- pos: 10.5,-5.5
- parent: 2
- type: Transform
- - uid: 119
- components:
- - rot: -1.5707963267948966 rad
- pos: 11.5,-7.5
- parent: 2
- type: Transform
- - uid: 127
- components:
- - pos: -5.5,-6.5
- parent: 2
- type: Transform
- - uid: 128
- components:
- - pos: -5.5,-5.5
- parent: 2
- type: Transform
- - uid: 131
- components:
- - pos: -3.5,-7.5
- parent: 2
- type: Transform
- - uid: 132
- components:
- - pos: -2.5,-7.5
- parent: 2
- type: Transform
- - uid: 133
- components:
- - pos: -1.5,-7.5
- parent: 2
- type: Transform
- - uid: 136
- components:
- - pos: 0.5,-5.5
- parent: 2
- type: Transform
- - uid: 137
- components:
- - pos: 0.5,-6.5
- parent: 2
- type: Transform
- - uid: 163
- components:
- - rot: 3.141592653589793 rad
- pos: 9.5,-9.5
- parent: 2
- type: Transform
- - uid: 177
- components:
- - pos: 6.5,4.5
- parent: 2
- type: Transform
- - uid: 686
- components:
- - pos: 3.5,3.5
- parent: 2
- type: Transform
-- proto: ResearchAndDevelopmentServer
- entities:
- - uid: 211
- components:
- - pos: 11.5,2.5
- parent: 2
- type: Transform
-- proto: ShuttersNormalOpen
- entities:
- - uid: 200
- components:
- - rot: -1.5707963267948966 rad
- pos: -5.5,-6.5
- parent: 2
- type: Transform
- - links:
- - 199
- type: DeviceLinkSink
- - uid: 201
- components:
- - rot: -1.5707963267948966 rad
- pos: -5.5,-5.5
- parent: 2
- type: Transform
- - links:
- - 199
- type: DeviceLinkSink
- - uid: 202
- components:
- - pos: -3.5,-7.5
- parent: 2
- type: Transform
- - links:
- - 199
- type: DeviceLinkSink
- - uid: 203
- components:
- - pos: -2.5,-7.5
- parent: 2
- type: Transform
- - links:
- - 199
- type: DeviceLinkSink
- - uid: 204
- components:
- - pos: -1.5,-7.5
- parent: 2
- type: Transform
- - links:
- - 199
- type: DeviceLinkSink
- - uid: 205
- components:
- - rot: 1.5707963267948966 rad
- pos: 0.5,-6.5
- parent: 2
- type: Transform
- - links:
- - 199
- type: DeviceLinkSink
- - uid: 206
- components:
- - rot: 1.5707963267948966 rad
- pos: 0.5,-5.5
- parent: 2
- type: Transform
- - links:
- - 199
- type: DeviceLinkSink
-- proto: SignalButtonDirectional
- entities:
- - uid: 198
- components:
- - name: Blast doors button
- type: MetaData
- - rot: 3.141592653589793 rad
- pos: 10.5,-3.5
- parent: 2
- type: Transform
- - linkedPorts:
- 172:
- - Pressed: Toggle
- type: DeviceLinkSource
- - uid: 199
- components:
- - name: shutters button
- type: MetaData
- - pos: -0.5,-3.5
- parent: 2
- type: Transform
- - linkedPorts:
- 206:
- - Pressed: Toggle
- 205:
- - Pressed: Toggle
- 204:
- - Pressed: Toggle
- 203:
- - Pressed: Toggle
- 202:
- - Pressed: Toggle
- 201:
- - Pressed: Toggle
- 200:
- - Pressed: Toggle
- type: DeviceLinkSource
- - uid: 469
- components:
- - name: Blast doors button
- type: MetaData
- - rot: 3.141592653589793 rad
- pos: 5.5,-3.5
- parent: 2
- type: Transform
- - linkedPorts:
- 91:
- - Pressed: Toggle
- 467:
- - Pressed: Toggle
- 88:
- - Pressed: Toggle
- type: DeviceLinkSource
- - uid: 479
- components:
- - pos: 3.5,6.5
- parent: 2
- type: Transform
- - linkedPorts:
- 689:
- - Pressed: Toggle
- 688:
- - Pressed: Toggle
- 687:
- - Pressed: Toggle
- 690:
- - Pressed: Toggle
- type: DeviceLinkSource
-- proto: SignBar
- entities:
- - uid: 257
- components:
- - rot: -1.5707963267948966 rad
- pos: 0.5,-2.5
- parent: 2
- type: Transform
-- proto: SignMinerDock
- entities:
- - uid: 480
- components:
- - pos: 1.5,-3.5
- parent: 2
- type: Transform
-- proto: SignRND
- entities:
- - uid: 256
- components:
- - rot: -1.5707963267948966 rad
- pos: 6.5,-2.5
- parent: 2
- type: Transform
-- proto: SignShipDock
- entities:
- - uid: 481
- components:
- - pos: 0.5,6.5
- parent: 2
- type: Transform
- - uid: 482
- components:
- - pos: 6.5,6.5
- parent: 2
- type: Transform
-- proto: Sink
- entities:
- - uid: 106
- components:
- - rot: 1.5707963267948966 rad
- pos: -4.5,1.5
- parent: 2
- type: Transform
-- proto: SMESBasic
- entities:
- - uid: 287
- components:
- - pos: -4.5,-6.5
- parent: 2
- type: Transform
-- proto: soda_dispenser
- entities:
- - uid: 43
- components:
- - pos: -3.5,2.5
- parent: 2
- type: Transform
-- proto: SolarPanel
- entities:
- - uid: 139
- components:
- - pos: -4.5,-8.5
- parent: 2
- type: Transform
- - uid: 140
- components:
- - pos: -3.5,-8.5
- parent: 2
- type: Transform
- - uid: 141
- components:
- - pos: -1.5,-8.5
- parent: 2
- type: Transform
- - uid: 142
- components:
- - pos: -2.5,-8.5
- parent: 2
- type: Transform
- - uid: 143
- components:
- - pos: -0.5,-8.5
- parent: 2
- type: Transform
- - uid: 144
- components:
- - pos: -0.5,-9.5
- parent: 2
- type: Transform
- - uid: 145
- components:
- - pos: -1.5,-9.5
- parent: 2
- type: Transform
- - uid: 146
- components:
- - pos: -2.5,-9.5
- parent: 2
- type: Transform
- - uid: 147
- components:
- - pos: -3.5,-9.5
- parent: 2
- type: Transform
- - uid: 148
- components:
- - pos: -4.5,-9.5
- parent: 2
- type: Transform
- - uid: 497
- components:
- - pos: 12.5,-7.5
- parent: 2
- type: Transform
- - uid: 498
- components:
- - pos: 12.5,-6.5
- parent: 2
- type: Transform
- - uid: 499
- components:
- - pos: 12.5,-5.5
- parent: 2
- type: Transform
- - uid: 500
- components:
- - pos: 12.5,-4.5
- parent: 2
- type: Transform
- - uid: 501
- components:
- - pos: 9.5,4.5
- parent: 2
- type: Transform
- - uid: 502
- components:
- - pos: 8.5,4.5
- parent: 2
- type: Transform
- - uid: 503
- components:
- - pos: 7.5,4.5
- parent: 2
- type: Transform
- - uid: 504
- components:
- - pos: -0.5,4.5
- parent: 2
- type: Transform
- - uid: 505
- components:
- - pos: -1.5,4.5
- parent: 2
- type: Transform
- - uid: 506
- components:
- - pos: -2.5,4.5
- parent: 2
- type: Transform
- - uid: 572
- components:
- - pos: 13.5,1.5
- parent: 2
- type: Transform
- - uid: 573
- components:
- - pos: 13.5,0.5
- parent: 2
- type: Transform
- - uid: 574
- components:
- - pos: 14.5,1.5
- parent: 2
- type: Transform
- - uid: 575
- components:
- - pos: 14.5,0.5
- parent: 2
- type: Transform
- - uid: 576
- components:
- - pos: 15.5,1.5
- parent: 2
- type: Transform
- - uid: 577
- components:
- - pos: 15.5,0.5
- parent: 2
- type: Transform
- - uid: 578
- components:
- - pos: 16.5,1.5
- parent: 2
- type: Transform
- - uid: 579
- components:
- - pos: 16.5,0.5
- parent: 2
- type: Transform
- - uid: 580
- components:
- - pos: 17.5,1.5
- parent: 2
- type: Transform
- - uid: 581
- components:
- - pos: 17.5,0.5
- parent: 2
- type: Transform
- - uid: 582
- components:
- - pos: 18.5,1.5
- parent: 2
- type: Transform
- - uid: 583
- components:
- - pos: 18.5,0.5
- parent: 2
- type: Transform
- - uid: 584
- components:
- - pos: 18.5,-1.5
- parent: 2
- type: Transform
- - uid: 585
- components:
- - pos: 18.5,-2.5
- parent: 2
- type: Transform
- - uid: 586
- components:
- - pos: 17.5,-1.5
- parent: 2
- type: Transform
- - uid: 587
- components:
- - pos: 17.5,-2.5
- parent: 2
- type: Transform
- - uid: 588
- components:
- - pos: 16.5,-1.5
- parent: 2
- type: Transform
- - uid: 589
- components:
- - pos: 16.5,-2.5
- parent: 2
- type: Transform
- - uid: 590
- components:
- - pos: 15.5,-1.5
- parent: 2
- type: Transform
- - uid: 591
- components:
- - pos: 15.5,-2.5
- parent: 2
- type: Transform
- - uid: 592
- components:
- - pos: 14.5,-1.5
- parent: 2
- type: Transform
- - uid: 593
- components:
- - pos: 14.5,-2.5
- parent: 2
- type: Transform
- - uid: 594
- components:
- - pos: 13.5,-1.5
- parent: 2
- type: Transform
- - uid: 595
- components:
- - pos: 13.5,-2.5
- parent: 2
- type: Transform
- - uid: 596
- components:
- - pos: -6.5,-1.5
- parent: 2
- type: Transform
- - uid: 597
- components:
- - pos: -6.5,-2.5
- parent: 2
- type: Transform
- - uid: 598
- components:
- - pos: -7.5,-1.5
- parent: 2
- type: Transform
- - uid: 599
- components:
- - pos: -7.5,-2.5
- parent: 2
- type: Transform
- - uid: 600
- components:
- - pos: -8.5,-1.5
- parent: 2
- type: Transform
- - uid: 601
- components:
- - pos: -8.5,-2.5
- parent: 2
- type: Transform
- - uid: 602
- components:
- - pos: -9.5,-1.5
- parent: 2
- type: Transform
- - uid: 603
- components:
- - pos: -9.5,-2.5
- parent: 2
- type: Transform
- - uid: 604
- components:
- - pos: -10.5,-1.5
- parent: 2
- type: Transform
- - uid: 605
- components:
- - pos: -10.5,-2.5
- parent: 2
- type: Transform
- - uid: 606
- components:
- - pos: -11.5,-1.5
- parent: 2
- type: Transform
- - uid: 607
- components:
- - pos: -11.5,-2.5
- parent: 2
- type: Transform
- - uid: 608
- components:
- - pos: -11.5,1.5
- parent: 2
- type: Transform
- - uid: 609
- components:
- - pos: -11.5,0.5
- parent: 2
- type: Transform
- - uid: 610
- components:
- - pos: -10.5,1.5
- parent: 2
- type: Transform
- - uid: 611
- components:
- - pos: -9.5,1.5
- parent: 2
- type: Transform
- - uid: 612
- components:
- - pos: -10.5,0.5
- parent: 2
- type: Transform
- - uid: 613
- components:
- - pos: -9.5,0.5
- parent: 2
- type: Transform
- - uid: 614
- components:
- - pos: -8.5,1.5
- parent: 2
- type: Transform
- - uid: 615
- components:
- - pos: -8.5,0.5
- parent: 2
- type: Transform
- - uid: 616
- components:
- - pos: -7.5,1.5
- parent: 2
- type: Transform
- - uid: 617
- components:
- - pos: -7.5,0.5
- parent: 2
- type: Transform
- - uid: 618
- components:
- - pos: -6.5,1.5
- parent: 2
- type: Transform
- - uid: 619
- components:
- - pos: -6.5,0.5
- parent: 2
- type: Transform
-- proto: SolarTracker
- entities:
- - uid: 149
- components:
- - pos: 0.5,-8.5
- parent: 2
- type: Transform
-- proto: SpawnPointBartender
- entities:
- - uid: 109
- components:
- - pos: -3.5,1.5
- parent: 2
- type: Transform
-- proto: SpawnPointLatejoin
- entities:
- - uid: 694
- components:
- - pos: 3.5,-2.5
- parent: 2
- type: Transform
-- proto: SpawnPointSalvageSpecialist
- entities:
- - uid: 194
- components:
- - pos: 2.5,-2.5
- parent: 2
- type: Transform
- - uid: 195
- components:
- - pos: 4.5,-2.5
- parent: 2
- type: Transform
-- proto: SpawnPointScientist
- entities:
- - uid: 332
- components:
- - pos: 8.5,0.5
- parent: 2
- type: Transform
-- proto: StoolBar
- entities:
- - uid: 100
- components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,-0.5
- parent: 2
- type: Transform
- - uid: 101
- components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,0.5
- parent: 2
- type: Transform
- - uid: 102
- components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,1.5
- parent: 2
- type: Transform
- - uid: 103
- components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,2.5
- parent: 2
- type: Transform
-- proto: StorageCanister
- entities:
- - uid: 218
- components:
- - pos: 11.5,0.5
- parent: 2
- type: Transform
- - uid: 219
- components:
- - pos: 11.5,-0.5
- parent: 2
- type: Transform
-- proto: SubstationBasic
- entities:
- - uid: 270
- components:
- - pos: -4.5,-5.5
- parent: 2
- type: Transform
-- proto: SuitStorageRD
- entities:
- - uid: 1
- components:
- - pos: 7.5,0.5
- parent: 2
- type: Transform
-- proto: SuitStorageSalv
- entities:
- - uid: 192
- components:
- - pos: -0.5,-2.5
- parent: 2
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
-- proto: Table
- entities:
- - uid: 223
- components:
- - rot: 1.5707963267948966 rad
- pos: 9.5,2.5
- parent: 2
- type: Transform
- - uid: 224
- components:
- - rot: 1.5707963267948966 rad
- pos: 7.5,-2.5
- parent: 2
- type: Transform
- - uid: 225
- components:
- - rot: 1.5707963267948966 rad
- pos: 8.5,-2.5
- parent: 2
- type: Transform
- - uid: 331
- components:
- - pos: -2.5,-4.5
- parent: 2
- type: Transform
-- proto: TableWoodReinforced
- entities:
- - uid: 38
- components:
- - rot: -1.5707963267948966 rad
- pos: -3.5,-0.5
- parent: 2
- type: Transform
- - uid: 39
- components:
- - rot: -1.5707963267948966 rad
- pos: -2.5,1.5
- parent: 2
- type: Transform
- - uid: 40
- components:
- - rot: -1.5707963267948966 rad
- pos: -2.5,0.5
- parent: 2
- type: Transform
- - uid: 41
- components:
- - rot: -1.5707963267948966 rad
- pos: -2.5,-0.5
- parent: 2
- type: Transform
- - uid: 54
- components:
- - rot: -1.5707963267948966 rad
- pos: -2.5,2.5
- parent: 2
- type: Transform
- - uid: 55
- components:
- - rot: -1.5707963267948966 rad
- pos: -3.5,2.5
- parent: 2
- type: Transform
- - uid: 56
- components:
- - rot: -1.5707963267948966 rad
- pos: -4.5,2.5
- parent: 2
- type: Transform
-- proto: Thruster
- entities:
- - uid: 179
- components:
- - rot: 3.141592653589793 rad
- pos: 5.5,-4.5
- parent: 2
- type: Transform
- - uid: 180
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,-4.5
- parent: 2
- type: Transform
- - uid: 181
- components:
- - rot: -1.5707963267948966 rad
- pos: 12.5,-8.5
- parent: 2
- type: Transform
- - uid: 182
- components:
- - rot: 3.141592653589793 rad
- pos: -5.5,-9.5
- parent: 2
- type: Transform
- - uid: 183
- components:
- - rot: 1.5707963267948966 rad
- pos: -5.5,-8.5
- parent: 2
- type: Transform
- - uid: 184
- components:
- - rot: 3.141592653589793 rad
- pos: 12.5,-9.5
- parent: 2
- type: Transform
- - uid: 185
- components:
- - pos: 11.5,4.5
- parent: 2
- type: Transform
- - uid: 186
- components:
- - pos: -3.5,4.5
- parent: 2
- type: Transform
- - uid: 187
- components:
- - pos: 10.5,4.5
- parent: 2
- type: Transform
- - uid: 188
- components:
- - rot: -1.5707963267948966 rad
- pos: 12.5,4.5
- parent: 2
- type: Transform
- - uid: 189
- components:
- - rot: 1.5707963267948966 rad
- pos: -5.5,4.5
- parent: 2
- type: Transform
- - uid: 190
- components:
- - pos: -4.5,4.5
- parent: 2
- type: Transform
-- proto: TwoWayLever
- entities:
- - uid: 18
- components:
- - name: Conveyor lever
- type: MetaData
- - pos: 3.5,0.5
- parent: 2
- type: Transform
- - linkedPorts:
- 3:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 6:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 4:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 5:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 447:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 448:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 449:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 454:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 453:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 452:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- type: DeviceLinkSource
-- proto: VendingMachineCargoDrobe
- entities:
- - uid: 702
- components:
- - pos: -2.5,-2.5
- parent: 2
- type: Transform
-- proto: VendingMachineDonut
- entities:
- - uid: 701
- components:
- - pos: -0.5,2.5
- parent: 2
- type: Transform
-- proto: VendingMachineSalvage
- entities:
- - uid: 191
- components:
- - pos: -4.5,-2.5
- parent: 2
- type: Transform
-- proto: WallReinforced
- entities:
- - uid: 13
- components:
- - pos: 6.5,6.5
- parent: 2
- type: Transform
- - uid: 19
- components:
- - pos: 0.5,1.5
- parent: 2
- type: Transform
- - uid: 20
- components:
- - pos: 0.5,0.5
- parent: 2
- type: Transform
- - uid: 23
- components:
- - pos: 6.5,1.5
- parent: 2
- type: Transform
- - uid: 24
- components:
- - pos: 6.5,0.5
- parent: 2
- type: Transform
- - uid: 27
- components:
- - pos: 6.5,2.5
- parent: 2
- type: Transform
- - uid: 28
- components:
- - pos: 0.5,2.5
- parent: 2
- type: Transform
- - uid: 29
- components:
- - pos: 0.5,-2.5
- parent: 2
- type: Transform
- - uid: 30
- components:
- - pos: 0.5,-3.5
- parent: 2
- type: Transform
- - uid: 31
- components:
- - pos: 1.5,-3.5
- parent: 2
- type: Transform
- - uid: 35
- components:
- - pos: 5.5,-3.5
- parent: 2
- type: Transform
- - uid: 36
- components:
- - pos: 6.5,-3.5
- parent: 2
- type: Transform
- - uid: 37
- components:
- - pos: 6.5,-2.5
- parent: 2
- type: Transform
- - uid: 44
- components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,-3.5
- parent: 2
- type: Transform
- - uid: 45
- components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,-3.5
- parent: 2
- type: Transform
- - uid: 46
- components:
- - rot: -1.5707963267948966 rad
- pos: -2.5,-3.5
- parent: 2
- type: Transform
- - uid: 48
- components:
- - rot: -1.5707963267948966 rad
- pos: -4.5,-3.5
- parent: 2
- type: Transform
- - uid: 49
- components:
- - rot: -1.5707963267948966 rad
- pos: -5.5,-3.5
- parent: 2
- type: Transform
- - uid: 50
- components:
- - rot: -1.5707963267948966 rad
- pos: -5.5,-2.5
- parent: 2
- type: Transform
- - uid: 51
- components:
- - rot: -1.5707963267948966 rad
- pos: -5.5,-1.5
- parent: 2
- type: Transform
- - uid: 52
- components:
- - rot: -1.5707963267948966 rad
- pos: -5.5,-0.5
- parent: 2
- type: Transform
- - uid: 57
- components:
- - pos: 0.5,3.5
- parent: 2
- type: Transform
- - uid: 58
- components:
- - pos: -3.5,3.5
- parent: 2
- type: Transform
- - uid: 59
- components:
- - pos: -4.5,3.5
- parent: 2
- type: Transform
- - uid: 60
- components:
- - pos: -5.5,3.5
- parent: 2
- type: Transform
- - uid: 61
- components:
- - pos: -5.5,2.5
- parent: 2
- type: Transform
- - uid: 62
- components:
- - pos: -5.5,1.5
- parent: 2
- type: Transform
- - uid: 69
- components:
- - pos: 6.5,3.5
- parent: 2
- type: Transform
- - uid: 70
- components:
- - pos: 10.5,3.5
- parent: 2
- type: Transform
- - uid: 71
- components:
- - pos: 11.5,3.5
- parent: 2
- type: Transform
- - uid: 77
- components:
- - pos: 12.5,-3.5
- parent: 2
- type: Transform
- - uid: 78
- components:
- - pos: 12.5,-2.5
- parent: 2
- type: Transform
- - uid: 79
- components:
- - pos: 12.5,-1.5
- parent: 2
- type: Transform
- - uid: 80
- components:
- - pos: 12.5,-0.5
- parent: 2
- type: Transform
- - uid: 81
- components:
- - pos: 12.5,0.5
- parent: 2
- type: Transform
- - uid: 82
- components:
- - pos: 12.5,1.5
- parent: 2
- type: Transform
- - uid: 83
- components:
- - pos: 12.5,2.5
- parent: 2
- type: Transform
- - uid: 84
- components:
- - pos: 12.5,3.5
- parent: 2
- type: Transform
- - uid: 95
- components:
- - rot: 1.5707963267948966 rad
- pos: -5.5,0.5
- parent: 2
- type: Transform
- - uid: 116
- components:
- - pos: 7.5,-5.5
- parent: 2
- type: Transform
- - uid: 117
- components:
- - pos: 11.5,-5.5
- parent: 2
- type: Transform
- - uid: 118
- components:
- - pos: 11.5,-6.5
- parent: 2
- type: Transform
- - uid: 120
- components:
- - pos: 11.5,-8.5
- parent: 2
- type: Transform
- - uid: 121
- components:
- - pos: 7.5,-6.5
- parent: 2
- type: Transform
- - uid: 123
- components:
- - pos: 7.5,-8.5
- parent: 2
- type: Transform
- - uid: 126
- components:
- - pos: -5.5,-4.5
- parent: 2
- type: Transform
- - uid: 129
- components:
- - pos: -5.5,-7.5
- parent: 2
- type: Transform
- - uid: 130
- components:
- - pos: -4.5,-7.5
- parent: 2
- type: Transform
- - uid: 134
- components:
- - pos: -0.5,-7.5
- parent: 2
- type: Transform
- - uid: 135
- components:
- - pos: 0.5,-7.5
- parent: 2
- type: Transform
- - uid: 138
- components:
- - pos: 0.5,-4.5
- parent: 2
- type: Transform
- - uid: 157
- components:
- - rot: -1.5707963267948966 rad
- pos: 7.5,-9.5
- parent: 2
- type: Transform
- - uid: 158
- components:
- - rot: -1.5707963267948966 rad
- pos: 8.5,-9.5
- parent: 2
- type: Transform
- - uid: 159
- components:
- - rot: -1.5707963267948966 rad
- pos: 10.5,-9.5
- parent: 2
- type: Transform
- - uid: 160
- components:
- - rot: -1.5707963267948966 rad
- pos: 11.5,-9.5
- parent: 2
- type: Transform
- - uid: 212
- components:
- - pos: 10.5,2.5
- parent: 2
- type: Transform
- - uid: 231
- components:
- - pos: 0.5,6.5
- parent: 2
- type: Transform
- - uid: 446
- components:
- - rot: 3.141592653589793 rad
- pos: 3.5,6.5
- parent: 2
- type: Transform
-- proto: WarpPointShip
- entities:
- - uid: 328
- components:
- - pos: 3.5,-0.5
- parent: 2
- type: Transform
-- proto: WindoorSecure
- entities:
- - uid: 96
- components:
- - rot: 3.141592653589793 rad
- pos: -4.5,-0.5
- parent: 2
- type: Transform
- - uid: 214
- components:
- - rot: 3.141592653589793 rad
- pos: 11.5,1.5
- parent: 2
- type: Transform
-- proto: WindowReinforcedDirectional
- entities:
- - uid: 97
- components:
- - rot: -1.5707963267948966 rad
- pos: -3.5,-0.5
- parent: 2
- type: Transform
- - uid: 213
- components:
- - rot: 3.141592653589793 rad
- pos: 10.5,1.5
- parent: 2
- type: Transform
-- proto: Wrench
- entities:
- - uid: 329
- components:
- - pos: 8.202269,-2.3312836
- parent: 2
- type: Transform
-...
diff --git a/Resources/Maps/_NF/Bluespace/DataCarrier.yml b/Resources/Maps/_NF/Bluespace/DataCarrier.yml
new file mode 100644
index 000000000000..07f55f5afa7a
--- /dev/null
+++ b/Resources/Maps/_NF/Bluespace/DataCarrier.yml
@@ -0,0 +1,10434 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 28: FloorDark
+ 29: FloorDarkDiagonal
+ 33: FloorDarkMono
+ 43: FloorFreezer
+ 57: FloorHydro
+ 59: FloorKitchen
+ 85: FloorSteel
+ 93: FloorSteelMono
+ 97: FloorTechMaint
+ 99: FloorTechMaint3
+ 101: FloorWhite
+ 105: FloorWhiteMini
+ 106: FloorWhiteMono
+ 111: FloorWood
+ 113: Lattice
+ 114: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 1
+ components:
+ - name: Unknown Ship
+ type: MetaData
+ - pos: -0.984375,22.872152
+ parent: invalid
+ type: Transform
+ - chunks:
+ 0,0:
+ ind: 0,0
+ tiles: HAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: cgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAVQAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAbwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAagAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAIQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAIQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAIQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIQAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: VQAAAAAAcgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAcgAAAAAAHQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAagAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAIQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAIQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAIQAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAIQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -2,-1:
+ ind: -2,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,-1:
+ ind: 1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-2:
+ ind: -1,-2
+ tiles: AAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYwAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXQAAAAAAXQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXQAAAAAAVQAAAAAAVQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAVQAAAAAAXQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAVQAAAAAAKwAAAAAAKwAAAAAAcgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAaQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAaQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAaQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAaQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAaQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAaQAAAAAAcgAAAAAAOQAAAAAAOQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAaQAAAAAA
+ version: 6
+ 0,-2:
+ ind: 0,-2
+ tiles: VQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAXQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXQAAAAAAVQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAVQAAAAAAVQAAAAAAXQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAcgAAAAAAHQAAAAAAHQAAAAAAcgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAaQAAAAAAcgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAaQAAAAAAcgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAcgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAaQAAAAAAcgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAcgAAAAAAHQAAAAAAHQAAAAAAcgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAaQAAAAAAcgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAcgAAAAAAHQAAAAAAHQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAaQAAAAAAcgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAcgAAAAAAHQAAAAAAHQAAAAAAcgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAaQAAAAAAcgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAcgAAAAAAHQAAAAAAHQAAAAAAcgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAaQAAAAAAcgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAcgAAAAAAHQAAAAAAHQAAAAAAcgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAcgAAAAAA
+ version: 6
+ -2,-2:
+ ind: -2,-2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXQAAAAAAVQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAA
+ version: 6
+ 1,-2:
+ ind: 1,-2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAXQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAVQAAAAAAXQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAXQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-3:
+ ind: -1,-3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXQAAAAAAXQAAAAAA
+ version: 6
+ 0,-3:
+ ind: 0,-3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,1:
+ ind: -1,1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,1:
+ ind: 0,1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ type: MapGrid
+ - type: Broadphase
+ - bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ type: Physics
+ - fixtures: {}
+ type: Fixtures
+ - type: OccluderTree
+ - type: SpreaderGrid
+ - type: Shuttle
+ - type: GridPathfinding
+ - gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ type: Gravity
+ - chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ color: '#141414FF'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 300: 0,-2
+ - node:
+ color: '#1E1E1EFF'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 133: 0,-17
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 239: 6,-16
+ 247: 9,-17
+ 248: 14,-18
+ 249: 14,-22
+ 254: 6,-19
+ - node:
+ color: '#141414FF'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 301: -1,-2
+ - node:
+ color: '#1E1E1EFF'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 132: -1,-17
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 236: 2,-16
+ 245: 11,-18
+ 246: 11,-22
+ 253: 2,-19
+ - node:
+ color: '#141414FF'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 302: 0,-8
+ - node:
+ color: '#1E1E1EFF'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 134: 0,-23
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 240: 6,-17
+ 241: 6,-24
+ 242: 9,-24
+ 243: 14,-23
+ 244: 14,-19
+ - node:
+ color: '#141414FF'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 303: -1,-8
+ - node:
+ color: '#1E1E1EFF'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 135: -1,-23
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 235: 2,-17
+ 250: 11,-19
+ 251: 11,-23
+ 252: 8,-24
+ 255: 2,-24
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteEndN
+ decals:
+ 261: 8,-16
+ - node:
+ color: '#1E1E1EFF'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 31: -19,-28
+ 73: -2,-32
+ 76: 3,-28
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 262: 8,-17
+ - node:
+ color: '#1E1E1EFF'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 34: -4,-28
+ 71: 1,-32
+ 78: 17,-28
+ - node:
+ color: '#1E1E1EFF'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 33: -19,-26
+ 70: -2,-30
+ 75: 3,-26
+ - node:
+ color: '#1E1E1EFF'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 32: -4,-26
+ 69: 1,-30
+ 77: 17,-26
+ - node:
+ color: '#141414FF'
+ id: BrickTileWhiteLineE
+ decals:
+ 304: 0,-7
+ 305: 0,-6
+ 306: 0,-5
+ 307: 0,-4
+ 308: 0,-3
+ - node:
+ color: '#1E1E1EFF'
+ id: BrickTileWhiteLineE
+ decals:
+ 30: -19,-27
+ 67: -2,-31
+ 74: 3,-27
+ 136: 0,-22
+ 137: 0,-21
+ 138: 0,-20
+ 139: 0,-19
+ 140: 0,-18
+ - node:
+ color: '#A4610696'
+ id: BrickTileWhiteLineE
+ decals:
+ 159: -8,-6
+ 160: -8,-7
+ 169: 8,-8
+ 170: 8,-12
+ 171: 8,-13
+ 172: 8,-14
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteLineE
+ decals:
+ 226: 6,-20
+ 227: 6,-21
+ 228: 6,-22
+ 229: 9,-21
+ 230: 9,-20
+ 231: 9,-18
+ 256: 6,-23
+ 257: 9,-23
+ 258: 9,-22
+ 259: 9,-19
+ - node:
+ color: '#1E1E1EFF'
+ id: BrickTileWhiteLineN
+ decals:
+ 50: -5,-28
+ 51: -6,-28
+ 52: -7,-28
+ 53: -8,-28
+ 54: -9,-28
+ 55: -10,-28
+ 56: -11,-28
+ 57: -12,-28
+ 58: -13,-28
+ 59: -14,-28
+ 60: -15,-28
+ 61: -16,-28
+ 62: -18,-28
+ 63: -17,-28
+ 66: -1,-32
+ 72: 0,-32
+ 79: 4,-28
+ 80: 5,-28
+ 81: 6,-28
+ 82: 7,-28
+ 83: 8,-28
+ 84: 9,-28
+ 85: 9,-28
+ 86: 10,-28
+ 87: 11,-28
+ 88: 12,-28
+ 89: 14,-28
+ 90: 13,-28
+ 91: 15,-28
+ 92: 15,-28
+ 93: 16,-28
+ - node:
+ color: '#A4610696'
+ id: BrickTileWhiteLineN
+ decals:
+ 163: -7,-8
+ 164: -6,-8
+ 165: -5,-8
+ 166: 4,-8
+ 167: 5,-8
+ 168: 6,-8
+ 191: -2,-10
+ 192: 1,-10
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteLineN
+ decals:
+ 197: 3,-19
+ 198: 4,-19
+ 199: 5,-19
+ 201: 12,-18
+ 202: 13,-18
+ 204: 13,-22
+ 205: 12,-22
+ 206: 3,-16
+ 207: 4,-16
+ 208: 5,-16
+ - node:
+ color: '#1E1E1EFF'
+ id: BrickTileWhiteLineS
+ decals:
+ 35: -18,-26
+ 36: -17,-26
+ 37: -16,-26
+ 38: -15,-26
+ 39: -14,-26
+ 40: -12,-26
+ 41: -13,-26
+ 42: -11,-26
+ 43: -10,-26
+ 44: -9,-26
+ 45: -8,-26
+ 46: -7,-26
+ 47: -6,-26
+ 48: -5,-26
+ 64: -1,-30
+ 65: 0,-30
+ 94: 4,-26
+ 95: 5,-26
+ 96: 6,-26
+ 97: 8,-26
+ 98: 7,-26
+ 99: 9,-26
+ 100: 10,-26
+ 101: 11,-26
+ 102: 12,-26
+ 103: 13,-26
+ 104: 14,-26
+ 105: 15,-26
+ 106: 16,-26
+ - node:
+ color: '#A4610696'
+ id: BrickTileWhiteLineS
+ decals:
+ 177: -8,-14
+ 178: -7,-14
+ 179: -6,-14
+ 180: -5,-14
+ 181: -4,-14
+ 182: -3,-14
+ 183: -2,-14
+ 184: 1,-14
+ 185: 2,-14
+ 186: 3,-14
+ 187: 4,-14
+ 188: 5,-14
+ 189: 6,-14
+ 190: 7,-14
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteLineS
+ decals:
+ 209: 3,-24
+ 210: 4,-24
+ 211: 5,-24
+ 212: 12,-23
+ 213: 13,-23
+ 214: 12,-19
+ 215: 13,-19
+ 232: 3,-17
+ 233: 4,-17
+ 234: 5,-17
+ - node:
+ color: '#141414FF'
+ id: BrickTileWhiteLineW
+ decals:
+ 309: -1,-3
+ 310: -1,-4
+ 311: -1,-5
+ 312: -1,-6
+ 313: -1,-7
+ - node:
+ color: '#1E1E1EFF'
+ id: BrickTileWhiteLineW
+ decals:
+ 49: -4,-27
+ 68: 1,-31
+ 107: 17,-27
+ 125: -1,-23
+ 126: -1,-22
+ 127: -1,-21
+ 128: -1,-20
+ 129: -1,-19
+ 130: -1,-18
+ 131: -1,-17
+ - node:
+ color: '#A4610696'
+ id: BrickTileWhiteLineW
+ decals:
+ 161: 7,-6
+ 162: 7,-7
+ 173: -9,-8
+ 174: -9,-12
+ 175: -9,-13
+ 176: -9,-14
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteLineW
+ decals:
+ 216: 2,-20
+ 217: 2,-21
+ 218: 2,-22
+ 219: 2,-23
+ 220: 8,-17
+ 221: 8,-18
+ 222: 8,-19
+ 223: 8,-20
+ 224: 8,-21
+ 225: 8,-22
+ 260: 8,-23
+ - node:
+ color: '#141414FF'
+ id: ConcreteTrimInnerNe
+ decals:
+ 363: -19,-11
+ 391: 11,-11
+ - node:
+ color: '#141414FF'
+ id: ConcreteTrimInnerNw
+ decals:
+ 362: -13,-11
+ 390: 18,-11
+ - node:
+ color: '#141414FF'
+ id: ConcreteTrimInnerSe
+ decals:
+ 360: -19,-9
+ 389: 11,-9
+ - node:
+ color: '#141414FF'
+ id: ConcreteTrimInnerSw
+ decals:
+ 361: -13,-9
+ 388: 18,-9
+ - node:
+ color: '#141414FF'
+ id: ConcreteTrimLineE
+ decals:
+ 358: -19,-10
+ 387: 11,-10
+ - node:
+ color: '#141414FF'
+ id: ConcreteTrimLineN
+ decals:
+ 364: -18,-11
+ 365: -17,-11
+ 366: -16,-11
+ 367: -15,-11
+ 368: -14,-11
+ 381: 12,-11
+ 382: 13,-11
+ 383: 14,-11
+ 384: 15,-11
+ 385: 16,-11
+ 386: 17,-11
+ - node:
+ color: '#141414FF'
+ id: ConcreteTrimLineS
+ decals:
+ 369: -18,-9
+ 370: -17,-9
+ 371: -16,-9
+ 372: -14,-9
+ 373: -15,-9
+ 374: 12,-9
+ 375: 13,-9
+ 376: 14,-9
+ 377: 15,-9
+ 378: 16,-9
+ 379: 17,-9
+ - node:
+ color: '#141414FF'
+ id: ConcreteTrimLineW
+ decals:
+ 359: -13,-10
+ 380: 18,-10
+ - node:
+ color: '#82141493'
+ id: FullTileOverlayGreyscale
+ decals:
+ 286: -1,-8
+ 287: 0,-8
+ 288: 0,-7
+ 289: -1,-7
+ 290: -1,-6
+ 291: 0,-6
+ 292: 0,-5
+ 293: -1,-5
+ 294: -1,-4
+ 295: 0,-4
+ 296: 0,-3
+ 297: -1,-3
+ 298: -1,-2
+ 299: 0,-2
+ - node:
+ color: '#821414FF'
+ id: FullTileOverlayGreyscale
+ decals:
+ 315: -18,-10
+ 316: -17,-10
+ 317: -16,-10
+ 318: -15,-10
+ 319: -14,-10
+ 322: -18,-27
+ 323: -17,-27
+ 324: -16,-27
+ 325: -15,-27
+ 326: -14,-27
+ 327: -13,-27
+ 328: -12,-27
+ 329: -11,-27
+ 330: -10,-27
+ 331: -9,-27
+ 332: -8,-27
+ 333: -7,-27
+ 334: -6,-27
+ 335: -5,-27
+ 336: -1,-31
+ 337: 0,-31
+ 338: 4,-27
+ 339: 5,-27
+ 340: 7,-27
+ 341: 6,-27
+ 342: 8,-27
+ 343: 9,-27
+ 344: 10,-27
+ 345: 11,-27
+ 346: 12,-27
+ 347: 16,-27
+ 348: 15,-27
+ 349: 14,-27
+ 350: 13,-27
+ 351: 17,-10
+ 352: 16,-10
+ 353: 15,-10
+ 354: 14,-10
+ 355: 13,-10
+ 356: 12,-10
+ - node:
+ color: '#5D0000FF'
+ id: MiniTileOverlay
+ decals:
+ 0: -18,-27
+ 1: -17,-27
+ 2: -16,-27
+ 3: -15,-27
+ 4: -13,-27
+ 5: -14,-27
+ 6: -12,-27
+ 7: -11,-27
+ 8: -10,-27
+ 9: -9,-27
+ 10: -8,-27
+ 11: -7,-27
+ 12: -6,-27
+ 13: -5,-27
+ 14: -1,-31
+ 15: 0,-31
+ 16: 5,-27
+ 17: 4,-27
+ 18: 6,-27
+ 19: 8,-27
+ 20: 10,-27
+ 21: 12,-27
+ 22: 16,-27
+ 23: 15,-27
+ 24: 14,-27
+ 25: 11,-27
+ 26: 13,-27
+ 27: 9,-27
+ 28: 6,-27
+ 29: 7,-27
+ 108: -1,-23
+ 109: 0,-23
+ 110: 0,-22
+ 111: -1,-22
+ 112: -1,-21
+ 113: 0,-21
+ 114: 0,-21
+ 115: -1,-21
+ 116: -1,-20
+ 117: 0,-20
+ 118: -1,-19
+ 119: 0,-19
+ 120: -1,-18
+ 121: -1,-18
+ 122: -1,-17
+ 123: 0,-17
+ 124: 0,-18
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerNE
+ decals:
+ 263: 16,-18
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerNW
+ decals:
+ 264: 15,-18
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSE
+ decals:
+ 266: 16,-19
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSW
+ decals:
+ 265: 15,-19
+ - node:
+ color: '#A4610696'
+ id: tile_diagonal
+ decals:
+ 141: -4,-8
+ 142: -3,-9
+ 143: 7,-6
+ 144: 8,-7
+ - node:
+ color: '#A4610696'
+ id: tile_diagonal_corner
+ decals:
+ 147: -8,-7
+ 148: 3,-9
+ 149: 2,-10
+ 150: 4,-8
+ 193: 2,-10
+ 194: 7,-8
+ - node:
+ color: '#A4610696'
+ id: tile_diagonal_corner_90
+ decals:
+ 151: -4,-9
+ 152: -3,-10
+ 153: -5,-8
+ 154: 7,-7
+ 195: -8,-8
+ - node:
+ color: '#A4610696'
+ id: tile_diagonal_flipped
+ decals:
+ 145: -9,-7
+ 146: -8,-6
+ 156: 2,-9
+ 157: 3,-8
+ type: DecalGrid
+ - version: 2
+ data:
+ tiles:
+ 0,0:
+ 0: 65535
+ -1,0:
+ 0: 65535
+ 1,0:
+ 0: 14199
+ -2,0:
+ 0: 61166
+ -4,-4:
+ 0: 65535
+ -4,-3:
+ 0: 65535
+ -4,-2:
+ 0: 15
+ -3,-4:
+ 0: 65535
+ -3,-3:
+ 0: 65535
+ -3,-2:
+ 0: 2255
+ -2,-4:
+ 0: 65535
+ -2,-3:
+ 0: 65535
+ -2,-2:
+ 0: 65535
+ -2,-1:
+ 0: 65535
+ -1,-4:
+ 0: 65535
+ -1,-3:
+ 0: 65535
+ -1,-2:
+ 0: 39323
+ 1: 26212
+ -1,-1:
+ 0: 64409
+ 1: 1126
+ 0,-4:
+ 0: 65535
+ 0,-3:
+ 0: 65535
+ 0,-2:
+ 0: 39325
+ 1: 26210
+ 0,-1:
+ 0: 64921
+ 1: 614
+ 1,-4:
+ 0: 65535
+ 1,-3:
+ 0: 65535
+ 1,-2:
+ 0: 65535
+ 1,-1:
+ 0: 65535
+ 2,-4:
+ 0: 65535
+ 2,-3:
+ 0: 65535
+ 2,-2:
+ 0: 319
+ 3,-4:
+ 0: 65535
+ 3,-3:
+ 0: 65535
+ 3,-2:
+ 0: 15
+ -6,-3:
+ 0: 34952
+ -6,-2:
+ 0: 8
+ -5,-4:
+ 0: 65472
+ -5,-3:
+ 0: 65535
+ -5,-2:
+ 0: 15
+ 4,-4:
+ 0: 65328
+ 4,-3:
+ 0: 65535
+ 4,-2:
+ 0: 15
+ 5,-3:
+ 0: 4369
+ 5,-2:
+ 0: 1
+ -4,-8:
+ 0: 64716
+ -4,-7:
+ 0: 65535
+ -4,-6:
+ 0: 64719
+ 2: 816
+ -4,-5:
+ 0: 65535
+ -3,-8:
+ 0: 65535
+ -3,-7:
+ 0: 65535
+ -3,-6:
+ 0: 65535
+ -3,-5:
+ 0: 65535
+ -2,-8:
+ 0: 65535
+ -2,-7:
+ 0: 65535
+ -2,-6:
+ 0: 65535
+ -2,-5:
+ 0: 65535
+ -1,-8:
+ 0: 65535
+ -1,-7:
+ 0: 65535
+ -1,-6:
+ 0: 65535
+ -1,-5:
+ 0: 65535
+ 0,-8:
+ 0: 65535
+ 0,-7:
+ 0: 65535
+ 0,-6:
+ 0: 65535
+ 0,-5:
+ 0: 65535
+ 1,-8:
+ 0: 65535
+ 1,-7:
+ 0: 65535
+ 1,-6:
+ 0: 65535
+ 1,-5:
+ 0: 65535
+ 2,-8:
+ 0: 65535
+ 2,-7:
+ 0: 65535
+ 2,-6:
+ 0: 32759
+ 1: 32776
+ 2,-5:
+ 0: 65535
+ 3,-8:
+ 0: 62259
+ 3,-7:
+ 0: 65535
+ 3,-6:
+ 1: 63631
+ 0: 1904
+ 3,-5:
+ 0: 65535
+ -6,-8:
+ 0: 32768
+ -6,-7:
+ 0: 34952
+ -5,-8:
+ 0: 61440
+ -5,-7:
+ 0: 65535
+ -5,-5:
+ 0: 53247
+ -5,-6:
+ 0: 60552
+ 4,-8:
+ 0: 61440
+ 4,-7:
+ 0: 65535
+ 4,-6:
+ 0: 29457
+ 4,-5:
+ 0: 16383
+ -3,-9:
+ 0: 49152
+ -2,-9:
+ 0: 65024
+ -1,-9:
+ 0: 65280
+ 0,-9:
+ 0: 65280
+ 1,-9:
+ 0: 63232
+ 2,-9:
+ 0: 12288
+ 0,1:
+ 0: 61183
+ 0,2:
+ 0: 35020
+ 0,3:
+ 0: 136
+ 1,1:
+ 0: 13107
+ 1,2:
+ 0: 4371
+ 1,3:
+ 0: 4369
+ -2,1:
+ 0: 61166
+ -2,2:
+ 0: 52430
+ -2,3:
+ 0: 17612
+ -1,1:
+ 0: 13311
+ -1,2:
+ 0: 17
+ -2,4:
+ 0: 68
+ 1,4:
+ 0: 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: 5000
+ moles:
+ - 6666.982
+ - 0
+ - 0
+ - 6666.982
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 235
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ type: GridAtmosphere
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+ - id: AI-DC01-003
+ type: BecomesStation
+- proto: AirCanister
+ entities:
+ - uid: 937
+ components:
+ - pos: 3.5,-32.5
+ parent: 1
+ type: Transform
+ - uid: 964
+ components:
+ - pos: 3.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1073
+ components:
+ - pos: 3.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 1084
+ components:
+ - pos: 3.5,-30.5
+ parent: 1
+ type: Transform
+- proto: Airlock
+ entities:
+ - uid: 568
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,-16.5
+ parent: 1
+ type: Transform
+- proto: AirlockAtmospherics
+ entities:
+ - uid: 498
+ components:
+ - pos: 8.5,-28.5
+ parent: 1
+ type: Transform
+- proto: AirlockCargo
+ entities:
+ - uid: 577
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 578
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 0.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 579
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -9.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 580
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -9.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 581
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -9.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 582
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 9.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 583
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 9.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 584
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 9.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 585
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -8.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1082
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 8.5,-14.5
+ parent: 1
+ type: Transform
+- proto: AirlockCommandLocked
+ entities:
+ - uid: 97
+ components:
+ - pos: -4.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 98
+ components:
+ - pos: 4.5,-0.5
+ parent: 1
+ type: Transform
+- proto: AirlockEngineering
+ entities:
+ - uid: 461
+ components:
+ - pos: -8.5,-28.5
+ parent: 1
+ type: Transform
+- proto: AirlockExternalGlass
+ entities:
+ - uid: 25
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 30
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,3.5
+ parent: 1
+ type: Transform
+- proto: AirlockFreezer
+ entities:
+ - uid: 394
+ components:
+ - name: bathroom airlock
+ type: MetaData
+ - pos: -12.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 395
+ components:
+ - name: bathroom airlock
+ type: MetaData
+ - pos: 12.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 638
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-21.5
+ parent: 1
+ type: Transform
+- proto: AirlockGlass
+ entities:
+ - uid: 606
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -9.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 607
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 672
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-22.5
+ parent: 1
+ type: Transform
+- proto: AirlockGlassShuttle
+ entities:
+ - uid: 255
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -20.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 256
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -20.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 257
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -20.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 281
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 20.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 282
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 20.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 283
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 20.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1092
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 19.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1189
+ components:
+ - pos: -1.5,-33.5
+ parent: 1
+ type: Transform
+ - uid: 1190
+ components:
+ - pos: -0.5,-33.5
+ parent: 1
+ type: Transform
+ - uid: 1191
+ components:
+ - pos: 0.5,-33.5
+ parent: 1
+ type: Transform
+ - uid: 1192
+ components:
+ - pos: 1.5,-33.5
+ parent: 1
+ type: Transform
+ - uid: 1193
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -20.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1194
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -20.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1195
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -20.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1196
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 19.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1197
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 19.5,-27.5
+ parent: 1
+ type: Transform
+- proto: AirlockScience
+ entities:
+ - uid: 679
+ components:
+ - pos: 7.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 686
+ components:
+ - pos: 7.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 761
+ components:
+ - pos: 10.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 764
+ components:
+ - pos: 10.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 765
+ components:
+ - pos: 10.5,-22.5
+ parent: 1
+ type: Transform
+- proto: AirlockScienceGlass
+ entities:
+ - uid: 673
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-23.5
+ parent: 1
+ type: Transform
+- proto: AmeJar
+ entities:
+ - uid: 174
+ components:
+ - pos: 2.3387003,-5.446493
+ parent: 1
+ type: Transform
+ - uid: 1677
+ components:
+ - pos: 2.5574503,-5.337118
+ parent: 1
+ type: Transform
+ - uid: 1678
+ components:
+ - pos: 2.7137003,-5.524618
+ parent: 1
+ type: Transform
+- proto: APCBasic
+ entities:
+ - uid: 916
+ components:
+ - pos: -12.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 946
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 947
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -9.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 948
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 949
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 10.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 950
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -1.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 951
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 952
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 953
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -1.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 1042
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -3.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 1045
+ components:
+ - pos: 7.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 1157
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 3.5,-28.5
+ parent: 1
+ type: Transform
+- proto: APCConstructed
+ entities:
+ - uid: 1155
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -13.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1156
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 13.5,-11.5
+ parent: 1
+ type: Transform
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 63
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 87
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 88
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 89
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 90
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 210
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 20.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 211
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 20.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 212
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 20.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 270
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -20.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 271
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -20.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 272
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -20.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 634
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 861
+ components:
+ - pos: 10.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 862
+ components:
+ - pos: 10.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1075
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 1086
+ components:
+ - pos: 19.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1087
+ components:
+ - pos: 19.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1088
+ components:
+ - pos: 19.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1089
+ components:
+ - pos: -20.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1090
+ components:
+ - pos: -20.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1091
+ components:
+ - pos: -20.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1093
+ components:
+ - pos: -1.5,-33.5
+ parent: 1
+ type: Transform
+ - uid: 1094
+ components:
+ - pos: -0.5,-33.5
+ parent: 1
+ type: Transform
+ - uid: 1095
+ components:
+ - pos: 0.5,-33.5
+ parent: 1
+ type: Transform
+ - uid: 1096
+ components:
+ - pos: 1.5,-33.5
+ parent: 1
+ type: Transform
+- proto: AtmosFixFreezerMarker
+ entities:
+ - uid: 2
+ components:
+ - pos: -15.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 635
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -15.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 636
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 637
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-22.5
+ parent: 1
+ type: Transform
+- proto: AtmosFixInstantPlasmaFireMarker
+ entities:
+ - uid: 125
+ components:
+ - pos: -2.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 126
+ components:
+ - pos: -2.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 127
+ components:
+ - pos: -2.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 128
+ components:
+ - pos: -2.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 129
+ components:
+ - pos: -2.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 130
+ components:
+ - pos: -1.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 131
+ components:
+ - pos: -1.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 132
+ components:
+ - pos: -1.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 133
+ components:
+ - pos: -1.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 134
+ components:
+ - pos: -1.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 135
+ components:
+ - pos: -1.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 136
+ components:
+ - pos: -1.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 137
+ components:
+ - pos: 1.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 138
+ components:
+ - pos: 1.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 139
+ components:
+ - pos: 1.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 140
+ components:
+ - pos: 1.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 141
+ components:
+ - pos: 1.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 142
+ components:
+ - pos: 1.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 143
+ components:
+ - pos: 1.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 144
+ components:
+ - pos: 2.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 145
+ components:
+ - pos: 2.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 146
+ components:
+ - pos: 2.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 147
+ components:
+ - pos: 2.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 148
+ components:
+ - pos: 2.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 799
+ components:
+ - pos: 15.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 800
+ components:
+ - pos: 15.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 801
+ components:
+ - pos: 13.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 802
+ components:
+ - pos: 14.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 803
+ components:
+ - pos: 15.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 838
+ components:
+ - pos: 11.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 843
+ components:
+ - pos: 12.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 848
+ components:
+ - pos: 13.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 853
+ components:
+ - pos: 14.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 858
+ components:
+ - pos: 15.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 859
+ components:
+ - pos: 12.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 860
+ components:
+ - pos: 11.5,-23.5
+ parent: 1
+ type: Transform
+- proto: Autolathe
+ entities:
+ - uid: 741
+ components:
+ - pos: 3.5,-23.5
+ parent: 1
+ type: Transform
+- proto: BaseComputer
+ entities:
+ - uid: 107
+ components:
+ - pos: -5.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 108
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 109
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -5.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 110
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 5.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 743
+ components:
+ - pos: 6.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 745
+ components:
+ - pos: 4.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 746
+ components:
+ - pos: 2.5,-18.5
+ parent: 1
+ type: Transform
+- proto: BaseResearchAndDevelopmentPointSource
+ entities:
+ - uid: 798
+ components:
+ - desc: Somehow generates research data from mearly existing.
+ name: Bluespace Data Reader
+ type: MetaData
+ - pos: 15.5,-21.5
+ parent: 1
+ type: Transform
+- proto: BoozeDispenser
+ entities:
+ - uid: 586
+ components:
+ - pos: -5.5,-15.5
+ parent: 1
+ type: Transform
+- proto: BoxHoloparasite
+ entities:
+ - uid: 694
+ components:
+ - pos: 16.145706,-18.042227
+ parent: 1
+ type: Transform
+- proto: BrokenBottle
+ entities:
+ - uid: 1617
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.2477,-18.462357
+ parent: 1
+ type: Transform
+- proto: CableApcExtension
+ entities:
+ - uid: 96
+ components:
+ - pos: -11.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 416
+ components:
+ - pos: 4.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 882
+ components:
+ - pos: -4.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 883
+ components:
+ - pos: -5.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 884
+ components:
+ - pos: -5.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 885
+ components:
+ - pos: -5.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 886
+ components:
+ - pos: -5.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 887
+ components:
+ - pos: -5.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 888
+ components:
+ - pos: -5.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 889
+ components:
+ - pos: -5.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 890
+ components:
+ - pos: -5.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 891
+ components:
+ - pos: -5.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 892
+ components:
+ - pos: -5.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 893
+ components:
+ - pos: -5.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 894
+ components:
+ - pos: -5.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 895
+ components:
+ - pos: -5.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 896
+ components:
+ - pos: -5.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 897
+ components:
+ - pos: -3.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 898
+ components:
+ - pos: -2.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 899
+ components:
+ - pos: -1.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 900
+ components:
+ - pos: -0.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 901
+ components:
+ - pos: 0.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 902
+ components:
+ - pos: 1.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 903
+ components:
+ - pos: 2.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 904
+ components:
+ - pos: 3.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 924
+ components:
+ - pos: -18.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 938
+ components:
+ - pos: 4.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 939
+ components:
+ - pos: 4.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 940
+ components:
+ - pos: 4.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 941
+ components:
+ - pos: 4.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 942
+ components:
+ - pos: 4.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 943
+ components:
+ - pos: 4.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 1056
+ components:
+ - pos: -12.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 1057
+ components:
+ - pos: -12.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1058
+ components:
+ - pos: -12.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1059
+ components:
+ - pos: -11.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1060
+ components:
+ - pos: -10.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1061
+ components:
+ - pos: -9.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1062
+ components:
+ - pos: -8.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1063
+ components:
+ - pos: -7.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1064
+ components:
+ - pos: -6.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1065
+ components:
+ - pos: -7.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1066
+ components:
+ - pos: -7.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 1067
+ components:
+ - pos: -3.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 1068
+ components:
+ - pos: -3.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1069
+ components:
+ - pos: -3.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1070
+ components:
+ - pos: -4.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1085
+ components:
+ - pos: -19.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1160
+ components:
+ - pos: 3.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 1161
+ components:
+ - pos: 3.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1162
+ components:
+ - pos: 3.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1163
+ components:
+ - pos: 2.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1164
+ components:
+ - pos: 3.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1165
+ components:
+ - pos: 4.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1166
+ components:
+ - pos: 5.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1167
+ components:
+ - pos: 6.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1168
+ components:
+ - pos: 7.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1169
+ components:
+ - pos: 8.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1170
+ components:
+ - pos: 9.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1171
+ components:
+ - pos: 10.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1172
+ components:
+ - pos: 11.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1173
+ components:
+ - pos: 12.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1174
+ components:
+ - pos: 13.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1175
+ components:
+ - pos: 14.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1176
+ components:
+ - pos: 15.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1177
+ components:
+ - pos: 16.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1178
+ components:
+ - pos: 17.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1179
+ components:
+ - pos: 18.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1180
+ components:
+ - pos: -2.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1181
+ components:
+ - pos: -1.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1182
+ components:
+ - pos: -0.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1183
+ components:
+ - pos: -0.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1184
+ components:
+ - pos: -0.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 1185
+ components:
+ - pos: -0.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1186
+ components:
+ - pos: -0.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1187
+ components:
+ - pos: -0.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 1188
+ components:
+ - pos: -0.5,-32.5
+ parent: 1
+ type: Transform
+ - uid: 1199
+ components:
+ - pos: 1.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1200
+ components:
+ - pos: 2.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1201
+ components:
+ - pos: 3.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1202
+ components:
+ - pos: 4.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1203
+ components:
+ - pos: 5.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1204
+ components:
+ - pos: 6.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1205
+ components:
+ - pos: 4.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1206
+ components:
+ - pos: 4.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1207
+ components:
+ - pos: 4.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1208
+ components:
+ - pos: 4.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 1209
+ components:
+ - pos: 4.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1210
+ components:
+ - pos: 4.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1211
+ components:
+ - pos: 2.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1212
+ components:
+ - pos: 3.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1213
+ components:
+ - pos: 4.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1214
+ components:
+ - pos: 5.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1215
+ components:
+ - pos: 6.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1216
+ components:
+ - pos: 10.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1217
+ components:
+ - pos: 9.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1218
+ components:
+ - pos: 8.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1219
+ components:
+ - pos: 9.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1220
+ components:
+ - pos: 9.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 1221
+ components:
+ - pos: 9.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1222
+ components:
+ - pos: 9.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1223
+ components:
+ - pos: 9.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 1224
+ components:
+ - pos: 9.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1225
+ components:
+ - pos: 9.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1226
+ components:
+ - pos: 9.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1227
+ components:
+ - pos: 9.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1228
+ components:
+ - pos: 10.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1229
+ components:
+ - pos: 11.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1230
+ components:
+ - pos: 12.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1231
+ components:
+ - pos: 13.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1232
+ components:
+ - pos: 14.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1233
+ components:
+ - pos: 4.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1234
+ components:
+ - pos: 4.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 1235
+ components:
+ - pos: 4.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1236
+ components:
+ - pos: 4.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1237
+ components:
+ - pos: 2.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1238
+ components:
+ - pos: 3.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1239
+ components:
+ - pos: 4.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1240
+ components:
+ - pos: 5.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1241
+ components:
+ - pos: 6.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1242
+ components:
+ - pos: 9.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1243
+ components:
+ - pos: 10.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1244
+ components:
+ - pos: 11.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1245
+ components:
+ - pos: 12.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1246
+ components:
+ - pos: 13.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1247
+ components:
+ - pos: 14.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1248
+ components:
+ - pos: -1.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1249
+ components:
+ - pos: -2.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1250
+ components:
+ - pos: -3.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1251
+ components:
+ - pos: -4.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1252
+ components:
+ - pos: -5.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1253
+ components:
+ - pos: -6.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1254
+ components:
+ - pos: -7.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1255
+ components:
+ - pos: -7.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1256
+ components:
+ - pos: -7.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1257
+ components:
+ - pos: -7.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 1258
+ components:
+ - pos: -7.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1259
+ components:
+ - pos: -7.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1260
+ components:
+ - pos: -7.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 1261
+ components:
+ - pos: -7.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1262
+ components:
+ - pos: -7.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1263
+ components:
+ - pos: -3.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1264
+ components:
+ - pos: -3.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1265
+ components:
+ - pos: -3.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 1266
+ components:
+ - pos: -3.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1267
+ components:
+ - pos: -3.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1268
+ components:
+ - pos: -3.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 1269
+ components:
+ - pos: -3.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1270
+ components:
+ - pos: -3.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1271
+ components:
+ - pos: -9.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1272
+ components:
+ - pos: -10.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1273
+ components:
+ - pos: -11.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1274
+ components:
+ - pos: -12.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1275
+ components:
+ - pos: -13.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1276
+ components:
+ - pos: -14.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1277
+ components:
+ - pos: -11.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1278
+ components:
+ - pos: -11.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1279
+ components:
+ - pos: -11.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1280
+ components:
+ - pos: -11.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 1281
+ components:
+ - pos: -11.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1282
+ components:
+ - pos: -11.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1283
+ components:
+ - pos: -11.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 1284
+ components:
+ - pos: -11.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1285
+ components:
+ - pos: -10.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1286
+ components:
+ - pos: -11.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1287
+ components:
+ - pos: -12.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1288
+ components:
+ - pos: -13.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1289
+ components:
+ - pos: -14.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1290
+ components:
+ - pos: -15.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1291
+ components:
+ - pos: -16.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1292
+ components:
+ - pos: -17.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1293
+ components:
+ - pos: -18.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1294
+ components:
+ - pos: -13.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1295
+ components:
+ - pos: -13.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1296
+ components:
+ - pos: -13.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1297
+ components:
+ - pos: -13.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1298
+ components:
+ - pos: -14.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1299
+ components:
+ - pos: -15.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1300
+ components:
+ - pos: -16.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1301
+ components:
+ - pos: -17.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1302
+ components:
+ - pos: -18.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1303
+ components:
+ - pos: -19.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1304
+ components:
+ - pos: -13.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1305
+ components:
+ - pos: -12.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1306
+ components:
+ - pos: -11.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1307
+ components:
+ - pos: -13.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1308
+ components:
+ - pos: -13.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1309
+ components:
+ - pos: -13.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1310
+ components:
+ - pos: -13.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1311
+ components:
+ - pos: -13.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1312
+ components:
+ - pos: -12.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1313
+ components:
+ - pos: -11.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1314
+ components:
+ - pos: -10.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1315
+ components:
+ - pos: -10.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1316
+ components:
+ - pos: 11.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1317
+ components:
+ - pos: 12.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1318
+ components:
+ - pos: 13.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1319
+ components:
+ - pos: 14.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1320
+ components:
+ - pos: 15.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1321
+ components:
+ - pos: 16.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1322
+ components:
+ - pos: 17.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1323
+ components:
+ - pos: 18.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1324
+ components:
+ - pos: 13.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1325
+ components:
+ - pos: 13.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1326
+ components:
+ - pos: 13.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1327
+ components:
+ - pos: 13.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1328
+ components:
+ - pos: 13.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1329
+ components:
+ - pos: 12.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1330
+ components:
+ - pos: 11.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1331
+ components:
+ - pos: 10.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1332
+ components:
+ - pos: 10.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1333
+ components:
+ - pos: 19.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1334
+ components:
+ - pos: -1.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1335
+ components:
+ - pos: -1.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1336
+ components:
+ - pos: -1.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1337
+ components:
+ - pos: -1.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1338
+ components:
+ - pos: -1.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1339
+ components:
+ - pos: -1.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1340
+ components:
+ - pos: -7.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1341
+ components:
+ - pos: -6.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1342
+ components:
+ - pos: -5.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1343
+ components:
+ - pos: -4.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1344
+ components:
+ - pos: -3.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1345
+ components:
+ - pos: -2.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1346
+ components:
+ - pos: -1.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1347
+ components:
+ - pos: -0.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1348
+ components:
+ - pos: 0.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1349
+ components:
+ - pos: 1.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1350
+ components:
+ - pos: 2.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1351
+ components:
+ - pos: 3.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1352
+ components:
+ - pos: 4.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1353
+ components:
+ - pos: 5.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1354
+ components:
+ - pos: 6.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1355
+ components:
+ - pos: 7.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1356
+ components:
+ - pos: 8.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1357
+ components:
+ - pos: -7.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1358
+ components:
+ - pos: -6.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1359
+ components:
+ - pos: -5.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1360
+ components:
+ - pos: -4.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1361
+ components:
+ - pos: -3.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1362
+ components:
+ - pos: -2.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1363
+ components:
+ - pos: -1.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1364
+ components:
+ - pos: -0.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1365
+ components:
+ - pos: 0.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1366
+ components:
+ - pos: 1.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1367
+ components:
+ - pos: 2.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1368
+ components:
+ - pos: 3.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1369
+ components:
+ - pos: 4.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1370
+ components:
+ - pos: 5.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1371
+ components:
+ - pos: 6.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1372
+ components:
+ - pos: 7.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1373
+ components:
+ - pos: -5.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 1374
+ components:
+ - pos: -5.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 1375
+ components:
+ - pos: -5.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 1376
+ components:
+ - pos: -5.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 1377
+ components:
+ - pos: -5.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1378
+ components:
+ - pos: -5.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1379
+ components:
+ - pos: -5.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1380
+ components:
+ - pos: -5.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1381
+ components:
+ - pos: -5.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1382
+ components:
+ - pos: 5.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 1383
+ components:
+ - pos: 5.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 1384
+ components:
+ - pos: 5.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 1385
+ components:
+ - pos: 5.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 1386
+ components:
+ - pos: 5.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1387
+ components:
+ - pos: 5.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1388
+ components:
+ - pos: 5.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1389
+ components:
+ - pos: 5.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1390
+ components:
+ - pos: 5.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1391
+ components:
+ - pos: -1.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 1392
+ components:
+ - pos: -1.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1393
+ components:
+ - pos: -1.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1394
+ components:
+ - pos: -1.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 1395
+ components:
+ - pos: -5.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1396
+ components:
+ - pos: -4.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1397
+ components:
+ - pos: -3.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1398
+ components:
+ - pos: -2.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1399
+ components:
+ - pos: -1.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1400
+ components:
+ - pos: -0.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1401
+ components:
+ - pos: 0.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1402
+ components:
+ - pos: 1.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1403
+ components:
+ - pos: 2.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1404
+ components:
+ - pos: 3.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1405
+ components:
+ - pos: 4.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1406
+ components:
+ - pos: 5.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1407
+ components:
+ - pos: -3.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 1408
+ components:
+ - pos: -4.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 1409
+ components:
+ - pos: -4.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1410
+ components:
+ - pos: -5.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1411
+ components:
+ - pos: 3.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 1412
+ components:
+ - pos: 3.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 1413
+ components:
+ - pos: 4.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 1414
+ components:
+ - pos: 4.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1415
+ components:
+ - pos: 5.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1429
+ components:
+ - pos: 4.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 1430
+ components:
+ - pos: 4.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 1481
+ components:
+ - pos: -6.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1485
+ components:
+ - pos: -17.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1487
+ components:
+ - pos: -16.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1488
+ components:
+ - pos: -15.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1489
+ components:
+ - pos: -14.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1491
+ components:
+ - pos: -10.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1492
+ components:
+ - pos: -9.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1496
+ components:
+ - pos: -12.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1497
+ components:
+ - pos: -13.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1498
+ components:
+ - pos: -8.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1499
+ components:
+ - pos: -4.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1502
+ components:
+ - pos: -7.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1503
+ components:
+ - pos: -5.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1661
+ components:
+ - pos: 4.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 1662
+ components:
+ - pos: 4.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 1663
+ components:
+ - pos: 4.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 1664
+ components:
+ - pos: 4.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 1665
+ components:
+ - pos: 4.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 1666
+ components:
+ - pos: 4.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 1668
+ components:
+ - pos: -1.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 1669
+ components:
+ - pos: 1.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 1670
+ components:
+ - pos: 1.5,3.5
+ parent: 1
+ type: Transform
+- proto: CableHV
+ entities:
+ - uid: 872
+ components:
+ - pos: -6.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 873
+ components:
+ - pos: -4.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 874
+ components:
+ - pos: -5.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 875
+ components:
+ - pos: -3.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 907
+ components:
+ - pos: -6.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 913
+ components:
+ - pos: -11.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 915
+ components:
+ - pos: -12.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1098
+ components:
+ - pos: -8.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 1099
+ components:
+ - pos: -8.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1100
+ components:
+ - pos: -9.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1101
+ components:
+ - pos: -10.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1102
+ components:
+ - pos: -10.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1103
+ components:
+ - pos: -9.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1104
+ components:
+ - pos: -8.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1105
+ components:
+ - pos: -7.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 1106
+ components:
+ - pos: -6.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 1107
+ components:
+ - pos: -6.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1108
+ components:
+ - pos: -6.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1109
+ components:
+ - pos: -7.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1110
+ components:
+ - pos: -8.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 1111
+ components:
+ - pos: -8.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 1112
+ components:
+ - pos: -8.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1113
+ components:
+ - pos: -9.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1114
+ components:
+ - pos: -10.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1115
+ components:
+ - pos: -10.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1116
+ components:
+ - pos: -10.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1117
+ components:
+ - pos: -9.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1118
+ components:
+ - pos: -8.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1119
+ components:
+ - pos: -9.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1120
+ components:
+ - pos: -10.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1121
+ components:
+ - pos: -11.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1122
+ components:
+ - pos: -12.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1123
+ components:
+ - pos: -12.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1671
+ components:
+ - pos: -5.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1672
+ components:
+ - pos: -4.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1673
+ components:
+ - pos: -3.5,-30.5
+ parent: 1
+ type: Transform
+- proto: CableMV
+ entities:
+ - uid: 917
+ components:
+ - pos: -12.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 918
+ components:
+ - pos: -12.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 919
+ components:
+ - pos: -12.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 955
+ components:
+ - pos: -11.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 956
+ components:
+ - pos: -10.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 957
+ components:
+ - pos: -9.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 958
+ components:
+ - pos: -8.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 959
+ components:
+ - pos: -8.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 960
+ components:
+ - pos: -8.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 961
+ components:
+ - pos: -8.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 968
+ components:
+ - pos: -3.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 969
+ components:
+ - pos: -2.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 970
+ components:
+ - pos: -1.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 971
+ components:
+ - pos: -0.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 972
+ components:
+ - pos: 3.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 973
+ components:
+ - pos: 5.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 974
+ components:
+ - pos: 2.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 975
+ components:
+ - pos: 4.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 976
+ components:
+ - pos: -0.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 977
+ components:
+ - pos: -0.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 978
+ components:
+ - pos: -0.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 979
+ components:
+ - pos: -0.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 980
+ components:
+ - pos: 0.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 981
+ components:
+ - pos: 3.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 982
+ components:
+ - pos: -1.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 983
+ components:
+ - pos: 1.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 984
+ components:
+ - pos: 1.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 985
+ components:
+ - pos: 6.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 986
+ components:
+ - pos: 7.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 987
+ components:
+ - pos: 8.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 988
+ components:
+ - pos: 9.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 989
+ components:
+ - pos: 9.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 990
+ components:
+ - pos: 9.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 991
+ components:
+ - pos: 9.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 992
+ components:
+ - pos: 10.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 993
+ components:
+ - pos: -1.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 994
+ components:
+ - pos: -2.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 995
+ components:
+ - pos: -3.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 996
+ components:
+ - pos: -4.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 997
+ components:
+ - pos: -5.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 998
+ components:
+ - pos: -6.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 999
+ components:
+ - pos: -7.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1000
+ components:
+ - pos: -8.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1001
+ components:
+ - pos: -9.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1002
+ components:
+ - pos: -9.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1003
+ components:
+ - pos: -0.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1004
+ components:
+ - pos: -0.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 1005
+ components:
+ - pos: -0.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1006
+ components:
+ - pos: -0.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1007
+ components:
+ - pos: -0.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 1008
+ components:
+ - pos: -0.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1009
+ components:
+ - pos: -0.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1010
+ components:
+ - pos: -0.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1011
+ components:
+ - pos: -0.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1012
+ components:
+ - pos: -1.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1013
+ components:
+ - pos: -0.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1014
+ components:
+ - pos: -0.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1015
+ components:
+ - pos: -0.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1016
+ components:
+ - pos: -0.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1017
+ components:
+ - pos: -0.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1018
+ components:
+ - pos: -0.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 1019
+ components:
+ - pos: -0.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 1020
+ components:
+ - pos: -0.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 1021
+ components:
+ - pos: -0.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 1022
+ components:
+ - pos: -0.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 1023
+ components:
+ - pos: -0.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 1024
+ components:
+ - pos: -0.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1025
+ components:
+ - pos: -0.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 1026
+ components:
+ - pos: -0.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 1027
+ components:
+ - pos: -0.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1028
+ components:
+ - pos: -1.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1029
+ components:
+ - pos: -1.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 1030
+ components:
+ - pos: -1.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1031
+ components:
+ - pos: -2.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1032
+ components:
+ - pos: -3.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1033
+ components:
+ - pos: -3.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 1034
+ components:
+ - pos: -3.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 1035
+ components:
+ - pos: 3.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 1036
+ components:
+ - pos: 3.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 1037
+ components:
+ - pos: 3.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1038
+ components:
+ - pos: 3.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1039
+ components:
+ - pos: 2.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1040
+ components:
+ - pos: 1.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1041
+ components:
+ - pos: 0.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1043
+ components:
+ - pos: -3.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1044
+ components:
+ - pos: -3.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 1046
+ components:
+ - pos: 0.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1047
+ components:
+ - pos: 1.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1048
+ components:
+ - pos: 2.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1049
+ components:
+ - pos: 3.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1050
+ components:
+ - pos: 4.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1051
+ components:
+ - pos: 5.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1052
+ components:
+ - pos: 6.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1053
+ components:
+ - pos: 7.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1054
+ components:
+ - pos: 7.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1055
+ components:
+ - pos: 7.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 1124
+ components:
+ - pos: -1.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1125
+ components:
+ - pos: -2.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1126
+ components:
+ - pos: -3.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1127
+ components:
+ - pos: -4.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1128
+ components:
+ - pos: -5.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1129
+ components:
+ - pos: -6.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1130
+ components:
+ - pos: -7.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1131
+ components:
+ - pos: -8.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1132
+ components:
+ - pos: -9.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1133
+ components:
+ - pos: -10.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1134
+ components:
+ - pos: -11.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1135
+ components:
+ - pos: -12.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1136
+ components:
+ - pos: -13.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1137
+ components:
+ - pos: -13.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1138
+ components:
+ - pos: -13.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1139
+ components:
+ - pos: 0.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1140
+ components:
+ - pos: 1.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1141
+ components:
+ - pos: 2.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1142
+ components:
+ - pos: 3.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1143
+ components:
+ - pos: 4.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1144
+ components:
+ - pos: 5.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1145
+ components:
+ - pos: 6.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1146
+ components:
+ - pos: 7.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1147
+ components:
+ - pos: 8.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1148
+ components:
+ - pos: 9.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1149
+ components:
+ - pos: 10.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1150
+ components:
+ - pos: 11.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1151
+ components:
+ - pos: 12.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1152
+ components:
+ - pos: 13.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1153
+ components:
+ - pos: 13.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1154
+ components:
+ - pos: 13.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1158
+ components:
+ - pos: 3.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1159
+ components:
+ - pos: 3.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 1504
+ components:
+ - pos: -8.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1505
+ components:
+ - pos: -7.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1506
+ components:
+ - pos: -6.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1507
+ components:
+ - pos: -5.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1508
+ components:
+ - pos: -4.5,-27.5
+ parent: 1
+ type: Transform
+- proto: CableTerminal
+ entities:
+ - uid: 925
+ components:
+ - pos: -9.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 927
+ components:
+ - pos: -10.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 936
+ components:
+ - pos: -8.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1097
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -7.5,-31.5
+ parent: 1
+ type: Transform
+- proto: CargoPallet
+ entities:
+ - uid: 292
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 293
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 294
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 295
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 296
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 297
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 298
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 6.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 299
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 6.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 300
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 301
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 302
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 303
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 304
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 305
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 306
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 307
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 308
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 309
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 310
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 311
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 312
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 313
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 314
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 6.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 315
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 6.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 316
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 317
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 318
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 319
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 320
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 321
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 322
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 6.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 323
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 6.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 324
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 325
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 326
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 327
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 328
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 329
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 330
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 331
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 332
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 0.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 333
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 0.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 334
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 335
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1568
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1569
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1570
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1571
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 0.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1572
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1573
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,1.5
+ parent: 1
+ type: Transform
+- proto: Catwalk
+ entities:
+ - uid: 233
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 905
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 906
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 909
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 910
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 911
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 912
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 920
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 921
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 922
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 923
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 935
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 1079
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1480
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 1482
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 1483
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 1484
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1486
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 1490
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1493
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 1494
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1495
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 1500
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1501
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1516
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 1517
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 1518
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1519
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 1520
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1521
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1522
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1523
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1524
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 1525
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1526
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1527
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1528
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1529
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 0.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1530
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1531
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1532
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1533
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1534
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1535
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1536
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1537
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1538
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 0.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1539
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1540
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,5.5
+ parent: 1
+ type: Transform
+- proto: ChairOfficeDark
+ entities:
+ - uid: 99
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 100
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 718
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 3.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 751
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 5.5,-19.5
+ parent: 1
+ type: Transform
+- proto: ChairWood
+ entities:
+ - uid: 664
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 665
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 666
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -8.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 667
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -8.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 668
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 669
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 670
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 671
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-22.5
+ parent: 1
+ type: Transform
+- proto: chem_master
+ entities:
+ - uid: 589
+ components:
+ - pos: -2.5,-15.5
+ parent: 1
+ type: Transform
+- proto: CircuitImprinter
+ entities:
+ - uid: 742
+ components:
+ - pos: 5.5,-23.5
+ parent: 1
+ type: Transform
+- proto: ClothingBeltSecurityFilled
+ entities:
+ - uid: 175
+ components:
+ - pos: -2.461778,-5.5628567
+ parent: 1
+ type: Transform
+- proto: ClothingHeadHelmetSwatSyndicate
+ entities:
+ - uid: 176
+ components:
+ - pos: -2.461778,-5.3284817
+ parent: 1
+ type: Transform
+- proto: ClothingMaskGasSwat
+ entities:
+ - uid: 177
+ components:
+ - pos: -2.383653,-5.4222317
+ parent: 1
+ type: Transform
+- proto: ClothingOuterArmorCaptainCarapace
+ entities:
+ - uid: 782
+ components:
+ - pos: 14.521454,-16.387169
+ parent: 1
+ type: Transform
+- proto: ClothingShoesSwat
+ entities:
+ - uid: 178
+ components:
+ - pos: -2.461778,-5.4847317
+ parent: 1
+ type: Transform
+- proto: ClothingUniformJumpskirtCaptain
+ entities:
+ - uid: 784
+ components:
+ - pos: 14.333954,-16.512169
+ parent: 1
+ type: Transform
+- proto: ClothingUniformJumpsuitCaptain
+ entities:
+ - uid: 785
+ components:
+ - pos: 14.740204,-16.480919
+ parent: 1
+ type: Transform
+- proto: ComputerAlert
+ entities:
+ - uid: 105
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 106
+ components:
+ - pos: 5.5,-1.5
+ parent: 1
+ type: Transform
+- proto: ComputerAnalysisConsole
+ entities:
+ - uid: 744
+ components:
+ - pos: 3.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 748
+ components:
+ - pos: 5.5,-18.5
+ parent: 1
+ type: Transform
+- proto: CrateChemistrySupplies
+ entities:
+ - uid: 340
+ components:
+ - pos: 1.5,-11.5
+ parent: 1
+ type: Transform
+- proto: CrateEmergencyAdvancedKit
+ entities:
+ - uid: 342
+ components:
+ - pos: -6.5,-9.5
+ parent: 1
+ type: Transform
+- proto: CrateEmergencyRadiationKit
+ entities:
+ - uid: 343
+ components:
+ - pos: 6.5,-11.5
+ parent: 1
+ type: Transform
+- proto: CrateEmergencyToxinKit
+ entities:
+ - uid: 344
+ components:
+ - pos: 5.5,-5.5
+ parent: 1
+ type: Transform
+- proto: CrateEngineeringAMEJar
+ entities:
+ - uid: 338
+ components:
+ - pos: -5.5,-12.5
+ parent: 1
+ type: Transform
+- proto: CrateEngineeringCableBulk
+ entities:
+ - uid: 339
+ components:
+ - pos: 5.5,-8.5
+ parent: 1
+ type: Transform
+- proto: CrateEvaKit
+ entities:
+ - uid: 341
+ components:
+ - pos: -6.5,-5.5
+ parent: 1
+ type: Transform
+- proto: CrateFilledSpawner
+ entities:
+ - uid: 354
+ components:
+ - pos: -5.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 355
+ components:
+ - pos: -4.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 356
+ components:
+ - pos: -4.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 357
+ components:
+ - pos: -6.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 358
+ components:
+ - pos: -6.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 359
+ components:
+ - pos: -5.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 360
+ components:
+ - pos: -4.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 361
+ components:
+ - pos: -6.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 362
+ components:
+ - pos: -4.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 363
+ components:
+ - pos: -4.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 364
+ components:
+ - pos: -1.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 365
+ components:
+ - pos: -0.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 366
+ components:
+ - pos: 0.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 367
+ components:
+ - pos: 0.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 368
+ components:
+ - pos: 1.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 369
+ components:
+ - pos: 4.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 370
+ components:
+ - pos: 5.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 371
+ components:
+ - pos: 6.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 372
+ components:
+ - pos: 6.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 373
+ components:
+ - pos: 6.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 374
+ components:
+ - pos: 5.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 375
+ components:
+ - pos: 4.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 376
+ components:
+ - pos: 4.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 377
+ components:
+ - pos: 5.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 378
+ components:
+ - pos: 6.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 379
+ components:
+ - pos: 6.5,-5.5
+ parent: 1
+ type: Transform
+- proto: CrateFunATV
+ entities:
+ - uid: 336
+ components:
+ - pos: -4.5,-8.5
+ parent: 1
+ type: Transform
+- proto: CrateFunMysteryFigurines
+ entities:
+ - uid: 346
+ components:
+ - pos: -5.5,-5.5
+ parent: 1
+ type: Transform
+- proto: CrateHydroponicsTools
+ entities:
+ - uid: 648
+ components:
+ - pos: -17.5,-18.5
+ parent: 1
+ type: Transform
+- proto: CrateMaterialGlass
+ entities:
+ - uid: 353
+ components:
+ - pos: -1.5,-11.5
+ parent: 1
+ type: Transform
+- proto: CrateMaterialPlasma
+ entities:
+ - uid: 352
+ components:
+ - pos: -5.5,-9.5
+ parent: 1
+ type: Transform
+- proto: CrateMaterialPlasteel
+ entities:
+ - uid: 347
+ components:
+ - pos: -6.5,-11.5
+ parent: 1
+ type: Transform
+- proto: CrateMaterialPlastic
+ entities:
+ - uid: 348
+ components:
+ - pos: -0.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 349
+ components:
+ - pos: 4.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 350
+ components:
+ - pos: -5.5,-6.5
+ parent: 1
+ type: Transform
+- proto: CrateMaterialSteel
+ entities:
+ - uid: 351
+ components:
+ - pos: 4.5,-5.5
+ parent: 1
+ type: Transform
+- proto: CrateNPCEmotionalSupportSafe
+ entities:
+ - uid: 337
+ components:
+ - pos: 5.5,-12.5
+ parent: 1
+ type: Transform
+- proto: CrateServiceJanitorialSupplies
+ entities:
+ - uid: 345
+ components:
+ - pos: 4.5,-9.5
+ parent: 1
+ type: Transform
+- proto: CrateSyndicateLightSurplusBundle
+ entities:
+ - uid: 767
+ components:
+ - pos: 11.5,-16.5
+ parent: 1
+ type: Transform
+ - air:
+ volume: 200
+ immutable: False
+ temperature: 75.31249
+ moles:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ type: EntityStorage
+- proto: EnergyKatana
+ entities:
+ - uid: 173
+ components:
+ - pos: -2.419681,-4.5316067
+ parent: 1
+ type: Transform
+- proto: Firelock
+ entities:
+ - uid: 248
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -1.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 284
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -9.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 285
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -9.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 286
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -9.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 287
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 288
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 0.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 289
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 9.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 290
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 9.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 291
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 9.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 572
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -9.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 573
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -9.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 574
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -9.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 575
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -9.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 576
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -8.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 600
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 601
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 602
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 603
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 639
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 640
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 722
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 723
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 724
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 725
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 726
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 727
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 728
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 729
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 730
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 731
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 732
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 733
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 734
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 735
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-28.5
+ parent: 1
+ type: Transform
+- proto: FloorDrain
+ entities:
+ - uid: 415
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-12.5
+ parent: 1
+ type: Transform
+ - fixtures: {}
+ type: Fixtures
+ - uid: 419
+ components:
+ - pos: 14.5,-12.5
+ parent: 1
+ type: Transform
+ - fixtures: {}
+ type: Fixtures
+ - uid: 590
+ components:
+ - pos: -5.5,-18.5
+ parent: 1
+ type: Transform
+ - fixtures: {}
+ type: Fixtures
+ - uid: 591
+ components:
+ - pos: -3.5,-18.5
+ parent: 1
+ type: Transform
+ - fixtures: {}
+ type: Fixtures
+- proto: FoodBowlBigTrash
+ entities:
+ - uid: 1615
+ components:
+ - pos: -10.52895,-17.431107
+ parent: 1
+ type: Transform
+- proto: FoodCornTrash
+ entities:
+ - uid: 1616
+ components:
+ - pos: -4.4977,-22.134232
+ parent: 1
+ type: Transform
+- proto: FoodMeat
+ entities:
+ - uid: 1625
+ components:
+ - pos: -14.742225,-21.727854
+ parent: 1
+ type: Transform
+ - uid: 1626
+ components:
+ - pos: -15.070351,-22.227854
+ parent: 1
+ type: Transform
+ - uid: 1627
+ components:
+ - pos: -14.460975,-22.055979
+ parent: 1
+ type: Transform
+- proto: FoodPlateSmallTrash
+ entities:
+ - uid: 1619
+ components:
+ - pos: -9.563675,-19.800158
+ parent: 1
+ type: Transform
+- proto: FoodPlateTrash
+ entities:
+ - uid: 1618
+ components:
+ - pos: -9.48555,-21.097033
+ parent: 1
+ type: Transform
+- proto: GasPipeStraight
+ entities:
+ - uid: 944
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 10.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 945
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 9.5,-29.5
+ parent: 1
+ type: Transform
+- proto: GeneratorRTG
+ entities:
+ - uid: 172
+ components:
+ - pos: -4.5,-29.5
+ parent: 1
+ type: Transform
+ missingComponents:
+ - Anchorable
+ - uid: 869
+ components:
+ - pos: -3.5,-29.5
+ parent: 1
+ type: Transform
+ missingComponents:
+ - Anchorable
+ - uid: 871
+ components:
+ - pos: -5.5,-29.5
+ parent: 1
+ type: Transform
+ missingComponents:
+ - Anchorable
+ - uid: 1674
+ components:
+ - pos: -5.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1675
+ components:
+ - pos: -4.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1676
+ components:
+ - pos: -3.5,-30.5
+ parent: 1
+ type: Transform
+- proto: GravityGenerator
+ entities:
+ - uid: 870
+ components:
+ - pos: -4.5,-31.5
+ parent: 1
+ type: Transform
+- proto: GravityGeneratorMini
+ entities:
+ - uid: 954
+ components:
+ - pos: -11.5,-30.5
+ parent: 1
+ type: Transform
+- proto: Grille
+ entities:
+ - uid: 71
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -7.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 72
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -7.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 73
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -7.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 74
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 75
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 76
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 77
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 78
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 79
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 80
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 81
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 82
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 83
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 84
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 85
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 86
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 430
+ components:
+ - pos: 6.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 550
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -7.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 551
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 552
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 553
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 554
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 555
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 556
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 557
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 863
+ components:
+ - pos: 5.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 864
+ components:
+ - pos: 4.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 865
+ components:
+ - pos: 3.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 866
+ components:
+ - pos: 2.5,-17.5
+ parent: 1
+ type: Transform
+- proto: HighSecCommandLocked
+ entities:
+ - uid: 91
+ components:
+ - pos: -0.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 92
+ components:
+ - pos: 0.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 93
+ components:
+ - pos: 0.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 94
+ components:
+ - pos: -0.5,-0.5
+ parent: 1
+ type: Transform
+- proto: HospitalCurtains
+ entities:
+ - uid: 406
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -10.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 407
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 10.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 412
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 413
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-13.5
+ parent: 1
+ type: Transform
+ - secondsUntilStateChange: -1523.923
+ state: Opening
+ type: Door
+ - uid: 414
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 422
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 13.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 423
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 13.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 424
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 13.5,-14.5
+ parent: 1
+ type: Transform
+ - secondsUntilStateChange: -5287.2925
+ state: Opening
+ type: Door
+- proto: hydroponicsTrayAnchored
+ entities:
+ - uid: 641
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -17.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 642
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -16.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 643
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -15.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 644
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-19.5
+ parent: 1
+ type: Transform
+- proto: JetpackCaptainFilled
+ entities:
+ - uid: 783
+ components:
+ - pos: 14.521454,-16.184044
+ parent: 1
+ type: Transform
+- proto: KitchenMicrowave
+ entities:
+ - uid: 655
+ components:
+ - pos: -12.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 657
+ components:
+ - pos: -10.5,-16.5
+ parent: 1
+ type: Transform
+- proto: KitchenReagentGrinder
+ entities:
+ - uid: 656
+ components:
+ - pos: -11.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 658
+ components:
+ - pos: -10.5,-18.5
+ parent: 1
+ type: Transform
+- proto: KitchenSpike
+ entities:
+ - uid: 659
+ components:
+ - pos: -15.5,-21.5
+ parent: 1
+ type: Transform
+- proto: LightPostSmall
+ entities:
+ - uid: 1514
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 1515
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,17.5
+ parent: 1
+ type: Transform
+- proto: MachineArtifactAnalyzer
+ entities:
+ - uid: 749
+ components:
+ - pos: 3.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 750
+ components:
+ - pos: 5.5,-15.5
+ parent: 1
+ type: Transform
+- proto: MagazinePistolSubMachineGunTopMounted
+ entities:
+ - uid: 180
+ components:
+ - pos: 2.6408477,-3.524395
+ parent: 1
+ type: Transform
+ - uid: 181
+ components:
+ - pos: 2.4845977,-3.649395
+ parent: 1
+ type: Transform
+- proto: Mirror
+ entities:
+ - uid: 400
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -9.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 402
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 9.5,-13.5
+ parent: 1
+ type: Transform
+- proto: NitrogenCanister
+ entities:
+ - uid: 962
+ components:
+ - pos: 4.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 965
+ components:
+ - pos: 4.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 1078
+ components:
+ - pos: 4.5,-29.5
+ parent: 1
+ type: Transform
+- proto: OxygenCanister
+ entities:
+ - uid: 1077
+ components:
+ - pos: 4.5,-32.5
+ parent: 1
+ type: Transform
+- proto: PaperBin10
+ entities:
+ - uid: 756
+ components:
+ - pos: 5.5,-21.5
+ parent: 1
+ type: Transform
+- proto: PlasmaCanister
+ entities:
+ - uid: 1071
+ components:
+ - pos: 7.5,-29.5
+ parent: 1
+ type: Transform
+- proto: PlasmaReinforcedWindowDirectional
+ entities:
+ - uid: 111
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 112
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 113
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 114
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 115
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 116
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 117
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 118
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 119
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 120
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 121
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 122
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 123
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 124
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 149
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -1.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 150
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -2.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 151
+ components:
+ - pos: -1.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 152
+ components:
+ - pos: -2.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 153
+ components:
+ - pos: 2.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 154
+ components:
+ - pos: 1.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 155
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 1.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 156
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 692
+ components:
+ - pos: 11.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 693
+ components:
+ - pos: 12.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 716
+ components:
+ - pos: 15.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 773
+ components:
+ - pos: 13.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 774
+ components:
+ - pos: 14.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 787
+ components:
+ - pos: 14.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 788
+ components:
+ - pos: 13.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 789
+ components:
+ - pos: 12.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 790
+ components:
+ - pos: 11.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 791
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 11.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 792
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 12.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 793
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 13.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 794
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 14.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 795
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 15.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 796
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 15.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 797
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 15.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 878
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 14.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 879
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 14.5,-17.5
+ parent: 1
+ type: Transform
+- proto: PlastitaniumWindow
+ entities:
+ - uid: 3
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -7.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 4
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -7.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 5
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -7.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 6
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 7.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 7
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 7.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 8
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 7.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 15
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 16
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 17
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 18
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 19
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 20
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 21
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 22
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 24
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 95
+ components:
+ - pos: 2.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 429
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 431
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 544
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 545
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 546
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 547
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 548
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -7.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 736
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 3.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 737
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 6.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 738
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 4.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 739
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 5.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 747
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 867
+ components:
+ - pos: -1.5,-20.5
+ parent: 1
+ type: Transform
+- proto: PlushieCorgi
+ entities:
+ - uid: 695
+ components:
+ - pos: 17.982115,-12.495051
+ parent: 1
+ type: Transform
+- proto: PlushieGirlyCorgi
+ entities:
+ - uid: 877
+ components:
+ - pos: 17.044615,-12.479426
+ parent: 1
+ type: Transform
+- proto: PlushieJester
+ entities:
+ - uid: 880
+ components:
+ - pos: -16.414333,-12.510676
+ parent: 1
+ type: Transform
+- proto: PlushieLizard
+ entities:
+ - uid: 1680
+ components:
+ - pos: -16.836208,-12.729426
+ parent: 1
+ type: Transform
+- proto: PlushieSlips
+ entities:
+ - uid: 1679
+ components:
+ - pos: -16.508083,-12.916926
+ parent: 1
+ type: Transform
+- proto: PortableScrubber
+ entities:
+ - uid: 768
+ components:
+ - pos: 11.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1667
+ components:
+ - pos: 12.5,-29.5
+ parent: 1
+ type: Transform
+- proto: Poweredlight
+ entities:
+ - uid: 930
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 931
+ components:
+ - pos: -8.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 932
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 933
+ components:
+ - pos: -16.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 934
+ components:
+ - pos: -12.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1076
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -16.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1080
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -12.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1417
+ components:
+ - pos: -2.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1418
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -2.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1419
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1420
+ components:
+ - pos: 2.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1421
+ components:
+ - pos: 8.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1422
+ components:
+ - pos: 12.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1423
+ components:
+ - pos: 15.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1424
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 12.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1425
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 15.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1426
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 1427
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 1428
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -12.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1431
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 12.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1432
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1433
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 6.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 1434
+ components:
+ - pos: 2.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1435
+ components:
+ - pos: 6.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1436
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 4.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1437
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1438
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 8.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1439
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 8.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1440
+ components:
+ - pos: 11.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1441
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 16.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 1442
+ components:
+ - pos: 12.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 1443
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 12.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1444
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 15.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1445
+ components:
+ - pos: -10.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1446
+ components:
+ - pos: 10.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1447
+ components:
+ - pos: -17.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 1448
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -17.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1449
+ components:
+ - pos: 5.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 1450
+ components:
+ - pos: -5.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 1451
+ components:
+ - pos: -11.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 1452
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -11.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1453
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 11.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1454
+ components:
+ - pos: 11.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 1455
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -6.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1456
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 7.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1457
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 17.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1458
+ components:
+ - pos: 17.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 1459
+ components:
+ - pos: -1.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1460
+ components:
+ - pos: 1.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1461
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -8.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 1462
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 8.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 1463
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1464
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 1465
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 1466
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1467
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1468
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1469
+ components:
+ - pos: -1.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 1470
+ components:
+ - pos: 1.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 1471
+ components:
+ - pos: -7.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1472
+ components:
+ - pos: -4.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1473
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1474
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -12.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1475
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -12.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 1476
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -15.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1477
+ components:
+ - pos: -15.5,-17.5
+ parent: 1
+ type: Transform
+- proto: PoweredlightLED
+ entities:
+ - uid: 1083
+ components:
+ - pos: 5.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1511
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -5.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 1512
+ components:
+ - pos: -6.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1513
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,8.5
+ parent: 1
+ type: Transform
+- proto: Protolathe
+ entities:
+ - uid: 740
+ components:
+ - pos: 4.5,-23.5
+ parent: 1
+ type: Transform
+- proto: Rack
+ entities:
+ - uid: 161
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -2.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 162
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -2.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 163
+ components:
+ - pos: 2.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 164
+ components:
+ - pos: -2.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 165
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 166
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 167
+ components:
+ - pos: -1.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 168
+ components:
+ - pos: 1.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 169
+ components:
+ - pos: -1.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 170
+ components:
+ - pos: 1.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 780
+ components:
+ - pos: 12.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 781
+ components:
+ - pos: 14.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 804
+ components:
+ - pos: 15.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 805
+ components:
+ - pos: 14.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 806
+ components:
+ - pos: 13.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 807
+ components:
+ - pos: 12.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 808
+ components:
+ - pos: 11.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 830
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 15.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 835
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 14.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 840
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 13.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 845
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 12.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 850
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 11.5,-23.5
+ parent: 1
+ type: Transform
+- proto: Railing
+ entities:
+ - uid: 908
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1541
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1542
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 1543
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1544
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1545
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 1546
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 1547
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1548
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1549
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 1550
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 1551
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 1552
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 1553
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 1554
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 1555
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 1556
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 1557
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 1558
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 1559
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 1560
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 1561
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 1562
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 1563
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 1564
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 1565
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 1566
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,8.5
+ parent: 1
+ type: Transform
+- proto: RandomArcade
+ entities:
+ - uid: 563
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -8.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 596
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -8.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 597
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -8.5,-17.5
+ parent: 1
+ type: Transform
+- proto: RandomMagicBookSafe
+ entities:
+ - uid: 876
+ components:
+ - pos: 2.5,-4.5
+ parent: 1
+ type: Transform
+- proto: RandomSoap
+ entities:
+ - uid: 881
+ components:
+ - pos: -14.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1681
+ components:
+ - pos: 14.5,-12.5
+ parent: 1
+ type: Transform
+- proto: RandomSpawner100
+ entities:
+ - uid: 1567
+ components:
+ - pos: 18.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1580
+ components:
+ - pos: -7.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1581
+ components:
+ - pos: -16.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1582
+ components:
+ - pos: -11.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1583
+ components:
+ - pos: -3.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1584
+ components:
+ - pos: 0.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 1585
+ components:
+ - pos: 9.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1586
+ components:
+ - pos: -5.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 1587
+ components:
+ - pos: 5.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1588
+ components:
+ - pos: -0.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 1589
+ components:
+ - pos: 0.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1590
+ components:
+ - pos: -14.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1591
+ components:
+ - pos: -11.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1592
+ components:
+ - pos: -12.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1593
+ components:
+ - pos: 11.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1594
+ components:
+ - pos: 12.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1595
+ components:
+ - pos: 14.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1596
+ components:
+ - pos: 19.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 1597
+ components:
+ - pos: 13.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1598
+ components:
+ - pos: 13.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 1599
+ components:
+ - pos: 6.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 1600
+ components:
+ - pos: -1.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1601
+ components:
+ - pos: -8.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 1602
+ components:
+ - pos: -8.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1603
+ components:
+ - pos: -3.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1604
+ components:
+ - pos: 2.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1605
+ components:
+ - pos: 2.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1606
+ components:
+ - pos: 8.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1607
+ components:
+ - pos: -4.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1608
+ components:
+ - pos: 3.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 1609
+ components:
+ - pos: -5.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1610
+ components:
+ - pos: 4.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 1611
+ components:
+ - pos: -4.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 1612
+ components:
+ - pos: -3.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 1614
+ components:
+ - pos: 2.5,4.5
+ parent: 1
+ type: Transform
+- proto: ResearchDisk
+ entities:
+ - uid: 812
+ components:
+ - pos: 15.582792,-20.514729
+ parent: 1
+ type: Transform
+ - uid: 813
+ components:
+ - pos: 12.504667,-20.530354
+ parent: 1
+ type: Transform
+ - uid: 814
+ components:
+ - pos: 11.582792,-20.545979
+ parent: 1
+ type: Transform
+ - uid: 822
+ components:
+ - pos: 14.489042,-20.514729
+ parent: 1
+ type: Transform
+ - uid: 823
+ components:
+ - pos: 13.567167,-20.545979
+ parent: 1
+ type: Transform
+- proto: ResearchDisk10000
+ entities:
+ - uid: 820
+ components:
+ - pos: 14.285917,-20.545979
+ parent: 1
+ type: Transform
+ - uid: 821
+ components:
+ - pos: 13.442167,-20.499104
+ parent: 1
+ type: Transform
+ - uid: 827
+ components:
+ - pos: 12.629667,-20.545979
+ parent: 1
+ type: Transform
+- proto: ResearchDisk5000
+ entities:
+ - uid: 811
+ components:
+ - pos: 14.910917,-20.561604
+ parent: 1
+ type: Transform
+ - uid: 815
+ components:
+ - pos: 12.145292,-20.530354
+ parent: 1
+ type: Transform
+ - uid: 824
+ components:
+ - pos: 12.973417,-20.545979
+ parent: 1
+ type: Transform
+ - uid: 828
+ components:
+ - pos: 13.910917,-20.561604
+ parent: 1
+ type: Transform
+- proto: RGBStaff
+ entities:
+ - uid: 779
+ components:
+ - pos: 12.535913,-16.465294
+ parent: 1
+ type: Transform
+- proto: SalvageCanisterSpawner
+ entities:
+ - uid: 963
+ components:
+ - pos: 9.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 966
+ components:
+ - pos: 6.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 967
+ components:
+ - pos: 7.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 1072
+ components:
+ - pos: 8.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 1074
+ components:
+ - pos: 6.5,-31.5
+ parent: 1
+ type: Transform
+- proto: SalvageMaterialCrateSpawner
+ entities:
+ - uid: 1574
+ components:
+ - pos: -2.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1575
+ components:
+ - pos: -3.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1576
+ components:
+ - pos: -0.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1577
+ components:
+ - pos: 0.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1578
+ components:
+ - pos: 2.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1579
+ components:
+ - pos: 3.5,1.5
+ parent: 1
+ type: Transform
+- proto: SalvagePartsT3Spawner
+ entities:
+ - uid: 829
+ components:
+ - pos: 12.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 831
+ components:
+ - pos: 13.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 832
+ components:
+ - pos: 14.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 834
+ components:
+ - pos: 13.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 836
+ components:
+ - pos: 12.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 837
+ components:
+ - pos: 15.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 839
+ components:
+ - pos: 14.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 841
+ components:
+ - pos: 11.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 844
+ components:
+ - pos: 15.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 846
+ components:
+ - pos: 11.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 849
+ components:
+ - pos: 15.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 851
+ components:
+ - pos: 12.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 854
+ components:
+ - pos: 14.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 855
+ components:
+ - pos: 11.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 856
+ components:
+ - pos: 13.5,-23.5
+ parent: 1
+ type: Transform
+- proto: SalvagePartsT4Spawner
+ entities:
+ - uid: 833
+ components:
+ - pos: 15.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 842
+ components:
+ - pos: 11.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 847
+ components:
+ - pos: 12.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 852
+ components:
+ - pos: 13.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 857
+ components:
+ - pos: 14.5,-23.5
+ parent: 1
+ type: Transform
+- proto: SeedExtractor
+ entities:
+ - uid: 646
+ components:
+ - pos: -16.5,-17.5
+ parent: 1
+ type: Transform
+- proto: SignConspiracyBoard
+ entities:
+ - uid: 755
+ components:
+ - desc: Seems like a board connecting different factions and items to one another, but the language is foriegn to you.
+ name: Unknown Scrawls
+ type: MetaData
+ - pos: 3.5,-21.5
+ parent: 1
+ type: Transform
+- proto: SinkStemlessWater
+ entities:
+ - uid: 398
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -10.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 399
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 10.5,-13.5
+ parent: 1
+ type: Transform
+- proto: SMESBasic
+ entities:
+ - uid: 926
+ components:
+ - pos: -8.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 928
+ components:
+ - pos: -10.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 929
+ components:
+ - pos: -9.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1081
+ components:
+ - pos: -8.5,-31.5
+ parent: 1
+ type: Transform
+- proto: soda_dispenser
+ entities:
+ - uid: 587
+ components:
+ - pos: -4.5,-15.5
+ parent: 1
+ type: Transform
+- proto: SpaceCash5000
+ entities:
+ - uid: 157
+ components:
+ - pos: 1.5823038,-6.3065434
+ parent: 1
+ type: Transform
+ - uid: 158
+ components:
+ - pos: -1.4333212,-6.3846684
+ parent: 1
+ type: Transform
+ - uid: 159
+ components:
+ - pos: -1.5739462,-6.5096684
+ parent: 1
+ type: Transform
+ - uid: 160
+ components:
+ - pos: 1.6916788,-6.2596684
+ parent: 1
+ type: Transform
+ - uid: 171
+ components:
+ - pos: -1.6520712,-6.3065434
+ parent: 1
+ type: Transform
+ - uid: 769
+ components:
+ - pos: -1.5114462,-2.3221684
+ parent: 1
+ type: Transform
+ - uid: 770
+ components:
+ - pos: 1.7541788,-6.5252934
+ parent: 1
+ type: Transform
+ - uid: 771
+ components:
+ - pos: -1.4333212,-2.3846684
+ parent: 1
+ type: Transform
+ - uid: 772
+ components:
+ - pos: -1.5270712,-2.5721684
+ parent: 1
+ type: Transform
+ - uid: 775
+ components:
+ - pos: 1.7073038,-2.6034184
+ parent: 1
+ type: Transform
+ - uid: 776
+ components:
+ - pos: 1.5823038,-2.4159184
+ parent: 1
+ type: Transform
+ - uid: 777
+ components:
+ - pos: 1.7698038,-2.2127934
+ parent: 1
+ type: Transform
+- proto: SpawnMobArcIndBlaster
+ entities:
+ - uid: 1629
+ components:
+ - pos: -11.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1630
+ components:
+ - pos: -11.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1636
+ components:
+ - pos: -3.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1647
+ components:
+ - pos: -7.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1648
+ components:
+ - pos: 3.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1649
+ components:
+ - pos: 8.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1656
+ components:
+ - pos: -4.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1657
+ components:
+ - pos: 3.5,0.5
+ parent: 1
+ type: Transform
+- proto: SpawnMobArcIndHoloparasiteGuardian
+ entities:
+ - uid: 1635
+ components:
+ - pos: -6.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1637
+ components:
+ - pos: 3.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 1638
+ components:
+ - pos: 12.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 1639
+ components:
+ - pos: 14.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1643
+ components:
+ - pos: 12.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1644
+ components:
+ - pos: -7.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1645
+ components:
+ - pos: 0.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1646
+ components:
+ - pos: 7.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 1660
+ components:
+ - pos: 14.5,-22.5
+ parent: 1
+ type: Transform
+- proto: SpawnMobArcIndShredder
+ entities:
+ - uid: 1631
+ components:
+ - pos: -15.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1632
+ components:
+ - pos: -17.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1633
+ components:
+ - pos: -14.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1634
+ components:
+ - pos: -15.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1640
+ components:
+ - pos: 2.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1641
+ components:
+ - pos: 4.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1642
+ components:
+ - pos: 6.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1650
+ components:
+ - pos: -7.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 1651
+ components:
+ - pos: 8.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1652
+ components:
+ - pos: -4.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1653
+ components:
+ - pos: 6.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1654
+ components:
+ - pos: -4.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1655
+ components:
+ - pos: 0.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1658
+ components:
+ - pos: -14.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1659
+ components:
+ - pos: 14.5,-13.5
+ parent: 1
+ type: Transform
+- proto: StationMapBroken
+ entities:
+ - uid: 1620
+ components:
+ - pos: -1.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 1621
+ components:
+ - pos: 1.5,-8.5
+ parent: 1
+ type: Transform
+- proto: StoolBar
+ entities:
+ - uid: 571
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -6.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 592
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -5.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 593
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -4.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 594
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -3.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 595
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -2.5,-19.5
+ parent: 1
+ type: Transform
+- proto: SubstationBasic
+ entities:
+ - uid: 914
+ components:
+ - pos: -12.5,-30.5
+ parent: 1
+ type: Transform
+- proto: TableCounterMetal
+ entities:
+ - uid: 562
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -9.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 604
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -9.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 605
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -9.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 609
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 610
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 649
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -12.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 650
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -12.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 651
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -11.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 652
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -10.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 653
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -10.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 654
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -10.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 719
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 720
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 754
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 5.5,-21.5
+ parent: 1
+ type: Transform
+- proto: TableCounterWood
+ entities:
+ - uid: 564
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 565
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 566
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 567
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 569
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 570
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-15.5
+ parent: 1
+ type: Transform
+- proto: TableReinforced
+ entities:
+ - uid: 101
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 102
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 103
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 6.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 104
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 6.5,-3.5
+ parent: 1
+ type: Transform
+- proto: TableWood
+ entities:
+ - uid: 660
+ components:
+ - pos: -7.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 661
+ components:
+ - pos: -7.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 662
+ components:
+ - pos: -4.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 663
+ components:
+ - pos: -4.5,-22.5
+ parent: 1
+ type: Transform
+- proto: TechnologyDiskRare
+ entities:
+ - uid: 809
+ components:
+ - pos: 13.051542,-20.467854
+ parent: 1
+ type: Transform
+ - uid: 810
+ components:
+ - pos: 15.176542,-20.467854
+ parent: 1
+ type: Transform
+ - uid: 816
+ components:
+ - pos: 11.520292,-20.514729
+ parent: 1
+ type: Transform
+ - uid: 817
+ components:
+ - pos: 14.489042,-20.467854
+ parent: 1
+ type: Transform
+ - uid: 818
+ components:
+ - pos: 14.082792,-20.499104
+ parent: 1
+ type: Transform
+ - uid: 819
+ components:
+ - pos: 13.504667,-20.420979
+ parent: 1
+ type: Transform
+ - uid: 825
+ components:
+ - pos: 15.598417,-20.452229
+ parent: 1
+ type: Transform
+ - uid: 826
+ components:
+ - pos: 12.473417,-20.452229
+ parent: 1
+ type: Transform
+ - uid: 868
+ components:
+ - pos: 12.004667,-20.545979
+ parent: 1
+ type: Transform
+- proto: Telecrystal1
+ entities:
+ - uid: 757
+ components:
+ - pos: 3.467102,-15.562607
+ parent: 1
+ type: Transform
+- proto: TelescopicShield
+ entities:
+ - uid: 778
+ components:
+ - pos: -2.4958212,-3.4315434
+ parent: 1
+ type: Transform
+- proto: ToiletEmpty
+ entities:
+ - uid: 401
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -10.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 403
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 10.5,-14.5
+ parent: 1
+ type: Transform
+- proto: VendingMachineArcadia
+ entities:
+ - uid: 396
+ components:
+ - pos: -10.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 397
+ components:
+ - pos: 10.5,-12.5
+ parent: 1
+ type: Transform
+- proto: VendingMachineBooze
+ entities:
+ - uid: 588
+ components:
+ - pos: -3.5,-15.5
+ parent: 1
+ type: Transform
+- proto: VendingMachineSeedsUnlocked
+ entities:
+ - uid: 647
+ components:
+ - pos: -15.5,-17.5
+ parent: 1
+ type: Transform
+- proto: VendingMachineSyndieDrobe
+ entities:
+ - uid: 786
+ components:
+ - pos: 13.5,-16.5
+ parent: 1
+ type: Transform
+- proto: WallPlastitanium
+ entities:
+ - uid: 23
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 26
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 28
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 29
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 31
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 32
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 33
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 34
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 35
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 36
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -7.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 37
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 38
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 39
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 40
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 41
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 42
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 43
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 44
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 46
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 48
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 49
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 51
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 53
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 54
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 55
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 56
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 57
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 58
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 59
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 60
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 61
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 62
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 64
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 65
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 67
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 68
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 69
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 70
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 190
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 191
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 10.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 192
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 11.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 193
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 12.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 194
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 13.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 195
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 14.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 196
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 15.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 197
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 16.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 198
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 17.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 199
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 18.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 200
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 19.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 201
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 20.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 202
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 20.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 203
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 19.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 204
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 18.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 205
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 17.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 206
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 16.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 207
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 15.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 208
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 14.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 209
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 13.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 213
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 214
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 10.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 215
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 11.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 216
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 217
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 218
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 219
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 220
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 10.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 221
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 11.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 222
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 12.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 223
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 13.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 224
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 14.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 225
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 15.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 226
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 15.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 227
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 16.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 228
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 17.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 229
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 17.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 230
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 18.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 231
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 19.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 232
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 19.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 234
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 235
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 6.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 236
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 237
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 238
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 239
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 240
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 241
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 242
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 243
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 244
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 245
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 246
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 247
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -7.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 249
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -9.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 250
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -9.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 251
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -9.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 252
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -9.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 253
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -10.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 254
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -11.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 258
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -9.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 259
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -10.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 260
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -11.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 261
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -12.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 262
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -13.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 263
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -14.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 264
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -15.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 265
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -16.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 266
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -17.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 267
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -18.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 268
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -19.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 269
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -20.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 273
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -20.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 274
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -19.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 275
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -18.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 276
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -17.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 277
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -16.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 278
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -15.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 279
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -14.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 280
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -13.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 380
+ components:
+ - pos: -9.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 381
+ components:
+ - pos: -10.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 382
+ components:
+ - pos: -11.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 383
+ components:
+ - pos: -12.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 384
+ components:
+ - pos: -13.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 385
+ components:
+ - pos: -14.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 386
+ components:
+ - pos: -15.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 387
+ components:
+ - pos: -15.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 388
+ components:
+ - pos: -16.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 389
+ components:
+ - pos: -17.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 390
+ components:
+ - pos: -17.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 391
+ components:
+ - pos: -18.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 392
+ components:
+ - pos: -19.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 393
+ components:
+ - pos: -19.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 408
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -15.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 409
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -15.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 417
+ components:
+ - pos: 15.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 418
+ components:
+ - pos: 15.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 425
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 426
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 427
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 428
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 432
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 433
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 434
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 435
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -9.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 436
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -8.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 437
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -10.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 438
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -11.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 439
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -12.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 440
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -13.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 441
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -14.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 442
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -15.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 443
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -16.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 444
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -17.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 445
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -18.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 446
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -19.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 447
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -20.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 448
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 449
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -20.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 450
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -19.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 451
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -18.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 452
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -17.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 453
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -16.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 454
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -15.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 455
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -14.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 456
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -13.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 457
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -12.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 458
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -11.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 459
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -10.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 460
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -9.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 462
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -7.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 463
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 464
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 465
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 466
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 467
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 468
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 469
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 470
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-32.5
+ parent: 1
+ type: Transform
+ - uid: 471
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-33.5
+ parent: 1
+ type: Transform
+ - uid: 472
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-33.5
+ parent: 1
+ type: Transform
+ - uid: 473
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-33.5
+ parent: 1
+ type: Transform
+ - uid: 474
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -5.5,-33.5
+ parent: 1
+ type: Transform
+ - uid: 475
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-33.5
+ parent: 1
+ type: Transform
+ - uid: 476
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-32.5
+ parent: 1
+ type: Transform
+ - uid: 477
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -7.5,-32.5
+ parent: 1
+ type: Transform
+ - uid: 478
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -8.5,-32.5
+ parent: 1
+ type: Transform
+ - uid: 479
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -9.5,-32.5
+ parent: 1
+ type: Transform
+ - uid: 480
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -9.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 481
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -10.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 482
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -11.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 483
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -12.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 484
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -13.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 485
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -13.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 486
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -13.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 487
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-33.5
+ parent: 1
+ type: Transform
+ - uid: 488
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-32.5
+ parent: 1
+ type: Transform
+ - uid: 489
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 490
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 491
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 492
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 493
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 494
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 495
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 496
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 497
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 499
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 500
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 10.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 501
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 11.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 502
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 12.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 503
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 13.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 504
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 14.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 505
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 15.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 506
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 16.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 507
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 17.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 508
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 18.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 509
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 19.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 510
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 511
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 19.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 512
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 18.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 513
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 17.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 514
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 16.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 515
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 15.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 516
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 14.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 517
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 13.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 518
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 12.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 519
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 11.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 520
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 10.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 521
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 522
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 8.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 523
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 524
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 525
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 526
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 527
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 528
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 529
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 13.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 530
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 13.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 531
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 13.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 532
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 12.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 533
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 11.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 534
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 10.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 535
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 536
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,-32.5
+ parent: 1
+ type: Transform
+ - uid: 537
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 8.5,-32.5
+ parent: 1
+ type: Transform
+ - uid: 538
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,-32.5
+ parent: 1
+ type: Transform
+ - uid: 539
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,-32.5
+ parent: 1
+ type: Transform
+ - uid: 540
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,-33.5
+ parent: 1
+ type: Transform
+ - uid: 541
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,-33.5
+ parent: 1
+ type: Transform
+ - uid: 542
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-33.5
+ parent: 1
+ type: Transform
+ - uid: 543
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-33.5
+ parent: 1
+ type: Transform
+ - uid: 549
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 558
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -9.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 559
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -9.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 560
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -9.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 561
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -9.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 598
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 599
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -6.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 608
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 611
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 612
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 613
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 614
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 615
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -15.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 616
+ components:
+ - pos: -16.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 617
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -16.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 618
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 619
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -15.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 620
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -16.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 621
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -17.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 622
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -18.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 623
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -17.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 624
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -16.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 625
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -18.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 626
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -19.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 627
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -19.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 628
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -19.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 629
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -18.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 630
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -17.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 631
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -17.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 632
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -16.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 633
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -15.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 674
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 675
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 676
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 677
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 678
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 680
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 681
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 682
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 683
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 684
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 685
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 687
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 688
+ components:
+ - pos: 16.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 689
+ components:
+ - pos: 18.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 690
+ components:
+ - pos: 17.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 691
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 11.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 696
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 13.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 697
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 12.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 698
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 14.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 699
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 15.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 700
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 16.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 701
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 17.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 702
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 18.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 703
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 19.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 704
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 19.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 705
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 19.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 706
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 18.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 707
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 17.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 708
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 17.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 709
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 16.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 710
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 15.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 711
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 18.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 712
+ components:
+ - pos: 17.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 713
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 17.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 714
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 16.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 715
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 16.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 717
+ components:
+ - pos: 16.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 721
+ components:
+ - pos: 1.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 752
+ components:
+ - pos: 3.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 753
+ components:
+ - pos: 4.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 759
+ components:
+ - pos: 10.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 760
+ components:
+ - pos: 10.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 762
+ components:
+ - pos: 10.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 763
+ components:
+ - pos: 10.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 766
+ components:
+ - pos: 10.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1198
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 1416
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -6.5,8.5
+ parent: 1
+ type: Transform
+- proto: WallPlastitaniumDiagonal
+ entities:
+ - uid: 9
+ components:
+ - pos: -4.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 10
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -4.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 11
+ components:
+ - pos: -6.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 12
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 13
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 14
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 6.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 27
+ components:
+ - pos: -7.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 45
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 3.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 47
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 50
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 52
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 66
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 7.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 182
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -7.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 183
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -8.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 184
+ components:
+ - pos: -8.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 185
+ components:
+ - pos: -9.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 186
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 7.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 187
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 8.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 188
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 8.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 189
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 9.5,-6.5
+ parent: 1
+ type: Transform
+- proto: WarpPoint
+ entities:
+ - uid: 1628
+ components:
+ - pos: -0.5,-25.5
+ parent: 1
+ type: Transform
+ - location: Data Carrier
+ type: WarpPoint
+- proto: WaterTankHighCapacity
+ entities:
+ - uid: 645
+ components:
+ - pos: -18.5,-18.5
+ parent: 1
+ type: Transform
+- proto: WeaponAntiqueLaser
+ entities:
+ - uid: 758
+ components:
+ - pos: 5.513977,-15.515732
+ parent: 1
+ type: Transform
+- proto: WeaponSubMachineGunWt550
+ entities:
+ - uid: 179
+ components:
+ - pos: 2.4845977,-3.368145
+ parent: 1
+ type: Transform
+- proto: WeaponTurretHostile
+ entities:
+ - uid: 1509
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 1510
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,13.5
+ parent: 1
+ type: Transform
+- proto: WeaponTurretSyndicateBroken
+ entities:
+ - uid: 1613
+ components:
+ - pos: 18.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1622
+ components:
+ - pos: -19.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1623
+ components:
+ - pos: -0.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1624
+ components:
+ - pos: 0.5,-26.5
+ parent: 1
+ type: Transform
+- proto: WindoorSecure
+ entities:
+ - uid: 1478
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 1479
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,-21.5
+ parent: 1
+ type: Transform
+- proto: WindowDirectional
+ entities:
+ - uid: 404
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -10.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 405
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 10.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 410
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 411
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 420
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 13.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 421
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 13.5,-13.5
+ parent: 1
+ type: Transform
+...
diff --git a/Resources/Maps/_NF/Dungeon/ruined_hospital.yml b/Resources/Maps/_NF/Dungeon/ruined_hospital.yml
deleted file mode 100644
index 9a9e79ab6e3f..000000000000
--- a/Resources/Maps/_NF/Dungeon/ruined_hospital.yml
+++ /dev/null
@@ -1,5756 +0,0 @@
-meta:
- format: 6
- postmapinit: false
-tilemap:
- 0: Space
- 7: FloorAsteroidSand
- 17: FloorBlue
- 20: FloorBrokenWood
- 39: FloorDarkPlastic
- 61: FloorKitchen
- 76: FloorPlastic
- 105: FloorTechMaint
- 114: FloorWhiteMono
- 118: FloorWhitePlastic
- 119: FloorWood
- 122: Plating
-entities:
-- proto: ""
- entities:
- - uid: 1
- components:
- - type: MetaData
- - type: Transform
- - type: Map
- - type: PhysicsMap
- - type: LoadedMap
- - type: MapGrid
- chunks:
- 0,0:
- ind: 0,0
- tiles: BwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABdgAAAAABdgAAAAAAdgAAAAAABwAAAAACaQAAAAAAegAAAAAAegAAAAAAaQAAAAAABwAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAADdgAAAAAABwAAAAACBwAAAAABdgAAAAABdgAAAAABdgAAAAACBwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAABdgAAAAACdgAAAAABdgAAAAACdgAAAAABdgAAAAADBwAAAAABBwAAAAABdgAAAAACdgAAAAACdgAAAAADBwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAABdgAAAAABdgAAAAAAdgAAAAADdgAAAAAAdgAAAAADBwAAAAAABwAAAAAAdgAAAAAAdgAAAAADdgAAAAABBwAAAAACaQAAAAAAegAAAAAAegAAAAAAaQAAAAAABwAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAADdgAAAAACBwAAAAAABwAAAAACdgAAAAABdgAAAAACdgAAAAADBwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACdgAAAAADdgAAAAADdgAAAAACdgAAAAADdgAAAAACBwAAAAABBwAAAAAAdgAAAAACdgAAAAADdgAAAAABBwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAAdgAAAAAAdgAAAAABdgAAAAADBwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAABwAAAAABdgAAAAADdgAAAAACdgAAAAADdgAAAAABdgAAAAADBwAAAAACBwAAAAABdgAAAAACdgAAAAABdgAAAAADBwAAAAABegAAAAAAaQAAAAAAaQAAAAAAegAAAAAABwAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAADBwAAAAABBwAAAAABdgAAAAABdgAAAAACdgAAAAABBwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAACdgAAAAAABwAAAAACBwAAAAAAdgAAAAAAdgAAAAACdgAAAAADBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABdgAAAAABdgAAAAACdgAAAAAAdgAAAAACdgAAAAABBwAAAAABBwAAAAAAdgAAAAAAdgAAAAABdgAAAAADBwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAADdgAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABdgAAAAACdgAAAAACdgAAAAABBwAAAAABegAAAAAAaQAAAAAAaQAAAAAAegAAAAAABwAAAAACdgAAAAABdgAAAAACdgAAAAAAdgAAAAABdgAAAAAABwAAAAABBwAAAAAAdgAAAAACdgAAAAABdgAAAAABBwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAABBwAAAAACBwAAAAAAdgAAAAADdgAAAAABdgAAAAADBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABdgAAAAADdgAAAAACdgAAAAABdgAAAAAAdgAAAAAABwAAAAAC
- version: 6
- 1,0:
- ind: 1,0
- tiles: BwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAABdgAAAAADdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAABBwAAAAAAJwAAAAADJwAAAAACJwAAAAACJwAAAAACJwAAAAABJwAAAAADJwAAAAABBwAAAAAAegAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAADdgAAAAACdgAAAAACBwAAAAAAJwAAAAABJwAAAAADJwAAAAADJwAAAAACJwAAAAABJwAAAAADJwAAAAABBwAAAAAAegAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAADdgAAAAADdgAAAAAABwAAAAABJwAAAAABJwAAAAABJwAAAAACJwAAAAAAJwAAAAABJwAAAAABJwAAAAADBwAAAAACegAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAADdgAAAAAAdgAAAAABBwAAAAAAJwAAAAABJwAAAAAAJwAAAAABJwAAAAAAJwAAAAACJwAAAAACJwAAAAADBwAAAAACegAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAADdgAAAAABBwAAAAABJwAAAAACJwAAAAACJwAAAAADJwAAAAADJwAAAAADJwAAAAAAJwAAAAACBwAAAAACegAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAABdwAAAAACdwAAAAADdwAAAAABdwAAAAACFAAAAAAEdwAAAAACBwAAAAABPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAABwAAAAAABwAAAAAAdwAAAAADdwAAAAADFAAAAAAEdwAAAAABdwAAAAAAFAAAAAADBwAAAAABPQAAAAAAPQAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAABdgAAAAADBwAAAAACBwAAAAACFAAAAAAEdwAAAAABdwAAAAACdwAAAAACdwAAAAADdwAAAAADBwAAAAAAPQAAAAAAPQAAAAAAdgAAAAACdgAAAAAAdgAAAAABdgAAAAADdgAAAAABBwAAAAACBwAAAAACdwAAAAAAdwAAAAACFAAAAAABdwAAAAABdwAAAAADdwAAAAABBwAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAADdgAAAAABdgAAAAAABwAAAAAABwAAAAABdwAAAAACdwAAAAACdwAAAAACdwAAAAAAdwAAAAACdwAAAAAABwAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAAAdgAAAAABdgAAAAADdgAAAAACBwAAAAAABwAAAAABdgAAAAACdgAAAAABdgAAAAACdgAAAAACdgAAAAADdgAAAAAABwAAAAACdgAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAADdgAAAAADdgAAAAACBwAAAAABBwAAAAABdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABdgAAAAABdgAAAAAAdgAAAAAAdgAAAAACdgAAAAACdgAAAAADBwAAAAAAcgAAAAACcgAAAAABcgAAAAACcgAAAAADcgAAAAADcgAAAAACcgAAAAAABwAAAAACBwAAAAAC
- version: 6
- 0,1:
- ind: 0,1
- tiles: BwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAABdgAAAAADdgAAAAADdgAAAAACdgAAAAADdgAAAAACBwAAAAABBwAAAAABdgAAAAACdgAAAAADdgAAAAADBwAAAAABegAAAAAAaQAAAAAAaQAAAAAAegAAAAAABwAAAAACdgAAAAACdgAAAAADdgAAAAACdgAAAAAAdgAAAAACBwAAAAACBwAAAAACdgAAAAADdgAAAAADdgAAAAABBwAAAAACegAAAAAAaQAAAAAAaQAAAAAAegAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACdgAAAAADdgAAAAAAdgAAAAADBwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAABJwAAAAABJwAAAAADJwAAAAADJwAAAAABJwAAAAAABwAAAAAABwAAAAACdgAAAAADdgAAAAACdgAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAAAJwAAAAAAJwAAAAAAJwAAAAACJwAAAAABJwAAAAACBwAAAAABBwAAAAAAdgAAAAABdgAAAAAAdgAAAAADBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAABJwAAAAADJwAAAAACJwAAAAABJwAAAAAAJwAAAAAABwAAAAABBwAAAAAAdgAAAAACdgAAAAACdgAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACJwAAAAADJwAAAAABJwAAAAABJwAAAAADJwAAAAACBwAAAAABBwAAAAABdgAAAAADdgAAAAAAdgAAAAADBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAAAJwAAAAABJwAAAAAAJwAAAAABJwAAAAAAJwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAACdgAAAAABdgAAAAAAdgAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABdgAAAAADdgAAAAADdgAAAAADdgAAAAADdgAAAAACBwAAAAAABwAAAAABdgAAAAACdgAAAAABdgAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAAAdgAAAAAABwAAAAAABwAAAAACdgAAAAABdgAAAAABdgAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABdgAAAAACdgAAAAADdgAAAAADdgAAAAAAdgAAAAADBwAAAAAABwAAAAABdgAAAAAAdgAAAAAAdgAAAAADBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAACdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAACBwAAAAACBwAAAAAAdgAAAAADdgAAAAADdgAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAABdgAAAAADdgAAAAABdgAAAAACdgAAAAABdgAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAAB
- version: 6
- 1,1:
- ind: 1,1
- tiles: dgAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAABdgAAAAACBwAAAAABcgAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAcgAAAAAABwAAAAAABwAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAABBwAAAAAAcgAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAcgAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAACcgAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAcgAAAAADBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACcgAAAAADEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAcgAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAAAcgAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAcgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAACcgAAAAACcgAAAAABcgAAAAABcgAAAAAAcgAAAAADcgAAAAABcgAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAABJwAAAAADJwAAAAAAJwAAAAACJwAAAAABJwAAAAAAJwAAAAAAJwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAACJwAAAAADJwAAAAAAJwAAAAABJwAAAAABJwAAAAADJwAAAAABJwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAAAJwAAAAACJwAAAAABJwAAAAAAJwAAAAADJwAAAAAAJwAAAAACJwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAABJwAAAAABJwAAAAAAJwAAAAAAJwAAAAADJwAAAAAAJwAAAAAAJwAAAAADBwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAAJwAAAAABJwAAAAABJwAAAAACJwAAAAACJwAAAAADJwAAAAADJwAAAAADBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACJwAAAAAAJwAAAAABJwAAAAADJwAAAAABJwAAAAADJwAAAAACJwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAABJwAAAAADJwAAAAACJwAAAAACJwAAAAADJwAAAAACJwAAAAAAJwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAABTAAAAAAATAAAAAAATAAAAAACTAAAAAABTAAAAAABTAAAAAADTAAAAAADBwAAAAABBwAAAAAA
- version: 6
- 2,1:
- ind: 2,1
- tiles: BwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAAA
- version: 6
- 2,0:
- ind: 2,0
- tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAAcgAAAAADcgAAAAADcgAAAAADcgAAAAACcgAAAAAAcgAAAAADcgAAAAAAcgAAAAADaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAABwAAAAABcgAAAAACEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAACcgAAAAADEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAABwAAAAABcgAAAAACEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAAcgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAABcgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACcgAAAAACcgAAAAADcgAAAAABcgAAAAAAcgAAAAACcgAAAAABcgAAAAADcgAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAA
- version: 6
- 0,2:
- ind: 0,2
- tiles: BwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 3,0:
- ind: 3,0
- tiles: BwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAADBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAADBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 3,1:
- ind: 3,1
- tiles: BwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 1,2:
- ind: 1,2
- tiles: BwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAAATAAAAAABTAAAAAAATAAAAAACTAAAAAABTAAAAAABTAAAAAADTAAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAABTAAAAAABTAAAAAAATAAAAAABTAAAAAADTAAAAAAATAAAAAAATAAAAAADBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAATAAAAAABTAAAAAAATAAAAAADTAAAAAAATAAAAAABTAAAAAAATAAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAATAAAAAADTAAAAAABTAAAAAAATAAAAAABTAAAAAABTAAAAAAATAAAAAADBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAATAAAAAACTAAAAAADTAAAAAADTAAAAAADTAAAAAAATAAAAAAATAAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACTAAAAAADTAAAAAABTAAAAAACTAAAAAABTAAAAAACTAAAAAAATAAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 2,2:
- ind: 2,2
- tiles: BwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 3,2:
- ind: 3,2
- tiles: BwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- - type: Broadphase
- - type: Physics
- bodyStatus: InAir
- angularDamping: 0.05
- linearDamping: 0.05
- fixedRotation: False
- canCollide: False
- bodyType: Dynamic
- - type: OccluderTree
- - type: SpreaderGrid
- - type: Shuttle
- - type: GridPathfinding
- - type: Gravity
- gravityShakeSound: !type:SoundPathSpecifier
- path: /Audio/Effects/alert.ogg
- - type: DecalGrid
- chunkCollection:
- version: 2
- nodes:
- - node:
- color: '#FFFFFFFF'
- id: 3
- decals:
- 80: 0,0
- - node:
- color: '#FFFFFFFF'
- id: 4
- decals:
- 82: 5,0
- - node:
- color: '#FFFFFFFF'
- id: 5
- decals:
- 81: 10,0
- - node:
- color: '#FFFFFFFF'
- id: 6
- decals:
- 76: 16,0
- - node:
- color: '#FFFFFFFF'
- id: 7
- decals:
- 77: 23,0
- - node:
- color: '#FFFFFFFF'
- id: 8
- decals:
- 78: 31,0
- - node:
- color: '#FFFFFFFF'
- id: 9
- decals:
- 79: 40,0
- - node:
- zIndex: 1
- color: '#FFFFFFFF'
- id: Basalt1
- decals:
- 42: 3,2
- 43: 1,5
- 44: 2,11
- - node:
- zIndex: 1
- color: '#FFFFFFFF'
- id: Basalt2
- decals:
- 51: 2,6
- 52: 3,8
- 53: 3,13
- - node:
- zIndex: 1
- color: '#FFFFFFFF'
- id: Basalt5
- decals:
- 54: 2,15
- - node:
- zIndex: 1
- color: '#FFFFFFFF'
- id: Basalt6
- decals:
- 45: 1,9
- 46: 3,7
- 47: 2,3
- - node:
- zIndex: 1
- color: '#FFFFFFFF'
- id: Basalt7
- decals:
- 48: 1,7
- 49: 3,11
- 50: 1,1
- - node:
- color: '#9D9D97FF'
- id: BrickTileDarkCornerNe
- decals:
- 355: 29,29
- - node:
- color: '#9D9D97FF'
- id: BrickTileDarkCornerNw
- decals:
- 354: 23,29
- - node:
- color: '#9D9D97FF'
- id: BrickTileDarkCornerSe
- decals:
- 356: 29,23
- - node:
- color: '#9D9D97FF'
- id: BrickTileDarkCornerSw
- decals:
- 357: 23,23
- - node:
- color: '#9D9D97FF'
- id: BrickTileDarkLineE
- decals:
- 358: 29,25
- 359: 29,26
- 360: 29,24
- 361: 29,28
- 405: 29,27
- - node:
- color: '#9D9D97FF'
- id: BrickTileDarkLineN
- decals:
- 364: 28,29
- 365: 27,29
- 366: 26,29
- 367: 25,29
- 368: 24,29
- - node:
- color: '#9D9D97FF'
- id: BrickTileDarkLineS
- decals:
- 362: 28,23
- 363: 27,23
- 406: 26,23
- 407: 25,23
- 408: 24,23
- - node:
- color: '#9D9D97FF'
- id: BrickTileDarkLineW
- decals:
- 369: 23,28
- 370: 23,27
- 371: 23,26
- 372: 23,25
- 373: 23,24
- - node:
- color: '#3AB3DAFF'
- id: BrickTileSteelCornerNe
- decals:
- 138: 14,11
- 172: 21,17
- - node:
- color: '#80C71FFF'
- id: BrickTileSteelCornerNe
- decals:
- 141: 14,17
- - node:
- color: '#F9801DFF'
- id: BrickTileSteelCornerNe
- decals:
- 110: 14,5
- - node:
- color: '#3AB3DAFF'
- id: BrickTileSteelCornerNw
- decals:
- 139: 10,11
- 173: 16,17
- - node:
- color: '#80C71FFF'
- id: BrickTileSteelCornerNw
- decals:
- 140: 10,17
- - node:
- color: '#F9801DFF'
- id: BrickTileSteelCornerNw
- decals:
- 111: 10,5
- - node:
- color: '#3AB3DAFF'
- id: BrickTileSteelCornerSe
- decals:
- 137: 14,7
- 171: 21,13
- - node:
- color: '#80C71FFF'
- id: BrickTileSteelCornerSe
- decals:
- 142: 14,13
- - node:
- color: '#F9801DFF'
- id: BrickTileSteelCornerSe
- decals:
- 108: 14,1
- - node:
- color: '#3AB3DAFF'
- id: BrickTileSteelCornerSw
- decals:
- 136: 10,7
- 170: 16,13
- - node:
- color: '#80C71FFF'
- id: BrickTileSteelCornerSw
- decals:
- 143: 10,13
- - node:
- color: '#F9801DFF'
- id: BrickTileSteelCornerSw
- decals:
- 109: 10,1
- - node:
- color: '#3AB3DAFF'
- id: BrickTileSteelLineE
- decals:
- 127: 14,8
- 128: 14,9
- 129: 14,10
- 163: 21,14
- 164: 21,15
- 165: 21,16
- - node:
- color: '#80C71FFF'
- id: BrickTileSteelLineE
- decals:
- 144: 14,14
- 145: 14,15
- 146: 14,16
- - node:
- color: '#F9801DFF'
- id: BrickTileSteelLineE
- decals:
- 112: 14,4
- 113: 14,3
- 114: 14,2
- - node:
- color: '#3AB3DAFF'
- id: BrickTileSteelLineN
- decals:
- 130: 13,11
- 131: 12,11
- 132: 11,11
- 166: 20,17
- 167: 19,17
- 168: 18,17
- 169: 17,17
- - node:
- color: '#80C71FFF'
- id: BrickTileSteelLineN
- decals:
- 147: 13,17
- 148: 12,17
- 149: 11,17
- - node:
- color: '#F9801DFF'
- id: BrickTileSteelLineN
- decals:
- 115: 13,5
- 116: 11,5
- 117: 12,5
- - node:
- color: '#3AB3DAFF'
- id: BrickTileSteelLineS
- decals:
- 133: 13,7
- 134: 12,7
- 135: 11,7
- 159: 17,13
- 160: 18,13
- 161: 19,13
- 162: 20,13
- - node:
- color: '#80C71FFF'
- id: BrickTileSteelLineS
- decals:
- 150: 13,13
- 151: 12,13
- 152: 11,13
- - node:
- color: '#F9801DFF'
- id: BrickTileSteelLineS
- decals:
- 118: 13,1
- 119: 12,1
- 120: 11,1
- - node:
- color: '#3AB3DAFF'
- id: BrickTileSteelLineW
- decals:
- 124: 10,10
- 125: 10,9
- 126: 10,8
- 156: 16,16
- 157: 16,15
- 158: 16,14
- - node:
- color: '#80C71FFF'
- id: BrickTileSteelLineW
- decals:
- 153: 10,14
- 154: 10,15
- 155: 10,16
- - node:
- color: '#F9801DFF'
- id: BrickTileSteelLineW
- decals:
- 121: 10,2
- 122: 10,3
- 123: 10,4
- - node:
- color: '#474F52FF'
- id: BrickTileWhiteCornerNe
- decals:
- 188: 21,5
- - node:
- color: '#474F52FF'
- id: BrickTileWhiteCornerNw
- decals:
- 187: 16,5
- - node:
- color: '#474F52FF'
- id: BrickTileWhiteCornerSe
- decals:
- 186: 21,1
- - node:
- color: '#474F52FF'
- id: BrickTileWhiteCornerSw
- decals:
- 185: 16,1
- - node:
- color: '#474F52FF'
- id: BrickTileWhiteLineE
- decals:
- 189: 21,2
- 190: 21,3
- 191: 21,4
- - node:
- color: '#474F52FF'
- id: BrickTileWhiteLineN
- decals:
- 192: 20,5
- 193: 19,5
- 194: 18,5
- 195: 17,5
- - node:
- color: '#474F52FF'
- id: BrickTileWhiteLineS
- decals:
- 196: 20,1
- 197: 19,1
- 198: 18,1
- 199: 17,1
- - node:
- color: '#474F52FF'
- id: BrickTileWhiteLineW
- decals:
- 200: 16,2
- 201: 16,3
- 202: 16,4
- - node:
- color: '#3AB3DAFF'
- id: CheckerNESW
- decals:
- 0: 1,11
- 1: 2,11
- 2: 3,11
- 3: 3,10
- 4: 2,10
- 5: 1,10
- 6: 1,9
- 7: 2,9
- 8: 3,9
- 9: 3,8
- 10: 2,8
- 11: 1,8
- 12: 1,7
- 13: 2,7
- 14: 3,7
- 15: 3,6
- 16: 2,6
- 17: 1,6
- 18: 1,5
- 19: 2,5
- 20: 3,5
- 21: 3,4
- 22: 2,4
- 23: 1,4
- 24: 1,3
- 25: 2,3
- 26: 3,3
- 27: 3,2
- 28: 2,2
- 29: 1,2
- 30: 1,1
- 31: 2,1
- 32: 3,1
- 33: 1,13
- 34: 2,13
- 35: 3,13
- 36: 3,14
- 37: 2,14
- 38: 1,14
- 39: 1,15
- 40: 2,15
- 41: 3,15
- 55: 1,23
- 56: 2,23
- 57: 3,23
- 58: 3,22
- 59: 3,21
- 60: 3,19
- 61: 3,20
- 62: 3,18
- 63: 3,17
- 64: 2,17
- 65: 2,18
- 66: 2,19
- 67: 2,20
- 68: 2,21
- 69: 2,22
- 70: 1,22
- 71: 1,21
- 72: 1,20
- 73: 1,19
- 74: 1,18
- 75: 1,17
- 83: 2,25
- 84: 3,26
- 85: 3,27
- 86: 3,28
- 87: 3,29
- 88: 2,29
- 89: 1,28
- 90: 1,29
- 91: 1,27
- 92: 2,26
- 93: 1,26
- 94: 1,25
- 95: 3,25
- 215: 2,27
- 216: 2,28
- - node:
- color: '#F38BAAFF'
- id: CheckerNWSE
- decals:
- 174: 11,26
- 175: 12,26
- 176: 13,26
- 177: 11,27
- 178: 12,27
- 179: 13,27
- - node:
- cleanable: True
- color: '#FFFFFF7F'
- id: Damaged
- decals:
- 203: 1,3
- 204: 3,6
- 205: 2,8
- 206: 1,11
- 207: 1,13
- 208: 3,15
- 209: 3,17
- 210: 1,18
- 211: 1,21
- 212: 3,20
- 213: 2,25
- 214: 1,28
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: Dirt
- decals:
- 217: 10,25
- 218: 11,25
- 219: 11,26
- 220: 12,27
- 221: 13,29
- 222: 14,21
- 223: 13,21
- 224: 12,21
- 225: 12,19
- 226: 12,13
- 227: 11,13
- 228: 14,15
- 229: 12,17
- 230: 20,14
- 231: 19,13
- 232: 18,17
- 233: 16,16
- 234: 13,7
- 235: 14,9
- 236: 10,10
- 237: 19,1
- 238: 21,4
- 239: 18,5
- 240: 16,3
- 241: 16,4
- 242: 11,3
- 243: 10,3
- 244: 10,2
- 245: 14,4
- 246: 14,5
- 247: 27,3
- 248: 27,2
- 249: 26,3
- 250: 25,3
- 251: 25,1
- 252: 24,1
- 253: 23,4
- 254: 32,3
- 255: 41,1
- 256: 42,1
- 257: 46,7
- 258: 47,7
- 259: 46,6
- 260: 24,15
- 261: 23,19
- 262: 24,19
- 263: 24,33
- 264: 25,33
- 265: 27,35
- 266: 26,34
- 267: 27,34
- 268: 23,33
- 269: 24,33
- 270: 23,32
- 271: 29,35
- 272: 28,35
- 273: 29,15
- 274: 29,16
- 318: 29,31
- 319: 23,37
- 335: 46,3
- - node:
- color: '#FFFFFFFF'
- id: DirtHeavy
- decals:
- 382: 12,15
- 383: 18,1
- 384: 3,1
- 385: 1,15
- 386: 13,13
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: DirtHeavy
- decals:
- 284: 23,1
- 285: 27,4
- 286: 27,3
- 287: 25,3
- 288: 13,3
- 289: 11,8
- 290: 13,8
- 291: 13,10
- 292: 17,16
- 293: 12,21
- 294: 13,21
- 295: 12,19
- 296: 11,19
- 297: 13,19
- 298: 10,21
- 299: 10,20
- 300: 13,26
- 301: 2,27
- 302: 2,21
- 303: 2,14
- 304: 3,19
- 305: 3,9
- 306: 1,4
- 307: 1,23
- 308: 3,29
- 309: 10,28
- 310: 14,27
- 311: 13,25
- 315: 23,35
- 316: 29,33
- 317: 29,37
- 320: 25,19
- 321: 28,18
- 322: 23,10
- 323: 26,10
- 324: 27,10
- 325: 26,11
- 326: 26,8
- 327: 28,7
- 328: 29,12
- 329: 28,13
- 330: 29,13
- 331: 46,4
- 332: 46,5
- 333: 41,5
- 334: 45,6
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: DirtLight
- decals:
- 312: 25,31
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: DirtMedium
- decals:
- 313: 28,31
- 314: 25,37
- - node:
- color: '#FED83DFF'
- id: MiniTileWhiteInnerNe
- decals:
- 101: 25,17
- 107: 43,3
- - node:
- color: '#FED83DFF'
- id: MiniTileWhiteInnerNw
- decals:
- 100: 27,17
- 106: 45,3
- - node:
- color: '#FED83DFF'
- id: MiniTileWhiteLineE
- decals:
- 96: 25,18
- 103: 43,4
- - node:
- color: '#FED83DFF'
- id: MiniTileWhiteLineN
- decals:
- 98: 26,18
- 99: 26,17
- 104: 44,4
- 105: 44,3
- - node:
- color: '#FED83DFF'
- id: MiniTileWhiteLineW
- decals:
- 97: 27,18
- 102: 45,4
- - node:
- color: '#9D9D97FF'
- id: Rock06
- decals:
- 414: 20,8
- - node:
- color: '#9D9D97FF'
- id: Rock07
- decals:
- 413: 17,7
- - node:
- color: '#9D9D97FF'
- id: WarnCornerSmallGreyscaleNE
- decals:
- 404: 23,23
- - node:
- color: '#9D9D97FF'
- id: WarnCornerSmallGreyscaleNW
- decals:
- 412: 26,23
- - node:
- color: '#9D9D97FF'
- id: WarnCornerSmallGreyscaleSE
- decals:
- 402: 23,29
- - node:
- color: '#9D9D97FF'
- id: WarnCornerSmallGreyscaleSW
- decals:
- 403: 29,29
- - node:
- color: '#FFFFFFFF'
- id: WarnEndN
- decals:
- 181: 32,4
- - node:
- color: '#FFFFFFFF'
- id: WarnEndS
- decals:
- 180: 32,2
- - node:
- color: '#FFFFFFFF'
- id: WarnLineE
- decals:
- 182: 32,3
- - node:
- color: '#9D9D97FF'
- id: WarnLineGreyscaleE
- decals:
- 390: 23,24
- 391: 23,25
- 392: 23,26
- 393: 23,27
- 394: 23,28
- - node:
- color: '#9D9D97FF'
- id: WarnLineGreyscaleN
- decals:
- 410: 25,23
- 411: 24,23
- - node:
- color: '#9D9D97FF'
- id: WarnLineGreyscaleS
- decals:
- 374: 26,27
- 375: 27,27
- 395: 24,29
- 396: 25,29
- 397: 26,29
- 398: 27,29
- 399: 28,29
- 400: 28,27
- - node:
- color: '#9D9D97FF'
- id: WarnLineGreyscaleW
- decals:
- 387: 26,26
- 388: 26,25
- 389: 26,24
- 401: 29,28
- 409: 29,27
- - node:
- color: '#FFFFFFFF'
- id: WarnLineS
- decals:
- 183: 32,3
- 184: 34,3
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: WoodTrimThinCornerNe
- decals:
- 352: 21,11
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: WoodTrimThinCornerNw
- decals:
- 353: 16,11
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: WoodTrimThinCornerSe
- decals:
- 351: 21,7
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: WoodTrimThinCornerSw
- decals:
- 350: 16,7
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: WoodTrimThinLineE
- decals:
- 347: 21,10
- 348: 21,9
- 349: 21,8
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: WoodTrimThinLineN
- decals:
- 343: 20,11
- 344: 19,11
- 345: 18,11
- 346: 17,11
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: WoodTrimThinLineS
- decals:
- 339: 17,7
- 340: 18,7
- 341: 19,7
- 342: 20,7
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: WoodTrimThinLineW
- decals:
- 336: 16,8
- 337: 16,9
- 338: 16,10
- - node:
- angle: 0.19198621771937624 rad
- color: '#835432B2'
- id: splatter
- decals:
- 381: 27.99298,19.713263
- - node:
- angle: 0.5410520681182421 rad
- color: '#835432B2'
- id: splatter
- decals:
- 376: 27.766413,18.763866
- 377: 46.23237,2.7213202
- 378: 43.872993,6.611945
- - node:
- angle: 4.834562028024293 rad
- color: '#835432B2'
- id: splatter
- decals:
- 379: 44.122993,6.736945
- 380: 27.83673,19.682013
- - node:
- cleanable: True
- color: '#B02E2664'
- id: splatter
- decals:
- 275: 25.763823,17.735304
- - node:
- cleanable: True
- angle: 0.20943951023931956 rad
- color: '#B02E2664'
- id: splatter
- decals:
- 281: 43.770912,3.698176
- - node:
- cleanable: True
- angle: 0.5759586531581288 rad
- color: '#B02E2664'
- id: splatter
- decals:
- 276: 26.232573,17.750929
- 279: 44.208412,3.713801
- - node:
- cleanable: True
- angle: 0.9599310885968813 rad
- color: '#B02E2664'
- id: splatter
- decals:
- 280: 43.895912,3.870051
- - node:
- cleanable: True
- angle: 5.026548245743669 rad
- color: '#B02E2664'
- id: splatter
- decals:
- 277: 25.857573,17.844679
- 278: 43.692787,3.588801
- - node:
- cleanable: True
- angle: 0.20943951023931956 rad
- color: '#B04626BF'
- id: splatter
- decals:
- 282: 43.895912,3.791926
- 283: 25.97233,17.715998
- - type: GridAtmosphere
- version: 2
- data:
- tiles:
- 0,0:
- 0: 65535
- 0,1:
- 0: 65535
- 0,2:
- 0: 65535
- 0,3:
- 0: 65535
- 1,0:
- 0: 65535
- 1,1:
- 0: 65535
- 1,2:
- 0: 65535
- 1,3:
- 0: 65535
- 2,0:
- 0: 65535
- 2,1:
- 0: 65535
- 2,2:
- 0: 65535
- 2,3:
- 0: 65535
- 3,0:
- 0: 65535
- 3,1:
- 0: 65535
- 3,2:
- 0: 65535
- 3,3:
- 0: 65535
- 4,0:
- 0: 65535
- 4,1:
- 0: 65535
- 4,2:
- 0: 65535
- 4,3:
- 0: 65535
- 5,0:
- 0: 65535
- 5,1:
- 0: 65535
- 5,2:
- 0: 65535
- 5,3:
- 0: 65535
- 6,0:
- 0: 65535
- 6,1:
- 0: 65535
- 6,2:
- 0: 65535
- 6,3:
- 0: 65535
- 7,0:
- 0: 65535
- 7,1:
- 0: 65535
- 7,2:
- 0: 65535
- 7,3:
- 0: 65535
- 0,4:
- 0: 65535
- 0,5:
- 0: 65535
- 1,4:
- 0: 65535
- 1,5:
- 0: 65535
- 2,4:
- 0: 65535
- 2,5:
- 0: 65535
- 3,4:
- 0: 65535
- 3,5:
- 0: 65535
- 4,4:
- 0: 65535
- 4,5:
- 0: 65535
- 5,4:
- 0: 65535
- 5,5:
- 0: 65535
- 6,4:
- 0: 65535
- 6,5:
- 0: 65535
- 7,4:
- 0: 65535
- 7,5:
- 0: 65535
- 0,6:
- 0: 65535
- 0,7:
- 0: 65535
- 1,6:
- 0: 65535
- 1,7:
- 0: 65535
- 2,6:
- 0: 65535
- 2,7:
- 0: 65535
- 3,6:
- 0: 65535
- 3,7:
- 0: 65535
- 4,6:
- 0: 65535
- 4,7:
- 0: 65535
- 5,6:
- 0: 65535
- 5,7:
- 0: 65535
- 6,6:
- 0: 65535
- 6,7:
- 0: 65535
- 7,6:
- 0: 65535
- 7,7:
- 0: 65535
- 8,4:
- 0: 65535
- 8,5:
- 0: 65535
- 8,6:
- 0: 65535
- 8,7:
- 0: 65535
- 9,4:
- 0: 65535
- 9,5:
- 0: 65535
- 9,6:
- 0: 65535
- 9,7:
- 0: 65535
- 10,4:
- 0: 65535
- 10,5:
- 0: 65535
- 10,6:
- 0: 65535
- 10,7:
- 0: 65535
- 11,4:
- 0: 65535
- 11,5:
- 0: 65535
- 11,6:
- 0: 65535
- 11,7:
- 0: 65535
- 8,0:
- 0: 65535
- 8,1:
- 0: 65535
- 8,2:
- 0: 65535
- 8,3:
- 0: 65535
- 9,0:
- 0: 65535
- 9,1:
- 0: 65535
- 9,2:
- 0: 65535
- 9,3:
- 0: 65535
- 10,0:
- 0: 65535
- 10,1:
- 0: 65535
- 10,2:
- 0: 65535
- 10,3:
- 0: 65535
- 11,0:
- 0: 65535
- 11,1:
- 0: 65535
- 11,2:
- 0: 65535
- 11,3:
- 0: 65535
- 12,0:
- 0: 13107
- 12,1:
- 0: 13107
- 12,2:
- 0: 13107
- 12,3:
- 0: 13107
- 12,4:
- 0: 13107
- 12,5:
- 0: 13107
- 12,6:
- 0: 13107
- 12,7:
- 0: 13107
- 0,8:
- 0: 65535
- 0,9:
- 0: 4095
- 1,8:
- 0: 65535
- 1,9:
- 0: 4095
- 2,8:
- 0: 65535
- 2,9:
- 0: 4095
- 3,8:
- 0: 65535
- 3,9:
- 0: 4095
- 4,8:
- 0: 65535
- 4,9:
- 0: 4095
- 5,8:
- 0: 65535
- 5,9:
- 0: 4095
- 6,8:
- 0: 65535
- 6,9:
- 0: 4095
- 7,8:
- 0: 65535
- 7,9:
- 0: 4095
- 8,8:
- 0: 65535
- 8,9:
- 0: 4095
- 9,8:
- 0: 65535
- 9,9:
- 0: 4095
- 10,8:
- 0: 65535
- 10,9:
- 0: 4095
- 11,8:
- 0: 65535
- 11,9:
- 0: 4095
- 12,8:
- 0: 13107
- 12,9:
- 0: 819
- uniqueMixes:
- - volume: 2500
- temperature: 293.15
- moles:
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- chunkSize: 4
- - type: GasTileOverlay
- - type: RadiationGridResistance
- - type: GridTree
- - type: MovedGrids
- - type: Fixtures
- fixtures: {}
-- proto: APCBasic
- entities:
- - uid: 653
- components:
- - type: Transform
- pos: 36.5,3.5
- parent: 1
-- proto: Beaker
- entities:
- - uid: 35
- components:
- - type: Transform
- pos: 46.740658,3.7599277
- parent: 1
- - uid: 308
- components:
- - type: Transform
- pos: 13.556194,2.4152765
- parent: 1
-- proto: BedsheetMedical
- entities:
- - uid: 490
- components:
- - type: Transform
- pos: 13.5,8.5
- parent: 1
- - uid: 492
- components:
- - type: Transform
- pos: 11.5,8.5
- parent: 1
- - uid: 596
- components:
- - type: Transform
- pos: 12.5,15.5
- parent: 1
- - uid: 630
- components:
- - type: Transform
- pos: 17.5,16.5
- parent: 1
-- proto: Bloodpack
- entities:
- - uid: 189
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.115658,4.8536777
- parent: 1
-- proto: Bookshelf
- entities:
- - uid: 51
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 17.5,11.5
- parent: 1
- - uid: 52
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 16.5,11.5
- parent: 1
- - uid: 284
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 21.5,5.5
- parent: 1
-- proto: BoxBodyBag
- entities:
- - uid: 151
- components:
- - type: Transform
- pos: 28.614475,26.407665
- parent: 1
-- proto: BoxLatexGloves
- entities:
- - uid: 411
- components:
- - type: Transform
- pos: 24.669563,17.48372
- parent: 1
- - uid: 437
- components:
- - type: Transform
- pos: 47.303963,6.7905445
- parent: 1
-- proto: BoxNitrileGloves
- entities:
- - uid: 149
- components:
- - type: Transform
- pos: 27.958225,26.626415
- parent: 1
- - uid: 410
- components:
- - type: Transform
- pos: 47.694588,6.5405445
- parent: 1
- - uid: 432
- components:
- - type: Transform
- pos: 24.482063,16.54622
- parent: 1
-- proto: CableApcExtension
- entities:
- - uid: 2
- components:
- - type: Transform
- pos: 29.5,25.5
- parent: 1
- - uid: 12
- components:
- - type: Transform
- pos: 14.5,11.5
- parent: 1
- - uid: 18
- components:
- - type: Transform
- pos: 21.5,4.5
- parent: 1
- - uid: 20
- components:
- - type: Transform
- pos: 1.5,4.5
- parent: 1
- - uid: 21
- components:
- - type: Transform
- pos: 19.5,11.5
- parent: 1
- - uid: 26
- components:
- - type: Transform
- pos: 12.5,13.5
- parent: 1
- - uid: 27
- components:
- - type: Transform
- pos: 13.5,1.5
- parent: 1
- - uid: 29
- components:
- - type: Transform
- pos: 11.5,1.5
- parent: 1
- - uid: 34
- components:
- - type: Transform
- pos: 28.5,26.5
- parent: 1
- - uid: 38
- components:
- - type: Transform
- pos: 14.5,22.5
- parent: 1
- - uid: 42
- components:
- - type: Transform
- pos: 13.5,13.5
- parent: 1
- - uid: 46
- components:
- - type: Transform
- pos: 14.5,13.5
- parent: 1
- - uid: 47
- components:
- - type: Transform
- pos: 14.5,17.5
- parent: 1
- - uid: 48
- components:
- - type: Transform
- pos: 11.5,13.5
- parent: 1
- - uid: 50
- components:
- - type: Transform
- pos: 21.5,14.5
- parent: 1
- - uid: 53
- components:
- - type: Transform
- pos: 21.5,13.5
- parent: 1
- - uid: 54
- components:
- - type: Transform
- pos: 21.5,15.5
- parent: 1
- - uid: 55
- components:
- - type: Transform
- pos: 20.5,13.5
- parent: 1
- - uid: 57
- components:
- - type: Transform
- pos: 10.5,8.5
- parent: 1
- - uid: 58
- components:
- - type: Transform
- pos: 13.5,11.5
- parent: 1
- - uid: 59
- components:
- - type: Transform
- pos: 11.5,7.5
- parent: 1
- - uid: 60
- components:
- - type: Transform
- pos: 10.5,7.5
- parent: 1
- - uid: 62
- components:
- - type: Transform
- pos: 14.5,9.5
- parent: 1
- - uid: 66
- components:
- - type: Transform
- pos: 16.5,10.5
- parent: 1
- - uid: 67
- components:
- - type: Transform
- pos: 16.5,11.5
- parent: 1
- - uid: 68
- components:
- - type: Transform
- pos: 17.5,11.5
- parent: 1
- - uid: 69
- components:
- - type: Transform
- pos: 16.5,7.5
- parent: 1
- - uid: 70
- components:
- - type: Transform
- pos: 23.5,9.5
- parent: 1
- - uid: 71
- components:
- - type: Transform
- pos: 27.5,15.5
- parent: 1
- - uid: 72
- components:
- - type: Transform
- pos: 25.5,21.5
- parent: 1
- - uid: 74
- components:
- - type: Transform
- pos: 26.5,7.5
- parent: 1
- - uid: 75
- components:
- - type: Transform
- pos: 27.5,13.5
- parent: 1
- - uid: 76
- components:
- - type: Transform
- pos: 27.5,26.5
- parent: 1
- - uid: 77
- components:
- - type: Transform
- pos: 25.5,23.5
- parent: 1
- - uid: 78
- components:
- - type: Transform
- pos: 27.5,23.5
- parent: 1
- - uid: 82
- components:
- - type: Transform
- pos: 26.5,13.5
- parent: 1
- - uid: 83
- components:
- - type: Transform
- pos: 48.5,3.5
- parent: 1
- - uid: 91
- components:
- - type: Transform
- pos: 7.5,1.5
- parent: 1
- - uid: 100
- components:
- - type: Transform
- pos: 25.5,17.5
- parent: 1
- - uid: 113
- components:
- - type: Transform
- pos: 1.5,3.5
- parent: 1
- - uid: 119
- components:
- - type: Transform
- pos: 29.5,12.5
- parent: 1
- - uid: 122
- components:
- - type: Transform
- pos: 27.5,7.5
- parent: 1
- - uid: 129
- components:
- - type: Transform
- pos: 7.5,3.5
- parent: 1
- - uid: 140
- components:
- - type: Transform
- pos: 25.5,26.5
- parent: 1
- - uid: 142
- components:
- - type: Transform
- pos: 20.5,7.5
- parent: 1
- - uid: 143
- components:
- - type: Transform
- pos: 20.5,11.5
- parent: 1
- - uid: 148
- components:
- - type: Transform
- pos: 21.5,11.5
- parent: 1
- - uid: 152
- components:
- - type: Transform
- pos: 19.5,5.5
- parent: 1
- - uid: 154
- components:
- - type: Transform
- pos: 18.5,5.5
- parent: 1
- - uid: 159
- components:
- - type: Transform
- pos: 21.5,5.5
- parent: 1
- - uid: 160
- components:
- - type: Transform
- pos: 10.5,4.5
- parent: 1
- - uid: 163
- components:
- - type: Transform
- pos: 14.5,20.5
- parent: 1
- - uid: 166
- components:
- - type: Transform
- pos: 14.5,2.5
- parent: 1
- - uid: 169
- components:
- - type: Transform
- pos: 1.5,5.5
- parent: 1
- - uid: 170
- components:
- - type: Transform
- pos: 10.5,20.5
- parent: 1
- - uid: 171
- components:
- - type: Transform
- pos: 29.5,17.5
- parent: 1
- - uid: 174
- components:
- - type: Transform
- pos: 13.5,5.5
- parent: 1
- - uid: 177
- components:
- - type: Transform
- pos: 1.5,7.5
- parent: 1
- - uid: 180
- components:
- - type: Transform
- pos: 5.5,2.5
- parent: 1
- - uid: 190
- components:
- - type: Transform
- pos: 8.5,3.5
- parent: 1
- - uid: 192
- components:
- - type: Transform
- pos: 23.5,27.5
- parent: 1
- - uid: 195
- components:
- - type: Transform
- pos: 1.5,6.5
- parent: 1
- - uid: 198
- components:
- - type: Transform
- pos: 29.5,26.5
- parent: 1
- - uid: 200
- components:
- - type: Transform
- pos: 23.5,25.5
- parent: 1
- - uid: 203
- components:
- - type: Transform
- pos: 24.5,26.5
- parent: 1
- - uid: 204
- components:
- - type: Transform
- pos: 23.5,26.5
- parent: 1
- - uid: 206
- components:
- - type: Transform
- pos: 5.5,6.5
- parent: 1
- - uid: 208
- components:
- - type: Transform
- pos: 6.5,9.5
- parent: 1
- - uid: 209
- components:
- - type: Transform
- pos: 8.5,9.5
- parent: 1
- - uid: 215
- components:
- - type: Transform
- pos: 27.5,9.5
- parent: 1
- - uid: 216
- components:
- - type: Transform
- pos: 21.5,10.5
- parent: 1
- - uid: 223
- components:
- - type: Transform
- pos: 14.5,16.5
- parent: 1
- - uid: 230
- components:
- - type: Transform
- pos: 10.5,21.5
- parent: 1
- - uid: 233
- components:
- - type: Transform
- pos: 28.5,13.5
- parent: 1
- - uid: 237
- components:
- - type: Transform
- pos: 8.5,6.5
- parent: 1
- - uid: 241
- components:
- - type: Transform
- pos: 27.5,21.5
- parent: 1
- - uid: 242
- components:
- - type: Transform
- pos: 29.5,5.5
- parent: 1
- - uid: 243
- components:
- - type: Transform
- pos: 16.5,5.5
- parent: 1
- - uid: 247
- components:
- - type: Transform
- pos: 12.5,11.5
- parent: 1
- - uid: 250
- components:
- - type: Transform
- pos: 26.5,16.5
- parent: 1
- - uid: 252
- components:
- - type: Transform
- pos: 1.5,8.5
- parent: 1
- - uid: 253
- components:
- - type: Transform
- pos: 1.5,9.5
- parent: 1
- - uid: 254
- components:
- - type: Transform
- pos: 2.5,11.5
- parent: 1
- - uid: 255
- components:
- - type: Transform
- pos: 1.5,10.5
- parent: 1
- - uid: 258
- components:
- - type: Transform
- pos: 1.5,22.5
- parent: 1
- - uid: 259
- components:
- - type: Transform
- pos: 1.5,20.5
- parent: 1
- - uid: 260
- components:
- - type: Transform
- pos: 2.5,13.5
- parent: 1
- - uid: 262
- components:
- - type: Transform
- pos: 2.5,15.5
- parent: 1
- - uid: 263
- components:
- - type: Transform
- pos: 1.5,14.5
- parent: 1
- - uid: 264
- components:
- - type: Transform
- pos: 3.5,14.5
- parent: 1
- - uid: 265
- components:
- - type: Transform
- pos: 2.5,17.5
- parent: 1
- - uid: 266
- components:
- - type: Transform
- pos: 1.5,19.5
- parent: 1
- - uid: 267
- components:
- - type: Transform
- pos: 1.5,18.5
- parent: 1
- - uid: 268
- components:
- - type: Transform
- pos: 1.5,17.5
- parent: 1
- - uid: 271
- components:
- - type: Transform
- pos: 3.5,29.5
- parent: 1
- - uid: 272
- components:
- - type: Transform
- pos: 10.5,3.5
- parent: 1
- - uid: 273
- components:
- - type: Transform
- pos: 11.5,3.5
- parent: 1
- - uid: 274
- components:
- - type: Transform
- pos: 12.5,3.5
- parent: 1
- - uid: 275
- components:
- - type: Transform
- pos: 12.5,2.5
- parent: 1
- - uid: 276
- components:
- - type: Transform
- pos: 12.5,1.5
- parent: 1
- - uid: 277
- components:
- - type: Transform
- pos: 13.5,3.5
- parent: 1
- - uid: 278
- components:
- - type: Transform
- pos: 14.5,3.5
- parent: 1
- - uid: 291
- components:
- - type: Transform
- pos: 1.5,11.5
- parent: 1
- - uid: 296
- components:
- - type: Transform
- pos: 17.5,17.5
- parent: 1
- - uid: 297
- components:
- - type: Transform
- pos: 21.5,17.5
- parent: 1
- - uid: 299
- components:
- - type: Transform
- pos: 18.5,13.5
- parent: 1
- - uid: 300
- components:
- - type: Transform
- pos: 8.5,18.5
- parent: 1
- - uid: 306
- components:
- - type: Transform
- pos: 10.5,14.5
- parent: 1
- - uid: 310
- components:
- - type: Transform
- pos: 29.5,13.5
- parent: 1
- - uid: 313
- components:
- - type: Transform
- pos: 14.5,4.5
- parent: 1
- - uid: 314
- components:
- - type: Transform
- pos: 5.5,12.5
- parent: 1
- - uid: 316
- components:
- - type: Transform
- pos: 10.5,2.5
- parent: 1
- - uid: 325
- components:
- - type: Transform
- pos: 11.5,11.5
- parent: 1
- - uid: 326
- components:
- - type: Transform
- pos: 12.5,7.5
- parent: 1
- - uid: 327
- components:
- - type: Transform
- pos: 40.5,3.5
- parent: 1
- - uid: 328
- components:
- - type: Transform
- pos: 11.5,23.5
- parent: 1
- - uid: 329
- components:
- - type: Transform
- pos: 10.5,22.5
- parent: 1
- - uid: 333
- components:
- - type: Transform
- pos: 26.5,29.5
- parent: 1
- - uid: 339
- components:
- - type: Transform
- pos: 23.5,5.5
- parent: 1
- - uid: 340
- components:
- - type: Transform
- pos: 23.5,2.5
- parent: 1
- - uid: 341
- components:
- - type: Transform
- pos: 23.5,4.5
- parent: 1
- - uid: 342
- components:
- - type: Transform
- pos: 23.5,3.5
- parent: 1
- - uid: 344
- components:
- - type: Transform
- pos: 3.5,15.5
- parent: 1
- - uid: 348
- components:
- - type: Transform
- pos: 20.5,5.5
- parent: 1
- - uid: 353
- components:
- - type: Transform
- pos: 27.5,29.5
- parent: 1
- - uid: 354
- components:
- - type: Transform
- pos: 16.5,17.5
- parent: 1
- - uid: 358
- components:
- - type: Transform
- pos: 16.5,16.5
- parent: 1
- - uid: 360
- components:
- - type: Transform
- pos: 21.5,9.5
- parent: 1
- - uid: 363
- components:
- - type: Transform
- pos: 21.5,16.5
- parent: 1
- - uid: 364
- components:
- - type: Transform
- pos: 11.5,5.5
- parent: 1
- - uid: 365
- components:
- - type: Transform
- pos: 5.5,3.5
- parent: 1
- - uid: 369
- components:
- - type: Transform
- pos: 17.5,7.5
- parent: 1
- - uid: 372
- components:
- - type: Transform
- pos: 5.5,13.5
- parent: 1
- - uid: 374
- components:
- - type: Transform
- pos: 18.5,7.5
- parent: 1
- - uid: 375
- components:
- - type: Transform
- pos: 19.5,7.5
- parent: 1
- - uid: 376
- components:
- - type: Transform
- pos: 18.5,1.5
- parent: 1
- - uid: 377
- components:
- - type: Transform
- pos: 19.5,1.5
- parent: 1
- - uid: 378
- components:
- - type: Transform
- pos: 20.5,1.5
- parent: 1
- - uid: 379
- components:
- - type: Transform
- pos: 21.5,1.5
- parent: 1
- - uid: 380
- components:
- - type: Transform
- pos: 21.5,2.5
- parent: 1
- - uid: 381
- components:
- - type: Transform
- pos: 21.5,3.5
- parent: 1
- - uid: 382
- components:
- - type: Transform
- pos: 23.5,11.5
- parent: 1
- - uid: 383
- components:
- - type: Transform
- pos: 10.5,23.5
- parent: 1
- - uid: 384
- components:
- - type: Transform
- pos: 25.5,11.5
- parent: 1
- - uid: 385
- components:
- - type: Transform
- pos: 25.5,12.5
- parent: 1
- - uid: 386
- components:
- - type: Transform
- pos: 25.5,10.5
- parent: 1
- - uid: 387
- components:
- - type: Transform
- pos: 25.5,9.5
- parent: 1
- - uid: 388
- components:
- - type: Transform
- pos: 25.5,8.5
- parent: 1
- - uid: 389
- components:
- - type: Transform
- pos: 25.5,7.5
- parent: 1
- - uid: 390
- components:
- - type: Transform
- pos: 25.5,13.5
- parent: 1
- - uid: 391
- components:
- - type: Transform
- pos: 25.5,15.5
- parent: 1
- - uid: 392
- components:
- - type: Transform
- pos: 12.5,23.5
- parent: 1
- - uid: 394
- components:
- - type: Transform
- pos: 26.5,17.5
- parent: 1
- - uid: 395
- components:
- - type: Transform
- pos: 27.5,17.5
- parent: 1
- - uid: 396
- components:
- - type: Transform
- pos: 27.5,18.5
- parent: 1
- - uid: 397
- components:
- - type: Transform
- pos: 27.5,19.5
- parent: 1
- - uid: 398
- components:
- - type: Transform
- pos: 26.5,19.5
- parent: 1
- - uid: 399
- components:
- - type: Transform
- pos: 26.5,20.5
- parent: 1
- - uid: 400
- components:
- - type: Transform
- pos: 26.5,23.5
- parent: 1
- - uid: 401
- components:
- - type: Transform
- pos: 26.5,24.5
- parent: 1
- - uid: 402
- components:
- - type: Transform
- pos: 26.5,25.5
- parent: 1
- - uid: 403
- components:
- - type: Transform
- pos: 26.5,26.5
- parent: 1
- - uid: 404
- components:
- - type: Transform
- pos: 26.5,27.5
- parent: 1
- - uid: 405
- components:
- - type: Transform
- pos: 7.5,11.5
- parent: 1
- - uid: 406
- components:
- - type: Transform
- pos: 8.5,8.5
- parent: 1
- - uid: 407
- components:
- - type: Transform
- pos: 26.5,28.5
- parent: 1
- - uid: 408
- components:
- - type: Transform
- pos: 1.5,15.5
- parent: 1
- - uid: 412
- components:
- - type: Transform
- pos: 29.5,27.5
- parent: 1
- - uid: 413
- components:
- - type: Transform
- pos: 43.5,1.5
- parent: 1
- - uid: 414
- components:
- - type: Transform
- pos: 43.5,2.5
- parent: 1
- - uid: 415
- components:
- - type: Transform
- pos: 43.5,3.5
- parent: 1
- - uid: 416
- components:
- - type: Transform
- pos: 44.5,3.5
- parent: 1
- - uid: 417
- components:
- - type: Transform
- pos: 45.5,3.5
- parent: 1
- - uid: 418
- components:
- - type: Transform
- pos: 45.5,4.5
- parent: 1
- - uid: 419
- components:
- - type: Transform
- pos: 45.5,5.5
- parent: 1
- - uid: 420
- components:
- - type: Transform
- pos: 45.5,6.5
- parent: 1
- - uid: 421
- components:
- - type: Transform
- pos: 45.5,7.5
- parent: 1
- - uid: 422
- components:
- - type: Transform
- pos: 46.5,4.5
- parent: 1
- - uid: 423
- components:
- - type: Transform
- pos: 47.5,4.5
- parent: 1
- - uid: 424
- components:
- - type: Transform
- pos: 48.5,4.5
- parent: 1
- - uid: 425
- components:
- - type: Transform
- pos: 42.5,3.5
- parent: 1
- - uid: 426
- components:
- - type: Transform
- pos: 44.5,7.5
- parent: 1
- - uid: 427
- components:
- - type: Transform
- pos: 41.5,4.5
- parent: 1
- - uid: 428
- components:
- - type: Transform
- pos: 40.5,4.5
- parent: 1
- - uid: 430
- components:
- - type: Transform
- pos: 16.5,8.5
- parent: 1
- - uid: 435
- components:
- - type: Transform
- pos: 43.5,7.5
- parent: 1
- - uid: 438
- components:
- - type: Transform
- pos: 1.5,13.5
- parent: 1
- - uid: 441
- components:
- - type: Transform
- pos: 17.5,5.5
- parent: 1
- - uid: 442
- components:
- - type: Transform
- pos: 18.5,11.5
- parent: 1
- - uid: 443
- components:
- - type: Transform
- pos: 16.5,9.5
- parent: 1
- - uid: 444
- components:
- - type: Transform
- pos: 26.5,21.5
- parent: 1
- - uid: 445
- components:
- - type: Transform
- pos: 25.5,19.5
- parent: 1
- - uid: 446
- components:
- - type: Transform
- pos: 28.5,18.5
- parent: 1
- - uid: 447
- components:
- - type: Transform
- pos: 14.5,14.5
- parent: 1
- - uid: 448
- components:
- - type: Transform
- pos: 24.5,18.5
- parent: 1
- - uid: 449
- components:
- - type: Transform
- pos: 23.5,18.5
- parent: 1
- - uid: 450
- components:
- - type: Transform
- pos: 12.5,4.5
- parent: 1
- - uid: 451
- components:
- - type: Transform
- pos: 14.5,15.5
- parent: 1
- - uid: 453
- components:
- - type: Transform
- pos: 29.5,18.5
- parent: 1
- - uid: 454
- components:
- - type: Transform
- pos: 12.5,5.5
- parent: 1
- - uid: 455
- components:
- - type: Transform
- pos: 14.5,21.5
- parent: 1
- - uid: 457
- components:
- - type: Transform
- pos: 14.5,19.5
- parent: 1
- - uid: 458
- components:
- - type: Transform
- pos: 10.5,19.5
- parent: 1
- - uid: 459
- components:
- - type: Transform
- pos: 21.5,8.5
- parent: 1
- - uid: 461
- components:
- - type: Transform
- pos: 21.5,7.5
- parent: 1
- - uid: 464
- components:
- - type: Transform
- pos: 29.5,3.5
- parent: 1
- - uid: 466
- components:
- - type: Transform
- pos: 17.5,13.5
- parent: 1
- - uid: 467
- components:
- - type: Transform
- pos: 18.5,17.5
- parent: 1
- - uid: 468
- components:
- - type: Transform
- pos: 10.5,13.5
- parent: 1
- - uid: 469
- components:
- - type: Transform
- pos: 10.5,15.5
- parent: 1
- - uid: 470
- components:
- - type: Transform
- pos: 23.5,10.5
- parent: 1
- - uid: 471
- components:
- - type: Transform
- pos: 10.5,16.5
- parent: 1
- - uid: 472
- components:
- - type: Transform
- pos: 24.5,10.5
- parent: 1
- - uid: 473
- components:
- - type: Transform
- pos: 19.5,13.5
- parent: 1
- - uid: 474
- components:
- - type: Transform
- pos: 16.5,13.5
- parent: 1
- - uid: 475
- components:
- - type: Transform
- pos: 20.5,17.5
- parent: 1
- - uid: 476
- components:
- - type: Transform
- pos: 19.5,17.5
- parent: 1
- - uid: 478
- components:
- - type: Transform
- pos: 24.5,1.5
- parent: 1
- - uid: 479
- components:
- - type: Transform
- pos: 29.5,2.5
- parent: 1
- - uid: 480
- components:
- - type: Transform
- pos: 27.5,1.5
- parent: 1
- - uid: 481
- components:
- - type: Transform
- pos: 25.5,1.5
- parent: 1
- - uid: 482
- components:
- - type: Transform
- pos: 29.5,1.5
- parent: 1
- - uid: 483
- components:
- - type: Transform
- pos: 23.5,19.5
- parent: 1
- - uid: 484
- components:
- - type: Transform
- pos: 29.5,19.5
- parent: 1
- - uid: 485
- components:
- - type: Transform
- pos: 23.5,17.5
- parent: 1
- - uid: 486
- components:
- - type: Transform
- pos: 25.5,18.5
- parent: 1
- - uid: 489
- components:
- - type: Transform
- pos: 13.5,7.5
- parent: 1
- - uid: 493
- components:
- - type: Transform
- pos: 7.5,6.5
- parent: 1
- - uid: 494
- components:
- - type: Transform
- pos: 2.5,25.5
- parent: 1
- - uid: 497
- components:
- - type: Transform
- pos: 3.5,11.5
- parent: 1
- - uid: 498
- components:
- - type: Transform
- pos: 2.5,29.5
- parent: 1
- - uid: 499
- components:
- - type: Transform
- pos: 1.5,21.5
- parent: 1
- - uid: 501
- components:
- - type: Transform
- pos: 1.5,29.5
- parent: 1
- - uid: 502
- components:
- - type: Transform
- pos: 23.5,1.5
- parent: 1
- - uid: 503
- components:
- - type: Transform
- pos: 28.5,1.5
- parent: 1
- - uid: 504
- components:
- - type: Transform
- pos: 11.5,19.5
- parent: 1
- - uid: 505
- components:
- - type: Transform
- pos: 8.5,2.5
- parent: 1
- - uid: 507
- components:
- - type: Transform
- pos: 13.5,19.5
- parent: 1
- - uid: 509
- components:
- - type: Transform
- pos: 12.5,19.5
- parent: 1
- - uid: 510
- components:
- - type: Transform
- pos: 13.5,23.5
- parent: 1
- - uid: 511
- components:
- - type: Transform
- pos: 14.5,23.5
- parent: 1
- - uid: 512
- components:
- - type: Transform
- pos: 29.5,4.5
- parent: 1
- - uid: 513
- components:
- - type: Transform
- pos: 6.5,11.5
- parent: 1
- - uid: 514
- components:
- - type: Transform
- pos: 8.5,7.5
- parent: 1
- - uid: 515
- components:
- - type: Transform
- pos: 26.5,1.5
- parent: 1
- - uid: 516
- components:
- - type: Transform
- pos: 26.5,15.5
- parent: 1
- - uid: 517
- components:
- - type: Transform
- pos: 5.5,19.5
- parent: 1
- - uid: 518
- components:
- - type: Transform
- pos: 6.5,19.5
- parent: 1
- - uid: 519
- components:
- - type: Transform
- pos: 5.5,8.5
- parent: 1
- - uid: 520
- components:
- - type: Transform
- pos: 5.5,9.5
- parent: 1
- - uid: 521
- components:
- - type: Transform
- pos: 8.5,19.5
- parent: 1
- - uid: 523
- components:
- - type: Transform
- pos: 5.5,16.5
- parent: 1
- - uid: 525
- components:
- - type: Transform
- pos: 7.5,19.5
- parent: 1
- - uid: 526
- components:
- - type: Transform
- pos: 5.5,17.5
- parent: 1
- - uid: 527
- components:
- - type: Transform
- pos: 5.5,18.5
- parent: 1
- - uid: 537
- components:
- - type: Transform
- pos: 10.5,10.5
- parent: 1
- - uid: 538
- components:
- - type: Transform
- pos: 14.5,10.5
- parent: 1
- - uid: 539
- components:
- - type: Transform
- pos: 14.5,7.5
- parent: 1
- - uid: 540
- components:
- - type: Transform
- pos: 10.5,9.5
- parent: 1
- - uid: 543
- components:
- - type: Transform
- pos: 14.5,8.5
- parent: 1
- - uid: 545
- components:
- - type: Transform
- pos: 5.5,11.5
- parent: 1
- - uid: 546
- components:
- - type: Transform
- pos: 7.5,4.5
- parent: 1
- - uid: 547
- components:
- - type: Transform
- pos: 26.5,29.5
- parent: 1
- - uid: 548
- components:
- - type: Transform
- pos: 7.5,9.5
- parent: 1
- - uid: 549
- components:
- - type: Transform
- pos: 8.5,11.5
- parent: 1
- - uid: 550
- components:
- - type: Transform
- pos: 5.5,7.5
- parent: 1
- - uid: 558
- components:
- - type: Transform
- pos: 7.5,16.5
- parent: 1
- - uid: 559
- components:
- - type: Transform
- pos: 7.5,14.5
- parent: 1
- - uid: 560
- components:
- - type: Transform
- pos: 6.5,6.5
- parent: 1
- - uid: 561
- components:
- - type: Transform
- pos: 8.5,16.5
- parent: 1
- - uid: 562
- components:
- - type: Transform
- pos: 8.5,17.5
- parent: 1
- - uid: 563
- components:
- - type: Transform
- pos: 6.5,16.5
- parent: 1
- - uid: 564
- components:
- - type: Transform
- pos: 6.5,14.5
- parent: 1
- - uid: 565
- components:
- - type: Transform
- pos: 8.5,12.5
- parent: 1
- - uid: 566
- components:
- - type: Transform
- pos: 8.5,13.5
- parent: 1
- - uid: 567
- components:
- - type: Transform
- pos: 8.5,14.5
- parent: 1
- - uid: 568
- components:
- - type: Transform
- pos: 5.5,14.5
- parent: 1
- - uid: 569
- components:
- - type: Transform
- pos: 6.5,4.5
- parent: 1
- - uid: 570
- components:
- - type: Transform
- pos: 6.5,2.5
- parent: 1
- - uid: 579
- components:
- - type: Transform
- pos: 7.5,2.5
- parent: 1
- - uid: 580
- components:
- - type: Transform
- pos: 6.5,3.5
- parent: 1
- - uid: 581
- components:
- - type: Transform
- pos: 6.5,1.5
- parent: 1
- - uid: 585
- components:
- - type: Transform
- pos: 10.5,11.5
- parent: 1
- - uid: 587
- components:
- - type: Transform
- pos: 10.5,17.5
- parent: 1
- - uid: 588
- components:
- - type: Transform
- pos: 11.5,17.5
- parent: 1
- - uid: 589
- components:
- - type: Transform
- pos: 12.5,17.5
- parent: 1
- - uid: 590
- components:
- - type: Transform
- pos: 13.5,17.5
- parent: 1
- - uid: 598
- components:
- - type: Transform
- pos: 3.5,13.5
- parent: 1
- - uid: 601
- components:
- - type: Transform
- pos: 29.5,11.5
- parent: 1
- - uid: 602
- components:
- - type: Transform
- pos: 29.5,10.5
- parent: 1
- - uid: 607
- components:
- - type: Transform
- pos: 40.5,5.5
- parent: 1
- - uid: 608
- components:
- - type: Transform
- pos: 42.5,4.5
- parent: 1
- - uid: 610
- components:
- - type: Transform
- pos: 48.5,5.5
- parent: 1
- - uid: 611
- components:
- - type: Transform
- pos: 44.5,1.5
- parent: 1
- - uid: 613
- components:
- - type: Transform
- pos: 45.5,1.5
- parent: 1
- - uid: 614
- components:
- - type: Transform
- pos: 24.5,5.5
- parent: 1
- - uid: 615
- components:
- - type: Transform
- pos: 25.5,5.5
- parent: 1
- - uid: 616
- components:
- - type: Transform
- pos: 26.5,5.5
- parent: 1
- - uid: 617
- components:
- - type: Transform
- pos: 27.5,5.5
- parent: 1
- - uid: 618
- components:
- - type: Transform
- pos: 28.5,5.5
- parent: 1
- - uid: 619
- components:
- - type: Transform
- pos: 16.5,14.5
- parent: 1
- - uid: 620
- components:
- - type: Transform
- pos: 16.5,15.5
- parent: 1
- - uid: 622
- components:
- - type: Transform
- pos: 16.5,4.5
- parent: 1
- - uid: 623
- components:
- - type: Transform
- pos: 16.5,3.5
- parent: 1
- - uid: 624
- components:
- - type: Transform
- pos: 16.5,2.5
- parent: 1
- - uid: 625
- components:
- - type: Transform
- pos: 16.5,1.5
- parent: 1
- - uid: 626
- components:
- - type: Transform
- pos: 17.5,1.5
- parent: 1
- - uid: 642
- components:
- - type: Transform
- pos: 26.5,28.5
- parent: 1
- - uid: 643
- components:
- - type: Transform
- pos: 25.5,29.5
- parent: 1
- - uid: 658
- components:
- - type: Transform
- pos: 32.5,5.5
- parent: 1
- - uid: 659
- components:
- - type: Transform
- pos: 31.5,5.5
- parent: 1
- - uid: 661
- components:
- - type: Transform
- pos: 33.5,5.5
- parent: 1
- - uid: 662
- components:
- - type: Transform
- pos: 34.5,5.5
- parent: 1
- - uid: 663
- components:
- - type: Transform
- pos: 35.5,5.5
- parent: 1
- - uid: 664
- components:
- - type: Transform
- pos: 36.5,5.5
- parent: 1
- - uid: 665
- components:
- - type: Transform
- pos: 37.5,5.5
- parent: 1
- - uid: 666
- components:
- - type: Transform
- pos: 38.5,5.5
- parent: 1
- - uid: 667
- components:
- - type: Transform
- pos: 38.5,4.5
- parent: 1
- - uid: 668
- components:
- - type: Transform
- pos: 38.5,3.5
- parent: 1
- - uid: 669
- components:
- - type: Transform
- pos: 38.5,2.5
- parent: 1
- - uid: 670
- components:
- - type: Transform
- pos: 38.5,1.5
- parent: 1
- - uid: 671
- components:
- - type: Transform
- pos: 37.5,1.5
- parent: 1
- - uid: 672
- components:
- - type: Transform
- pos: 36.5,1.5
- parent: 1
- - uid: 673
- components:
- - type: Transform
- pos: 35.5,1.5
- parent: 1
- - uid: 674
- components:
- - type: Transform
- pos: 34.5,1.5
- parent: 1
- - uid: 675
- components:
- - type: Transform
- pos: 33.5,1.5
- parent: 1
- - uid: 676
- components:
- - type: Transform
- pos: 32.5,1.5
- parent: 1
- - uid: 677
- components:
- - type: Transform
- pos: 31.5,1.5
- parent: 1
- - uid: 678
- components:
- - type: Transform
- pos: 31.5,2.5
- parent: 1
- - uid: 679
- components:
- - type: Transform
- pos: 31.5,3.5
- parent: 1
- - uid: 680
- components:
- - type: Transform
- pos: 31.5,4.5
- parent: 1
- - uid: 682
- components:
- - type: Transform
- pos: 37.5,3.5
- parent: 1
- - uid: 683
- components:
- - type: Transform
- pos: 36.5,3.5
- parent: 1
- - uid: 718
- components:
- - type: Transform
- pos: 1.5,2.5
- parent: 1
- - uid: 719
- components:
- - type: Transform
- pos: 1.5,1.5
- parent: 1
- - uid: 720
- components:
- - type: Transform
- pos: 2.5,1.5
- parent: 1
- - uid: 721
- components:
- - type: Transform
- pos: 3.5,1.5
- parent: 1
- - uid: 722
- components:
- - type: Transform
- pos: 3.5,2.5
- parent: 1
- - uid: 723
- components:
- - type: Transform
- pos: 3.5,3.5
- parent: 1
- - uid: 724
- components:
- - type: Transform
- pos: 3.5,4.5
- parent: 1
- - uid: 725
- components:
- - type: Transform
- pos: 3.5,5.5
- parent: 1
- - uid: 726
- components:
- - type: Transform
- pos: 3.5,6.5
- parent: 1
- - uid: 727
- components:
- - type: Transform
- pos: 3.5,7.5
- parent: 1
- - uid: 728
- components:
- - type: Transform
- pos: 3.5,8.5
- parent: 1
- - uid: 729
- components:
- - type: Transform
- pos: 3.5,9.5
- parent: 1
- - uid: 730
- components:
- - type: Transform
- pos: 3.5,10.5
- parent: 1
- - uid: 731
- components:
- - type: Transform
- pos: 3.5,17.5
- parent: 1
- - uid: 732
- components:
- - type: Transform
- pos: 1.5,23.5
- parent: 1
- - uid: 733
- components:
- - type: Transform
- pos: 1.5,28.5
- parent: 1
- - uid: 734
- components:
- - type: Transform
- pos: 2.5,23.5
- parent: 1
- - uid: 735
- components:
- - type: Transform
- pos: 3.5,23.5
- parent: 1
- - uid: 736
- components:
- - type: Transform
- pos: 3.5,22.5
- parent: 1
- - uid: 737
- components:
- - type: Transform
- pos: 3.5,20.5
- parent: 1
- - uid: 738
- components:
- - type: Transform
- pos: 3.5,18.5
- parent: 1
- - uid: 739
- components:
- - type: Transform
- pos: 3.5,19.5
- parent: 1
- - uid: 740
- components:
- - type: Transform
- pos: 3.5,21.5
- parent: 1
- - uid: 741
- components:
- - type: Transform
- pos: 1.5,27.5
- parent: 1
- - uid: 742
- components:
- - type: Transform
- pos: 1.5,26.5
- parent: 1
- - uid: 743
- components:
- - type: Transform
- pos: 1.5,25.5
- parent: 1
- - uid: 744
- components:
- - type: Transform
- pos: 3.5,25.5
- parent: 1
- - uid: 745
- components:
- - type: Transform
- pos: 3.5,26.5
- parent: 1
- - uid: 746
- components:
- - type: Transform
- pos: 3.5,27.5
- parent: 1
- - uid: 747
- components:
- - type: Transform
- pos: 3.5,28.5
- parent: 1
- - uid: 765
- components:
- - type: Transform
- pos: 27.5,31.5
- parent: 1
- - uid: 766
- components:
- - type: Transform
- pos: 26.5,31.5
- parent: 1
- - uid: 767
- components:
- - type: Transform
- pos: 25.5,31.5
- parent: 1
- - uid: 768
- components:
- - type: Transform
- pos: 24.5,31.5
- parent: 1
- - uid: 769
- components:
- - type: Transform
- pos: 23.5,31.5
- parent: 1
- - uid: 770
- components:
- - type: Transform
- pos: 23.5,32.5
- parent: 1
- - uid: 771
- components:
- - type: Transform
- pos: 23.5,33.5
- parent: 1
- - uid: 772
- components:
- - type: Transform
- pos: 23.5,34.5
- parent: 1
- - uid: 773
- components:
- - type: Transform
- pos: 23.5,35.5
- parent: 1
- - uid: 774
- components:
- - type: Transform
- pos: 23.5,36.5
- parent: 1
- - uid: 775
- components:
- - type: Transform
- pos: 23.5,37.5
- parent: 1
- - uid: 776
- components:
- - type: Transform
- pos: 24.5,37.5
- parent: 1
- - uid: 777
- components:
- - type: Transform
- pos: 25.5,37.5
- parent: 1
- - uid: 778
- components:
- - type: Transform
- pos: 27.5,37.5
- parent: 1
- - uid: 779
- components:
- - type: Transform
- pos: 26.5,37.5
- parent: 1
- - uid: 780
- components:
- - type: Transform
- pos: 28.5,37.5
- parent: 1
- - uid: 781
- components:
- - type: Transform
- pos: 29.5,37.5
- parent: 1
- - uid: 782
- components:
- - type: Transform
- pos: 29.5,36.5
- parent: 1
- - uid: 783
- components:
- - type: Transform
- pos: 29.5,35.5
- parent: 1
- - uid: 784
- components:
- - type: Transform
- pos: 29.5,34.5
- parent: 1
- - uid: 785
- components:
- - type: Transform
- pos: 29.5,33.5
- parent: 1
- - uid: 786
- components:
- - type: Transform
- pos: 29.5,32.5
- parent: 1
- - uid: 787
- components:
- - type: Transform
- pos: 29.5,31.5
- parent: 1
- - uid: 788
- components:
- - type: Transform
- pos: 28.5,31.5
- parent: 1
- - uid: 803
- components:
- - type: Transform
- pos: 12.5,25.5
- parent: 1
- - uid: 804
- components:
- - type: Transform
- pos: 11.5,25.5
- parent: 1
- - uid: 805
- components:
- - type: Transform
- pos: 10.5,25.5
- parent: 1
- - uid: 806
- components:
- - type: Transform
- pos: 10.5,26.5
- parent: 1
- - uid: 807
- components:
- - type: Transform
- pos: 10.5,27.5
- parent: 1
- - uid: 808
- components:
- - type: Transform
- pos: 10.5,28.5
- parent: 1
- - uid: 809
- components:
- - type: Transform
- pos: 10.5,29.5
- parent: 1
- - uid: 810
- components:
- - type: Transform
- pos: 11.5,29.5
- parent: 1
- - uid: 811
- components:
- - type: Transform
- pos: 12.5,29.5
- parent: 1
- - uid: 812
- components:
- - type: Transform
- pos: 13.5,29.5
- parent: 1
- - uid: 813
- components:
- - type: Transform
- pos: 14.5,29.5
- parent: 1
- - uid: 814
- components:
- - type: Transform
- pos: 14.5,28.5
- parent: 1
- - uid: 815
- components:
- - type: Transform
- pos: 14.5,27.5
- parent: 1
- - uid: 816
- components:
- - type: Transform
- pos: 14.5,26.5
- parent: 1
- - uid: 817
- components:
- - type: Transform
- pos: 14.5,25.5
- parent: 1
- - uid: 818
- components:
- - type: Transform
- pos: 13.5,25.5
- parent: 1
-- proto: CableHV
- entities:
- - uid: 335
- components:
- - type: Transform
- pos: 32.5,4.5
- parent: 1
- - uid: 644
- components:
- - type: Transform
- pos: 32.5,2.5
- parent: 1
- - uid: 645
- components:
- - type: Transform
- pos: 33.5,3.5
- parent: 1
- - uid: 647
- components:
- - type: Transform
- pos: 32.5,3.5
- parent: 1
- - uid: 655
- components:
- - type: Transform
- pos: 34.5,3.5
- parent: 1
- - uid: 656
- components:
- - type: Transform
- pos: 35.5,3.5
- parent: 1
-- proto: CableMV
- entities:
- - uid: 657
- components:
- - type: Transform
- pos: 35.5,3.5
- parent: 1
- - uid: 660
- components:
- - type: Transform
- pos: 36.5,3.5
- parent: 1
-- proto: CableTerminal
- entities:
- - uid: 652
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,3.5
- parent: 1
-- proto: Carpet
- entities:
- - uid: 145
- components:
- - type: Transform
- pos: 19.5,9.5
- parent: 1
- - uid: 147
- components:
- - type: Transform
- pos: 20.5,9.5
- parent: 1
- - uid: 150
- components:
- - type: Transform
- pos: 20.5,10.5
- parent: 1
- - uid: 181
- components:
- - type: Transform
- pos: 19.5,10.5
- parent: 1
- - uid: 229
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,10.5
- parent: 1
- - uid: 346
- components:
- - type: Transform
- pos: 18.5,9.5
- parent: 1
-- proto: CarpetBlack
- entities:
- - uid: 311
- components:
- - type: Transform
- pos: 27.5,24.5
- parent: 1
- - uid: 319
- components:
- - type: Transform
- pos: 27.5,25.5
- parent: 1
- - uid: 320
- components:
- - type: Transform
- pos: 28.5,25.5
- parent: 1
- - uid: 332
- components:
- - type: Transform
- pos: 28.5,24.5
- parent: 1
-- proto: CarpetSBlue
- entities:
- - uid: 79
- components:
- - type: Transform
- pos: 18.5,4.5
- parent: 1
- - uid: 80
- components:
- - type: Transform
- pos: 17.5,4.5
- parent: 1
- - uid: 84
- components:
- - type: Transform
- pos: 19.5,4.5
- parent: 1
- - uid: 101
- components:
- - type: Transform
- pos: 20.5,2.5
- parent: 1
- - uid: 111
- components:
- - type: Transform
- pos: 19.5,3.5
- parent: 1
- - uid: 157
- components:
- - type: Transform
- pos: 18.5,3.5
- parent: 1
- - uid: 158
- components:
- - type: Transform
- pos: 17.5,3.5
- parent: 1
- - uid: 161
- components:
- - type: Transform
- pos: 20.5,3.5
- parent: 1
- - uid: 162
- components:
- - type: Transform
- pos: 20.5,4.5
- parent: 1
- - uid: 210
- components:
- - type: Transform
- pos: 19.5,2.5
- parent: 1
- - uid: 212
- components:
- - type: Transform
- pos: 17.5,2.5
- parent: 1
- - uid: 213
- components:
- - type: Transform
- pos: 18.5,2.5
- parent: 1
-- proto: Catwalk
- entities:
- - uid: 86
- components:
- - type: Transform
- pos: 7.5,6.5
- parent: 1
- - uid: 90
- components:
- - type: Transform
- pos: 6.5,19.5
- parent: 1
- - uid: 92
- components:
- - type: Transform
- pos: 5.5,9.5
- parent: 1
- - uid: 94
- components:
- - type: Transform
- pos: 6.5,6.5
- parent: 1
- - uid: 95
- components:
- - type: Transform
- pos: 5.5,2.5
- parent: 1
- - uid: 96
- components:
- - type: Transform
- pos: 7.5,4.5
- parent: 1
- - uid: 97
- components:
- - type: Transform
- pos: 5.5,11.5
- parent: 1
- - uid: 99
- components:
- - type: Transform
- pos: 5.5,7.5
- parent: 1
- - uid: 128
- components:
- - type: Transform
- pos: 8.5,3.5
- parent: 1
- - uid: 130
- components:
- - type: Transform
- pos: 8.5,2.5
- parent: 1
- - uid: 164
- components:
- - type: Transform
- pos: 5.5,17.5
- parent: 1
- - uid: 165
- components:
- - type: Transform
- pos: 6.5,11.5
- parent: 1
- - uid: 168
- components:
- - type: Transform
- pos: 8.5,6.5
- parent: 1
- - uid: 172
- components:
- - type: Transform
- pos: 5.5,16.5
- parent: 1
- - uid: 173
- components:
- - type: Transform
- pos: 7.5,1.5
- parent: 1
- - uid: 176
- components:
- - type: Transform
- pos: 6.5,16.5
- parent: 1
- - uid: 178
- components:
- - type: Transform
- pos: 5.5,19.5
- parent: 1
- - uid: 185
- components:
- - type: Transform
- pos: 5.5,8.5
- parent: 1
- - uid: 205
- components:
- - type: Transform
- pos: 8.5,11.5
- parent: 1
- - uid: 225
- components:
- - type: Transform
- pos: 7.5,11.5
- parent: 1
- - uid: 227
- components:
- - type: Transform
- pos: 7.5,9.5
- parent: 1
- - uid: 228
- components:
- - type: Transform
- pos: 8.5,7.5
- parent: 1
- - uid: 315
- components:
- - type: Transform
- pos: 6.5,4.5
- parent: 1
- - uid: 522
- components:
- - type: Transform
- pos: 8.5,12.5
- parent: 1
- - uid: 528
- components:
- - type: Transform
- pos: 5.5,14.5
- parent: 1
- - uid: 529
- components:
- - type: Transform
- pos: 5.5,12.5
- parent: 1
- - uid: 530
- components:
- - type: Transform
- pos: 5.5,6.5
- parent: 1
- - uid: 531
- components:
- - type: Transform
- pos: 7.5,14.5
- parent: 1
- - uid: 532
- components:
- - type: Transform
- pos: 5.5,18.5
- parent: 1
- - uid: 533
- components:
- - type: Transform
- pos: 8.5,16.5
- parent: 1
- - uid: 534
- components:
- - type: Transform
- pos: 8.5,14.5
- parent: 1
- - uid: 535
- components:
- - type: Transform
- pos: 8.5,13.5
- parent: 1
- - uid: 536
- components:
- - type: Transform
- pos: 5.5,13.5
- parent: 1
- - uid: 541
- components:
- - type: Transform
- pos: 6.5,9.5
- parent: 1
- - uid: 544
- components:
- - type: Transform
- pos: 5.5,3.5
- parent: 1
- - uid: 551
- components:
- - type: Transform
- pos: 7.5,16.5
- parent: 1
- - uid: 552
- components:
- - type: Transform
- pos: 6.5,14.5
- parent: 1
- - uid: 554
- components:
- - type: Transform
- pos: 7.5,19.5
- parent: 1
- - uid: 555
- components:
- - type: Transform
- pos: 8.5,19.5
- parent: 1
- - uid: 556
- components:
- - type: Transform
- pos: 8.5,17.5
- parent: 1
- - uid: 557
- components:
- - type: Transform
- pos: 8.5,18.5
- parent: 1
- - uid: 572
- components:
- - type: Transform
- pos: 8.5,8.5
- parent: 1
- - uid: 573
- components:
- - type: Transform
- pos: 8.5,9.5
- parent: 1
- - uid: 574
- components:
- - type: Transform
- pos: 7.5,3.5
- parent: 1
- - uid: 575
- components:
- - type: Transform
- pos: 7.5,2.5
- parent: 1
- - uid: 576
- components:
- - type: Transform
- pos: 6.5,2.5
- parent: 1
- - uid: 577
- components:
- - type: Transform
- pos: 6.5,3.5
- parent: 1
- - uid: 578
- components:
- - type: Transform
- pos: 6.5,1.5
- parent: 1
- - uid: 685
- components:
- - type: Transform
- pos: 36.5,5.5
- parent: 1
- - uid: 686
- components:
- - type: Transform
- pos: 35.5,5.5
- parent: 1
- - uid: 687
- components:
- - type: Transform
- pos: 34.5,5.5
- parent: 1
- - uid: 688
- components:
- - type: Transform
- pos: 33.5,5.5
- parent: 1
- - uid: 689
- components:
- - type: Transform
- pos: 32.5,5.5
- parent: 1
- - uid: 690
- components:
- - type: Transform
- pos: 31.5,5.5
- parent: 1
- - uid: 691
- components:
- - type: Transform
- pos: 31.5,4.5
- parent: 1
- - uid: 692
- components:
- - type: Transform
- pos: 31.5,3.5
- parent: 1
- - uid: 693
- components:
- - type: Transform
- pos: 31.5,2.5
- parent: 1
- - uid: 694
- components:
- - type: Transform
- pos: 31.5,1.5
- parent: 1
- - uid: 695
- components:
- - type: Transform
- pos: 32.5,1.5
- parent: 1
- - uid: 696
- components:
- - type: Transform
- pos: 33.5,1.5
- parent: 1
- - uid: 697
- components:
- - type: Transform
- pos: 34.5,1.5
- parent: 1
- - uid: 698
- components:
- - type: Transform
- pos: 35.5,1.5
- parent: 1
- - uid: 699
- components:
- - type: Transform
- pos: 36.5,1.5
- parent: 1
- - uid: 700
- components:
- - type: Transform
- pos: 37.5,1.5
- parent: 1
- - uid: 701
- components:
- - type: Transform
- pos: 38.5,1.5
- parent: 1
- - uid: 702
- components:
- - type: Transform
- pos: 38.5,2.5
- parent: 1
- - uid: 703
- components:
- - type: Transform
- pos: 38.5,3.5
- parent: 1
- - uid: 704
- components:
- - type: Transform
- pos: 38.5,4.5
- parent: 1
- - uid: 705
- components:
- - type: Transform
- pos: 38.5,5.5
- parent: 1
- - uid: 706
- components:
- - type: Transform
- pos: 37.5,5.5
- parent: 1
- - uid: 707
- components:
- - type: Transform
- pos: 37.5,3.5
- parent: 1
- - uid: 712
- components:
- - type: Transform
- pos: 33.5,3.5
- parent: 1
- - uid: 713
- components:
- - type: Transform
- pos: 33.5,2.5
- parent: 1
- - uid: 714
- components:
- - type: Transform
- pos: 33.5,4.5
- parent: 1
-- proto: ChairFolding
- entities:
- - uid: 13
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.750816,12.802753
- parent: 1
- - uid: 14
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,12.5
- parent: 1
- - uid: 15
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.407066,11.521503
- parent: 1
- - uid: 16
- components:
- - type: Transform
- pos: 27.5,13.5
- parent: 1
- - uid: 39
- components:
- - type: Transform
- pos: 28.532066,13.521503
- parent: 1
- - uid: 41
- components:
- - type: Transform
- pos: 28.532066,10.537128
- parent: 1
- - uid: 44
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.438316,10.599628
- parent: 1
- - uid: 61
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,8.5
- parent: 1
- - uid: 102
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.453941,7.6621284
- parent: 1
- - uid: 118
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.563316,9.615253
- parent: 1
- - uid: 194
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.360191,9.021503
- parent: 1
- - uid: 240
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,7.5
- parent: 1
- - uid: 245
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,11.5
- parent: 1
-- proto: ChairOfficeDark
- entities:
- - uid: 3
- components:
- - type: Transform
- pos: 12.5,3.5
- parent: 1
- - uid: 31
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,2.5
- parent: 1
- - uid: 141
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,10.5
- parent: 1
- - uid: 283
- components:
- - type: Transform
- pos: 18.5,4.5
- parent: 1
- - uid: 324
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,25.5
- parent: 1
- - uid: 627
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,2.5
- parent: 1
-- proto: ChairOfficeLight
- entities:
- - uid: 436
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,2.5
- parent: 1
- - uid: 488
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,19.5
- parent: 1
- - uid: 609
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,5.5
- parent: 1
- - uid: 612
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,5.5
- parent: 1
-- proto: CigarSpent
- entities:
- - uid: 462
- components:
- - type: Transform
- pos: 27.97385,24.720165
- parent: 1
- - uid: 639
- components:
- - type: Transform
- pos: 26.245007,28.76217
- parent: 1
-- proto: ClosetL3VirologyFilled
- entities:
- - uid: 224
- components:
- - type: Transform
- pos: 10.5,17.5
- parent: 1
-- proto: ClosetMaintenanceFilledRandom
- entities:
- - uid: 167
- components:
- - type: Transform
- pos: 6.5,13.5
- parent: 1
- - uid: 524
- components:
- - type: Transform
- pos: 5.5,4.5
- parent: 1
- - uid: 717
- components:
- - type: Transform
- pos: 37.5,2.5
- parent: 1
-- proto: ClosetToolFilled
- entities:
- - uid: 93
- components:
- - type: Transform
- pos: 7.5,8.5
- parent: 1
-- proto: ClothingHeadHatSurgcapBlue
- entities:
- - uid: 605
- components:
- - type: Transform
- pos: 46.335213,6.6342945
- parent: 1
-- proto: ComfyChair
- entities:
- - uid: 309
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,11.5
- parent: 1
- - uid: 337
- components:
- - type: Transform
- pos: 18.5,10.5
- parent: 1
- - uid: 600
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,12.5
- parent: 1
-- proto: ComputerBroken
- entities:
- - uid: 218
- components:
- - type: Transform
- pos: 24.5,20.5
- parent: 1
- - uid: 219
- components:
- - type: Transform
- pos: 41.5,6.5
- parent: 1
- - uid: 221
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,5.5
- parent: 1
-- proto: CrateFilledSpawner
- entities:
- - uid: 571
- components:
- - type: Transform
- pos: 8.5,4.5
- parent: 1
- - uid: 716
- components:
- - type: Transform
- pos: 37.5,4.5
- parent: 1
-- proto: CrateMedicalSurgery
- entities:
- - uid: 73
- components:
- - type: Transform
- pos: 40.5,1.5
- parent: 1
-- proto: DisposalUnit
- entities:
- - uid: 37
- components:
- - type: Transform
- pos: 29.5,10.5
- parent: 1
- - uid: 64
- components:
- - type: Transform
- pos: 44.5,7.5
- parent: 1
- - uid: 120
- components:
- - type: Transform
- pos: 14.5,5.5
- parent: 1
- - uid: 235
- components:
- - type: Transform
- pos: 28.5,20.5
- parent: 1
- - uid: 362
- components:
- - type: Transform
- pos: 28.5,4.5
- parent: 1
-- proto: DrinkMugOne
- entities:
- - uid: 621
- components:
- - type: Transform
- pos: 17.68426,3.4232135
- parent: 1
-- proto: FigureSpawner
- entities:
- - uid: 491
- components:
- - type: Transform
- pos: 13.5,10.5
- parent: 1
- - uid: 631
- components:
- - type: Transform
- pos: 19.5,14.5
- parent: 1
-- proto: filingCabinetDrawer
- entities:
- - uid: 434
- components:
- - type: Transform
- pos: 12.5,4.5
- parent: 1
-- proto: filingCabinetDrawerRandom
- entities:
- - uid: 487
- components:
- - type: Transform
- pos: 25.5,20.5
- parent: 1
- - uid: 604
- components:
- - type: Transform
- pos: 46.5,6.5
- parent: 1
-- proto: filingCabinetRandom
- entities:
- - uid: 214
- components:
- - type: Transform
- pos: 17.5,4.5
- parent: 1
-- proto: GeneratorRTG
- entities:
- - uid: 182
- components:
- - type: Transform
- pos: 32.5,4.5
- parent: 1
- - uid: 649
- components:
- - type: Transform
- pos: 32.5,2.5
- parent: 1
-- proto: HospitalCurtains
- entities:
- - uid: 45
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 12.5,14.5
- parent: 1
- - uid: 361
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,3.5
- parent: 1
- - uid: 409
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 13.5,21.5
- parent: 1
- - uid: 791
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,33.5
- parent: 1
- - uid: 792
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,35.5
- parent: 1
-- proto: LampGold
- entities:
- - uid: 217
- components:
- - type: Transform
- pos: 17.889809,4.0169635
- parent: 1
-- proto: LockerChemistryFilled
- entities:
- - uid: 343
- components:
- - type: Transform
- pos: 13.5,4.5
- parent: 1
-- proto: LockerFreezer
- entities:
- - uid: 367
- components:
- - type: Transform
- pos: 24.5,8.5
- parent: 1
-- proto: LockerMedical
- entities:
- - uid: 761
- components:
- - type: Transform
- pos: 25.5,35.5
- parent: 1
- - uid: 762
- components:
- - type: Transform
- pos: 26.5,35.5
- parent: 1
- - uid: 764
- components:
- - type: Transform
- pos: 26.5,33.5
- parent: 1
-- proto: LockerMedicalFilled
- entities:
- - uid: 763
- components:
- - type: Transform
- pos: 27.5,33.5
- parent: 1
-- proto: MaintenanceFluffSpawner
- entities:
- - uid: 231
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,11.5
- parent: 1
-- proto: MaintenanceToolSpawner
- entities:
- - uid: 87
- components:
- - type: Transform
- pos: 6.5,7.5
- parent: 1
- - uid: 88
- components:
- - type: Transform
- pos: 7.5,12.5
- parent: 1
- - uid: 226
- components:
- - type: Transform
- pos: 8.5,1.5
- parent: 1
- - uid: 553
- components:
- - type: Transform
- pos: 7.5,13.5
- parent: 1
-- proto: MedicalBed
- entities:
- - uid: 6
- components:
- - type: Transform
- pos: 19.5,14.5
- parent: 1
- - uid: 123
- components:
- - type: Transform
- pos: 17.5,9.5
- parent: 1
- - uid: 244
- components:
- - type: Transform
- pos: 17.5,16.5
- parent: 1
- - uid: 302
- components:
- - type: Transform
- pos: 13.5,8.5
- parent: 1
- - uid: 303
- components:
- - type: Transform
- pos: 13.5,10.5
- parent: 1
- - uid: 305
- components:
- - type: Transform
- pos: 11.5,8.5
- parent: 1
- - uid: 317
- components:
- - type: Transform
- pos: 17.5,14.5
- parent: 1
- - uid: 318
- components:
- - type: Transform
- pos: 19.5,16.5
- parent: 1
- - uid: 355
- components:
- - type: Transform
- pos: 11.5,10.5
- parent: 1
- - uid: 477
- components:
- - type: Transform
- pos: 12.5,15.5
- parent: 1
-- proto: MedkitFilled
- entities:
- - uid: 234
- components:
- - type: Transform
- pos: 42.439583,6.4467945
- parent: 1
-- proto: Mirror
- entities:
- - uid: 112
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,3.5
- parent: 1
- - uid: 121
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,21.5
- parent: 1
- - uid: 135
- components:
- - type: Transform
- pos: 12.5,20.5
- parent: 1
-- proto: Morgue
- entities:
- - uid: 334
- components:
- - type: Transform
- pos: 24.5,28.5
- parent: 1
- - uid: 357
- components:
- - type: Transform
- pos: 25.5,24.5
- parent: 1
- - uid: 452
- components:
- - type: Transform
- pos: 24.5,24.5
- parent: 1
- - uid: 456
- components:
- - type: Transform
- pos: 25.5,26.5
- parent: 1
- - uid: 632
- components:
- - type: Transform
- pos: 25.5,28.5
- parent: 1
- - uid: 633
- components:
- - type: Transform
- pos: 27.5,28.5
- parent: 1
- - uid: 634
- components:
- - type: Transform
- pos: 28.5,28.5
- parent: 1
- - uid: 636
- components:
- - type: Transform
- pos: 24.5,26.5
- parent: 1
-- proto: OperatingTable
- entities:
- - uid: 106
- components:
- - type: Transform
- pos: 26.5,18.5
- parent: 1
- - uid: 197
- components:
- - type: Transform
- pos: 44.5,4.5
- parent: 1
-- proto: Paper
- entities:
- - uid: 23
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.569588,2.5249197
- parent: 1
- - uid: 133
- components:
- - type: Transform
- pos: 26.123375,3.2775624
- parent: 1
- - uid: 236
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.350838,2.6655447
- parent: 1
- - uid: 429
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.319588,2.3530447
- parent: 1
-- proto: PaperBin5
- entities:
- - uid: 85
- components:
- - type: Transform
- pos: 19.5,3.5
- parent: 1
-- proto: PaperOffice
- entities:
- - uid: 8
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.782654,3.4538012
- parent: 1
- - uid: 56
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.017029,3.7038012
- parent: 1
- - uid: 117
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.535183,2.5259187
- parent: 1
- - uid: 312
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.448132,24.496546
- parent: 1
- - uid: 440
- components:
- - type: Transform
- pos: 11.288292,4.3996515
- parent: 1
- - uid: 597
- components:
- - type: Transform
- pos: 11.647667,4.6965265
- parent: 1
- - uid: 637
- components:
- - type: Transform
- pos: 26.635632,28.402796
- parent: 1
- - uid: 640
- components:
- - type: Transform
- pos: 26.791882,28.684046
- parent: 1
-- proto: Pen
- entities:
- - uid: 251
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.397713,2.3999197
- parent: 1
- - uid: 638
- components:
- - type: Transform
- pos: 26.291882,28.371546
- parent: 1
-- proto: Pill
- entities:
- - uid: 350
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.993145,2.493473
- parent: 1
-- proto: PottedPlantRandom
- entities:
- - uid: 104
- components:
- - type: Transform
- pos: 29.5,1.5
- parent: 1
-- proto: PottedPlantRandomPlastic
- entities:
- - uid: 146
- components:
- - type: Transform
- pos: 16.5,7.5
- parent: 1
- - uid: 183
- components:
- - type: Transform
- pos: 29.5,7.5
- parent: 1
- - uid: 261
- components:
- - type: Transform
- pos: 16.5,5.5
- parent: 1
- - uid: 796
- components:
- - type: Transform
- pos: 23.5,29.5
- parent: 1
-- proto: Poweredlight
- entities:
- - uid: 32
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,12.5
- parent: 1
- - uid: 136
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 13.5,19.5
- parent: 1
- - uid: 137
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,22.5
- parent: 1
- - uid: 270
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,29.5
- parent: 1
- - uid: 279
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 26.5,21.5
- parent: 1
- - uid: 280
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,18.5
- parent: 1
- - uid: 281
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,18.5
- parent: 1
- - uid: 282
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 19.5,11.5
- parent: 1
- - uid: 285
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 19.5,5.5
- parent: 1
- - uid: 286
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,3.5
- parent: 1
- - uid: 287
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 11.5,5.5
- parent: 1
- - uid: 288
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 13.5,5.5
- parent: 1
- - uid: 289
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,2.5
- parent: 1
- - uid: 292
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,18.5
- parent: 1
- - uid: 293
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 45.5,7.5
- parent: 1
- - uid: 294
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,4.5
- parent: 1
- - uid: 295
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,4.5
- parent: 1
- - uid: 336
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,15.5
- parent: 1
- - uid: 338
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,15.5
- parent: 1
- - uid: 349
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,7.5
- parent: 1
- - uid: 495
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,22.5
- parent: 1
- - uid: 496
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,25.5
- parent: 1
- - uid: 591
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,17.5
- parent: 1
- - uid: 592
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 12.5,7.5
- parent: 1
- - uid: 593
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,11.5
- parent: 1
- - uid: 603
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,8.5
- parent: 1
- - uid: 748
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,10.5
- parent: 1
-- proto: PoweredSmallLight
- entities:
- - uid: 222
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,27.5
- parent: 1
- - uid: 635
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,27.5
- parent: 1
- - uid: 789
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,34.5
- parent: 1
- - uid: 790
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,34.5
- parent: 1
-- proto: PoweredSmallLightEmpty
- entities:
- - uid: 134
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,2.5
- parent: 1
-- proto: RandomBook
- entities:
- - uid: 138
- components:
- - type: Transform
- pos: 17.5,3.5
- parent: 1
- - uid: 460
- components:
- - type: Transform
- pos: 19.5,10.5
- parent: 1
-- proto: RandomDrinkGlass
- entities:
- - uid: 4
- components:
- - type: Transform
- pos: 27.5,12.5
- parent: 1
-- proto: RandomFoodBakedSingle
- entities:
- - uid: 5
- components:
- - type: Transform
- pos: 28.5,11.5
- parent: 1
-- proto: RandomFoodMeal
- entities:
- - uid: 794
- components:
- - type: Transform
- pos: 27.5,24.5
- parent: 1
-- proto: RandomItem
- entities:
- - uid: 188
- components:
- - type: Transform
- pos: 28.5,12.5
- parent: 1
- - uid: 795
- components:
- - type: Transform
- pos: 26.5,34.5
- parent: 1
- - uid: 819
- components:
- - type: Transform
- pos: 12.5,27.5
- parent: 1
-- proto: RandomPainting
- entities:
- - uid: 132
- components:
- - type: Transform
- pos: 26.5,2.5
- parent: 1
-- proto: RandomSnacks
- entities:
- - uid: 187
- components:
- - type: Transform
- pos: 28.5,8.5
- parent: 1
- - uid: 797
- components:
- - type: Transform
- pos: 27.5,35.5
- parent: 1
-- proto: RandomSoap
- entities:
- - uid: 109
- components:
- - type: Transform
- pos: 28.5,5.5
- parent: 1
- - uid: 431
- components:
- - type: Transform
- pos: 12.5,21.5
- parent: 1
-- proto: RandomSpawner
- entities:
- - uid: 11
- components:
- - type: Transform
- pos: 1.5,2.5
- parent: 1
- - uid: 19
- components:
- - type: Transform
- pos: 3.5,5.5
- parent: 1
- - uid: 81
- components:
- - type: Transform
- pos: 2.5,14.5
- parent: 1
- - uid: 89
- components:
- - type: Transform
- pos: 1.5,17.5
- parent: 1
- - uid: 98
- components:
- - type: Transform
- pos: 5.5,1.5
- parent: 1
- - uid: 107
- components:
- - type: Transform
- pos: 3.5,21.5
- parent: 1
- - uid: 114
- components:
- - type: Transform
- pos: 27.5,1.5
- parent: 1
- - uid: 115
- components:
- - type: Transform
- pos: 25.5,5.5
- parent: 1
- - uid: 116
- components:
- - type: Transform
- pos: 23.5,2.5
- parent: 1
- - uid: 126
- components:
- - type: Transform
- pos: 24.5,9.5
- parent: 1
- - uid: 131
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,8.5
- parent: 1
- - uid: 175
- components:
- - type: Transform
- pos: 6.5,12.5
- parent: 1
- - uid: 179
- components:
- - type: Transform
- pos: 3.5,22.5
- parent: 1
- - uid: 184
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,10.5
- parent: 1
- - uid: 199
- components:
- - type: Transform
- pos: 24.5,12.5
- parent: 1
- - uid: 207
- components:
- - type: Transform
- pos: 11.5,1.5
- parent: 1
- - uid: 239
- components:
- - type: Transform
- pos: 24.5,13.5
- parent: 1
- - uid: 246
- components:
- - type: Transform
- pos: 24.5,7.5
- parent: 1
- - uid: 269
- components:
- - type: Transform
- pos: 2.5,19.5
- parent: 1
- - uid: 290
- components:
- - type: Transform
- pos: 2.5,9.5
- parent: 1
- - uid: 366
- components:
- - type: Transform
- pos: 7.5,7.5
- parent: 1
- - uid: 500
- components:
- - type: Transform
- pos: 1.5,26.5
- parent: 1
- - uid: 542
- components:
- - type: Transform
- pos: 6.5,8.5
- parent: 1
- - uid: 820
- components:
- - type: Transform
- pos: 13.5,26.5
- parent: 1
- - uid: 821
- components:
- - type: Transform
- pos: 11.5,26.5
- parent: 1
-- proto: RandomVendingDrinks
- entities:
- - uid: 798
- components:
- - type: Transform
- pos: 13.5,27.5
- parent: 1
-- proto: RandomVendingSnacks
- entities:
- - uid: 799
- components:
- - type: Transform
- pos: 11.5,27.5
- parent: 1
-- proto: Scalpel
- entities:
- - uid: 28
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.46492,19.56752
- parent: 1
- - uid: 153
- components:
- - type: Transform
- pos: 42.512173,5.5501404
- parent: 1
-- proto: SignBiohazardMed
- entities:
- - uid: 186
- components:
- - type: Transform
- pos: 11.5,14.5
- parent: 1
- - uid: 594
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,14.5
- parent: 1
-- proto: SinkWide
- entities:
- - uid: 108
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,3.5
- parent: 1
- - uid: 127
- components:
- - type: Transform
- pos: 12.5,19.5
- parent: 1
- - uid: 139
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,21.5
- parent: 1
-- proto: SMESBasicEmpty
- entities:
- - uid: 648
- components:
- - type: Transform
- pos: 34.5,3.5
- parent: 1
-- proto: SubstationBasicEmpty
- entities:
- - uid: 646
- components:
- - type: Transform
- pos: 35.5,3.5
- parent: 1
-- proto: Syringe
- entities:
- - uid: 248
- components:
- - type: Transform
- pos: 12.384319,2.5402765
- parent: 1
-- proto: Table
- entities:
- - uid: 17
- components:
- - type: Transform
- pos: 27.5,12.5
- parent: 1
- - uid: 24
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 42.5,2.5
- parent: 1
- - uid: 30
- components:
- - type: Transform
- pos: 27.5,11.5
- parent: 1
- - uid: 33
- components:
- - type: Transform
- pos: 28.5,19.5
- parent: 1
- - uid: 40
- components:
- - type: Transform
- pos: 28.5,9.5
- parent: 1
- - uid: 43
- components:
- - type: Transform
- pos: 28.5,12.5
- parent: 1
- - uid: 63
- components:
- - type: Transform
- pos: 42.5,5.5
- parent: 1
- - uid: 65
- components:
- - type: Transform
- pos: 24.5,17.5
- parent: 1
- - uid: 124
- components:
- - type: Transform
- pos: 27.5,8.5
- parent: 1
- - uid: 125
- components:
- - type: Transform
- pos: 28.5,11.5
- parent: 1
- - uid: 191
- components:
- - type: Transform
- pos: 28.5,8.5
- parent: 1
- - uid: 196
- components:
- - type: Transform
- pos: 46.5,3.5
- parent: 1
- - uid: 249
- components:
- - type: Transform
- pos: 47.5,6.5
- parent: 1
- - uid: 345
- components:
- - type: Transform
- pos: 24.5,16.5
- parent: 1
- - uid: 439
- components:
- - type: Transform
- pos: 11.5,4.5
- parent: 1
- - uid: 599
- components:
- - type: Transform
- pos: 27.5,9.5
- parent: 1
- - uid: 606
- components:
- - type: Transform
- pos: 42.5,6.5
- parent: 1
-- proto: TableCounterMetal
- entities:
- - uid: 201
- components:
- - type: Transform
- pos: 11.5,2.5
- parent: 1
- - uid: 202
- components:
- - type: Transform
- pos: 13.5,2.5
- parent: 1
- - uid: 595
- components:
- - type: Transform
- pos: 12.5,2.5
- parent: 1
-- proto: TableCounterWood
- entities:
- - uid: 25
- components:
- - type: Transform
- pos: 18.5,3.5
- parent: 1
- - uid: 155
- components:
- - type: Transform
- pos: 17.5,3.5
- parent: 1
- - uid: 156
- components:
- - type: Transform
- pos: 19.5,3.5
- parent: 1
-- proto: TableGlass
- entities:
- - uid: 22
- components:
- - type: Transform
- pos: 28.5,26.5
- parent: 1
- - uid: 331
- components:
- - type: Transform
- pos: 27.5,26.5
- parent: 1
- - uid: 641
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,28.5
- parent: 1
-- proto: TableWood
- entities:
- - uid: 144
- components:
- - type: Transform
- pos: 19.5,9.5
- parent: 1
- - uid: 232
- components:
- - type: Transform
- pos: 19.5,10.5
- parent: 1
- - uid: 298
- components:
- - type: Transform
- pos: 28.5,24.5
- parent: 1
- - uid: 304
- components:
- - type: Transform
- pos: 27.5,24.5
- parent: 1
-- proto: ToiletDirtyWater
- entities:
- - uid: 359
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,3.5
- parent: 1
- - uid: 463
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,21.5
- parent: 1
-- proto: ToySpawner
- entities:
- - uid: 193
- components:
- - type: Transform
- pos: 27.5,8.5
- parent: 1
- - uid: 793
- components:
- - type: Transform
- pos: 17.5,14.5
- parent: 1
-- proto: VendingMachineWallMedical
- entities:
- - uid: 433
- components:
- - type: MetaData
- flags: SessionSpecific
- - type: Transform
- pos: 20.5,15.5
- parent: 1
- - uid: 586
- components:
- - type: MetaData
- flags: SessionSpecific
- - type: Transform
- pos: 12.5,8.5
- parent: 1
-- proto: WallReinforced
- entities:
- - uid: 654
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 36.5,3.5
- parent: 1
- - uid: 681
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 36.5,4.5
- parent: 1
- - uid: 684
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 36.5,2.5
- parent: 1
- - uid: 708
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 35.5,2.5
- parent: 1
- - uid: 709
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 34.5,2.5
- parent: 1
- - uid: 710
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 35.5,4.5
- parent: 1
- - uid: 711
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 34.5,4.5
- parent: 1
-- proto: WallSolidRust
- entities:
- - uid: 7
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 17.5,15.5
- parent: 1
- - uid: 9
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 13.5,16.5
- parent: 1
- - uid: 10
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 12.5,8.5
- parent: 1
- - uid: 36
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,3.5
- parent: 1
- - uid: 49
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 11.5,14.5
- parent: 1
- - uid: 103
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 13.5,20.5
- parent: 1
- - uid: 105
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 11.5,20.5
- parent: 1
- - uid: 110
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,2.5
- parent: 1
- - uid: 211
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 12.5,20.5
- parent: 1
- - uid: 220
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,15.5
- parent: 1
- - uid: 238
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 13.5,14.5
- parent: 1
- - uid: 256
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,32.5
- parent: 1
- - uid: 257
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,36.5
- parent: 1
- - uid: 301
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 12.5,22.5
- parent: 1
- - uid: 307
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 18.5,16.5
- parent: 1
- - uid: 321
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 13.5,15.5
- parent: 1
- - uid: 322
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 19.5,15.5
- parent: 1
- - uid: 323
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 12.5,9.5
- parent: 1
- - uid: 330
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,4.5
- parent: 1
- - uid: 347
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,3.5
- parent: 1
- - uid: 351
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 12.5,16.5
- parent: 1
- - uid: 352
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 11.5,16.5
- parent: 1
- - uid: 356
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,2.5
- parent: 1
- - uid: 368
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,2.5
- parent: 1
- - uid: 370
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,2.5
- parent: 1
- - uid: 371
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,4.5
- parent: 1
- - uid: 373
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 11.5,15.5
- parent: 1
- - uid: 393
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,4.5
- parent: 1
- - uid: 465
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 13.5,22.5
- parent: 1
- - uid: 506
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 11.5,21.5
- parent: 1
- - uid: 508
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 11.5,22.5
- parent: 1
- - uid: 582
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 13.5,9.5
- parent: 1
- - uid: 583
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 12.5,10.5
- parent: 1
- - uid: 584
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 11.5,9.5
- parent: 1
- - uid: 628
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 18.5,15.5
- parent: 1
- - uid: 629
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 18.5,14.5
- parent: 1
- - uid: 749
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,36.5
- parent: 1
- - uid: 750
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,32.5
- parent: 1
- - uid: 751
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,32.5
- parent: 1
- - uid: 752
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,32.5
- parent: 1
- - uid: 753
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,32.5
- parent: 1
- - uid: 754
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,36.5
- parent: 1
- - uid: 755
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,36.5
- parent: 1
- - uid: 756
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,36.5
- parent: 1
- - uid: 757
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,35.5
- parent: 1
- - uid: 758
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,34.5
- parent: 1
- - uid: 759
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,33.5
- parent: 1
- - uid: 760
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,34.5
- parent: 1
- - uid: 800
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 11.5,28.5
- parent: 1
- - uid: 801
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 12.5,28.5
- parent: 1
- - uid: 802
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 13.5,28.5
- parent: 1
-...
diff --git a/Resources/Maps/_NF/Dungeon/ruined_shops.yml b/Resources/Maps/_NF/Dungeon/ruined_shops.yml
deleted file mode 100644
index 3b3ede374f38..000000000000
--- a/Resources/Maps/_NF/Dungeon/ruined_shops.yml
+++ /dev/null
@@ -1,2243 +0,0 @@
-meta:
- format: 6
- postmapinit: false
-tilemap:
- 0: Space
- 14: FloorBar
- 20: FloorBrokenWood
- 31: FloorDarkDiagonal
- 39: FloorDarkPlastic
- 45: FloorFreezer
- 65: FloorMetalDiamond
- 76: FloorPlastic
- 81: FloorShowroom
- 97: FloorSteelDirty
- 105: FloorTechMaint
- 118: FloorWhitePlastic
- 119: FloorWood
- 122: Plating
-entities:
-- proto: ""
- entities:
- - uid: 1
- components:
- - type: MetaData
- - type: Transform
- - type: Map
- - type: PhysicsMap
- - type: MapGrid
- chunks:
- 0,0:
- ind: 0,0
- tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATAAAAAACTAAAAAADTAAAAAAATAAAAAACTAAAAAACTAAAAAACTAAAAAABTAAAAAAATAAAAAACegAAAAAAJwAAAAADJwAAAAAAJwAAAAADJwAAAAADJwAAAAACegAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAADTAAAAAABTAAAAAAATAAAAAADTAAAAAABTAAAAAABegAAAAAAJwAAAAADJwAAAAADJwAAAAAAJwAAAAAAJwAAAAADegAAAAAATAAAAAABTAAAAAAATAAAAAAATAAAAAACTAAAAAAATAAAAAACTAAAAAACTAAAAAACTAAAAAACegAAAAAAJwAAAAAAJwAAAAACJwAAAAADJwAAAAAAJwAAAAACegAAAAAATAAAAAABTAAAAAAATAAAAAAATAAAAAABTAAAAAADTAAAAAAATAAAAAAATAAAAAAATAAAAAABegAAAAAAJwAAAAAAJwAAAAABJwAAAAAAJwAAAAACJwAAAAACegAAAAAATAAAAAABTAAAAAAATAAAAAACTAAAAAABTAAAAAADTAAAAAADTAAAAAADTAAAAAABTAAAAAABegAAAAAAJwAAAAADJwAAAAACJwAAAAADJwAAAAABJwAAAAAAegAAAAAATAAAAAADTAAAAAADTAAAAAAATAAAAAACTAAAAAADTAAAAAADTAAAAAADTAAAAAABTAAAAAACegAAAAAAJwAAAAADJwAAAAABJwAAAAAAJwAAAAACJwAAAAACegAAAAAATAAAAAABTAAAAAACTAAAAAADTAAAAAAATAAAAAAATAAAAAACTAAAAAABTAAAAAACTAAAAAADegAAAAAAJwAAAAAAJwAAAAADJwAAAAAAJwAAAAABJwAAAAAAegAAAAAATAAAAAABTAAAAAABTAAAAAAATAAAAAABTAAAAAABTAAAAAABTAAAAAACTAAAAAADTAAAAAABegAAAAAAJwAAAAADJwAAAAACJwAAAAADJwAAAAACJwAAAAADegAAAAAATAAAAAACTAAAAAACTAAAAAACTAAAAAABTAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAADegAAAAAAJwAAAAABJwAAAAABJwAAAAABJwAAAAACJwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 1,0:
- ind: 1,0
- tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAAAJwAAAAADJwAAAAAAJwAAAAACegAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAADdgAAAAACdgAAAAACdgAAAAABdgAAAAACdgAAAAABegAAAAAAdwAAAAACJwAAAAABJwAAAAACJwAAAAADJwAAAAAAegAAAAAAdgAAAAAALQAAAAAALQAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAACegAAAAAAdwAAAAABJwAAAAABJwAAAAABJwAAAAABJwAAAAABegAAAAAAdgAAAAAALQAAAAAALQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAABdgAAAAADdgAAAAAAegAAAAAAdwAAAAAAJwAAAAABJwAAAAAAJwAAAAAAJwAAAAABegAAAAAAdgAAAAADLQAAAAAALQAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAABdgAAAAAAdgAAAAADegAAAAAAFAAAAAAAJwAAAAABJwAAAAADJwAAAAABJwAAAAADegAAAAAAdgAAAAACLQAAAAAALQAAAAAAdgAAAAACdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADegAAAAAAdwAAAAACJwAAAAABJwAAAAACJwAAAAABJwAAAAADegAAAAAAdgAAAAACLQAAAAAALQAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAADegAAAAAAdwAAAAABJwAAAAAAJwAAAAACJwAAAAAAJwAAAAADegAAAAAAdgAAAAABLQAAAAAALQAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAABdgAAAAACdgAAAAAAegAAAAAAdwAAAAABJwAAAAABJwAAAAADJwAAAAABJwAAAAABegAAAAAAdgAAAAADLQAAAAAALQAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAAAegAAAAAAdwAAAAAAJwAAAAABJwAAAAACJwAAAAACJwAAAAABegAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAAAdgAAAAACegAAAAAAFAAAAAAEegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 2,0:
- ind: 2,0
- tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAFAAAAAADdwAAAAABdwAAAAACdwAAAAACdwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAADgAAAAAADgAAAAABDgAAAAAADgAAAAAADgAAAAABDgAAAAABDgAAAAABdwAAAAACdwAAAAADdwAAAAADdwAAAAACdwAAAAABdwAAAAADFAAAAAABdwAAAAACegAAAAAADgAAAAABDgAAAAAADgAAAAAADgAAAAACDgAAAAACDgAAAAABDgAAAAACdwAAAAABdwAAAAAAFAAAAAABdwAAAAACdwAAAAAAdwAAAAACdwAAAAACdwAAAAABegAAAAAADgAAAAACDgAAAAADDgAAAAACDgAAAAABDgAAAAABDgAAAAAADgAAAAAAdwAAAAACdwAAAAACdwAAAAACdwAAAAACFAAAAAAGdwAAAAACdwAAAAACdwAAAAACegAAAAAADgAAAAACDgAAAAACDgAAAAABDgAAAAADDgAAAAACDgAAAAADDgAAAAADdwAAAAABFAAAAAAEdwAAAAAAdwAAAAAAdwAAAAABdwAAAAADdwAAAAAAFAAAAAAEegAAAAAADgAAAAADDgAAAAACDgAAAAABDgAAAAACDgAAAAAADgAAAAACDgAAAAAAdwAAAAADdwAAAAACdwAAAAACdwAAAAACdwAAAAACFAAAAAAAdwAAAAABdwAAAAADegAAAAAADgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAFAAAAAADdwAAAAACdwAAAAAAdwAAAAADdwAAAAACdwAAAAADdwAAAAADdwAAAAADegAAAAAADgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAdwAAAAAAdwAAAAABFAAAAAAGdwAAAAADdwAAAAABdwAAAAAAFAAAAAADdwAAAAABegAAAAAADgAAAAADYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAdwAAAAADdwAAAAACdwAAAAACdwAAAAACFAAAAAAFdwAAAAADdwAAAAADdwAAAAAAegAAAAAADgAAAAACDgAAAAACDgAAAAADDgAAAAADDgAAAAADDgAAAAAADgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 3,0:
- ind: 3,0
- tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAADegAAAAAAaQAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAABegAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAACUQAAAAAAQQAAAAAAHwAAAAADHwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAABegAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABUQAAAAAAUQAAAAAAHwAAAAADHwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAAegAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAABUQAAAAAAQQAAAAAAHwAAAAABHwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAADegAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAADUQAAAAAAUQAAAAAAHwAAAAAAHwAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAADgAAAAADegAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAUQAAAAAAQQAAAAAAHwAAAAACHwAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAADgAAAAABegAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAADUQAAAAAAUQAAAAAAHwAAAAABHwAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAADgAAAAABegAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAADUQAAAAAAQQAAAAAAHwAAAAADHwAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAADegAAAAAAaQAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAACaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- - type: Broadphase
- - type: Physics
- bodyStatus: InAir
- angularDamping: 0.05
- linearDamping: 0.05
- fixedRotation: False
- canCollide: False
- bodyType: Dynamic
- - type: OccluderTree
- - type: SpreaderGrid
- - type: Shuttle
- - type: GridPathfinding
- - type: Gravity
- gravityShakeSound: !type:SoundPathSpecifier
- path: /Audio/Effects/alert.ogg
- - type: DecalGrid
- chunkCollection:
- version: 2
- nodes:
- - node:
- angle: 0.5759586531581288 rad
- color: '#2A2D38FF'
- id: Basalt6
- decals:
- 301: 56.98715,1.7502437
- - node:
- color: '#474F52FF'
- id: BrickTileSteelCornerNe
- decals:
- 40: 19,9
- - node:
- color: '#474F52FF'
- id: BrickTileSteelCornerNw
- decals:
- 39: 11,9
- - node:
- color: '#474F52FF'
- id: BrickTileSteelCornerSe
- decals:
- 42: 19,1
- - node:
- color: '#474F52FF'
- id: BrickTileSteelCornerSw
- decals:
- 41: 11,1
- - node:
- color: '#474F52FF'
- id: BrickTileSteelLineE
- decals:
- 43: 19,2
- 44: 19,3
- 45: 19,4
- 46: 19,5
- 47: 19,6
- 48: 19,7
- 49: 19,8
- - node:
- color: '#474F52FF'
- id: BrickTileSteelLineN
- decals:
- 50: 18,9
- 51: 17,9
- 52: 16,9
- 53: 15,9
- 54: 14,9
- 55: 12,9
- 56: 13,9
- - node:
- color: '#474F52FF'
- id: BrickTileSteelLineS
- decals:
- 64: 18,1
- 65: 17,1
- 66: 16,1
- 67: 15,1
- 68: 14,1
- 69: 13,1
- 70: 12,1
- - node:
- color: '#474F52FF'
- id: BrickTileSteelLineW
- decals:
- 57: 11,8
- 58: 11,7
- 59: 11,6
- 60: 11,5
- 61: 11,4
- 62: 11,3
- 63: 11,2
- - node:
- color: '#3C44AAFF'
- id: BrickTileWhiteCornerNe
- decals:
- 17: 29,9
- - node:
- color: '#835432FF'
- id: BrickTileWhiteCornerNe
- decals:
- 94: 9,9
- - node:
- color: '#3C44AAFF'
- id: BrickTileWhiteCornerNw
- decals:
- 16: 21,9
- - node:
- color: '#835432FF'
- id: BrickTileWhiteCornerNw
- decals:
- 95: 1,9
- - node:
- color: '#3C44AAFF'
- id: BrickTileWhiteCornerSe
- decals:
- 14: 29,1
- - node:
- color: '#835432FF'
- id: BrickTileWhiteCornerSe
- decals:
- 93: 9,1
- - node:
- color: '#3C44AAFF'
- id: BrickTileWhiteCornerSw
- decals:
- 15: 21,1
- - node:
- color: '#835432FF'
- id: BrickTileWhiteCornerSw
- decals:
- 92: 1,1
- - node:
- color: '#3AB3DAFF'
- id: BrickTileWhiteLineE
- decals:
- 0: 23,8
- 1: 23,7
- 2: 23,6
- 3: 23,5
- 4: 23,4
- 5: 23,3
- 6: 23,2
- - node:
- color: '#3C44AAFF'
- id: BrickTileWhiteLineE
- decals:
- 7: 29,2
- 8: 29,3
- 9: 29,4
- 10: 29,5
- 11: 29,6
- 12: 29,7
- 13: 29,8
- - node:
- color: '#835432FF'
- id: BrickTileWhiteLineE
- decals:
- 71: 9,7
- 72: 9,8
- 73: 9,6
- 74: 9,5
- 75: 9,4
- 76: 9,3
- 77: 9,2
- - node:
- color: '#3C44AAFF'
- id: BrickTileWhiteLineN
- decals:
- 18: 28,9
- 19: 27,9
- 20: 26,9
- 21: 25,9
- 22: 23,9
- 23: 24,9
- 24: 22,9
- - node:
- color: '#835432FF'
- id: BrickTileWhiteLineN
- decals:
- 78: 8,9
- 79: 7,9
- 80: 6,9
- 81: 5,9
- 82: 4,9
- 83: 3,9
- 84: 2,9
- - node:
- color: '#3C44AAFF'
- id: BrickTileWhiteLineS
- decals:
- 25: 28,1
- 26: 27,1
- 27: 26,1
- 28: 25,1
- 29: 24,1
- 30: 23,1
- 31: 22,1
- - node:
- color: '#835432FF'
- id: BrickTileWhiteLineS
- decals:
- 85: 8,1
- 86: 6,1
- 87: 7,1
- 88: 5,1
- 89: 4,1
- 90: 3,1
- 91: 2,1
- - node:
- color: '#3C44AAFF'
- id: BrickTileWhiteLineW
- decals:
- 32: 21,2
- 33: 21,3
- 34: 21,4
- 35: 21,5
- 36: 21,6
- 37: 21,7
- 38: 21,8
- - node:
- color: '#835432FF'
- id: BrickTileWhiteLineW
- decals:
- 96: 1,8
- 97: 1,7
- 98: 1,6
- 99: 1,5
- 100: 1,4
- 101: 1,3
- 102: 1,2
- - node:
- color: '#EFB34196'
- id: DiagonalCheckerBOverlay
- decals:
- 266: 54,9
- 267: 54,8
- 268: 54,7
- 269: 54,6
- 270: 54,5
- 271: 54,4
- 272: 54,3
- 273: 54,2
- 274: 54,1
- - node:
- color: '#FFFFFFFF'
- id: Dirt
- decals:
- 188: 4,5
- 189: 6,5
- 190: 3,2
- 191: 3,4
- 192: 1,3
- 193: 3,1
- 194: 9,7
- 199: 22,5
- 200: 23,8
- 201: 23,2
- 202: 22,3
- 204: 42,7
- 205: 42,2
- 206: 43,2
- 208: 46,2
- 209: 46,3
- 210: 47,4
- 211: 46,4
- 212: 45,4
- 213: 47,7
- 214: 49,7
- 215: 49,6
- 234: 26,6
- 235: 25,6
- 238: 25,3
- 243: 28,6
- 244: 25,9
- 245: 25,1
- 293: 57,8
- 294: 57,2
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: Dirt
- decals:
- 207: 43,4
- - node:
- color: '#FFFFFFFF'
- id: DirtHeavy
- decals:
- 184: 7,4
- 185: 5,1
- 186: 7,1
- 187: 1,5
- 203: 44,7
- 216: 49,5
- 217: 48,1
- 218: 44,1
- 219: 41,2
- 220: 41,6
- 221: 43,9
- 222: 46,9
- 223: 41,9
- 228: 47,7
- 229: 45,2
- 230: 44,5
- 231: 46,5
- 232: 43,5
- 233: 27,6
- 239: 26,1
- 240: 24,1
- 241: 26,9
- 242: 29,6
- 286: 56,4
- 292: 56,8
- - node:
- color: '#FFFFFFFF'
- id: DirtLight
- decals:
- 224: 49,3
- 225: 41,3
- 226: 41,5
- 236: 26,7
- 237: 26,5
- 247: 24,5
- 248: 24,2
- 249: 24,9
- 250: 21,9
- 251: 29,3
- 252: 27,5
- 253: 26,3
- 254: 17,7
- 287: 57,3
- 288: 59,1
- - node:
- color: '#FFFFFFFF'
- id: DirtMedium
- decals:
- 171: 17,3
- 172: 16,3
- 173: 13,5
- 174: 14,7
- 175: 14,3
- 176: 7,3
- 177: 5,5
- 178: 3,5
- 179: 3,3
- 180: 2,5
- 181: 4,7
- 182: 5,7
- 183: 8,5
- 195: 7,7
- 196: 9,5
- 197: 18,7
- 198: 19,6
- 227: 41,8
- 246: 24,6
- 289: 56,3
- 290: 56,2
- 291: 56,7
- - node:
- color: '#B02E26C4'
- id: QuarterTileOverlayGreyscale
- decals:
- 103: 41,2
- 104: 41,3
- 105: 41,4
- 106: 41,5
- 107: 41,6
- 108: 41,7
- 109: 41,8
- 110: 42,9
- 111: 43,9
- 112: 44,9
- 113: 45,9
- 114: 46,9
- 115: 47,9
- 116: 48,9
- 128: 49,9
- 129: 41,9
- 170: 41,1
- - node:
- color: '#B02E26C4'
- id: QuarterTileOverlayGreyscale180
- decals:
- 117: 46,1
- 118: 47,1
- 119: 48,1
- 120: 49,2
- 121: 49,3
- 122: 49,4
- 123: 49,5
- 124: 49,6
- 125: 49,7
- 126: 49,8
- 127: 49,9
- 130: 49,1
- 165: 45,1
- 166: 44,1
- 167: 43,1
- 168: 42,1
- 169: 41,1
- - node:
- color: '#FED83DC4'
- id: QuarterTileOverlayGreyscale270
- decals:
- 131: 46,1
- 132: 47,1
- 133: 48,1
- 134: 41,1
- 135: 41,2
- 136: 41,3
- 137: 41,4
- 138: 41,5
- 139: 41,6
- 140: 41,7
- 141: 41,8
- 142: 41,9
- 143: 45,1
- 144: 44,1
- 145: 43,1
- 146: 42,1
- 164: 49,1
- - node:
- color: '#FED83DC4'
- id: QuarterTileOverlayGreyscale90
- decals:
- 147: 49,1
- 148: 49,2
- 149: 49,3
- 150: 49,4
- 151: 49,5
- 152: 49,6
- 153: 49,7
- 154: 49,8
- 155: 49,9
- 156: 48,9
- 157: 47,9
- 158: 46,9
- 159: 45,9
- 160: 44,9
- 161: 43,9
- 162: 42,9
- 163: 41,9
- - node:
- color: '#FFFFFFFF'
- id: WarnBox
- decals:
- 275: 57,8
- 276: 57,6
- 277: 57,4
- 278: 57,2
- 279: 57,6
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinLineE
- decals:
- 280: 55,7
- 281: 55,6
- 282: 55,5
- 283: 55,3
- 284: 55,2
- 285: 55,8
- - node:
- angle: 0.5759586531581288 rad
- color: '#2A2D387C'
- id: splatter
- decals:
- 300: 54.4559,2.5314937
- - node:
- color: '#4C564C73'
- id: splatter
- decals:
- 295: 56.999783,3.9689937
- - node:
- color: '#554C5672'
- id: splatter
- decals:
- 296: 56.906033,3.8596187
- - node:
- cleanable: True
- color: '#B02E26FF'
- id: splatter
- decals:
- 255: 32.368317,4.6095605
- 256: 37.399567,8.23456
- 257: 15.531944,2.6095605
- 258: 6.396697,5.6251855
- 259: 3.584197,6.5158105
- 260: 2.256072,2.2033105
- 261: 13.121166,6.5314355
- 262: 44.873116,3.8595605
- 263: 44.66644,6.1251855
- 264: 44.025814,7.89081
- 265: 46.72894,7.82831
- - node:
- color: '#C9222272'
- id: splatter
- decals:
- 297: 52.784115,7.828369
- 298: 51.04821,8.468994
- - node:
- angle: 1.5707963267948966 rad
- color: '#C92222FF'
- id: splatter
- decals:
- 299: 55.501335,3.7658687
- - type: GridAtmosphere
- version: 2
- data:
- tiles:
- 0,0:
- 0: 65535
- 0,1:
- 0: 65535
- 0,2:
- 0: 4095
- 1,0:
- 0: 65535
- 1,1:
- 0: 65535
- 1,2:
- 0: 4095
- 2,0:
- 0: 65535
- 2,1:
- 0: 65535
- 2,2:
- 0: 4095
- 3,0:
- 0: 65535
- 3,1:
- 0: 57343
- 1: 8192
- 3,2:
- 0: 4095
- 4,0:
- 0: 65535
- 4,1:
- 0: 65535
- 4,2:
- 0: 4095
- 5,0:
- 0: 65535
- 5,1:
- 0: 65535
- 5,2:
- 0: 4095
- 6,0:
- 0: 65535
- 6,1:
- 0: 65535
- 6,2:
- 0: 4095
- 7,0:
- 0: 65535
- 7,1:
- 0: 65535
- 7,2:
- 0: 4095
- 8,0:
- 0: 65535
- 8,1:
- 0: 65535
- 8,2:
- 0: 4095
- 9,0:
- 0: 65535
- 9,1:
- 0: 65535
- 9,2:
- 0: 4095
- 10,0:
- 0: 65535
- 10,1:
- 0: 65535
- 10,2:
- 0: 4095
- 11,0:
- 0: 65535
- 11,1:
- 0: 65535
- 11,2:
- 0: 4095
- 12,0:
- 0: 65535
- 12,1:
- 0: 65535
- 12,2:
- 0: 4095
- 13,0:
- 0: 65535
- 13,1:
- 0: 65535
- 13,2:
- 0: 4095
- 14,0:
- 0: 65535
- 14,1:
- 0: 65535
- 14,2:
- 0: 4095
- 15,0:
- 0: 4369
- 15,1:
- 0: 4369
- 15,2:
- 0: 273
- uniqueMixes:
- - volume: 2500
- temperature: 293.15
- moles:
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - volume: 2500
- temperature: 147.92499
- moles:
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- chunkSize: 4
- - type: GasTileOverlay
- - type: RadiationGridResistance
- - type: LoadedMap
- - type: GridTree
- - type: MovedGrids
- - type: Fixtures
- fixtures: {}
-- proto: AltarConvertOrange
- entities:
- - uid: 2
- components:
- - type: Transform
- pos: 35.5,6.5
- parent: 1
-- proto: CarpetPurple
- entities:
- - uid: 3
- components:
- - type: Transform
- pos: 37.5,8.5
- parent: 1
- - uid: 4
- components:
- - type: Transform
- pos: 36.5,6.5
- parent: 1
- - uid: 5
- components:
- - type: Transform
- pos: 33.5,6.5
- parent: 1
- - uid: 6
- components:
- - type: Transform
- pos: 33.5,7.5
- parent: 1
- - uid: 7
- components:
- - type: Transform
- pos: 33.5,8.5
- parent: 1
- - uid: 8
- components:
- - type: Transform
- pos: 37.5,7.5
- parent: 1
- - uid: 9
- components:
- - type: Transform
- pos: 35.5,6.5
- parent: 1
- - uid: 10
- components:
- - type: Transform
- pos: 37.5,6.5
- parent: 1
- - uid: 11
- components:
- - type: Transform
- pos: 34.5,6.5
- parent: 1
- - uid: 12
- components:
- - type: Transform
- pos: 35.5,5.5
- parent: 1
- - uid: 13
- components:
- - type: Transform
- pos: 35.5,4.5
- parent: 1
- - uid: 14
- components:
- - type: Transform
- pos: 36.5,7.5
- parent: 1
- - uid: 15
- components:
- - type: Transform
- pos: 34.5,7.5
- parent: 1
- - uid: 16
- components:
- - type: Transform
- pos: 35.5,7.5
- parent: 1
- - uid: 17
- components:
- - type: Transform
- pos: 35.5,3.5
- parent: 1
- - uid: 18
- components:
- - type: Transform
- pos: 36.5,8.5
- parent: 1
- - uid: 19
- components:
- - type: Transform
- pos: 35.5,8.5
- parent: 1
- - uid: 20
- components:
- - type: Transform
- pos: 34.5,8.5
- parent: 1
- - uid: 21
- components:
- - type: Transform
- pos: 35.5,2.5
- parent: 1
- - uid: 22
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,5.5
- parent: 1
- - uid: 23
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,5.5
- parent: 1
- - uid: 24
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,5.5
- parent: 1
- - uid: 25
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,5.5
- parent: 1
-- proto: ChairOfficeDark
- entities:
- - uid: 26
- components:
- - type: Transform
- pos: 4.5,7.5
- parent: 1
-- proto: ChairOfficeLight
- entities:
- - uid: 229
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.68828,6.9730086
- parent: 1
-- proto: ChairWood
- entities:
- - uid: 27
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,2.5
- parent: 1
- - uid: 28
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,2.5
- parent: 1
- - uid: 29
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,2.5
- parent: 1
- - uid: 30
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,3.5
- parent: 1
- - uid: 31
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,2.5
- parent: 1
- - uid: 32
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,4.5
- parent: 1
- - uid: 33
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,3.5
- parent: 1
- - uid: 34
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 32.5,4.5
- parent: 1
- - uid: 35
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,3.5
- parent: 1
- - uid: 36
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,4.5
- parent: 1
- - uid: 37
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,3.5
- parent: 1
- - uid: 38
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,4.5
- parent: 1
- - uid: 39
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 32.5,3.5
- parent: 1
- - uid: 40
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,4.5
- parent: 1
- - uid: 41
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,8.5
- parent: 1
- - uid: 42
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.409676,3.5753505
- parent: 1
- - uid: 43
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.3628,4.5753508
- parent: 1
- - uid: 44
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 43.5503,2.4972255
- parent: 1
- - uid: 45
- components:
- - type: Transform
- pos: 47.64405,4.5597258
- parent: 1
- - uid: 46
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.39405,3.5128505
- parent: 1
- - uid: 47
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 42.5,3.5
- parent: 1
- - uid: 48
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.378426,3.3878505
- parent: 1
- - uid: 49
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.58155,4.7472258
- parent: 1
- - uid: 50
- components:
- - type: Transform
- pos: 43.472176,4.4816008
- parent: 1
- - uid: 51
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.503426,2.4972255
- parent: 1
- - uid: 52
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 45.440926,3.4191005
- parent: 1
-- proto: Cigarette
- entities:
- - uid: 53
- components:
- - type: Transform
- pos: 13.794839,7.98541
- parent: 1
-- proto: CigaretteSpent
- entities:
- - uid: 54
- components:
- - type: Transform
- pos: 16.24364,3.155859
- parent: 1
- - uid: 55
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.762681,4.015234
- parent: 1
- - uid: 56
- components:
- - type: Transform
- pos: 13.840806,5.374609
- parent: 1
- - uid: 57
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.668931,7.718359
- parent: 1
-- proto: CigarSpent
- entities:
- - uid: 58
- components:
- - type: Transform
- pos: 18.55614,5.468359
- parent: 1
- - uid: 236
- components:
- - type: Transform
- pos: 53.5028,7.5823836
- parent: 1
-- proto: ClosetMaintenanceFilledRandom
- entities:
- - uid: 231
- components:
- - type: Transform
- pos: 51.5,9.5
- parent: 1
-- proto: ComputerTelevision
- entities:
- - uid: 253
- components:
- - type: Transform
- pos: 52.5,8.5
- parent: 1
-- proto: GunSafe
- entities:
- - uid: 251
- components:
- - type: MetaData
- desc: A roughed-up gun safe covered in dirt.
- - type: Transform
- pos: 13.5,7.5
- parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 75.31249
- moles:
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: StorageFill
- contents:
- - orGroup: gun
- id: WeaponShotgunSawn
- - orGroup: gun
- id: WeaponShotgunDoubleBarreled
- - orGroup: gun
- id: WeaponPistolMk58
- - orGroup: ammo
- id: MagazineShotgun
-- proto: KitchenMicrowave
- entities:
- - uid: 61
- components:
- - type: Transform
- pos: 44.5,8.5
- parent: 1
-- proto: MaintenanceFluffSpawner
- entities:
- - uid: 62
- components:
- - type: Transform
- pos: 2.5,3.5
- parent: 1
- - uid: 63
- components:
- - type: Transform
- pos: 6.5,4.5
- parent: 1
- - uid: 64
- components:
- - type: Transform
- pos: 8.5,2.5
- parent: 1
- - uid: 65
- components:
- - type: Transform
- pos: 33.5,4.5
- parent: 1
- - uid: 66
- components:
- - type: Transform
- pos: 37.5,3.5
- parent: 1
- - uid: 246
- components:
- - type: Transform
- pos: 52.5,6.5
- parent: 1
-- proto: MaintenanceToolSpawner
- entities:
- - uid: 67
- components:
- - type: Transform
- pos: 4.5,2.5
- parent: 1
- - uid: 68
- components:
- - type: Transform
- pos: 8.5,4.5
- parent: 1
- - uid: 69
- components:
- - type: Transform
- pos: 27.5,2.5
- parent: 1
- - uid: 70
- components:
- - type: Transform
- pos: 28.5,4.5
- parent: 1
- - uid: 248
- components:
- - type: Transform
- pos: 2.5,2.5
- parent: 1
-- proto: MaintenanceWeaponSpawner
- entities:
- - uid: 71
- components:
- - type: Transform
- pos: 4.5,4.5
- parent: 1
- - uid: 72
- components:
- - type: Transform
- pos: 16.5,4.5
- parent: 1
- - uid: 73
- components:
- - type: Transform
- pos: 16.5,6.5
- parent: 1
- - uid: 247
- components:
- - type: Transform
- pos: 14.5,7.5
- parent: 1
-- proto: MaterialWoodPlank1
- entities:
- - uid: 252
- components:
- - type: Transform
- pos: 55.95446,4.7658687
- parent: 1
-- proto: PaintingSkeletonCigarette
- entities:
- - uid: 74
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,8.5
- parent: 1
-- proto: Paper
- entities:
- - uid: 75
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.1600895,6.4023166
- parent: 1
- - uid: 76
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.9413395,6.5741916
- parent: 1
- - uid: 77
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.43114,3.624609
- parent: 1
- - uid: 232
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.355957,6.9417586
- parent: 1
- - uid: 233
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.262207,6.7386336
- parent: 1
- - uid: 234
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.543457,6.7698836
- parent: 1
- - uid: 235
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.434082,6.4730086
- parent: 1
-- proto: Pen
- entities:
- - uid: 78
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.4569645,6.6366916
- parent: 1
- - uid: 237
- components:
- - type: Transform
- pos: 53.299675,6.0980086
- parent: 1
-- proto: PosterLegit12Gauge
- entities:
- - uid: 79
- components:
- - type: Transform
- pos: 15.5,6.5
- parent: 1
-- proto: PottedPlantRandom
- entities:
- - uid: 80
- components:
- - type: Transform
- pos: 3.5,7.5
- parent: 1
- - uid: 81
- components:
- - type: Transform
- pos: 31.5,1.5
- parent: 1
- - uid: 82
- components:
- - type: Transform
- pos: 39.5,1.5
- parent: 1
-- proto: Rack
- entities:
- - uid: 83
- components:
- - type: Transform
- pos: 2.5,4.5
- parent: 1
- - uid: 84
- components:
- - type: Transform
- pos: 2.5,3.5
- parent: 1
- - uid: 85
- components:
- - type: Transform
- pos: 2.5,2.5
- parent: 1
- - uid: 86
- components:
- - type: Transform
- pos: 4.5,4.5
- parent: 1
- - uid: 87
- components:
- - type: Transform
- pos: 4.5,3.5
- parent: 1
- - uid: 88
- components:
- - type: Transform
- pos: 4.5,2.5
- parent: 1
- - uid: 89
- components:
- - type: Transform
- pos: 6.5,4.5
- parent: 1
- - uid: 90
- components:
- - type: Transform
- pos: 6.5,3.5
- parent: 1
- - uid: 91
- components:
- - type: Transform
- pos: 6.5,2.5
- parent: 1
- - uid: 92
- components:
- - type: Transform
- pos: 8.5,4.5
- parent: 1
- - uid: 93
- components:
- - type: Transform
- pos: 8.5,3.5
- parent: 1
- - uid: 94
- components:
- - type: Transform
- pos: 8.5,2.5
- parent: 1
- - uid: 95
- components:
- - type: Transform
- pos: 16.5,7.5
- parent: 1
- - uid: 96
- components:
- - type: Transform
- pos: 16.5,6.5
- parent: 1
- - uid: 97
- components:
- - type: Transform
- pos: 16.5,5.5
- parent: 1
- - uid: 98
- components:
- - type: Transform
- pos: 16.5,4.5
- parent: 1
- - uid: 99
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,8.5
- parent: 1
- - uid: 100
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,6.5
- parent: 1
- - uid: 101
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,4.5
- parent: 1
- - uid: 102
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,2.5
- parent: 1
- - uid: 103
- components:
- - type: Transform
- pos: 28.5,4.5
- parent: 1
- - uid: 104
- components:
- - type: Transform
- pos: 25.5,6.5
- parent: 1
- - uid: 105
- components:
- - type: Transform
- pos: 25.5,8.5
- parent: 1
- - uid: 106
- components:
- - type: Transform
- pos: 25.5,2.5
- parent: 1
- - uid: 107
- components:
- - type: Transform
- pos: 27.5,2.5
- parent: 1
- - uid: 108
- components:
- - type: Transform
- pos: 27.5,4.5
- parent: 1
- - uid: 109
- components:
- - type: Transform
- pos: 25.5,4.5
- parent: 1
- - uid: 110
- components:
- - type: Transform
- pos: 28.5,2.5
- parent: 1
- - uid: 111
- components:
- - type: Transform
- pos: 25.5,7.5
- parent: 1
- - uid: 112
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,7.5
- parent: 1
-- proto: RandomDrinkBottle
- entities:
- - uid: 113
- components:
- - type: Transform
- pos: 25.5,7.5
- parent: 1
- - uid: 114
- components:
- - type: Transform
- pos: 22.5,8.5
- parent: 1
- - uid: 115
- components:
- - type: Transform
- pos: 47.5,3.5
- parent: 1
- - uid: 250
- components:
- - type: Transform
- pos: 43.5,6.5
- parent: 1
-- proto: RandomFoodMeal
- entities:
- - uid: 116
- components:
- - type: Transform
- pos: 22.5,2.5
- parent: 1
- - uid: 117
- components:
- - type: Transform
- pos: 22.5,6.5
- parent: 1
- - uid: 118
- components:
- - type: Transform
- pos: 45.5,4.5
- parent: 1
-- proto: RandomFoodSingle
- entities:
- - uid: 119
- components:
- - type: Transform
- pos: 46.5,6.5
- parent: 1
- - uid: 249
- components:
- - type: Transform
- pos: 45.5,8.5
- parent: 1
-- proto: RandomItem
- entities:
- - uid: 120
- components:
- - type: Transform
- pos: 33.5,8.5
- parent: 1
-- proto: RandomPosterAny
- entities:
- - uid: 121
- components:
- - type: Transform
- pos: 7.5,8.5
- parent: 1
-- proto: RandomSnacks
- entities:
- - uid: 122
- components:
- - type: Transform
- pos: 6.5,3.5
- parent: 1
- - uid: 238
- components:
- - type: Transform
- pos: 53.5,8.5
- parent: 1
- - uid: 245
- components:
- - type: Transform
- pos: 52.5,5.5
- parent: 1
-- proto: RandomSpawner
- entities:
- - uid: 123
- components:
- - type: Transform
- pos: 25.5,4.5
- parent: 1
- - uid: 124
- components:
- - type: Transform
- pos: 23.5,4.5
- parent: 1
- - uid: 125
- components:
- - type: Transform
- pos: 17.5,5.5
- parent: 1
- - uid: 126
- components:
- - type: Transform
- pos: 13.5,4.5
- parent: 1
- - uid: 127
- components:
- - type: Transform
- pos: 14.5,6.5
- parent: 1
- - uid: 128
- components:
- - type: Transform
- pos: 5.5,3.5
- parent: 1
- - uid: 129
- components:
- - type: Transform
- pos: 7.5,5.5
- parent: 1
- - uid: 130
- components:
- - type: Transform
- pos: 3.5,5.5
- parent: 1
- - uid: 131
- components:
- - type: Transform
- pos: 9.5,9.5
- parent: 1
-- proto: SheetSteel1
- entities:
- - uid: 59
- components:
- - type: Transform
- pos: 14.418914,3.741646
- parent: 1
- - uid: 223
- components:
- - type: Transform
- pos: 13.856414,5.598757
- parent: 1
-- proto: ShellShotgun
- entities:
- - uid: 60
- components:
- - type: Transform
- pos: 14.293311,7.4541
- parent: 1
- - uid: 221
- components:
- - type: Transform
- pos: 14.512061,5.3291
- parent: 1
- - uid: 222
- components:
- - type: Transform
- pos: 14.074561,3.5634751
- parent: 1
-- proto: SinkStemless
- entities:
- - uid: 132
- components:
- - type: Transform
- pos: 48.5,7.5
- parent: 1
-- proto: SpaceCash10
- entities:
- - uid: 133
- components:
- - type: Transform
- pos: 3.9111257,6.7460666
- parent: 1
- - uid: 134
- components:
- - type: Transform
- pos: 4.6142507,6.4804416
- parent: 1
- - uid: 135
- components:
- - type: Transform
- pos: 27.696236,8.594199
- parent: 1
-- proto: SpaceCash100
- entities:
- - uid: 239
- components:
- - type: Transform
- pos: 53.28011,5.7698836
- parent: 1
- - uid: 240
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 53.18636,5.3480086
- parent: 1
- - uid: 242
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.96761,5.6292586
- parent: 1
- - uid: 243
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.420734,5.5355086
- parent: 1
- - uid: 244
- components:
- - type: Transform
- pos: 53.264484,5.7855086
- parent: 1
-- proto: SpawnVehicleATV
- entities:
- - uid: 241
- components:
- - type: Transform
- pos: 57.5,6.5
- parent: 1
-- proto: TableCounterMetal
- entities:
- - uid: 136
- components:
- - type: Transform
- pos: 43.5,8.5
- parent: 1
- - uid: 137
- components:
- - type: Transform
- pos: 44.5,8.5
- parent: 1
- - uid: 138
- components:
- - type: Transform
- pos: 43.5,6.5
- parent: 1
- - uid: 139
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,6.5
- parent: 1
- - uid: 140
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 45.5,6.5
- parent: 1
- - uid: 141
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,6.5
- parent: 1
- - uid: 142
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,6.5
- parent: 1
- - uid: 143
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,8.5
- parent: 1
- - uid: 144
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,8.5
- parent: 1
- - uid: 145
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 45.5,8.5
- parent: 1
-- proto: TableCounterWood
- entities:
- - uid: 146
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,6.5
- parent: 1
- - uid: 147
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,6.5
- parent: 1
- - uid: 148
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,6.5
- parent: 1
- - uid: 149
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,6.5
- parent: 1
- - uid: 150
- components:
- - type: Transform
- pos: 18.5,6.5
- parent: 1
- - uid: 151
- components:
- - type: Transform
- pos: 18.5,5.5
- parent: 1
- - uid: 152
- components:
- - type: Transform
- pos: 18.5,4.5
- parent: 1
- - uid: 153
- components:
- - type: Transform
- pos: 18.5,3.5
- parent: 1
- - uid: 154
- components:
- - type: Transform
- pos: 18.5,2.5
- parent: 1
- - uid: 155
- components:
- - type: Transform
- pos: 17.5,2.5
- parent: 1
- - uid: 156
- components:
- - type: Transform
- pos: 16.5,2.5
- parent: 1
- - uid: 224
- components:
- - type: Transform
- pos: 53.5,8.5
- parent: 1
- - uid: 225
- components:
- - type: Transform
- pos: 53.5,7.5
- parent: 1
- - uid: 226
- components:
- - type: Transform
- pos: 53.5,6.5
- parent: 1
- - uid: 227
- components:
- - type: Transform
- pos: 53.5,5.5
- parent: 1
- - uid: 228
- components:
- - type: Transform
- pos: 52.5,5.5
- parent: 1
-- proto: TableGlass
- entities:
- - uid: 157
- components:
- - type: Transform
- pos: 27.5,8.5
- parent: 1
- - uid: 158
- components:
- - type: Transform
- pos: 27.5,7.5
- parent: 1
- - uid: 159
- components:
- - type: Transform
- pos: 28.5,7.5
- parent: 1
-- proto: TableWood
- entities:
- - uid: 160
- components:
- - type: Transform
- pos: 45.5,4.5
- parent: 1
- - uid: 161
- components:
- - type: Transform
- pos: 43.5,3.5
- parent: 1
- - uid: 162
- components:
- - type: Transform
- pos: 47.5,3.5
- parent: 1
-- proto: ToySpawner
- entities:
- - uid: 163
- components:
- - type: Transform
- pos: 2.5,4.5
- parent: 1
- - uid: 164
- components:
- - type: Transform
- pos: 6.5,2.5
- parent: 1
- - uid: 165
- components:
- - type: Transform
- pos: 43.5,3.5
- parent: 1
-- proto: VehicleKeyATV
- entities:
- - uid: 230
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.338924,6.7542586
- parent: 1
-- proto: WallSolid
- entities:
- - uid: 166
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 2.5,8.5
- parent: 1
- - uid: 167
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 2.5,7.5
- parent: 1
- - uid: 168
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 2.5,6.5
- parent: 1
- - uid: 169
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 7.5,8.5
- parent: 1
- - uid: 170
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 8.5,8.5
- parent: 1
- - uid: 171
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 8.5,7.5
- parent: 1
- - uid: 172
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 6.5,8.5
- parent: 1
- - uid: 173
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 8.5,6.5
- parent: 1
- - uid: 174
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,8.5
- parent: 1
- - uid: 175
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,7.5
- parent: 1
- - uid: 176
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,6.5
- parent: 1
- - uid: 177
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,5.5
- parent: 1
- - uid: 178
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,4.5
- parent: 1
- - uid: 179
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,8.5
- parent: 1
- - uid: 180
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,8.5
- parent: 1
- - uid: 181
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,3.5
- parent: 1
- - uid: 182
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,2.5
- parent: 1
- - uid: 183
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,2.5
- parent: 1
- - uid: 184
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,2.5
- parent: 1
- - uid: 185
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,2.5
- parent: 1
- - uid: 186
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,4.5
- parent: 1
- - uid: 187
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,5.5
- parent: 1
- - uid: 188
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,8.5
- parent: 1
- - uid: 189
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,7.5
- parent: 1
- - uid: 190
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 15.5,6.5
- parent: 1
- - uid: 191
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 18.5,8.5
- parent: 1
- - uid: 192
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 17.5,8.5
- parent: 1
- - uid: 193
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 16.5,8.5
- parent: 1
- - uid: 194
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,8.5
- parent: 1
- - uid: 195
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 32.5,8.5
- parent: 1
- - uid: 196
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 32.5,5.5
- parent: 1
- - uid: 197
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,5.5
- parent: 1
- - uid: 198
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 42.5,8.5
- parent: 1
- - uid: 199
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 48.5,6.5
- parent: 1
- - uid: 200
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 42.5,6.5
- parent: 1
- - uid: 201
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 48.5,8.5
- parent: 1
-- proto: WeldingFuelTankFull
- entities:
- - uid: 254
- components:
- - type: Transform
- pos: 59.5,1.5
- parent: 1
-- proto: Window
- entities:
- - uid: 202
- components:
- - type: Transform
- pos: 38.5,6.5
- parent: 1
- - uid: 203
- components:
- - type: Transform
- pos: 32.5,7.5
- parent: 1
- - uid: 204
- components:
- - type: Transform
- pos: 32.5,6.5
- parent: 1
- - uid: 205
- components:
- - type: Transform
- pos: 38.5,7.5
- parent: 1
-- proto: WindowDirectional
- entities:
- - uid: 206
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,8.5
- parent: 1
- - uid: 207
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,8.5
- parent: 1
- - uid: 208
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,8.5
- parent: 1
-- proto: WindowFrostedDirectional
- entities:
- - uid: 209
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,1.5
- parent: 1
- - uid: 210
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,1.5
- parent: 1
- - uid: 211
- components:
- - type: Transform
- pos: 22.5,9.5
- parent: 1
- - uid: 212
- components:
- - type: Transform
- pos: 23.5,9.5
- parent: 1
- - uid: 213
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,8.5
- parent: 1
- - uid: 214
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,7.5
- parent: 1
- - uid: 215
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,6.5
- parent: 1
- - uid: 216
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,5.5
- parent: 1
- - uid: 217
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,4.5
- parent: 1
- - uid: 218
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,3.5
- parent: 1
- - uid: 219
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,2.5
- parent: 1
-- proto: WoodDoor
- entities:
- - uid: 220
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 15.5,3.5
- parent: 1
-...
diff --git a/Resources/Maps/_NF/Outpost/frontier.yml b/Resources/Maps/_NF/Outpost/frontier.yml
index c5093d49d087..baa4b9710f3d 100644
--- a/Resources/Maps/_NF/Outpost/frontier.yml
+++ b/Resources/Maps/_NF/Outpost/frontier.yml
@@ -30989,6 +30989,14 @@ entities:
parent: 2173
- type: AtmosDevice
joinedGrid: 2173
+- proto: NoticeBoardNF
+ entities:
+ - uid: 4937
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,25.5
+ parent: 2173
- proto: NuclearBomb
entities:
- uid: 2775
@@ -31504,6 +31512,16 @@ entities:
- type: Transform
pos: 16.5,10.5
parent: 2173
+ - uid: 4939
+ components:
+ - type: Transform
+ pos: 4.5,18.5
+ parent: 2173
+ - uid: 4940
+ components:
+ - type: Transform
+ pos: 2.5,18.5
+ parent: 2173
- uid: 5021
components:
- type: Transform
@@ -36713,6 +36731,13 @@ entities:
- type: Transform
pos: -45.5,10.5
parent: 2173
+- proto: VendingMachinePottedPlantVend
+ entities:
+ - uid: 4938
+ components:
+ - type: Transform
+ pos: 3.5,18.5
+ parent: 2173
- proto: VendingMachinePride
entities:
- uid: 4294
diff --git a/Resources/Maps/_NF/POI/nfsd.yml b/Resources/Maps/_NF/POI/nfsd.yml
index 184cf096460b..fa7a53680811 100644
--- a/Resources/Maps/_NF/POI/nfsd.yml
+++ b/Resources/Maps/_NF/POI/nfsd.yml
@@ -2264,7 +2264,7 @@ entities:
pos: 21.5,-10.5
parent: 1
- type: Door
- secondsUntilStateChange: -11461.89
+ secondsUntilStateChange: -12147.6875
state: Opening
- uid: 1449
components:
@@ -2469,7 +2469,7 @@ entities:
pos: 14.5,14.5
parent: 1
- type: Door
- secondsUntilStateChange: -10954.695
+ secondsUntilStateChange: -11640.493
state: Opening
- uid: 711
components:
@@ -3573,17 +3573,6 @@ entities:
- type: Transform
pos: -7.5,16.5
parent: 1
-- proto: BaseComputer
- entities:
- - uid: 273
- components:
- - type: MetaData
- desc: Used to order supplies and approve requests. This one appears to have run into a green screen of death, better call tech support.
- name: crashed cargo request computer
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,0.5
- parent: 1
- proto: Bed
entities:
- uid: 311
@@ -3603,17 +3592,16 @@ entities:
parent: 1
- proto: BedsheetMedical
entities:
- - uid: 765
+ - uid: 877
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 19.5,9.5
+ pos: 19.5,8.5
parent: 1
- - uid: 877
+ - uid: 2768
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,8.5
+ pos: 19.5,7.5
parent: 1
- proto: BedsheetOrange
entities:
@@ -6727,24 +6715,25 @@ entities:
showEnts: False
occludes: True
ents: []
-- proto: ComputerBroken
+- proto: ComputerComms
entities:
- - uid: 1420
+ - uid: 459
components:
- - type: MetaData
- desc: "It has a note attached to it reading: \"We ordered a replacement, it's just a week away.\""
- name: broken station administration console
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,4.5
+ pos: -2.5,9.5
parent: 1
-- proto: ComputerComms
+- proto: ComputerContrabandPalletConsole
entities:
- - uid: 459
+ - uid: 765
components:
- type: Transform
- pos: -2.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: -9.5,0.5
parent: 1
+ - type: ContainerContainer
+ containers:
+ board: !type:Container
+ ents: []
- proto: ComputerCrewMonitoring
entities:
- uid: 180
@@ -6861,6 +6850,32 @@ entities:
ents: []
bank-ATM-cashSlot: !type:ContainerSlot {}
- type: ItemSlots
+- proto: ContrabandPallet
+ entities:
+ - uid: 39
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,1.5
+ parent: 1
+ - uid: 2762
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,1.5
+ parent: 1
+ - uid: 2763
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,2.5
+ parent: 1
+ - uid: 2764
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,2.5
+ parent: 1
- proto: ConveyorBelt
entities:
- uid: 355
@@ -6973,6 +6988,18 @@ entities:
- type: Transform
pos: -11.579348,19.529264
parent: 1
+- proto: DefibrillatorCabinetFilled
+ entities:
+ - uid: 700
+ components:
+ - type: Transform
+ pos: 19.5,10.5
+ parent: 1
+ - uid: 2766
+ components:
+ - type: Transform
+ pos: 12.5,6.5
+ parent: 1
- proto: DisposalBend
entities:
- uid: 2452
@@ -13226,6 +13253,13 @@ entities:
- type: Transform
pos: 18.435602,13.615202
parent: 1
+- proto: LockerBrigmedic
+ entities:
+ - uid: 891
+ components:
+ - type: Transform
+ pos: 18.5,9.5
+ parent: 1
- proto: LockerDetectiveFilled
entities:
- uid: 995
@@ -13277,6 +13311,8 @@ entities:
- type: Transform
pos: -3.5,8.5
parent: 1
+ - type: Physics
+ bodyType: Static
- proto: LockerSecurityFilled
entities:
- uid: 327
@@ -13301,6 +13337,8 @@ entities:
- type: Transform
pos: 8.5,9.5
parent: 1
+ - type: Physics
+ bodyType: Static
- proto: MachineCryoSleepPod
entities:
- uid: 409
@@ -13403,10 +13441,10 @@ entities:
- type: Transform
pos: 19.5,8.5
parent: 1
- - uid: 891
+ - uid: 2767
components:
- type: Transform
- pos: 19.5,9.5
+ pos: 19.5,7.5
parent: 1
- proto: MedkitAdvancedFilled
entities:
@@ -14481,6 +14519,14 @@ entities:
- type: Transform
pos: -4.5,-9.5
parent: 1
+- proto: PowerCellRecharger
+ entities:
+ - uid: 2771
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,6.5
+ parent: 1
- proto: Poweredlight
entities:
- uid: 64
@@ -15120,11 +15166,6 @@ entities:
- type: Transform
pos: 9.5,1.5
parent: 1
- - uid: 2269
- components:
- - type: Transform
- pos: 19.5,10.5
- parent: 1
- uid: 2270
components:
- type: Transform
@@ -15140,6 +15181,11 @@ entities:
- type: Transform
pos: -2.5,20.5
parent: 1
+ - uid: 2765
+ components:
+ - type: Transform
+ pos: 17.5,10.5
+ parent: 1
- proto: RandomSpawner100
entities:
- uid: 2670
@@ -15192,11 +15238,6 @@ entities:
- type: Transform
pos: -14.5,4.5
parent: 1
- - uid: 2691
- components:
- - type: Transform
- pos: -9.5,1.5
- parent: 1
- uid: 2692
components:
- type: Transform
@@ -15703,10 +15744,10 @@ entities:
parent: 1
- proto: SpawnPointHeadOfSecurity
entities:
- - uid: 169
+ - uid: 170
components:
- type: Transform
- pos: 0.5,8.5
+ pos: 0.5,-3.5
parent: 1
- proto: SpawnPointLatejoin
entities:
@@ -15725,10 +15766,10 @@ entities:
parent: 1
- proto: SpawnPointWarden
entities:
- - uid: 170
+ - uid: 169
components:
- type: Transform
- pos: 8.5,8.5
+ pos: 1.5,-3.5
parent: 1
- proto: Stairs
entities:
@@ -15756,6 +15797,24 @@ entities:
rot: 1.5707963267948966 rad
pos: 16.5,15.5
parent: 1
+- proto: StationAdminBankATM
+ entities:
+ - uid: 273
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,4.5
+ parent: 1
+ - type: ContainerContainer
+ containers:
+ station-bank-ATM-cashSlot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
- proto: StoolBar
entities:
- uid: 211
@@ -15907,11 +15966,6 @@ entities:
- type: Transform
pos: 4.5,13.5
parent: 1
- - uid: 700
- components:
- - type: Transform
- pos: 19.5,6.5
- parent: 1
- uid: 750
components:
- type: Transform
@@ -15981,6 +16035,11 @@ entities:
parent: 1
- proto: TableReinforcedGlass
entities:
+ - uid: 41
+ components:
+ - type: Transform
+ pos: 19.5,6.5
+ parent: 1
- uid: 306
components:
- type: Transform
@@ -16001,6 +16060,11 @@ entities:
- type: Transform
pos: -14.5,6.5
parent: 1
+ - uid: 2769
+ components:
+ - type: Transform
+ pos: 18.5,6.5
+ parent: 1
- proto: TableWood
entities:
- uid: 127
@@ -16302,6 +16366,13 @@ entities:
- type: Transform
pos: 1.5,-8.5
parent: 1
+- proto: VendingMachineMedical
+ entities:
+ - uid: 2269
+ components:
+ - type: Transform
+ pos: 16.5,9.5
+ parent: 1
- proto: VendingMachineSec
entities:
- uid: 330
@@ -19898,18 +19969,6 @@ entities:
parent: 1
- proto: WindowReinforcedDirectional
entities:
- - uid: 39
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,9.5
- parent: 1
- - uid: 41
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,8.5
- parent: 1
- uid: 82
components:
- type: Transform
@@ -20017,4 +20076,16 @@ entities:
rot: -1.5707963267948966 rad
pos: 17.5,4.5
parent: 1
+ - uid: 2691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,9.5
+ parent: 1
+ - uid: 2770
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,8.5
+ parent: 1
...
diff --git a/Resources/Maps/_NF/Shuttles/ceres.yml b/Resources/Maps/_NF/Shuttles/ceres.yml
new file mode 100644
index 000000000000..f4342f5a2acf
--- /dev/null
+++ b/Resources/Maps/_NF/Shuttles/ceres.yml
@@ -0,0 +1,5772 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 30: FloorDark
+ 34: FloorDarkMini
+ 35: FloorDarkMono
+ 45: FloorFreezer
+ 46: FloorGlass
+ 51: FloorGrassLight
+ 63: FloorLino
+ 90: FloorSteel
+ 92: FloorSteelCheckerDark
+ 100: FloorSteelMini
+ 101: FloorSteelMono
+ 105: FloorTechMaint
+ 109: FloorWhite
+ 110: FloorWhiteDiagonal
+ 114: FloorWhiteMono
+ 119: FloorWood
+ 121: Lattice
+ 122: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 2
+ components:
+ - type: MetaData
+ name: grid
+ - type: Transform
+ pos: -0.5208333,-1.7666421
+ parent: invalid
+ - type: MapGrid
+ chunks:
+ 0,0:
+ ind: 0,0
+ tiles: egAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAADXAAAAAABXAAAAAACXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAABXAAAAAADegAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAABXAAAAAAAXAAAAAADXAAAAAACXAAAAAACPwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAACXAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAegAAAAAAZQAAAAABegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAACdwAAAAACdwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAACdwAAAAACdwAAAAACegAAAAAALgAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIgAAAAADIgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIwAAAAABIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAABIgAAAAABIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAIgAAAAACIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAABIgAAAAABIgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAIwAAAAADIgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAD
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: XAAAAAABbQAAAAADbgAAAAABbgAAAAAAbgAAAAABbgAAAAADbgAAAAADbQAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAbQAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbQAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAcgAAAAADbQAAAAABbQAAAAADbQAAAAACbQAAAAADbQAAAAAAbQAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAcgAAAAACcgAAAAABegAAAAAAcgAAAAAAcgAAAAACcgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACIgAAAAADHgAAAAADHgAAAAACIwAAAAABIwAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADLgAAAAABLgAAAAABHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADegAAAAAAeQAAAAAAAAAAAAAALgAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAACHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAACIgAAAAABIgAAAAABHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAIgAAAAABIgAAAAAAHgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAABIgAAAAAAIgAAAAADHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAABIwAAAAABegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-2:
+ ind: -1,-2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAIwAAAAADIwAAAAAAIwAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAABHgAAAAADHgAAAAADHgAAAAACegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAAAHgAAAAABegAAAAAAZQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAACHgAAAAAAZQAAAAABXAAAAAACXAAAAAABXAAAAAACXAAAAAACXAAAAAAAXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAegAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAABXAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAAAXAAAAAACXAAAAAABXAAAAAABXAAAAAAAXAAAAAABXAAAAAAA
+ version: 6
+ 0,-2:
+ ind: 0,-2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALQAAAAAALQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABegAAAAAAbQAAAAABbQAAAAABbQAAAAADbQAAAAABbQAAAAABcgAAAAAALQAAAAAALQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACcgAAAAABbQAAAAAAbQAAAAACbQAAAAADbQAAAAABbQAAAAADegAAAAAAegAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADbQAAAAABbgAAAAAAbgAAAAABbgAAAAACbgAAAAACbgAAAAAAbQAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABbQAAAAADbgAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbQAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ - type: Broadphase
+ - type: Physics
+ bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ - type: Fixtures
+ fixtures: {}
+ - type: OccluderTree
+ - type: SpreaderGrid
+ - type: BecomesStation
+ id: Ceres
+ - type: Shuttle
+ - type: GridPathfinding
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 110: 8,-11
+ 111: 7,-11
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerNe
+ decals:
+ 28: 1,-2
+ 31: 2,-3
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerNw
+ decals:
+ 29: -1,-2
+ 30: -2,-3
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerSe
+ decals:
+ 32: 1,-6
+ 33: 2,-5
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerSw
+ decals:
+ 34: -1,-6
+ 35: -2,-5
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkEndE
+ decals:
+ 112: 7,-10
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkEndW
+ decals:
+ 113: 6,-10
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkInnerNe
+ decals:
+ 22: -1,-5
+ 42: 1,-3
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkInnerNw
+ decals:
+ 21: 1,-5
+ 41: -1,-3
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkInnerSe
+ decals:
+ 20: -1,-3
+ 43: 1,-5
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkInnerSw
+ decals:
+ 23: 1,-3
+ 40: -1,-5
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineE
+ decals:
+ 25: -1,-4
+ 38: 2,-4
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineN
+ decals:
+ 26: 0,-5
+ 37: 0,-2
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineS
+ decals:
+ 24: 0,-3
+ 39: 0,-6
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineW
+ decals:
+ 27: 1,-4
+ 36: -2,-4
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 96: 6,-15
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 97: 2,-15
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 99: 6,-18
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 98: 2,-18
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 115: 3,-12
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 121: 0,-12
+ - node:
+ color: '#80C71FFF'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 133: -1,-7
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 117: 5,-10
+ - node:
+ color: '#80C71FFF'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 134: 1,-7
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 130: 0,-10
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteLineE
+ decals:
+ 114: 3,-11
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteLineE
+ decals:
+ 108: 6,-16
+ 109: 6,-17
+ - node:
+ color: '#80C71FFF'
+ id: BrickTileWhiteLineN
+ decals:
+ 135: 0,-9
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteLineN
+ decals:
+ 105: 3,-15
+ 106: 5,-15
+ 107: 4,-15
+ - node:
+ color: '#80C71FFF'
+ id: BrickTileWhiteLineS
+ decals:
+ 132: 0,-7
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteLineS
+ decals:
+ 100: 3,-18
+ 101: 5,-18
+ 102: 4,-18
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteLineW
+ decals:
+ 116: 5,-11
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteLineW
+ decals:
+ 120: 0,-11
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteLineW
+ decals:
+ 103: 2,-17
+ 104: 2,-16
+ - node:
+ color: '#FFFFFFFF'
+ id: DiagonalCheckerAOverlay
+ decals:
+ 56: 2,-15
+ 57: 3,-15
+ 58: 4,-15
+ 59: 5,-15
+ 60: 6,-15
+ 61: 6,-16
+ 62: 5,-16
+ 63: 4,-16
+ 64: 3,-16
+ 65: 2,-16
+ 66: 2,-17
+ 67: 3,-17
+ 68: 4,-17
+ 69: 6,-17
+ 70: 5,-17
+ 71: 2,-18
+ 72: 3,-18
+ 73: 4,-18
+ 74: 5,-18
+ 75: 6,-18
+ - node:
+ color: '#1D1D21F2'
+ id: DiagonalCheckerBOverlay
+ decals:
+ 76: 2,-15
+ 77: 3,-15
+ 78: 4,-15
+ 79: 5,-15
+ 80: 6,-15
+ 81: 6,-16
+ 82: 5,-16
+ 83: 4,-16
+ 84: 3,-16
+ 85: 2,-16
+ 86: 2,-18
+ 87: 2,-17
+ 88: 3,-17
+ 89: 3,-18
+ 90: 4,-18
+ 91: 4,-17
+ 92: 5,-17
+ 93: 5,-18
+ 94: 6,-18
+ 95: 6,-17
+ - node:
+ cleanable: True
+ color: '#474F52D3'
+ id: Dirt
+ decals:
+ 142: -7,-23
+ 143: -9,-21
+ - node:
+ cleanable: True
+ color: '#474F52B7'
+ id: DirtHeavyMonotile
+ decals:
+ 144: -9,-22
+ - node:
+ cleanable: True
+ color: '#474F52DF'
+ id: DirtHeavyMonotile
+ decals:
+ 140: -8,-23
+ 141: -9,-20
+ - node:
+ cleanable: True
+ color: '#474F52F2'
+ id: DirtHeavyMonotile
+ decals:
+ 145: -6,-23
+ - node:
+ cleanable: True
+ color: '#474F527F'
+ id: DirtLight
+ decals:
+ 150: -8,-21
+ - node:
+ cleanable: True
+ color: '#474F5295'
+ id: DirtLight
+ decals:
+ 146: -8,-22
+ 149: -7,-22
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 137: 1,-12
+ 138: 0,-10
+ 139: 2,-11
+ 151: -6,-20
+ - node:
+ cleanable: True
+ color: '#474F529E'
+ id: DirtMedium
+ decals:
+ 147: -8,-20
+ - node:
+ cleanable: True
+ color: '#474F52D6'
+ id: DirtMedium
+ decals:
+ 148: -6,-22
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 136: 0,-12
+ - node:
+ color: '#334E6DC8'
+ id: MiniTileCheckerAOverlay
+ decals:
+ 118: 4,-11
+ - node:
+ color: '#80C71FFF'
+ id: MiniTileCheckerAOverlay
+ decals:
+ 0: -1,-3
+ 1: -1,-2
+ 2: 0,-2
+ 3: 1,-2
+ 4: 1,-3
+ 5: 0,-3
+ 6: 2,-3
+ 7: 2,-4
+ 8: 1,-4
+ 9: 1,-5
+ 10: 2,-5
+ 11: 1,-6
+ 12: 0,-6
+ 13: -1,-6
+ 14: -1,-5
+ 15: 0,-5
+ 16: -2,-5
+ 17: -2,-4
+ 18: -2,-3
+ 19: -1,-4
+ 131: 0,-8
+ - node:
+ color: '#EFB34196'
+ id: MiniTileCheckerBOverlay
+ decals:
+ 119: -1,-11
+ - node:
+ color: '#791500FF'
+ id: MiniTileWhiteInnerNe
+ decals:
+ 126: -3,-16
+ - node:
+ color: '#791500FF'
+ id: MiniTileWhiteLineE
+ decals:
+ 124: -3,-14
+ 125: -3,-15
+ - node:
+ color: '#791500FF'
+ id: MiniTileWhiteLineN
+ decals:
+ 127: -2,-16
+ 128: -1,-16
+ 129: 0,-16
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineN
+ decals:
+ 54: 2,-13
+ 55: 3,-13
+ 122: -6,-12
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineW
+ decals:
+ 52: 2,-13
+ 53: 3,-13
+ 123: -6,-12
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerNe
+ decals:
+ 44: -6,-9
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerNw
+ decals:
+ 45: -8,-9
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSe
+ decals:
+ 46: -6,-11
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSw
+ decals:
+ 47: -8,-11
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineE
+ decals:
+ 50: -6,-10
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineN
+ decals:
+ 49: -7,-9
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineS
+ decals:
+ 48: -7,-11
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineW
+ decals:
+ 51: -8,-10
+ - type: GridAtmosphere
+ version: 2
+ data:
+ tiles:
+ 0,0:
+ 0: 3
+ 1: 4
+ -1,0:
+ 1: 4
+ 0: 8
+ -1,-2:
+ 1: 276
+ 0: 65256
+ -1,-1:
+ 0: 61183
+ 1: 256
+ 0,-2:
+ 0: 65523
+ 1: 4
+ 0,-1:
+ 0: 65535
+ 1,-2:
+ 1: 2418
+ 0: 4236
+ 1,-1:
+ 0: 17
+ 1: 256
+ -3,-3:
+ 1: 8
+ 0: 34944
+ -3,-2:
+ 0: 8
+ 1: 128
+ -2,-4:
+ 0: 65535
+ -2,-3:
+ 0: 65535
+ -2,-2:
+ 0: 55
+ 1: 968
+ -1,-4:
+ 0: 65535
+ -1,-3:
+ 0: 36863
+ 1: 20480
+ 0,-4:
+ 0: 65535
+ 0,-3:
+ 0: 16383
+ 1: 16384
+ 1,-4:
+ 0: 65535
+ 1,-3:
+ 0: 61439
+ 1: 4096
+ 2,-4:
+ 0: 4369
+ 2,-3:
+ 0: 13105
+ 1: 2
+ 2,-2:
+ 0: 19
+ 1: 288
+ -2,-5:
+ 0: 65535
+ -2,-6:
+ 0: 65527
+ 1: 8
+ -1,-6:
+ 0: 61671
+ 1: 3856
+ -1,-5:
+ 0: 65535
+ 0,-6:
+ 0: 61692
+ 1: 3840
+ 0,-5:
+ 0: 65535
+ 1,-6:
+ 0: 65261
+ 1: 274
+ 1,-5:
+ 0: 65535
+ 2,-5:
+ 0: 4407
+ 1: 576
+ -2,-7:
+ 0: 65024
+ -1,-7:
+ 0: 29440
+ 0,-7:
+ 0: 51200
+ 1,-7:
+ 0: 65280
+ 2,-7:
+ 0: 4096
+ 2,-6:
+ 0: 30513
+ 1: 66
+ -3,-6:
+ 1: 72
+ 0: 52352
+ -3,-5:
+ 0: 140
+ 1: 2112
+ 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:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+- proto: AirAlarm
+ entities:
+ - uid: 65
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-20.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 727
+ - 300
+ - 638
+ - 775
+ - 419
+ - 382
+ - 167
+ - 566
+ - 417
+ - 418
+ - 344
+ - 633
+ - 767
+ - 768
+ - 301
+ - 465
+ - 591
+ - 590
+ - 299
+ - 774
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 494
+ components:
+ - type: Transform
+ pos: -2.5,-9.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 241
+ - 301
+ - 770
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 495
+ components:
+ - type: Transform
+ pos: 3.5,-1.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 465
+ - 646
+ - 698
+ - 771
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 585
+ components:
+ - type: Transform
+ pos: 5.5,-8.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 266
+ - 265
+ - 299
+ - 769
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 588
+ components:
+ - type: Transform
+ pos: -2.5,-12.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 180
+ - 382
+ - 167
+ - 416
+ - 415
+ - 419
+ - 772
+ - 323
+ - 322
+ - 773
+ - 529
+ - 496
+ - 396
+ - type: AtmosDevice
+ joinedGrid: 2
+- proto: AirCanister
+ entities:
+ - uid: 339
+ components:
+ - type: Transform
+ pos: -1.5,-11.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+- proto: AirlockCommand
+ entities:
+ - uid: 130
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,-10.5
+ parent: 2
+- proto: AirlockEngineering
+ entities:
+ - uid: 268
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -0.5,-10.5
+ parent: 2
+- proto: AirlockExternalGlass
+ entities:
+ - uid: 84
+ components:
+ - type: Transform
+ pos: -6.5,-19.5
+ parent: 2
+ - uid: 420
+ components:
+ - type: Transform
+ pos: -5.5,-20.5
+ parent: 2
+- proto: AirlockFreezer
+ entities:
+ - uid: 694
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 7.5,-19.5
+ parent: 2
+- proto: AirlockGlass
+ entities:
+ - uid: 303
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-13.5
+ parent: 2
+ - uid: 358
+ components:
+ - type: Transform
+ pos: 1.5,-18.5
+ parent: 2
+ - uid: 497
+ components:
+ - type: Transform
+ pos: 0.5,-7.5
+ parent: 2
+- proto: AirlockGlassShuttle
+ entities:
+ - uid: 107
+ components:
+ - type: Transform
+ pos: -7.5,-23.5
+ parent: 2
+ - uid: 109
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-21.5
+ parent: 2
+ - uid: 586
+ components:
+ - type: Transform
+ pos: -5.5,-23.5
+ parent: 2
+ - uid: 750
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-19.5
+ parent: 2
+- proto: AirSensor
+ entities:
+ - uid: 396
+ components:
+ - type: Transform
+ pos: -7.5,-21.5
+ parent: 2
+ - uid: 767
+ components:
+ - type: Transform
+ pos: 6.5,-19.5
+ parent: 2
+ - uid: 768
+ components:
+ - type: Transform
+ pos: 3.5,-13.5
+ parent: 2
+ - uid: 769
+ components:
+ - type: Transform
+ pos: 8.5,-9.5
+ parent: 2
+ - uid: 770
+ components:
+ - type: Transform
+ pos: -1.5,-10.5
+ parent: 2
+ - uid: 771
+ components:
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 2
+ - uid: 772
+ components:
+ - type: Transform
+ pos: -6.5,-15.5
+ parent: 2
+ - uid: 773
+ components:
+ - type: Transform
+ pos: -6.5,-7.5
+ parent: 2
+ - uid: 774
+ components:
+ - type: Transform
+ pos: 0.5,-9.5
+ parent: 2
+ - uid: 775
+ components:
+ - type: Transform
+ pos: 8.5,-21.5
+ parent: 2
+- proto: APCBasic
+ entities:
+ - uid: 457
+ components:
+ - type: Transform
+ pos: -3.5,-12.5
+ parent: 2
+ - uid: 485
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-12.5
+ parent: 2
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 587
+ components:
+ - type: Transform
+ pos: -5.5,-23.5
+ parent: 2
+ - uid: 668
+ components:
+ - type: Transform
+ pos: -7.5,-23.5
+ parent: 2
+ - uid: 695
+ components:
+ - type: Transform
+ pos: -9.5,-21.5
+ parent: 2
+ - uid: 726
+ components:
+ - type: Transform
+ pos: -9.5,-19.5
+ parent: 2
+- proto: AtmosFixBlockerMarker
+ entities:
+ - uid: 99
+ components:
+ - type: Transform
+ pos: 8.5,-5.5
+ parent: 2
+ - uid: 102
+ components:
+ - type: Transform
+ pos: -8.5,-17.5
+ parent: 2
+ - uid: 120
+ components:
+ - type: Transform
+ pos: -7.5,-5.5
+ parent: 2
+ - uid: 126
+ components:
+ - type: Transform
+ pos: -3.5,-6.5
+ parent: 2
+ - uid: 161
+ components:
+ - type: Transform
+ pos: 7.5,-5.5
+ parent: 2
+ - uid: 163
+ components:
+ - type: Transform
+ pos: 9.5,-17.5
+ parent: 2
+ - uid: 220
+ components:
+ - type: Transform
+ pos: -4.5,-6.5
+ parent: 2
+ - uid: 280
+ components:
+ - type: Transform
+ pos: -2.5,-21.5
+ parent: 2
+ - uid: 345
+ components:
+ - type: Transform
+ pos: 0.5,-21.5
+ parent: 2
+ - uid: 348
+ components:
+ - type: Transform
+ pos: 1.5,-21.5
+ parent: 2
+ - uid: 354
+ components:
+ - type: Transform
+ pos: 3.5,-21.5
+ parent: 2
+ - uid: 399
+ components:
+ - type: Transform
+ pos: 2.5,-21.5
+ parent: 2
+ - uid: 509
+ components:
+ - type: Transform
+ pos: -3.5,-21.5
+ parent: 2
+ - uid: 531
+ components:
+ - type: Transform
+ pos: 4.5,-22.5
+ parent: 2
+ - uid: 533
+ components:
+ - type: Transform
+ pos: -0.5,-21.5
+ parent: 2
+ - uid: 573
+ components:
+ - type: Transform
+ pos: 4.5,-21.5
+ parent: 2
+ - uid: 580
+ components:
+ - type: Transform
+ pos: 5.5,-23.5
+ parent: 2
+ - uid: 581
+ components:
+ - type: Transform
+ pos: -4.5,-23.5
+ parent: 2
+ - uid: 582
+ components:
+ - type: Transform
+ pos: -8.5,-23.5
+ parent: 2
+ - uid: 583
+ components:
+ - type: Transform
+ pos: -9.5,-22.5
+ parent: 2
+ - uid: 589
+ components:
+ - type: Transform
+ pos: -9.5,-18.5
+ parent: 2
+ - uid: 624
+ components:
+ - type: Transform
+ pos: -1.5,-21.5
+ parent: 2
+ - uid: 657
+ components:
+ - type: Transform
+ pos: -6.5,-5.5
+ parent: 2
+ - uid: 676
+ components:
+ - type: Transform
+ pos: 9.5,-23.5
+ parent: 2
+ - uid: 696
+ components:
+ - type: Transform
+ pos: -3.5,-22.5
+ parent: 2
+ - uid: 703
+ components:
+ - type: Transform
+ pos: -1.5,-8.5
+ parent: 2
+ - uid: 704
+ components:
+ - type: Transform
+ pos: 2.5,-8.5
+ parent: 2
+ - uid: 705
+ components:
+ - type: Transform
+ pos: 4.5,-6.5
+ parent: 2
+ - uid: 706
+ components:
+ - type: Transform
+ pos: 5.5,-6.5
+ parent: 2
+ - uid: 707
+ components:
+ - type: Transform
+ pos: 10.5,-22.5
+ parent: 2
+ - uid: 747
+ components:
+ - type: Transform
+ pos: 10.5,-18.5
+ parent: 2
+ - uid: 748
+ components:
+ - type: Transform
+ pos: 9.5,-11.5
+ parent: 2
+ - uid: 749
+ components:
+ - type: Transform
+ pos: 9.5,-6.5
+ parent: 2
+ - uid: 776
+ components:
+ - type: Transform
+ pos: -8.5,-11.5
+ parent: 2
+ - uid: 777
+ components:
+ - type: Transform
+ pos: -8.5,-6.5
+ parent: 2
+ - uid: 778
+ components:
+ - type: Transform
+ pos: -5.5,-6.5
+ parent: 2
+ - uid: 779
+ components:
+ - type: Transform
+ pos: -4.5,-7.5
+ parent: 2
+ - uid: 780
+ components:
+ - type: Transform
+ pos: -3.5,-8.5
+ parent: 2
+ - uid: 781
+ components:
+ - type: Transform
+ pos: -1.5,-7.5
+ parent: 2
+ - uid: 782
+ components:
+ - type: Transform
+ pos: 2.5,-7.5
+ parent: 2
+ - uid: 783
+ components:
+ - type: Transform
+ pos: 4.5,-8.5
+ parent: 2
+ - uid: 784
+ components:
+ - type: Transform
+ pos: 5.5,-7.5
+ parent: 2
+ - uid: 785
+ components:
+ - type: Transform
+ pos: 6.5,-6.5
+ parent: 2
+ - uid: 786
+ components:
+ - type: Transform
+ pos: -3.5,-5.5
+ parent: 2
+ - uid: 787
+ components:
+ - type: Transform
+ pos: 4.5,-5.5
+ parent: 2
+ - uid: 788
+ components:
+ - type: Transform
+ pos: 4.5,-1.5
+ parent: 2
+ - uid: 789
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 2
+ - uid: 790
+ components:
+ - type: Transform
+ pos: -1.5,0.5
+ parent: 2
+ - uid: 791
+ components:
+ - type: Transform
+ pos: -3.5,-1.5
+ parent: 2
+- proto: Bucket
+ entities:
+ - uid: 574
+ components:
+ - type: Transform
+ pos: -0.73503387,-5.6378756
+ parent: 2
+- proto: CableApcExtension
+ entities:
+ - uid: 100
+ components:
+ - type: Transform
+ pos: 6.5,-19.5
+ parent: 2
+ - uid: 110
+ components:
+ - type: Transform
+ pos: -5.5,-19.5
+ parent: 2
+ - uid: 111
+ components:
+ - type: Transform
+ pos: -6.5,-19.5
+ parent: 2
+ - uid: 113
+ components:
+ - type: Transform
+ pos: 0.5,-19.5
+ parent: 2
+ - uid: 116
+ components:
+ - type: Transform
+ pos: -7.5,-19.5
+ parent: 2
+ - uid: 148
+ components:
+ - type: Transform
+ pos: -4.5,-13.5
+ parent: 2
+ - uid: 184
+ components:
+ - type: Transform
+ pos: 8.5,-21.5
+ parent: 2
+ - uid: 202
+ components:
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 2
+ - uid: 218
+ components:
+ - type: Transform
+ pos: -5.5,-16.5
+ parent: 2
+ - uid: 219
+ components:
+ - type: Transform
+ pos: -5.5,-15.5
+ parent: 2
+ - uid: 222
+ components:
+ - type: Transform
+ pos: 7.5,-21.5
+ parent: 2
+ - uid: 226
+ components:
+ - type: Transform
+ pos: -3.5,-15.5
+ parent: 2
+ - uid: 456
+ components:
+ - type: Transform
+ pos: 1.5,-12.5
+ parent: 2
+ - uid: 483
+ components:
+ - type: Transform
+ pos: 1.5,-10.5
+ parent: 2
+ - uid: 487
+ components:
+ - type: Transform
+ pos: 0.5,-6.5
+ parent: 2
+ - uid: 488
+ components:
+ - type: Transform
+ pos: 0.5,-5.5
+ parent: 2
+ - uid: 492
+ components:
+ - type: Transform
+ pos: 0.5,-10.5
+ parent: 2
+ - uid: 498
+ components:
+ - type: Transform
+ pos: -0.5,-10.5
+ parent: 2
+ - uid: 499
+ components:
+ - type: Transform
+ pos: -1.5,-10.5
+ parent: 2
+ - uid: 500
+ components:
+ - type: Transform
+ pos: 1.5,-11.5
+ parent: 2
+ - uid: 501
+ components:
+ - type: Transform
+ pos: 2.5,-12.5
+ parent: 2
+ - uid: 502
+ components:
+ - type: Transform
+ pos: 3.5,-10.5
+ parent: 2
+ - uid: 503
+ components:
+ - type: Transform
+ pos: 4.5,-10.5
+ parent: 2
+ - uid: 504
+ components:
+ - type: Transform
+ pos: 5.5,-10.5
+ parent: 2
+ - uid: 505
+ components:
+ - type: Transform
+ pos: 6.5,-10.5
+ parent: 2
+ - uid: 506
+ components:
+ - type: Transform
+ pos: 6.5,-9.5
+ parent: 2
+ - uid: 507
+ components:
+ - type: Transform
+ pos: 7.5,-9.5
+ parent: 2
+ - uid: 508
+ components:
+ - type: Transform
+ pos: -5.5,-13.5
+ parent: 2
+ - uid: 510
+ components:
+ - type: Transform
+ pos: -4.5,-14.5
+ parent: 2
+ - uid: 511
+ components:
+ - type: Transform
+ pos: -3.5,-12.5
+ parent: 2
+ - uid: 512
+ components:
+ - type: Transform
+ pos: -3.5,-13.5
+ parent: 2
+ - uid: 514
+ components:
+ - type: Transform
+ pos: 3.5,-11.5
+ parent: 2
+ - uid: 515
+ components:
+ - type: Transform
+ pos: 3.5,-12.5
+ parent: 2
+ - uid: 516
+ components:
+ - type: Transform
+ pos: 3.5,-13.5
+ parent: 2
+ - uid: 517
+ components:
+ - type: Transform
+ pos: 5.5,-13.5
+ parent: 2
+ - uid: 518
+ components:
+ - type: Transform
+ pos: 4.5,-13.5
+ parent: 2
+ - uid: 519
+ components:
+ - type: Transform
+ pos: 6.5,-13.5
+ parent: 2
+ - uid: 520
+ components:
+ - type: Transform
+ pos: 6.5,-14.5
+ parent: 2
+ - uid: 521
+ components:
+ - type: Transform
+ pos: 6.5,-15.5
+ parent: 2
+ - uid: 522
+ components:
+ - type: Transform
+ pos: 6.5,-16.5
+ parent: 2
+ - uid: 523
+ components:
+ - type: Transform
+ pos: 6.5,-17.5
+ parent: 2
+ - uid: 524
+ components:
+ - type: Transform
+ pos: 6.5,-18.5
+ parent: 2
+ - uid: 525
+ components:
+ - type: Transform
+ pos: 5.5,-18.5
+ parent: 2
+ - uid: 526
+ components:
+ - type: Transform
+ pos: 3.5,-18.5
+ parent: 2
+ - uid: 527
+ components:
+ - type: Transform
+ pos: 4.5,-18.5
+ parent: 2
+ - uid: 528
+ components:
+ - type: Transform
+ pos: 2.5,-18.5
+ parent: 2
+ - uid: 534
+ components:
+ - type: Transform
+ pos: 2.5,-17.5
+ parent: 2
+ - uid: 535
+ components:
+ - type: Transform
+ pos: 2.5,-16.5
+ parent: 2
+ - uid: 536
+ components:
+ - type: Transform
+ pos: 2.5,-15.5
+ parent: 2
+ - uid: 537
+ components:
+ - type: Transform
+ pos: -5.5,-12.5
+ parent: 2
+ - uid: 538
+ components:
+ - type: Transform
+ pos: -5.5,-11.5
+ parent: 2
+ - uid: 539
+ components:
+ - type: Transform
+ pos: -4.5,-15.5
+ parent: 2
+ - uid: 543
+ components:
+ - type: Transform
+ pos: -5.5,-18.5
+ parent: 2
+ - uid: 545
+ components:
+ - type: Transform
+ pos: -2.5,-15.5
+ parent: 2
+ - uid: 546
+ components:
+ - type: Transform
+ pos: -1.5,-15.5
+ parent: 2
+ - uid: 547
+ components:
+ - type: Transform
+ pos: -0.5,-15.5
+ parent: 2
+ - uid: 548
+ components:
+ - type: Transform
+ pos: -0.5,-16.5
+ parent: 2
+ - uid: 549
+ components:
+ - type: Transform
+ pos: -0.5,-17.5
+ parent: 2
+ - uid: 550
+ components:
+ - type: Transform
+ pos: -0.5,-18.5
+ parent: 2
+ - uid: 551
+ components:
+ - type: Transform
+ pos: -0.5,-19.5
+ parent: 2
+ - uid: 552
+ components:
+ - type: Transform
+ pos: -1.5,-19.5
+ parent: 2
+ - uid: 553
+ components:
+ - type: Transform
+ pos: -2.5,-19.5
+ parent: 2
+ - uid: 554
+ components:
+ - type: Transform
+ pos: -3.5,-19.5
+ parent: 2
+ - uid: 555
+ components:
+ - type: Transform
+ pos: -5.5,-10.5
+ parent: 2
+ - uid: 556
+ components:
+ - type: Transform
+ pos: -5.5,-9.5
+ parent: 2
+ - uid: 557
+ components:
+ - type: Transform
+ pos: -5.5,-8.5
+ parent: 2
+ - uid: 558
+ components:
+ - type: Transform
+ pos: -6.5,-8.5
+ parent: 2
+ - uid: 559
+ components:
+ - type: Transform
+ pos: -6.5,-7.5
+ parent: 2
+ - uid: 560
+ components:
+ - type: Transform
+ pos: 7.5,-8.5
+ parent: 2
+ - uid: 561
+ components:
+ - type: Transform
+ pos: 7.5,-7.5
+ parent: 2
+ - uid: 564
+ components:
+ - type: Transform
+ pos: 7.5,-19.5
+ parent: 2
+ - uid: 567
+ components:
+ - type: Transform
+ pos: 0.5,-8.5
+ parent: 2
+ - uid: 568
+ components:
+ - type: Transform
+ pos: 0.5,-7.5
+ parent: 2
+ - uid: 569
+ components:
+ - type: Transform
+ pos: 0.5,-9.5
+ parent: 2
+ - uid: 593
+ components:
+ - type: Transform
+ pos: -1.5,-5.5
+ parent: 2
+ - uid: 594
+ components:
+ - type: Transform
+ pos: -1.5,-4.5
+ parent: 2
+ - uid: 595
+ components:
+ - type: Transform
+ pos: -1.5,-3.5
+ parent: 2
+ - uid: 596
+ components:
+ - type: Transform
+ pos: -1.5,-2.5
+ parent: 2
+ - uid: 597
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 2
+ - uid: 598
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 2
+ - uid: 599
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 2
+ - uid: 600
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 2
+ - uid: 601
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 2
+ - uid: 602
+ components:
+ - type: Transform
+ pos: 2.5,-2.5
+ parent: 2
+ - uid: 603
+ components:
+ - type: Transform
+ pos: 2.5,-3.5
+ parent: 2
+ - uid: 604
+ components:
+ - type: Transform
+ pos: 2.5,-4.5
+ parent: 2
+ - uid: 605
+ components:
+ - type: Transform
+ pos: 2.5,-5.5
+ parent: 2
+ - uid: 629
+ components:
+ - type: Transform
+ pos: -5.5,-17.5
+ parent: 2
+ - uid: 636
+ components:
+ - type: Transform
+ pos: -7.5,-20.5
+ parent: 2
+ - uid: 637
+ components:
+ - type: Transform
+ pos: 8.5,-19.5
+ parent: 2
+ - uid: 645
+ components:
+ - type: Transform
+ pos: 8.5,-20.5
+ parent: 2
+ - uid: 666
+ components:
+ - type: Transform
+ pos: 7.5,-17.5
+ parent: 2
+ - uid: 667
+ components:
+ - type: Transform
+ pos: 3.5,-19.5
+ parent: 2
+ - uid: 708
+ components:
+ - type: Transform
+ pos: -5.5,-21.5
+ parent: 2
+ - uid: 711
+ components:
+ - type: Transform
+ pos: -7.5,-21.5
+ parent: 2
+ - uid: 742
+ components:
+ - type: Transform
+ pos: -6.5,-21.5
+ parent: 2
+ - uid: 755
+ components:
+ - type: Transform
+ pos: -6.5,-17.5
+ parent: 2
+- proto: CableHV
+ entities:
+ - uid: 234
+ components:
+ - type: Transform
+ pos: -3.5,-11.5
+ parent: 2
+ - uid: 235
+ components:
+ - type: Transform
+ pos: -3.5,-10.5
+ parent: 2
+ - uid: 236
+ components:
+ - type: Transform
+ pos: -2.5,-11.5
+ parent: 2
+ - uid: 237
+ components:
+ - type: Transform
+ pos: -1.5,-11.5
+ parent: 2
+ - uid: 238
+ components:
+ - type: Transform
+ pos: -1.5,-12.5
+ parent: 2
+- proto: CableMV
+ entities:
+ - uid: 149
+ components:
+ - type: Transform
+ pos: -2.5,-15.5
+ parent: 2
+ - uid: 227
+ components:
+ - type: Transform
+ pos: 1.5,-10.5
+ parent: 2
+ - uid: 228
+ components:
+ - type: Transform
+ pos: -1.5,-15.5
+ parent: 2
+ - uid: 231
+ components:
+ - type: Transform
+ pos: 2.5,-10.5
+ parent: 2
+ - uid: 394
+ components:
+ - type: Transform
+ pos: 1.5,-15.5
+ parent: 2
+ - uid: 459
+ components:
+ - type: Transform
+ pos: -1.5,-12.5
+ parent: 2
+ - uid: 460
+ components:
+ - type: Transform
+ pos: -1.5,-11.5
+ parent: 2
+ - uid: 461
+ components:
+ - type: Transform
+ pos: -1.5,-10.5
+ parent: 2
+ - uid: 462
+ components:
+ - type: Transform
+ pos: -0.5,-10.5
+ parent: 2
+ - uid: 463
+ components:
+ - type: Transform
+ pos: 0.5,-10.5
+ parent: 2
+ - uid: 464
+ components:
+ - type: Transform
+ pos: 0.5,-15.5
+ parent: 2
+ - uid: 467
+ components:
+ - type: Transform
+ pos: 2.5,-11.5
+ parent: 2
+ - uid: 468
+ components:
+ - type: Transform
+ pos: 2.5,-12.5
+ parent: 2
+ - uid: 469
+ components:
+ - type: Transform
+ pos: 2.5,-13.5
+ parent: 2
+ - uid: 470
+ components:
+ - type: Transform
+ pos: 2.5,-14.5
+ parent: 2
+ - uid: 471
+ components:
+ - type: Transform
+ pos: 2.5,-15.5
+ parent: 2
+ - uid: 473
+ components:
+ - type: Transform
+ pos: 1.5,-16.5
+ parent: 2
+ - uid: 479
+ components:
+ - type: Transform
+ pos: -3.5,-15.5
+ parent: 2
+ - uid: 480
+ components:
+ - type: Transform
+ pos: -3.5,-14.5
+ parent: 2
+ - uid: 481
+ components:
+ - type: Transform
+ pos: -3.5,-13.5
+ parent: 2
+ - uid: 482
+ components:
+ - type: Transform
+ pos: -3.5,-12.5
+ parent: 2
+ - uid: 484
+ components:
+ - type: Transform
+ pos: 1.5,-12.5
+ parent: 2
+ - uid: 570
+ components:
+ - type: Transform
+ pos: -0.5,-15.5
+ parent: 2
+- proto: CableTerminal
+ entities:
+ - uid: 472
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-11.5
+ parent: 2
+- proto: CarpetGreen
+ entities:
+ - uid: 118
+ components:
+ - type: Transform
+ pos: -1.5,-19.5
+ parent: 2
+ - uid: 446
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-17.5
+ parent: 2
+ - uid: 447
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-18.5
+ parent: 2
+ - uid: 448
+ components:
+ - type: Transform
+ pos: -2.5,-19.5
+ parent: 2
+ - uid: 449
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-17.5
+ parent: 2
+ - uid: 450
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-18.5
+ parent: 2
+ - uid: 451
+ components:
+ - type: Transform
+ pos: -3.5,-19.5
+ parent: 2
+ - uid: 452
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-17.5
+ parent: 2
+ - uid: 453
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-18.5
+ parent: 2
+- proto: CarpetPurple
+ entities:
+ - uid: 332
+ components:
+ - type: Transform
+ pos: -7.5,-9.5
+ parent: 2
+ - uid: 333
+ components:
+ - type: Transform
+ pos: -6.5,-9.5
+ parent: 2
+ - uid: 334
+ components:
+ - type: Transform
+ pos: -6.5,-10.5
+ parent: 2
+ - uid: 335
+ components:
+ - type: Transform
+ pos: -7.5,-10.5
+ parent: 2
+ - uid: 336
+ components:
+ - type: Transform
+ pos: -7.5,-8.5
+ parent: 2
+ - uid: 337
+ components:
+ - type: Transform
+ pos: -6.5,-8.5
+ parent: 2
+- proto: ChairFolding
+ entities:
+ - uid: 709
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-19.5
+ parent: 2
+- proto: ChairOfficeDark
+ entities:
+ - uid: 172
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-8.5
+ parent: 2
+- proto: ChairWood
+ entities:
+ - uid: 326
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,-10.5
+ parent: 2
+ - uid: 327
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,-10.5
+ parent: 2
+ - uid: 328
+ components:
+ - type: Transform
+ pos: -7.5,-8.5
+ parent: 2
+ - uid: 329
+ components:
+ - type: Transform
+ pos: -6.5,-8.5
+ parent: 2
+ - uid: 433
+ components:
+ - type: Transform
+ pos: -6.5,-12.5
+ parent: 2
+ - uid: 434
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,-14.5
+ parent: 2
+ - uid: 435
+ components:
+ - type: Transform
+ pos: -6.5,-16.5
+ parent: 2
+ - uid: 436
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-17.5
+ parent: 2
+ - uid: 438
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-17.5
+ parent: 2
+ - uid: 439
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-18.5
+ parent: 2
+ - uid: 440
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-18.5
+ parent: 2
+ - uid: 441
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-17.5
+ parent: 2
+ - uid: 443
+ components:
+ - type: Transform
+ pos: -4.5,-13.5
+ parent: 2
+ - uid: 444
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-15.5
+ parent: 2
+ - uid: 576
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-15.5
+ parent: 2
+ - uid: 577
+ components:
+ - type: Transform
+ pos: -3.5,-13.5
+ parent: 2
+ - uid: 679
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-19.5
+ parent: 2
+ - uid: 719
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-19.5
+ parent: 2
+- proto: ClosetChefFilled
+ entities:
+ - uid: 662
+ components:
+ - type: Transform
+ pos: 3.5,-19.5
+ parent: 2
+- proto: ComputerShuttle
+ entities:
+ - uid: 168
+ components:
+ - type: Transform
+ pos: 7.5,-7.5
+ parent: 2
+- proto: ComputerStationRecords
+ entities:
+ - uid: 170
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-8.5
+ parent: 2
+- proto: ComputerWallmountWithdrawBankATM
+ entities:
+ - uid: 466
+ components:
+ - type: Transform
+ pos: 1.5,-14.5
+ parent: 2
+ - type: Physics
+ canCollide: False
+ - type: ContainerContainer
+ containers:
+ board: !type:Container
+ ents: []
+ bank-ATM-cashSlot: !type:ContainerSlot {}
+ - type: ItemSlots
+- proto: DefibrillatorCabinetFilled
+ entities:
+ - uid: 147
+ components:
+ - type: Transform
+ pos: -0.5,-12.5
+ parent: 2
+ - uid: 445
+ components:
+ - type: Transform
+ pos: -1.5,-0.5
+ parent: 2
+- proto: DeskBell
+ entities:
+ - uid: 64
+ components:
+ - type: Transform
+ pos: 1.5527847,-15.358986
+ parent: 2
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+- proto: DisposalBend
+ entities:
+ - uid: 278
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-6.5
+ parent: 2
+ - uid: 614
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-11.5
+ parent: 2
+ - uid: 617
+ components:
+ - type: Transform
+ pos: 3.5,-11.5
+ parent: 2
+ - uid: 618
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-13.5
+ parent: 2
+- proto: DisposalPipe
+ entities:
+ - uid: 114
+ components:
+ - type: Transform
+ pos: 0.5,-9.5
+ parent: 2
+ - uid: 115
+ components:
+ - type: Transform
+ pos: 0.5,-8.5
+ parent: 2
+ - uid: 279
+ components:
+ - type: Transform
+ pos: 0.5,-7.5
+ parent: 2
+ - uid: 613
+ components:
+ - type: Transform
+ pos: 0.5,-10.5
+ parent: 2
+ - uid: 615
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-11.5
+ parent: 2
+ - uid: 616
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-11.5
+ parent: 2
+ - uid: 619
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-12.5
+ parent: 2
+- proto: DisposalTrunk
+ entities:
+ - uid: 306
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-6.5
+ parent: 2
+ - uid: 620
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-13.5
+ parent: 2
+- proto: DisposalUnit
+ entities:
+ - uid: 621
+ components:
+ - type: Transform
+ pos: 4.5,-13.5
+ parent: 2
+ - uid: 622
+ components:
+ - type: Transform
+ pos: 1.5,-6.5
+ parent: 2
+- proto: DrinkShaker
+ entities:
+ - uid: 378
+ components:
+ - type: Transform
+ pos: 5.537535,-15.421177
+ parent: 2
+- proto: EmergencyLight
+ entities:
+ - uid: 186
+ components:
+ - type: Transform
+ pos: -5.5,-8.5
+ parent: 2
+ - uid: 277
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-20.5
+ parent: 2
+ - uid: 290
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-22.5
+ parent: 2
+ - uid: 710
+ components:
+ - type: Transform
+ pos: -2.5,-13.5
+ parent: 2
+ - uid: 712
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-18.5
+ parent: 2
+ - uid: 715
+ components:
+ - type: Transform
+ pos: -2.5,-10.5
+ parent: 2
+ - uid: 716
+ components:
+ - type: Transform
+ pos: 2.5,-10.5
+ parent: 2
+ - uid: 717
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-10.5
+ parent: 2
+ - uid: 718
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-14.5
+ parent: 2
+ - uid: 738
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,-21.5
+ parent: 2
+ - uid: 745
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-1.5
+ parent: 2
+ - uid: 746
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-5.5
+ parent: 2
+- proto: ExtinguisherCabinetFilled
+ entities:
+ - uid: 764
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-18.5
+ parent: 2
+ - uid: 765
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-6.5
+ parent: 2
+- proto: EZNutrientChemistryBottle
+ entities:
+ - uid: 611
+ components:
+ - type: Transform
+ pos: 1.341127,-3.3345556
+ parent: 2
+ - uid: 612
+ components:
+ - type: Transform
+ pos: 1.4939048,-3.4874392
+ parent: 2
+- proto: FaxMachineShip
+ entities:
+ - uid: 171
+ components:
+ - type: Transform
+ pos: 8.5,-7.5
+ parent: 2
+- proto: Firelock
+ entities:
+ - uid: 299
+ components:
+ - type: Transform
+ pos: 4.5,-10.5
+ parent: 2
+ - uid: 301
+ components:
+ - type: Transform
+ pos: -0.5,-10.5
+ parent: 2
+ - uid: 638
+ components:
+ - type: Transform
+ pos: 7.5,-19.5
+ parent: 2
+- proto: FirelockGlass
+ entities:
+ - uid: 167
+ components:
+ - type: Transform
+ pos: 1.5,-15.5
+ parent: 2
+ - uid: 180
+ components:
+ - type: Transform
+ pos: -5.5,-11.5
+ parent: 2
+ - uid: 382
+ components:
+ - type: Transform
+ pos: 1.5,-16.5
+ parent: 2
+ - uid: 415
+ components:
+ - type: Transform
+ pos: -0.5,-14.5
+ parent: 2
+ - uid: 416
+ components:
+ - type: Transform
+ pos: 0.5,-14.5
+ parent: 2
+ - uid: 417
+ components:
+ - type: Transform
+ pos: 2.5,-12.5
+ parent: 2
+ - uid: 418
+ components:
+ - type: Transform
+ pos: 3.5,-12.5
+ parent: 2
+ - uid: 419
+ components:
+ - type: Transform
+ pos: 1.5,-18.5
+ parent: 2
+ - uid: 465
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-7.5
+ parent: 2
+ - uid: 566
+ components:
+ - type: Transform
+ pos: 1.5,-13.5
+ parent: 2
+- proto: Fireplace
+ entities:
+ - uid: 331
+ components:
+ - type: Transform
+ pos: -7.5,-7.5
+ parent: 2
+- proto: FloorDrain
+ entities:
+ - uid: 691
+ components:
+ - type: Transform
+ pos: 8.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+- proto: FoodCartCold
+ entities:
+ - uid: 656
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-22.5
+ parent: 2
+- proto: FoodCartHot
+ entities:
+ - uid: 640
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-22.5
+ parent: 2
+- proto: FoodContainerEgg
+ entities:
+ - uid: 410
+ components:
+ - type: Transform
+ pos: 5.4452367,-16.238358
+ parent: 2
+- proto: FoodShakerPepper
+ entities:
+ - uid: 405
+ components:
+ - type: Transform
+ pos: 3.3708684,-16.52611
+ parent: 2
+ - uid: 406
+ components:
+ - type: Transform
+ pos: 3.6000352,-16.484415
+ parent: 2
+- proto: FoodShakerSalt
+ entities:
+ - uid: 233
+ components:
+ - type: Transform
+ pos: 3.5062852,-16.28636
+ parent: 2
+ - uid: 407
+ components:
+ - type: Transform
+ pos: 3.297952,-16.33848
+ parent: 2
+- proto: GasPassiveVent
+ entities:
+ - uid: 243
+ components:
+ - type: Transform
+ pos: -1.5,-8.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPipeBend
+ entities:
+ - uid: 177
+ components:
+ - type: Transform
+ pos: 6.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 229
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 256
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 257
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 267
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 274
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 315
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 401
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 454
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 626
+ components:
+ - type: Transform
+ pos: 5.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 685
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 687
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeFourway
+ entities:
+ - uid: 271
+ components:
+ - type: Transform
+ pos: 3.5,-11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeStraight
+ entities:
+ - uid: 73
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 127
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 128
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 129
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 131
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 158
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 162
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 176
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 178
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 181
+ components:
+ - type: Transform
+ pos: 6.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 183
+ components:
+ - type: Transform
+ pos: 6.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 242
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 244
+ components:
+ - type: Transform
+ pos: -1.5,-9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 248
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 249
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 250
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 251
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 252
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 253
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 254
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 255
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 260
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 261
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 263
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 264
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 269
+ components:
+ - type: Transform
+ pos: 2.5,-11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 270
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 272
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 273
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 281
+ components:
+ - type: Transform
+ pos: 2.5,-12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 283
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 288
+ components:
+ - type: Transform
+ pos: 2.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 289
+ components:
+ - type: Transform
+ pos: 2.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 291
+ components:
+ - type: Transform
+ pos: 2.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 308
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 309
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 310
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 314
+ components:
+ - type: Transform
+ pos: 3.5,-12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 317
+ components:
+ - type: Transform
+ pos: -6.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 318
+ components:
+ - type: Transform
+ pos: -6.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 319
+ components:
+ - type: Transform
+ pos: -6.5,-12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 320
+ components:
+ - type: Transform
+ pos: -6.5,-11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 321
+ components:
+ - type: Transform
+ pos: -6.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 342
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 346
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 349
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 351
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 352
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 355
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 402
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 423
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 437
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 476
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 477
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 532
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 628
+ components:
+ - type: Transform
+ pos: 6.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 644
+ components:
+ - type: Transform
+ pos: 6.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 671
+ components:
+ - type: Transform
+ pos: -3.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 672
+ components:
+ - type: Transform
+ pos: -3.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 673
+ components:
+ - type: Transform
+ pos: -3.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 677
+ components:
+ - type: Transform
+ pos: -5.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 678
+ components:
+ - type: Transform
+ pos: -5.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 680
+ components:
+ - type: Transform
+ pos: -5.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 681
+ components:
+ - type: Transform
+ pos: -5.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 682
+ components:
+ - type: Transform
+ pos: -5.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 683
+ components:
+ - type: Transform
+ pos: -5.5,-20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 692
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 699
+ components:
+ - type: Transform
+ pos: 1.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 700
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 701
+ components:
+ - type: Transform
+ pos: -0.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 702
+ components:
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 736
+ components:
+ - type: Transform
+ pos: 6.5,-20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeTJunction
+ entities:
+ - uid: 179
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 182
+ components:
+ - type: Transform
+ pos: -3.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 206
+ components:
+ - type: Transform
+ pos: 1.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 245
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 246
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 247
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 262
+ components:
+ - type: Transform
+ pos: 2.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 292
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 316
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 347
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 359
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 422
+ components:
+ - type: Transform
+ pos: -1.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 625
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPort
+ entities:
+ - uid: 240
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-11.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasVentPump
+ entities:
+ - uid: 266
+ components:
+ - type: Transform
+ pos: 6.5,-10.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 323
+ components:
+ - type: Transform
+ pos: -5.5,-9.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 426
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-16.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 496
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-21.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 590
+ components:
+ - type: Transform
+ pos: 3.5,-10.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 633
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-15.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 646
+ components:
+ - type: Transform
+ pos: 1.5,-3.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 727
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-21.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasVentScrubber
+ entities:
+ - uid: 241
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-10.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 265
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-10.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 300
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-19.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 322
+ components:
+ - type: Transform
+ pos: -6.5,-9.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 344
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-16.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 353
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-16.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 529
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-19.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 591
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-11.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 698
+ components:
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GravityGeneratorMini
+ entities:
+ - uid: 174
+ components:
+ - type: Transform
+ pos: 8.5,-10.5
+ parent: 2
+- proto: Grille
+ entities:
+ - uid: 7
+ components:
+ - type: Transform
+ pos: -3.5,-3.5
+ parent: 2
+ - uid: 11
+ components:
+ - type: Transform
+ pos: 4.5,-3.5
+ parent: 2
+ - uid: 12
+ components:
+ - type: Transform
+ pos: 4.5,-2.5
+ parent: 2
+ - uid: 15
+ components:
+ - type: Transform
+ pos: 1.5,0.5
+ parent: 2
+ - uid: 17
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 2
+ - uid: 18
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 2
+ - uid: 20
+ components:
+ - type: Transform
+ pos: -3.5,-4.5
+ parent: 2
+ - uid: 22
+ components:
+ - type: Transform
+ pos: -3.5,-2.5
+ parent: 2
+ - uid: 32
+ components:
+ - type: Transform
+ pos: 4.5,-4.5
+ parent: 2
+ - uid: 35
+ components:
+ - type: Transform
+ pos: -6.5,-6.5
+ parent: 2
+ - uid: 36
+ components:
+ - type: Transform
+ pos: -7.5,-6.5
+ parent: 2
+ - uid: 38
+ components:
+ - type: Transform
+ pos: -8.5,-8.5
+ parent: 2
+ - uid: 39
+ components:
+ - type: Transform
+ pos: -8.5,-9.5
+ parent: 2
+ - uid: 40
+ components:
+ - type: Transform
+ pos: -8.5,-10.5
+ parent: 2
+ - uid: 48
+ components:
+ - type: Transform
+ pos: -0.5,-8.5
+ parent: 2
+ - uid: 49
+ components:
+ - type: Transform
+ pos: 1.5,-8.5
+ parent: 2
+ - uid: 50
+ components:
+ - type: Transform
+ pos: 8.5,-6.5
+ parent: 2
+ - uid: 51
+ components:
+ - type: Transform
+ pos: 7.5,-6.5
+ parent: 2
+ - uid: 52
+ components:
+ - type: Transform
+ pos: 9.5,-7.5
+ parent: 2
+ - uid: 54
+ components:
+ - type: Transform
+ pos: 9.5,-9.5
+ parent: 2
+ - uid: 55
+ components:
+ - type: Transform
+ pos: 9.5,-8.5
+ parent: 2
+ - uid: 63
+ components:
+ - type: Transform
+ pos: -1.5,-9.5
+ parent: 2
+ - uid: 82
+ components:
+ - type: Transform
+ pos: 8.5,-13.5
+ parent: 2
+ - uid: 86
+ components:
+ - type: Transform
+ pos: -7.5,-14.5
+ parent: 2
+ - uid: 87
+ components:
+ - type: Transform
+ pos: -7.5,-15.5
+ parent: 2
+ - uid: 92
+ components:
+ - type: Transform
+ pos: -7.5,-16.5
+ parent: 2
+ - uid: 98
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-12.5
+ parent: 2
+ - uid: 123
+ components:
+ - type: Transform
+ pos: 8.5,-16.5
+ parent: 2
+ - uid: 124
+ components:
+ - type: Transform
+ pos: 8.5,-14.5
+ parent: 2
+ - uid: 125
+ components:
+ - type: Transform
+ pos: 8.5,-15.5
+ parent: 2
+ - uid: 276
+ components:
+ - type: Transform
+ pos: 8.5,-23.5
+ parent: 2
+ - uid: 298
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-14.5
+ parent: 2
+ - uid: 302
+ components:
+ - type: Transform
+ pos: 7.5,-23.5
+ parent: 2
+ - uid: 330
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-13.5
+ parent: 2
+ - uid: 398
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-17.5
+ parent: 2
+ - uid: 623
+ components:
+ - type: Transform
+ pos: 6.5,-23.5
+ parent: 2
+ - uid: 632
+ components:
+ - type: Transform
+ pos: -1.5,-20.5
+ parent: 2
+ - uid: 647
+ components:
+ - type: Transform
+ pos: -6.5,-23.5
+ parent: 2
+ - uid: 648
+ components:
+ - type: Transform
+ pos: 10.5,-21.5
+ parent: 2
+ - uid: 651
+ components:
+ - type: Transform
+ pos: 10.5,-20.5
+ parent: 2
+ - uid: 655
+ components:
+ - type: Transform
+ pos: -2.5,-20.5
+ parent: 2
+ - uid: 669
+ components:
+ - type: Transform
+ pos: -8.5,-18.5
+ parent: 2
+ - uid: 686
+ components:
+ - type: Transform
+ pos: -0.5,-20.5
+ parent: 2
+ - uid: 741
+ components:
+ - type: Transform
+ pos: -4.5,-22.5
+ parent: 2
+ - uid: 751
+ components:
+ - type: Transform
+ pos: -9.5,-20.5
+ parent: 2
+- proto: Gyroscope
+ entities:
+ - uid: 403
+ components:
+ - type: Transform
+ pos: 7.5,-10.5
+ parent: 2
+- proto: HospitalCurtainsOpen
+ entities:
+ - uid: 490
+ components:
+ - type: Transform
+ pos: -5.5,-11.5
+ parent: 2
+- proto: hydroponicsTrayAnchored
+ entities:
+ - uid: 133
+ components:
+ - type: Transform
+ pos: -2.5,-2.5
+ parent: 2
+ - uid: 134
+ components:
+ - type: Transform
+ pos: -2.5,-3.5
+ parent: 2
+ - uid: 135
+ components:
+ - type: Transform
+ pos: -2.5,-4.5
+ parent: 2
+ - uid: 136
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 2
+ - uid: 137
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 2
+ - uid: 138
+ components:
+ - type: Transform
+ pos: 1.5,-0.5
+ parent: 2
+ - uid: 139
+ components:
+ - type: Transform
+ pos: 3.5,-2.5
+ parent: 2
+ - uid: 140
+ components:
+ - type: Transform
+ pos: 3.5,-3.5
+ parent: 2
+ - uid: 141
+ components:
+ - type: Transform
+ pos: 3.5,-4.5
+ parent: 2
+- proto: KitchenDeepFryer
+ entities:
+ - uid: 372
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-17.5
+ parent: 2
+- proto: KitchenElectricGrill
+ entities:
+ - uid: 223
+ components:
+ - type: Transform
+ pos: 7.5,-16.5
+ parent: 2
+- proto: KitchenKnife
+ entities:
+ - uid: 380
+ components:
+ - type: Transform
+ pos: 5.541848,-15.96916
+ parent: 2
+- proto: KitchenMicrowave
+ entities:
+ - uid: 374
+ components:
+ - type: Transform
+ pos: 7.5,-14.5
+ parent: 2
+- proto: KitchenReagentGrinder
+ entities:
+ - uid: 375
+ components:
+ - type: Transform
+ pos: 7.5,-15.5
+ parent: 2
+- proto: KitchenSpike
+ entities:
+ - uid: 562
+ components:
+ - type: Transform
+ pos: 9.5,-20.5
+ parent: 2
+- proto: LargeBeaker
+ entities:
+ - uid: 1
+ components:
+ - type: Transform
+ pos: 4.6986766,-15.301495
+ parent: 2
+ - uid: 379
+ components:
+ - type: Transform
+ pos: 4.9903436,-15.44743
+ parent: 2
+- proto: LockerBotanistFilled
+ entities:
+ - uid: 143
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 2
+- proto: LockerCaptainFilled
+ entities:
+ - uid: 173
+ components:
+ - type: Transform
+ pos: 5.5,-9.5
+ parent: 2
+- proto: LockerFreezer
+ entities:
+ - uid: 740
+ components:
+ - type: Transform
+ pos: 9.5,-19.5
+ parent: 2
+- proto: MopBucket
+ entities:
+ - uid: 185
+ components:
+ - type: Transform
+ pos: 9.5,-21.5
+ parent: 2
+- proto: MopItem
+ entities:
+ - uid: 763
+ components:
+ - type: Transform
+ pos: 9.458187,-21.50558
+ parent: 2
+- proto: NoticeBoardNF
+ entities:
+ - uid: 728
+ components:
+ - type: Transform
+ pos: -6.5,-20.5
+ parent: 2
+- proto: OilJarCorn
+ entities:
+ - uid: 377
+ components:
+ - type: Transform
+ pos: 2.665164,-19.025154
+ parent: 2
+- proto: OilJarGhee
+ entities:
+ - uid: 376
+ components:
+ - type: Transform
+ pos: 2.3039377,-19.24173
+ parent: 2
+- proto: OilJarOlive
+ entities:
+ - uid: 365
+ components:
+ - type: Transform
+ pos: 2.6987016,-19.387365
+ parent: 2
+- proto: PaperBin10
+ entities:
+ - uid: 404
+ components:
+ - type: Transform
+ pos: 8.5,-8.5
+ parent: 2
+- proto: PortableGeneratorPacmanShuttle
+ entities:
+ - uid: 409
+ components:
+ - type: Transform
+ pos: -3.5,-10.5
+ parent: 2
+ - type: FuelGenerator
+ on: False
+ - type: Physics
+ bodyType: Static
+ - uid: 411
+ components:
+ - type: Transform
+ pos: -3.5,-11.5
+ parent: 2
+ - type: FuelGenerator
+ on: False
+ - type: Physics
+ bodyType: Static
+- proto: PottedPlantRandom
+ entities:
+ - uid: 103
+ components:
+ - type: Transform
+ pos: -6.5,-7.5
+ parent: 2
+ - uid: 108
+ components:
+ - type: Transform
+ pos: -8.5,-20.5
+ parent: 2
+ - uid: 455
+ components:
+ - type: Transform
+ pos: -4.5,-19.5
+ parent: 2
+ - uid: 530
+ components:
+ - type: Transform
+ pos: -6.5,-22.5
+ parent: 2
+ - uid: 571
+ components:
+ - type: Transform
+ pos: 0.5,-19.5
+ parent: 2
+- proto: Poweredlight
+ entities:
+ - uid: 106
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-6.5
+ parent: 2
+ - uid: 201
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-17.5
+ parent: 2
+ - uid: 258
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,-21.5
+ parent: 2
+ - uid: 389
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-6.5
+ parent: 2
+ - uid: 390
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-11.5
+ parent: 2
+ - uid: 391
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-1.5
+ parent: 2
+ - uid: 392
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-5.5
+ parent: 2
+ - uid: 393
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 6.5,-8.5
+ parent: 2
+ - uid: 395
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,-13.5
+ parent: 2
+ - uid: 397
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-17.5
+ parent: 2
+ - uid: 400
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-9.5
+ parent: 2
+ - uid: 408
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -0.5,-13.5
+ parent: 2
+ - uid: 430
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-12.5
+ parent: 2
+ - uid: 578
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 9.5,-19.5
+ parent: 2
+- proto: PoweredSmallLight
+ entities:
+ - uid: 101
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-20.5
+ parent: 2
+ - uid: 160
+ components:
+ - type: Transform
+ pos: -3.5,-10.5
+ parent: 2
+ - uid: 275
+ components:
+ - type: Transform
+ pos: -6.5,-21.5
+ parent: 2
+- proto: Railing
+ entities:
+ - uid: 153
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-3.5
+ parent: 2
+ - uid: 154
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-4.5
+ parent: 2
+ - uid: 155
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-3.5
+ parent: 2
+ - uid: 156
+ components:
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 2
+- proto: RailingCornerSmall
+ entities:
+ - uid: 142
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 2
+ - uid: 150
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-4.5
+ parent: 2
+ - uid: 151
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-2.5
+ parent: 2
+ - uid: 152
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-2.5
+ parent: 2
+- proto: RandomPainting
+ entities:
+ - uid: 664
+ components:
+ - type: Transform
+ pos: -5.5,-7.5
+ parent: 2
+ - uid: 665
+ components:
+ - type: Transform
+ pos: -4.5,-12.5
+ parent: 2
+ - uid: 697
+ components:
+ - type: Transform
+ pos: 1.5,-19.5
+ parent: 2
+- proto: RandomPosterAny
+ entities:
+ - uid: 62
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-9.5
+ parent: 2
+- proto: RobustHarvestChemistryBottle
+ entities:
+ - uid: 609
+ components:
+ - type: Transform
+ pos: 1.5841825,-3.1677728
+ parent: 2
+ - uid: 610
+ components:
+ - type: Transform
+ pos: 1.7230716,-3.306758
+ parent: 2
+- proto: SeedExtractor
+ entities:
+ - uid: 146
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 2
+- proto: SheetPlasma
+ entities:
+ - uid: 341
+ components:
+ - type: Transform
+ pos: -2.5199935,-10.448381
+ parent: 2
+- proto: ShuttersNormalOpen
+ entities:
+ - uid: 293
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-3.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 239
+ - uid: 294
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-4.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 239
+ - uid: 295
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-4.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 239
+ - uid: 296
+ components:
+ - type: Transform
+ pos: 1.5,0.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 239
+ - uid: 311
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-2.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 239
+ - uid: 312
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-3.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 239
+ - uid: 360
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 239
+ - uid: 361
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 239
+ - uid: 413
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-2.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 239
+ - uid: 540
+ components:
+ - type: Transform
+ pos: 7.5,-23.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 414
+ - uid: 639
+ components:
+ - type: Transform
+ pos: 6.5,-23.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 414
+ - uid: 652
+ components:
+ - type: Transform
+ pos: -6.5,-23.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 670
+ - uid: 653
+ components:
+ - type: Transform
+ pos: 8.5,-23.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 414
+ - uid: 659
+ components:
+ - type: Transform
+ pos: -8.5,-18.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 670
+ - uid: 663
+ components:
+ - type: Transform
+ pos: -7.5,-23.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 670
+ - uid: 690
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-20.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 414
+ - uid: 720
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-8.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 729
+ - uid: 721
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-9.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 729
+ - uid: 722
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-10.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 729
+ - uid: 723
+ components:
+ - type: Transform
+ pos: -7.5,-6.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 729
+ - uid: 724
+ components:
+ - type: Transform
+ pos: -6.5,-6.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 729
+ - uid: 731
+ components:
+ - type: Transform
+ pos: 7.5,-6.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 730
+ - uid: 732
+ components:
+ - type: Transform
+ pos: 8.5,-6.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 730
+ - uid: 733
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-7.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 730
+ - uid: 734
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-8.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 730
+ - uid: 735
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-9.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 730
+ - uid: 737
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-21.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 414
+ - uid: 753
+ components:
+ - type: Transform
+ pos: -9.5,-20.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 670
+ - uid: 758
+ components:
+ - type: Transform
+ pos: -5.5,-23.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 670
+ - uid: 759
+ components:
+ - type: Transform
+ pos: -9.5,-21.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 670
+ - uid: 760
+ components:
+ - type: Transform
+ pos: -9.5,-19.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 670
+ - uid: 762
+ components:
+ - type: Transform
+ pos: -4.5,-22.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 670
+- proto: ShuttersWindowOpen
+ entities:
+ - uid: 313
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-16.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 744
+ - uid: 383
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-15.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 744
+ - uid: 385
+ components:
+ - type: Transform
+ pos: -0.5,-14.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 387
+ - uid: 386
+ components:
+ - type: Transform
+ pos: 0.5,-14.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 387
+- proto: ShuttleWindow
+ entities:
+ - uid: 85
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-13.5
+ parent: 2
+ - uid: 187
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 2
+ - uid: 188
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 2
+ - uid: 189
+ components:
+ - type: Transform
+ pos: 1.5,0.5
+ parent: 2
+ - uid: 190
+ components:
+ - type: Transform
+ pos: -3.5,-2.5
+ parent: 2
+ - uid: 191
+ components:
+ - type: Transform
+ pos: -3.5,-3.5
+ parent: 2
+ - uid: 192
+ components:
+ - type: Transform
+ pos: -3.5,-4.5
+ parent: 2
+ - uid: 193
+ components:
+ - type: Transform
+ pos: 4.5,-2.5
+ parent: 2
+ - uid: 194
+ components:
+ - type: Transform
+ pos: 4.5,-3.5
+ parent: 2
+ - uid: 195
+ components:
+ - type: Transform
+ pos: 4.5,-4.5
+ parent: 2
+ - uid: 196
+ components:
+ - type: Transform
+ pos: 7.5,-6.5
+ parent: 2
+ - uid: 197
+ components:
+ - type: Transform
+ pos: 8.5,-6.5
+ parent: 2
+ - uid: 198
+ components:
+ - type: Transform
+ pos: 9.5,-7.5
+ parent: 2
+ - uid: 199
+ components:
+ - type: Transform
+ pos: 9.5,-8.5
+ parent: 2
+ - uid: 200
+ components:
+ - type: Transform
+ pos: 9.5,-9.5
+ parent: 2
+ - uid: 203
+ components:
+ - type: Transform
+ pos: 1.5,-8.5
+ parent: 2
+ - uid: 204
+ components:
+ - type: Transform
+ pos: -0.5,-8.5
+ parent: 2
+ - uid: 205
+ components:
+ - type: Transform
+ pos: -1.5,-9.5
+ parent: 2
+ - uid: 207
+ components:
+ - type: Transform
+ pos: -7.5,-6.5
+ parent: 2
+ - uid: 208
+ components:
+ - type: Transform
+ pos: -6.5,-6.5
+ parent: 2
+ - uid: 209
+ components:
+ - type: Transform
+ pos: -8.5,-8.5
+ parent: 2
+ - uid: 210
+ components:
+ - type: Transform
+ pos: -8.5,-9.5
+ parent: 2
+ - uid: 211
+ components:
+ - type: Transform
+ pos: -8.5,-10.5
+ parent: 2
+ - uid: 212
+ components:
+ - type: Transform
+ pos: -7.5,-14.5
+ parent: 2
+ - uid: 213
+ components:
+ - type: Transform
+ pos: -7.5,-15.5
+ parent: 2
+ - uid: 214
+ components:
+ - type: Transform
+ pos: -7.5,-16.5
+ parent: 2
+ - uid: 215
+ components:
+ - type: Transform
+ pos: 8.5,-13.5
+ parent: 2
+ - uid: 216
+ components:
+ - type: Transform
+ pos: 8.5,-14.5
+ parent: 2
+ - uid: 217
+ components:
+ - type: Transform
+ pos: 8.5,-15.5
+ parent: 2
+ - uid: 297
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-14.5
+ parent: 2
+ - uid: 362
+ components:
+ - type: Transform
+ pos: 8.5,-16.5
+ parent: 2
+ - uid: 431
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-12.5
+ parent: 2
+ - uid: 432
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-17.5
+ parent: 2
+ - uid: 542
+ components:
+ - type: Transform
+ pos: -1.5,-20.5
+ parent: 2
+ - uid: 563
+ components:
+ - type: Transform
+ pos: 10.5,-20.5
+ parent: 2
+ - uid: 565
+ components:
+ - type: Transform
+ pos: -0.5,-20.5
+ parent: 2
+ - uid: 635
+ components:
+ - type: Transform
+ pos: -6.5,-23.5
+ parent: 2
+ - uid: 641
+ components:
+ - type: Transform
+ pos: 8.5,-23.5
+ parent: 2
+ - uid: 642
+ components:
+ - type: Transform
+ pos: 7.5,-23.5
+ parent: 2
+ - uid: 643
+ components:
+ - type: Transform
+ pos: 6.5,-23.5
+ parent: 2
+ - uid: 684
+ components:
+ - type: Transform
+ pos: -2.5,-20.5
+ parent: 2
+ - uid: 688
+ components:
+ - type: Transform
+ pos: -8.5,-18.5
+ parent: 2
+ - uid: 713
+ components:
+ - type: Transform
+ pos: 10.5,-21.5
+ parent: 2
+ - uid: 752
+ components:
+ - type: Transform
+ pos: -9.5,-20.5
+ parent: 2
+ - uid: 761
+ components:
+ - type: Transform
+ pos: -4.5,-22.5
+ parent: 2
+- proto: SignalButtonDirectional
+ entities:
+ - uid: 239
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-6.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 294:
+ - Pressed: Toggle
+ 293:
+ - Pressed: Toggle
+ 413:
+ - Pressed: Toggle
+ 360:
+ - Pressed: Toggle
+ 361:
+ - Pressed: Toggle
+ 296:
+ - Pressed: Toggle
+ 311:
+ - Pressed: Toggle
+ 312:
+ - Pressed: Toggle
+ 295:
+ - Pressed: Toggle
+ - uid: 387
+ components:
+ - type: Transform
+ pos: 0.5,-12.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 386:
+ - Pressed: Toggle
+ 385:
+ - Pressed: Toggle
+ - uid: 414
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-20.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 690:
+ - Pressed: Toggle
+ 737:
+ - Pressed: Toggle
+ 653:
+ - Pressed: Toggle
+ 540:
+ - Pressed: Toggle
+ 639:
+ - Pressed: Toggle
+ - uid: 670
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-20.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 758:
+ - Pressed: Toggle
+ 652:
+ - Pressed: Toggle
+ 663:
+ - Pressed: Toggle
+ 759:
+ - Pressed: Toggle
+ 753:
+ - Pressed: Toggle
+ 760:
+ - Pressed: Toggle
+ 659:
+ - Pressed: Toggle
+ 762:
+ - Pressed: Toggle
+ - uid: 729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-8.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 722:
+ - Pressed: Toggle
+ 721:
+ - Pressed: Toggle
+ 720:
+ - Pressed: Toggle
+ 723:
+ - Pressed: Toggle
+ 724:
+ - Pressed: Toggle
+ - uid: 730
+ components:
+ - type: Transform
+ pos: 6.5,-7.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 731:
+ - Pressed: Toggle
+ 732:
+ - Pressed: Toggle
+ 733:
+ - Pressed: Toggle
+ 734:
+ - Pressed: Toggle
+ 735:
+ - Pressed: Toggle
+ - uid: 744
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-17.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 313:
+ - Pressed: Toggle
+ 383:
+ - Pressed: Toggle
+- proto: SignDirectionalFood
+ entities:
+ - uid: 607
+ components:
+ - type: Transform
+ pos: 1.5,-7.5
+ parent: 2
+- proto: SignDirectionalHydro
+ entities:
+ - uid: 606
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-12.5
+ parent: 2
+- proto: SinkWide
+ entities:
+ - uid: 221
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-19.5
+ parent: 2
+- proto: SMESBasic
+ entities:
+ - uid: 474
+ components:
+ - type: Transform
+ pos: -2.5,-11.5
+ parent: 2
+- proto: SpawnMobAlexander
+ entities:
+ - uid: 592
+ components:
+ - type: Transform
+ pos: 5.5,-18.5
+ parent: 2
+- proto: SpawnMobCow
+ entities:
+ - uid: 132
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 2
+- proto: SpawnPointBotanist
+ entities:
+ - uid: 575
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 2
+- proto: SpawnPointChef
+ entities:
+ - uid: 572
+ components:
+ - type: Transform
+ pos: 4.5,-14.5
+ parent: 2
+- proto: SpawnPointLatejoin
+ entities:
+ - uid: 650
+ components:
+ - type: Transform
+ pos: 1.5,-10.5
+ parent: 2
+- proto: SpawnPointPilot
+ entities:
+ - uid: 661
+ components:
+ - type: Transform
+ pos: 7.5,-9.5
+ parent: 2
+- proto: SpawnPointServiceWorker
+ entities:
+ - uid: 412
+ components:
+ - type: Transform
+ pos: 0.5,-13.5
+ parent: 2
+- proto: SprayBottleSpaceCleaner
+ entities:
+ - uid: 766
+ components:
+ - type: Transform
+ pos: 9.812354,-21.703634
+ parent: 2
+- proto: SubstationWallBasic
+ entities:
+ - uid: 338
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-12.5
+ parent: 2
+- proto: SuitStorageWallmountEVA
+ entities:
+ - uid: 458
+ components:
+ - type: Transform
+ pos: 2.5,-9.5
+ parent: 2
+ - type: Physics
+ canCollide: False
+ - uid: 493
+ components:
+ - type: Transform
+ pos: 3.5,-9.5
+ parent: 2
+ - type: Physics
+ canCollide: False
+- proto: Table
+ entities:
+ - uid: 3
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-19.5
+ parent: 2
+ - uid: 169
+ components:
+ - type: Transform
+ pos: 8.5,-7.5
+ parent: 2
+ - uid: 175
+ components:
+ - type: Transform
+ pos: 8.5,-8.5
+ parent: 2
+ - uid: 363
+ components:
+ - type: Transform
+ pos: 4.5,-15.5
+ parent: 2
+ - uid: 364
+ components:
+ - type: Transform
+ pos: 5.5,-15.5
+ parent: 2
+ - uid: 366
+ components:
+ - type: Transform
+ pos: 3.5,-16.5
+ parent: 2
+ - uid: 367
+ components:
+ - type: Transform
+ pos: 4.5,-16.5
+ parent: 2
+ - uid: 368
+ components:
+ - type: Transform
+ pos: 3.5,-15.5
+ parent: 2
+ - uid: 369
+ components:
+ - type: Transform
+ pos: 5.5,-16.5
+ parent: 2
+ - uid: 370
+ components:
+ - type: Transform
+ pos: 7.5,-16.5
+ parent: 2
+ - uid: 371
+ components:
+ - type: Transform
+ pos: 7.5,-15.5
+ parent: 2
+ - uid: 373
+ components:
+ - type: Transform
+ pos: 7.5,-14.5
+ parent: 2
+- proto: TableCounterMetal
+ entities:
+ - uid: 304
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-15.5
+ parent: 2
+ - uid: 305
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-16.5
+ parent: 2
+- proto: TableCounterWood
+ entities:
+ - uid: 287
+ components:
+ - type: Transform
+ pos: 0.5,-14.5
+ parent: 2
+ - uid: 350
+ components:
+ - type: Transform
+ pos: -0.5,-14.5
+ parent: 2
+- proto: TableReinforcedGlass
+ entities:
+ - uid: 608
+ components:
+ - type: Transform
+ pos: 1.5,-3.5
+ parent: 2
+- proto: TableWood
+ entities:
+ - uid: 324
+ components:
+ - type: Transform
+ pos: -7.5,-9.5
+ parent: 2
+ - uid: 325
+ components:
+ - type: Transform
+ pos: -6.5,-9.5
+ parent: 2
+ - uid: 424
+ components:
+ - type: Transform
+ pos: -2.5,-18.5
+ parent: 2
+ - uid: 425
+ components:
+ - type: Transform
+ pos: -2.5,-17.5
+ parent: 2
+ - uid: 427
+ components:
+ - type: Transform
+ pos: -6.5,-17.5
+ parent: 2
+ - uid: 428
+ components:
+ - type: Transform
+ pos: -6.5,-13.5
+ parent: 2
+ - uid: 429
+ components:
+ - type: Transform
+ pos: -4.5,-14.5
+ parent: 2
+ - uid: 442
+ components:
+ - type: Transform
+ pos: -2.5,-19.5
+ parent: 2
+ - uid: 478
+ components:
+ - type: Transform
+ pos: -3.5,-14.5
+ parent: 2
+- proto: Thruster
+ entities:
+ - uid: 105
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-17.5
+ parent: 2
+ - uid: 224
+ components:
+ - type: Transform
+ pos: -6.5,-5.5
+ parent: 2
+ - uid: 225
+ components:
+ - type: Transform
+ pos: 7.5,-5.5
+ parent: 2
+ - uid: 259
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-17.5
+ parent: 2
+ - uid: 486
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-5.5
+ parent: 2
+ - uid: 544
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-5.5
+ parent: 2
+ - uid: 756
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-21.5
+ parent: 2
+ - uid: 757
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-21.5
+ parent: 2
+- proto: VariantCubeBox
+ entities:
+ - uid: 232
+ components:
+ - type: Transform
+ pos: 4.6436033,-16.34774
+ parent: 2
+- proto: VendingMachineBooze
+ entities:
+ - uid: 164
+ components:
+ - type: Transform
+ pos: 5.5,-12.5
+ parent: 2
+- proto: VendingMachineChefDrobe
+ entities:
+ - uid: 689
+ components:
+ - type: Transform
+ pos: 6.5,-21.5
+ parent: 2
+- proto: VendingMachineChefvend
+ entities:
+ - uid: 165
+ components:
+ - type: Transform
+ pos: 6.5,-12.5
+ parent: 2
+- proto: VendingMachineCondiments
+ entities:
+ - uid: 513
+ components:
+ - type: Transform
+ pos: -0.5,-14.5
+ parent: 2
+- proto: VendingMachineDinnerware
+ entities:
+ - uid: 388
+ components:
+ - type: Transform
+ pos: 7.5,-12.5
+ parent: 2
+- proto: VendingMachineHydrobe
+ entities:
+ - uid: 739
+ components:
+ - type: Transform
+ pos: 6.5,-22.5
+ parent: 2
+- proto: VendingMachineNutri
+ entities:
+ - uid: 144
+ components:
+ - type: Transform
+ pos: -1.5,-5.5
+ parent: 2
+- proto: VendingMachineSeedsUnlocked
+ entities:
+ - uid: 145
+ components:
+ - type: Transform
+ pos: 2.5,-5.5
+ parent: 2
+- proto: WallShuttle
+ entities:
+ - uid: 4
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,-0.5
+ parent: 2
+ - uid: 5
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -2.5,-0.5
+ parent: 2
+ - uid: 6
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -2.5,-6.5
+ parent: 2
+ - uid: 8
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -1.5,-0.5
+ parent: 2
+ - uid: 9
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,-6.5
+ parent: 2
+ - uid: 10
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 2.5,-0.5
+ parent: 2
+ - uid: 13
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,-1.5
+ parent: 2
+ - uid: 14
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,-5.5
+ parent: 2
+ - uid: 16
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 2.5,-6.5
+ parent: 2
+ - uid: 19
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -1.5,-6.5
+ parent: 2
+ - uid: 21
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -2.5,-5.5
+ parent: 2
+ - uid: 23
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -2.5,-1.5
+ parent: 2
+ - uid: 33
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 1.5,-7.5
+ parent: 2
+ - uid: 34
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -0.5,-7.5
+ parent: 2
+ - uid: 41
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -7.5,-11.5
+ parent: 2
+ - uid: 42
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -6.5,-11.5
+ parent: 2
+ - uid: 43
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -4.5,-11.5
+ parent: 2
+ - uid: 44
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -4.5,-10.5
+ parent: 2
+ - uid: 45
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -4.5,-9.5
+ parent: 2
+ - uid: 46
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -4.5,-8.5
+ parent: 2
+ - uid: 47
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -5.5,-7.5
+ parent: 2
+ - uid: 53
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 6.5,-7.5
+ parent: 2
+ - uid: 56
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 9.5,-10.5
+ parent: 2
+ - uid: 57
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 5.5,-8.5
+ parent: 2
+ - uid: 58
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,-9.5
+ parent: 2
+ - uid: 59
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 1.5,-9.5
+ parent: 2
+ - uid: 60
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -0.5,-9.5
+ parent: 2
+ - uid: 61
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,-9.5
+ parent: 2
+ - uid: 66
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -4.5,-12.5
+ parent: 2
+ - uid: 67
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,-12.5
+ parent: 2
+ - uid: 68
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -2.5,-12.5
+ parent: 2
+ - uid: 69
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -1.5,-12.5
+ parent: 2
+ - uid: 70
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -0.5,-12.5
+ parent: 2
+ - uid: 71
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -0.5,-11.5
+ parent: 2
+ - uid: 72
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,-12.5
+ parent: 2
+ - uid: 75
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,-12.5
+ parent: 2
+ - uid: 76
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,-11.5
+ parent: 2
+ - uid: 77
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 5.5,-11.5
+ parent: 2
+ - uid: 78
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 6.5,-11.5
+ parent: 2
+ - uid: 79
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 7.5,-11.5
+ parent: 2
+ - uid: 80
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 8.5,-11.5
+ parent: 2
+ - uid: 81
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 8.5,-12.5
+ parent: 2
+ - uid: 89
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -8.5,-7.5
+ parent: 2
+ - uid: 112
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 1.5,-20.5
+ parent: 2
+ - uid: 117
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 2.5,-20.5
+ parent: 2
+ - uid: 119
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 1.5,-19.5
+ parent: 2
+ - uid: 121
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 7.5,-18.5
+ parent: 2
+ - uid: 122
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 8.5,-17.5
+ parent: 2
+ - uid: 157
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,-20.5
+ parent: 2
+ - uid: 159
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,-20.5
+ parent: 2
+ - uid: 166
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,-20.5
+ parent: 2
+ - uid: 282
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 1.5,-14.5
+ parent: 2
+ - uid: 284
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 1.5,-17.5
+ parent: 2
+ - uid: 285
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 1.5,-12.5
+ parent: 2
+ - uid: 286
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 5.5,-21.5
+ parent: 2
+ - uid: 307
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 5.5,-22.5
+ parent: 2
+ - uid: 356
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -2.5,-9.5
+ parent: 2
+ - uid: 357
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 9.5,-22.5
+ parent: 2
+ - uid: 381
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 9.5,-18.5
+ parent: 2
+ - uid: 384
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -4.5,-20.5
+ parent: 2
+ - uid: 489
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 2.5,-9.5
+ parent: 2
+ - uid: 491
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,-9.5
+ parent: 2
+ - uid: 541
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-22.5
+ parent: 2
+ - uid: 579
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 7.5,-20.5
+ parent: 2
+ - uid: 627
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -7.5,-18.5
+ parent: 2
+ - uid: 630
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 6.5,-20.5
+ parent: 2
+ - uid: 631
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -6.5,-20.5
+ parent: 2
+ - uid: 658
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,-20.5
+ parent: 2
+ - uid: 660
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 5.5,-20.5
+ parent: 2
+ - uid: 675
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 10.5,-19.5
+ parent: 2
+ - uid: 693
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -4.5,-21.5
+ parent: 2
+ - uid: 725
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 8.5,-18.5
+ parent: 2
+- proto: WallShuttleDiagonal
+ entities:
+ - uid: 24
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-1.5
+ parent: 2
+ - uid: 25
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-5.5
+ parent: 2
+ - uid: 26
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-7.5
+ parent: 2
+ - uid: 27
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-7.5
+ parent: 2
+ - uid: 28
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-5.5
+ parent: 2
+ - uid: 29
+ components:
+ - type: Transform
+ pos: -3.5,-1.5
+ parent: 2
+ - uid: 30
+ components:
+ - type: Transform
+ pos: -1.5,0.5
+ parent: 2
+ - uid: 31
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,0.5
+ parent: 2
+ - uid: 37
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-6.5
+ parent: 2
+ - uid: 83
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-6.5
+ parent: 2
+ - uid: 88
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-7.5
+ parent: 2
+ - uid: 90
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-11.5
+ parent: 2
+ - uid: 91
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-11.5
+ parent: 2
+ - uid: 93
+ components:
+ - type: Transform
+ pos: 6.5,-6.5
+ parent: 2
+ - uid: 94
+ components:
+ - type: Transform
+ pos: 5.5,-7.5
+ parent: 2
+ - uid: 95
+ components:
+ - type: Transform
+ pos: 4.5,-8.5
+ parent: 2
+ - uid: 96
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-8.5
+ parent: 2
+ - uid: 97
+ components:
+ - type: Transform
+ pos: -8.5,-6.5
+ parent: 2
+ - uid: 104
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-23.5
+ parent: 2
+ - uid: 230
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-21.5
+ parent: 2
+ - uid: 343
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-23.5
+ parent: 2
+ - uid: 421
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-18.5
+ parent: 2
+ - uid: 634
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-18.5
+ parent: 2
+ - uid: 649
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-23.5
+ parent: 2
+ - uid: 654
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-21.5
+ parent: 2
+ - uid: 674
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,-22.5
+ parent: 2
+ - uid: 714
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-23.5
+ parent: 2
+ - uid: 743
+ components:
+ - type: Transform
+ pos: -9.5,-18.5
+ parent: 2
+ - uid: 754
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-22.5
+ parent: 2
+- proto: WarpPointShip
+ entities:
+ - uid: 584
+ components:
+ - type: Transform
+ pos: 0.5,-11.5
+ parent: 2
+- proto: WaterTankHighCapacity
+ entities:
+ - uid: 475
+ components:
+ - type: Transform
+ pos: -0.5,-6.5
+ parent: 2
+- proto: WindoorSecure
+ entities:
+ - uid: 74
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-13.5
+ parent: 2
+- proto: Wrench
+ entities:
+ - uid: 340
+ components:
+ - type: Transform
+ pos: -2.5408268,-10.469231
+ parent: 2
+...
diff --git a/Resources/Maps/_NF/Shuttles/comet.yml b/Resources/Maps/_NF/Shuttles/comet.yml
new file mode 100644
index 000000000000..bd6af2928ef0
--- /dev/null
+++ b/Resources/Maps/_NF/Shuttles/comet.yml
@@ -0,0 +1,4369 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 32: FloorDarkDiagonalMini
+ 34: FloorDarkMini
+ 39: FloorDarkPlastic
+ 105: FloorTechMaint
+ 106: FloorTechMaint2
+ 121: Lattice
+ 122: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 1
+ components:
+ - type: MetaData
+ name: grid
+ - type: Transform
+ parent: invalid
+ - type: MapGrid
+ chunks:
+ 0,0:
+ ind: 0,0
+ tiles: IgAAAAAAJwAAAAABIgAAAAAAIgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAJwAAAAAAIgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAIgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIAAAAAADIAAAAAAAIAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIAAAAAACIAAAAAADIAAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIAAAAAACIAAAAAADIAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIAAAAAAAIAAAAAADIAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIAAAAAACIAAAAAACIAAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIAAAAAACIAAAAAABegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAABIAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIgAAAAAAIgAAAAAAJwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIgAAAAAAJwAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIgAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIAAAAAADIAAAAAABIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIAAAAAABIAAAAAAAIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIAAAAAABIAAAAAAAIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIAAAAAABIAAAAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIAAAAAAAIAAAAAADIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIAAAAAAAIAAAAAAD
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: aQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAJwAAAAADIgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAJwAAAAABIgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAagAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIgAAAAAAJwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAIgAAAAAAJwAAAAAA
+ version: 6
+ -1,1:
+ ind: -1,1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIAAAAAADIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIAAAAAADIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,1:
+ ind: 0,1
+ tiles: IAAAAAACIAAAAAABIAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAAAIAAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-2:
+ ind: -1,-2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAA
+ version: 6
+ 0,-2:
+ ind: 0,-2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ - type: Broadphase
+ - type: Physics
+ bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ - type: Fixtures
+ fixtures: {}
+ - type: OccluderTree
+ - type: SpreaderGrid
+ - type: Shuttle
+ - type: GridPathfinding
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 12: 0,-13
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Caution
+ decals:
+ 13: -2,10
+ - node:
+ angle: 4.71238898038469 rad
+ color: '#FFFFFFFF'
+ id: Caution
+ decals:
+ 14: 2,10
+ - node:
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 18: 3,11
+ 19: 3,10
+ 20: 3,9
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 21: -3,11
+ 22: -3,10
+ 23: -3,9
+ - node:
+ angle: 3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: LoadingArea
+ decals:
+ 10: -2,13
+ 11: 2,13
+ - node:
+ color: '#334E6DC8'
+ id: MiniTileOverlay
+ decals:
+ 62: -3,2
+ 63: -3,1
+ 64: -2,1
+ 65: -1,1
+ 66: 0,1
+ 67: 1,1
+ 68: 2,1
+ 69: 3,1
+ 70: 3,2
+ 71: 0,0
+ 72: 0,-1
+ 73: 0,-2
+ - node:
+ color: '#EFB34196'
+ id: MiniTileOverlay
+ decals:
+ 56: 0,-3
+ 57: 0,-4
+ 58: 0,-5
+ 59: -1,-5
+ 60: -1,-6
+ 61: -1,-7
+ - node:
+ angle: 4.71238898038469 rad
+ color: '#EFB34196'
+ id: MiniTileOverlay
+ decals:
+ 25: 1,7
+ 26: -1,7
+ 27: -1,15
+ 28: 0,15
+ 29: 1,15
+ 30: 0,14
+ 31: 0,13
+ 32: 0,12
+ 33: 0,11
+ 34: 0,10
+ 35: 0,9
+ 36: 0,8
+ 37: 0,7
+ 38: 0,6
+ 39: 0,5
+ 40: -1,5
+ 41: -2,5
+ 42: -3,5
+ 43: -3,4
+ 44: 1,5
+ 45: 2,5
+ 46: 3,5
+ 47: 3,4
+ - node:
+ color: '#334E6DC8'
+ id: MiniTileWhiteEndE
+ decals:
+ 75: 3,0
+ 76: -2,0
+ - node:
+ color: '#EFB34196'
+ id: MiniTileWhiteEndN
+ decals:
+ 48: -1,11
+ 49: 1,11
+ - node:
+ color: '#334E6DC8'
+ id: MiniTileWhiteEndS
+ decals:
+ 78: -1,2
+ 79: 0,2
+ 80: 1,2
+ - node:
+ color: '#EFB34196'
+ id: MiniTileWhiteEndS
+ decals:
+ 50: 1,9
+ 51: -1,9
+ - node:
+ color: '#334E6DC8'
+ id: MiniTileWhiteEndW
+ decals:
+ 74: 2,0
+ 77: -3,0
+ - node:
+ color: '#334E6DC8'
+ id: MiniTileWhiteLineE
+ decals:
+ 81: -2,-1
+ 82: -2,-2
+ - node:
+ color: '#EFB34196'
+ id: MiniTileWhiteLineE
+ decals:
+ 52: 1,10
+ 53: -1,10
+ - node:
+ color: '#334E6DC8'
+ id: MiniTileWhiteLineW
+ decals:
+ 83: 2,-2
+ 84: 2,-1
+ - node:
+ color: '#EFB34196'
+ id: MiniTileWhiteLineW
+ decals:
+ 54: 1,10
+ 55: -1,10
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: StandClear
+ decals:
+ 16: -2.189696,9.003693
+ 17: -2.189696,11.055776
+ - node:
+ angle: 4.71238898038469 rad
+ color: '#FFFFFFFF'
+ id: StandClear
+ decals:
+ 15: 2.1853042,11.024526
+ 24: 2.1935434,8.93114
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineE
+ decals:
+ 0: -1,-8
+ 1: -1,-9
+ 2: -1,-10
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineS
+ decals:
+ 4: 1,-11
+ 6: -1,-8
+ 7: -1,-9
+ 8: -1,-10
+ 9: -1,-11
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineW
+ decals:
+ 3: 0,-11
+ 5: 1,-12
+ - type: GridAtmosphere
+ version: 2
+ data:
+ tiles:
+ 0,0:
+ 0: 65535
+ 0,1:
+ 0: 65535
+ 0,2:
+ 0: 65535
+ 0,3:
+ 0: 65535
+ 1,0:
+ 0: 4369
+ 1: 546
+ 1,1:
+ 0: 4369
+ 1: 8704
+ 1,2:
+ 0: 4369
+ 1: 8226
+ 1,3:
+ 0: 273
+ 1: 4642
+ -1,0:
+ 0: 65535
+ -1,1:
+ 0: 65535
+ -1,2:
+ 0: 65535
+ -1,3:
+ 0: 61439
+ 1: 4096
+ 0,-4:
+ 0: 30579
+ 1: 2180
+ 0,-3:
+ 0: 65527
+ 1: 8
+ 0,-2:
+ 0: 65535
+ 0,-1:
+ 0: 65535
+ 1,-2:
+ 1: 17
+ 0: 4352
+ 1,-1:
+ 0: 4113
+ 1: 256
+ -1,-2:
+ 1: 17
+ 0: 65518
+ -1,-1:
+ 0: 65279
+ 1: 256
+ -1,-3:
+ 1: 274
+ 0: 61164
+ -1,-4:
+ 1: 548
+ 0: 52424
+ -1,4:
+ 0: 3822
+ 0,4:
+ 0: 4095
+ -1,-5:
+ 1: 1152
+ 0: 34816
+ 0,-5:
+ 1: 1073
+ 0: 13056
+ -2,0:
+ 1: 2184
+ -2,1:
+ 1: 34816
+ -2,2:
+ 1: 32904
+ -2,3:
+ 1: 2184
+ 1,-3:
+ 1: 272
+ 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:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+ - type: BecomesStation
+ id: Comet
+- proto: AirAlarm
+ entities:
+ - uid: 544
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-0.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 515
+ - 474
+ - 265
+ - 287
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 545
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-5.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 393
+ - 396
+ - 409
+ - 370
+ - 321
+ - type: AtmosDevice
+ joinedGrid: 1
+- proto: AirlockAtmosphericsGlass
+ entities:
+ - uid: 684
+ components:
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 1
+- proto: AirlockCommandGlass
+ entities:
+ - uid: 689
+ components:
+ - type: Transform
+ pos: 3.5,3.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 736
+ - uid: 690
+ components:
+ - type: Transform
+ pos: -2.5,3.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 736
+- proto: AirlockEngineeringGlass
+ entities:
+ - uid: 9
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-6.5
+ parent: 1
+- proto: AirlockExternalGlass
+ entities:
+ - uid: 443
+ components:
+ - type: Transform
+ pos: -0.5,15.5
+ parent: 1
+ - uid: 637
+ components:
+ - type: Transform
+ pos: 1.5,15.5
+ parent: 1
+ - uid: 648
+ components:
+ - type: Transform
+ pos: 0.5,15.5
+ parent: 1
+- proto: AirlockGlassShuttle
+ entities:
+ - uid: 146
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,18.5
+ parent: 1
+ - uid: 147
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,18.5
+ parent: 1
+ - uid: 148
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,18.5
+ parent: 1
+- proto: AmeController
+ entities:
+ - uid: 200
+ components:
+ - type: Transform
+ pos: 1.5,-10.5
+ parent: 1
+ - type: AmeController
+ injecting: True
+ - type: ContainerContainer
+ containers:
+ AmeFuel: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 201
+- proto: AmeJar
+ entities:
+ - uid: 201
+ components:
+ - type: MetaData
+ flags: InContainer
+ - type: Transform
+ parent: 200
+ - type: Physics
+ canCollide: False
+ - uid: 204
+ components:
+ - type: Transform
+ pos: 1.4955716,-11.5337925
+ parent: 1
+- proto: AmeShielding
+ entities:
+ - uid: 192
+ components:
+ - type: Transform
+ pos: 2.5,-8.5
+ parent: 1
+ - uid: 193
+ components:
+ - type: Transform
+ pos: 0.5,-7.5
+ parent: 1
+ - uid: 194
+ components:
+ - type: Transform
+ pos: 1.5,-9.5
+ parent: 1
+ - uid: 195
+ components:
+ - type: Transform
+ pos: 2.5,-7.5
+ parent: 1
+ - uid: 196
+ components:
+ - type: Transform
+ pos: 0.5,-8.5
+ parent: 1
+ - uid: 197
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-8.5
+ parent: 1
+ - type: PointLight
+ radius: 2
+ enabled: True
+ - uid: 198
+ components:
+ - type: Transform
+ pos: 1.5,-7.5
+ parent: 1
+ - uid: 199
+ components:
+ - type: Transform
+ pos: 2.5,-9.5
+ parent: 1
+ - uid: 440
+ components:
+ - type: Transform
+ pos: 0.5,-9.5
+ parent: 1
+- proto: APCBasic
+ entities:
+ - uid: 17
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-5.5
+ parent: 1
+ - uid: 209
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,8.5
+ parent: 1
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 243
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,9.5
+ parent: 1
+ - uid: 244
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,10.5
+ parent: 1
+ - uid: 245
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,11.5
+ parent: 1
+ - uid: 246
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,9.5
+ parent: 1
+ - uid: 247
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,10.5
+ parent: 1
+ - uid: 248
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,11.5
+ parent: 1
+ - uid: 249
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,18.5
+ parent: 1
+ - uid: 250
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,18.5
+ parent: 1
+ - uid: 251
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,18.5
+ parent: 1
+ - uid: 617
+ components:
+ - type: Transform
+ pos: -1.5,18.5
+ parent: 1
+ - uid: 618
+ components:
+ - type: Transform
+ pos: 2.5,18.5
+ parent: 1
+- proto: AtmosFixBlockerMarker
+ entities:
+ - uid: 32
+ components:
+ - type: Transform
+ pos: 5.5,7.5
+ parent: 1
+ - uid: 34
+ components:
+ - type: Transform
+ pos: 5.5,6.5
+ parent: 1
+ - uid: 35
+ components:
+ - type: Transform
+ pos: -3.5,-7.5
+ parent: 1
+ - uid: 36
+ components:
+ - type: Transform
+ pos: -3.5,-6.5
+ parent: 1
+ - uid: 60
+ components:
+ - type: Transform
+ pos: 0.5,-18.5
+ parent: 1
+ - uid: 180
+ components:
+ - type: Transform
+ pos: -0.5,-18.5
+ parent: 1
+ - uid: 181
+ components:
+ - type: Transform
+ pos: -1.5,-17.5
+ parent: 1
+ - uid: 182
+ components:
+ - type: Transform
+ pos: -1.5,-15.5
+ parent: 1
+ - uid: 183
+ components:
+ - type: Transform
+ pos: -2.5,-14.5
+ parent: 1
+ - uid: 184
+ components:
+ - type: Transform
+ pos: -2.5,-13.5
+ parent: 1
+ - uid: 190
+ components:
+ - type: Transform
+ pos: -4.5,13.5
+ parent: 1
+ - uid: 208
+ components:
+ - type: Transform
+ pos: -4.5,14.5
+ parent: 1
+ - uid: 210
+ components:
+ - type: Transform
+ pos: -3.5,15.5
+ parent: 1
+ - uid: 211
+ components:
+ - type: Transform
+ pos: 4.5,15.5
+ parent: 1
+ - uid: 212
+ components:
+ - type: Transform
+ pos: 5.5,14.5
+ parent: 1
+ - uid: 213
+ components:
+ - type: Transform
+ pos: 5.5,13.5
+ parent: 1
+ - uid: 214
+ components:
+ - type: Transform
+ pos: 5.5,12.5
+ parent: 1
+ - uid: 215
+ components:
+ - type: Transform
+ pos: 5.5,11.5
+ parent: 1
+ - uid: 216
+ components:
+ - type: Transform
+ pos: 4.5,-6.5
+ parent: 1
+ - uid: 217
+ components:
+ - type: Transform
+ pos: 4.5,-9.5
+ parent: 1
+ - uid: 218
+ components:
+ - type: Transform
+ pos: -3.5,-10.5
+ parent: 1
+ - uid: 219
+ components:
+ - type: Transform
+ pos: -3.5,-9.5
+ parent: 1
+ - uid: 220
+ components:
+ - type: Transform
+ pos: -2.5,-11.5
+ parent: 1
+ - uid: 221
+ components:
+ - type: Transform
+ pos: 3.5,-11.5
+ parent: 1
+ - uid: 222
+ components:
+ - type: Transform
+ pos: 3.5,-13.5
+ parent: 1
+ - uid: 223
+ components:
+ - type: Transform
+ pos: 3.5,-14.5
+ parent: 1
+ - uid: 224
+ components:
+ - type: Transform
+ pos: -3.5,-1.5
+ parent: 1
+ - uid: 225
+ components:
+ - type: Transform
+ pos: 5.5,0.5
+ parent: 1
+ - uid: 226
+ components:
+ - type: Transform
+ pos: 4.5,-1.5
+ parent: 1
+ - uid: 227
+ components:
+ - type: Transform
+ pos: 5.5,1.5
+ parent: 1
+ - uid: 228
+ components:
+ - type: Transform
+ pos: 5.5,2.5
+ parent: 1
+ - uid: 237
+ components:
+ - type: Transform
+ pos: 5.5,8.5
+ parent: 1
+ - uid: 252
+ components:
+ - type: Transform
+ pos: -4.5,9.5
+ parent: 1
+ - uid: 258
+ components:
+ - type: Transform
+ pos: -4.5,7.5
+ parent: 1
+ - uid: 259
+ components:
+ - type: Transform
+ pos: -4.5,6.5
+ parent: 1
+ - uid: 263
+ components:
+ - type: Transform
+ pos: -4.5,2.5
+ parent: 1
+ - uid: 266
+ components:
+ - type: Transform
+ pos: 5.5,9.5
+ parent: 1
+ - uid: 268
+ components:
+ - type: Transform
+ pos: -4.5,12.5
+ parent: 1
+ - uid: 270
+ components:
+ - type: Transform
+ pos: -4.5,0.5
+ parent: 1
+ - uid: 272
+ components:
+ - type: Transform
+ pos: 2.5,-15.5
+ parent: 1
+ - uid: 273
+ components:
+ - type: Transform
+ pos: 2.5,-17.5
+ parent: 1
+ - uid: 274
+ components:
+ - type: Transform
+ pos: 0.5,-19.5
+ parent: 1
+ - uid: 285
+ components:
+ - type: Transform
+ pos: 4.5,-10.5
+ parent: 1
+ - uid: 286
+ components:
+ - type: Transform
+ pos: 4.5,-7.5
+ parent: 1
+ - uid: 288
+ components:
+ - type: Transform
+ pos: -4.5,1.5
+ parent: 1
+ - uid: 289
+ components:
+ - type: Transform
+ pos: 1.5,-18.5
+ parent: 1
+ - uid: 307
+ components:
+ - type: Transform
+ pos: -4.5,8.5
+ parent: 1
+ - uid: 308
+ components:
+ - type: Transform
+ pos: -4.5,11.5
+ parent: 1
+- proto: Autolathe
+ entities:
+ - uid: 445
+ components:
+ - type: Transform
+ pos: 3.5,6.5
+ parent: 1
+- proto: BlastDoor
+ entities:
+ - uid: 10
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,9.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 693
+ - uid: 18
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -1.5,15.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 19
+ - uid: 20
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 2.5,15.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 19
+ - uid: 22
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 2.5,18.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 19
+ - uid: 191
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,10.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 693
+ - uid: 238
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,9.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 711
+ - uid: 239
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,10.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 711
+ - uid: 240
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,11.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 711
+ - uid: 451
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -1.5,18.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 19
+ - uid: 683
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,11.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 693
+- proto: CableApcExtension
+ entities:
+ - uid: 24
+ components:
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 1
+ - uid: 25
+ components:
+ - type: Transform
+ pos: 0.5,7.5
+ parent: 1
+ - uid: 26
+ components:
+ - type: Transform
+ pos: 4.5,8.5
+ parent: 1
+ - uid: 27
+ components:
+ - type: Transform
+ pos: 0.5,6.5
+ parent: 1
+ - uid: 28
+ components:
+ - type: Transform
+ pos: 0.5,5.5
+ parent: 1
+ - uid: 29
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 1
+ - uid: 30
+ components:
+ - type: Transform
+ pos: -2.5,-5.5
+ parent: 1
+ - uid: 31
+ components:
+ - type: Transform
+ pos: -2.5,-4.5
+ parent: 1
+ - uid: 39
+ components:
+ - type: Transform
+ pos: 0.5,8.5
+ parent: 1
+ - uid: 40
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 1
+ - uid: 41
+ components:
+ - type: Transform
+ pos: 0.5,9.5
+ parent: 1
+ - uid: 42
+ components:
+ - type: Transform
+ pos: 0.5,16.5
+ parent: 1
+ - uid: 44
+ components:
+ - type: Transform
+ pos: 0.5,15.5
+ parent: 1
+ - uid: 45
+ components:
+ - type: Transform
+ pos: 0.5,14.5
+ parent: 1
+ - uid: 46
+ components:
+ - type: Transform
+ pos: 0.5,13.5
+ parent: 1
+ - uid: 47
+ components:
+ - type: Transform
+ pos: 0.5,12.5
+ parent: 1
+ - uid: 48
+ components:
+ - type: Transform
+ pos: 0.5,11.5
+ parent: 1
+ - uid: 49
+ components:
+ - type: Transform
+ pos: 3.5,10.5
+ parent: 1
+ - uid: 50
+ components:
+ - type: Transform
+ pos: 2.5,10.5
+ parent: 1
+ - uid: 51
+ components:
+ - type: Transform
+ pos: 0.5,10.5
+ parent: 1
+ - uid: 52
+ components:
+ - type: Transform
+ pos: -1.5,-4.5
+ parent: 1
+ - uid: 59
+ components:
+ - type: Transform
+ pos: 0.5,-4.5
+ parent: 1
+ - uid: 61
+ components:
+ - type: Transform
+ pos: 0.5,-16.5
+ parent: 1
+ - uid: 66
+ components:
+ - type: Transform
+ pos: 0.5,-15.5
+ parent: 1
+ - uid: 68
+ components:
+ - type: Transform
+ pos: 0.5,-13.5
+ parent: 1
+ - uid: 74
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 1
+ - uid: 95
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 1
+ - uid: 97
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 1
+ - uid: 110
+ components:
+ - type: Transform
+ pos: -0.5,-14.5
+ parent: 1
+ - uid: 111
+ components:
+ - type: Transform
+ pos: 2.5,8.5
+ parent: 1
+ - uid: 161
+ components:
+ - type: Transform
+ pos: 0.5,-11.5
+ parent: 1
+ - uid: 162
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 1
+ - uid: 169
+ components:
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 1
+ - uid: 170
+ components:
+ - type: Transform
+ pos: -0.5,-6.5
+ parent: 1
+ - uid: 172
+ components:
+ - type: Transform
+ pos: -0.5,-7.5
+ parent: 1
+ - uid: 173
+ components:
+ - type: Transform
+ pos: -0.5,-8.5
+ parent: 1
+ - uid: 174
+ components:
+ - type: Transform
+ pos: -0.5,-9.5
+ parent: 1
+ - uid: 175
+ components:
+ - type: Transform
+ pos: -1.5,6.5
+ parent: 1
+ - uid: 176
+ components:
+ - type: Transform
+ pos: -0.5,6.5
+ parent: 1
+ - uid: 177
+ components:
+ - type: Transform
+ pos: 1.5,8.5
+ parent: 1
+ - uid: 178
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 1
+ - uid: 179
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 1
+ - uid: 186
+ components:
+ - type: Transform
+ pos: -1.5,-9.5
+ parent: 1
+ - uid: 187
+ components:
+ - type: Transform
+ pos: 0.5,-7.5
+ parent: 1
+ - uid: 188
+ components:
+ - type: Transform
+ pos: 2.5,-7.5
+ parent: 1
+ - uid: 189
+ components:
+ - type: Transform
+ pos: 1.5,-11.5
+ parent: 1
+ - uid: 276
+ components:
+ - type: Transform
+ pos: 2.5,14.5
+ parent: 1
+ - uid: 277
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 1
+ - uid: 278
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 1
+ - uid: 279
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 1
+ - uid: 280
+ components:
+ - type: Transform
+ pos: 1.5,14.5
+ parent: 1
+ - uid: 281
+ components:
+ - type: Transform
+ pos: -1.5,14.5
+ parent: 1
+ - uid: 282
+ components:
+ - type: Transform
+ pos: -0.5,14.5
+ parent: 1
+ - uid: 283
+ components:
+ - type: Transform
+ pos: 3.5,1.5
+ parent: 1
+ - uid: 284
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 1
+ - uid: 290
+ components:
+ - type: Transform
+ pos: 0.5,-10.5
+ parent: 1
+ - uid: 291
+ components:
+ - type: Transform
+ pos: 3.5,8.5
+ parent: 1
+ - uid: 292
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 1
+ - uid: 293
+ components:
+ - type: Transform
+ pos: 1.5,-14.5
+ parent: 1
+ - uid: 294
+ components:
+ - type: Transform
+ pos: -2.5,10.5
+ parent: 1
+ - uid: 295
+ components:
+ - type: Transform
+ pos: -1.5,10.5
+ parent: 1
+ - uid: 296
+ components:
+ - type: Transform
+ pos: -0.5,10.5
+ parent: 1
+ - uid: 297
+ components:
+ - type: Transform
+ pos: 1.5,10.5
+ parent: 1
+ - uid: 298
+ components:
+ - type: Transform
+ pos: -0.5,-4.5
+ parent: 1
+ - uid: 300
+ components:
+ - type: Transform
+ pos: 0.5,17.5
+ parent: 1
+ - uid: 301
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 1
+ - uid: 302
+ components:
+ - type: Transform
+ pos: 2.5,-11.5
+ parent: 1
+ - uid: 303
+ components:
+ - type: Transform
+ pos: 1.5,-7.5
+ parent: 1
+ - uid: 304
+ components:
+ - type: Transform
+ pos: 0.5,-12.5
+ parent: 1
+ - uid: 305
+ components:
+ - type: Transform
+ pos: -0.5,-10.5
+ parent: 1
+ - uid: 306
+ components:
+ - type: Transform
+ pos: 0.5,-14.5
+ parent: 1
+ - uid: 315
+ components:
+ - type: Transform
+ pos: 2.5,-8.5
+ parent: 1
+ - uid: 383
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 1
+- proto: CableHV
+ entities:
+ - uid: 310
+ components:
+ - type: Transform
+ pos: 1.5,-10.5
+ parent: 1
+ - uid: 311
+ components:
+ - type: Transform
+ pos: -0.5,-12.5
+ parent: 1
+ - uid: 313
+ components:
+ - type: Transform
+ pos: 0.5,-11.5
+ parent: 1
+ - uid: 316
+ components:
+ - type: Transform
+ pos: -0.5,-11.5
+ parent: 1
+ - uid: 318
+ components:
+ - type: Transform
+ pos: -1.5,-9.5
+ parent: 1
+ - uid: 323
+ components:
+ - type: Transform
+ pos: -0.5,-9.5
+ parent: 1
+ - uid: 324
+ components:
+ - type: Transform
+ pos: -0.5,-10.5
+ parent: 1
+ - uid: 345
+ components:
+ - type: Transform
+ pos: 0.5,-12.5
+ parent: 1
+ - uid: 346
+ components:
+ - type: Transform
+ pos: 1.5,-11.5
+ parent: 1
+- proto: CableMV
+ entities:
+ - uid: 43
+ components:
+ - type: Transform
+ pos: -2.5,-4.5
+ parent: 1
+ - uid: 229
+ components:
+ - type: Transform
+ pos: 3.5,2.5
+ parent: 1
+ - uid: 230
+ components:
+ - type: Transform
+ pos: 3.5,3.5
+ parent: 1
+ - uid: 231
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 1
+ - uid: 232
+ components:
+ - type: Transform
+ pos: 3.5,5.5
+ parent: 1
+ - uid: 233
+ components:
+ - type: Transform
+ pos: 3.5,6.5
+ parent: 1
+ - uid: 234
+ components:
+ - type: Transform
+ pos: 3.5,7.5
+ parent: 1
+ - uid: 235
+ components:
+ - type: Transform
+ pos: 3.5,8.5
+ parent: 1
+ - uid: 236
+ components:
+ - type: Transform
+ pos: 4.5,8.5
+ parent: 1
+ - uid: 299
+ components:
+ - type: Transform
+ pos: -2.5,-5.5
+ parent: 1
+ - uid: 326
+ components:
+ - type: Transform
+ pos: -1.5,-4.5
+ parent: 1
+ - uid: 327
+ components:
+ - type: Transform
+ pos: -1.5,-9.5
+ parent: 1
+ - uid: 328
+ components:
+ - type: Transform
+ pos: -0.5,-9.5
+ parent: 1
+ - uid: 329
+ components:
+ - type: Transform
+ pos: -0.5,-8.5
+ parent: 1
+ - uid: 330
+ components:
+ - type: Transform
+ pos: -0.5,-7.5
+ parent: 1
+ - uid: 331
+ components:
+ - type: Transform
+ pos: -0.5,-6.5
+ parent: 1
+ - uid: 332
+ components:
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 1
+ - uid: 333
+ components:
+ - type: Transform
+ pos: -0.5,-4.5
+ parent: 1
+ - uid: 334
+ components:
+ - type: Transform
+ pos: 0.5,-4.5
+ parent: 1
+ - uid: 335
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 1
+ - uid: 336
+ components:
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 1
+ - uid: 337
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 1
+ - uid: 338
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 1
+ - uid: 339
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 1
+ - uid: 340
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 1
+ - uid: 341
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 1
+ - uid: 342
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 1
+ - uid: 343
+ components:
+ - type: Transform
+ pos: 3.5,1.5
+ parent: 1
+- proto: CableTerminal
+ entities:
+ - uid: 309
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-12.5
+ parent: 1
+ - uid: 317
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-11.5
+ parent: 1
+- proto: CapacitorStockPart
+ entities:
+ - uid: 639
+ components:
+ - type: Transform
+ pos: 1.241066,4.385109
+ parent: 1
+ - uid: 640
+ components:
+ - type: Transform
+ pos: 1.3498862,4.5183277
+ parent: 1
+ - uid: 641
+ components:
+ - type: Transform
+ pos: 1.2457194,4.6718526
+ parent: 1
+ - uid: 642
+ components:
+ - type: Transform
+ pos: 1.3396094,4.3330364
+ parent: 1
+- proto: Catwalk
+ entities:
+ - uid: 98
+ components:
+ - type: Transform
+ pos: -0.5,10.5
+ parent: 1
+ - uid: 99
+ components:
+ - type: Transform
+ pos: -0.5,9.5
+ parent: 1
+ - uid: 719
+ components:
+ - type: Transform
+ pos: -0.5,11.5
+ parent: 1
+ - uid: 720
+ components:
+ - type: Transform
+ pos: 1.5,11.5
+ parent: 1
+ - uid: 721
+ components:
+ - type: Transform
+ pos: 1.5,10.5
+ parent: 1
+ - uid: 722
+ components:
+ - type: Transform
+ pos: 1.5,9.5
+ parent: 1
+- proto: ChairPilotSeat
+ entities:
+ - uid: 403
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,1.5
+ parent: 1
+- proto: ComputerFrame
+ entities:
+ - uid: 406
+ components:
+ - type: Transform
+ pos: 1.5,2.5
+ parent: 1
+- proto: ComputerShuttle
+ entities:
+ - uid: 404
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 1
+- proto: ComputerStationRecords
+ entities:
+ - uid: 405
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 1
+- proto: ConveyorBelt
+ entities:
+ - uid: 241
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,17.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 694
+ - uid: 242
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,18.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 694
+ - uid: 253
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,17.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 694
+ - uid: 254
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,16.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 694
+ - uid: 267
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,18.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 694
+ - uid: 269
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,16.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 694
+ - uid: 376
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,15.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 694
+ - uid: 400
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,14.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 694
+ - uid: 401
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,14.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 694
+ - uid: 407
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,15.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 694
+- proto: CrateEngineeringAMEJar
+ entities:
+ - uid: 205
+ components:
+ - type: Transform
+ pos: 0.5,-14.5
+ parent: 1
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: CrateEngineeringCableBulk
+ entities:
+ - uid: 255
+ components:
+ - type: Transform
+ pos: -2.5,6.5
+ parent: 1
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14957
+ moles:
+ - 1.7450964
+ - 6.564886
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: DrinkFlaskOld
+ entities:
+ - uid: 595
+ components:
+ - type: Transform
+ pos: -0.8367934,-3.338994
+ parent: 1
+ - uid: 596
+ components:
+ - type: Transform
+ pos: -0.79733527,-3.3434365
+ parent: 1
+ - uid: 597
+ components:
+ - type: Transform
+ pos: -0.73483527,-3.3121865
+ parent: 1
+ - uid: 598
+ components:
+ - type: Transform
+ pos: -0.90971005,-3.2814004
+ parent: 1
+- proto: FaxMachineShip
+ entities:
+ - uid: 632
+ components:
+ - type: Transform
+ pos: 2.5,2.5
+ parent: 1
+- proto: FireAxeCabinetFilled
+ entities:
+ - uid: 33
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-0.5
+ parent: 1
+- proto: FirelockGlass
+ entities:
+ - uid: 185
+ components:
+ - type: Transform
+ pos: 1.5,15.5
+ parent: 1
+ - uid: 436
+ components:
+ - type: Transform
+ pos: 3.5,3.5
+ parent: 1
+ - uid: 437
+ components:
+ - type: Transform
+ pos: -2.5,3.5
+ parent: 1
+ - uid: 452
+ components:
+ - type: Transform
+ pos: -0.5,15.5
+ parent: 1
+ - uid: 453
+ components:
+ - type: Transform
+ pos: 0.5,15.5
+ parent: 1
+ - uid: 454
+ components:
+ - type: Transform
+ pos: -0.5,-6.5
+ parent: 1
+ - uid: 457
+ components:
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 1
+- proto: GasMixer
+ entities:
+ - uid: 361
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-4.5
+ parent: 1
+ - type: GasMixer
+ inletTwoConcentration: 0.79
+ inletOneConcentration: 0.21
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPassiveVent
+ entities:
+ - uid: 369
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-6.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPipeBend
+ entities:
+ - uid: 358
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 363
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 365
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 366
+ components:
+ - type: Transform
+ pos: 3.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 367
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 368
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 384
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 389
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 390
+ components:
+ - type: Transform
+ pos: 0.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 399
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 414
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeStraight
+ entities:
+ - uid: 37
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 271
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 275
+ components:
+ - type: Transform
+ pos: -0.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 319
+ components:
+ - type: Transform
+ pos: -1.5,-5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 320
+ components:
+ - type: Transform
+ pos: -1.5,-7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 322
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 344
+ components:
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 347
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 350
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 351
+ components:
+ - type: Transform
+ pos: -3.5,-5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 356
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 357
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-0.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 359
+ components:
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 360
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 362
+ components:
+ - type: Transform
+ pos: -2.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 364
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 385
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 386
+ components:
+ - type: Transform
+ pos: -0.5,-7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 387
+ components:
+ - type: Transform
+ pos: -0.5,-8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 388
+ components:
+ - type: Transform
+ pos: -0.5,-9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 391
+ components:
+ - type: Transform
+ pos: 0.5,-11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 394
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 395
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-14.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 397
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 398
+ components:
+ - type: Transform
+ pos: 3.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 408
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 410
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 412
+ components:
+ - type: Transform
+ pos: -0.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 413
+ components:
+ - type: Transform
+ pos: 3.5,2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 475
+ components:
+ - type: Transform
+ pos: 1.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 478
+ components:
+ - type: Transform
+ pos: 1.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 481
+ components:
+ - type: Transform
+ pos: 1.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 512
+ components:
+ - type: Transform
+ pos: 1.5,7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 513
+ components:
+ - type: Transform
+ pos: 1.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 514
+ components:
+ - type: Transform
+ pos: 1.5,10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 516
+ components:
+ - type: Transform
+ pos: 1.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 517
+ components:
+ - type: Transform
+ pos: -0.5,-6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 518
+ components:
+ - type: Transform
+ pos: -0.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 524
+ components:
+ - type: Transform
+ pos: -0.5,10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 525
+ components:
+ - type: Transform
+ pos: -0.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 526
+ components:
+ - type: Transform
+ pos: -0.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 527
+ components:
+ - type: Transform
+ pos: -0.5,7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 535
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 538
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 555
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeTJunction
+ entities:
+ - uid: 264
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 348
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 349
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 353
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 355
+ components:
+ - type: Transform
+ pos: -1.5,-3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 392
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 411
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 427
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPort
+ entities:
+ - uid: 354
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-3.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 377
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-3.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 378
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-4.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+- proto: GasPressurePump
+ entities:
+ - uid: 379
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-3.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 381
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-4.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 448
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-4.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasVentPump
+ entities:
+ - uid: 287
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,0.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 544
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 393
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-12.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 545
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 396
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-15.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 545
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 409
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-5.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 545
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 515
+ components:
+ - type: Transform
+ pos: 1.5,13.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 544
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasVentScrubber
+ entities:
+ - uid: 265
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,0.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 544
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 321
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-8.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 545
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 370
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-4.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 545
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 474
+ components:
+ - type: Transform
+ pos: -0.5,13.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 544
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GravityGeneratorMini
+ entities:
+ - uid: 371
+ components:
+ - type: Transform
+ pos: -1.5,-7.5
+ parent: 1
+- proto: Grille
+ entities:
+ - uid: 56
+ components:
+ - type: Transform
+ pos: -0.5,-17.5
+ parent: 1
+ - uid: 57
+ components:
+ - type: Transform
+ pos: 0.5,-17.5
+ parent: 1
+ - uid: 58
+ components:
+ - type: Transform
+ pos: 1.5,-17.5
+ parent: 1
+ - uid: 70
+ components:
+ - type: Transform
+ pos: -1.5,-14.5
+ parent: 1
+ - uid: 71
+ components:
+ - type: Transform
+ pos: 2.5,-14.5
+ parent: 1
+ - uid: 84
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-11.5
+ parent: 1
+ - uid: 85
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-11.5
+ parent: 1
+ - uid: 92
+ components:
+ - type: Transform
+ pos: 1.5,-14.5
+ parent: 1
+ - uid: 93
+ components:
+ - type: Transform
+ pos: -0.5,-14.5
+ parent: 1
+ - uid: 94
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-7.5
+ parent: 1
+ - uid: 96
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-7.5
+ parent: 1
+ - uid: 118
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-1.5
+ parent: 1
+ - uid: 119
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-1.5
+ parent: 1
+ - uid: 128
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,3.5
+ parent: 1
+ - uid: 129
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,4.5
+ parent: 1
+ - uid: 130
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,5.5
+ parent: 1
+ - uid: 131
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,3.5
+ parent: 1
+ - uid: 132
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,4.5
+ parent: 1
+ - uid: 133
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,5.5
+ parent: 1
+ - uid: 153
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,15.5
+ parent: 1
+ - uid: 154
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,15.5
+ parent: 1
+ - uid: 206
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-16.5
+ parent: 1
+ - uid: 207
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-16.5
+ parent: 1
+ - uid: 415
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,3.5
+ parent: 1
+ - uid: 416
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,3.5
+ parent: 1
+ - uid: 417
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,3.5
+ parent: 1
+ - uid: 418
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,3.5
+ parent: 1
+ - uid: 419
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,3.5
+ parent: 1
+ - uid: 429
+ components:
+ - type: Transform
+ pos: -2.5,-8.5
+ parent: 1
+ - uid: 450
+ components:
+ - type: Transform
+ pos: 3.5,-8.5
+ parent: 1
+- proto: Gyroscope
+ entities:
+ - uid: 203
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-8.5
+ parent: 1
+ - uid: 712
+ components:
+ - type: Transform
+ pos: -2.5,-14.5
+ parent: 1
+ - uid: 714
+ components:
+ - type: Transform
+ pos: 3.5,-14.5
+ parent: 1
+- proto: LockerCaptainFilled
+ entities:
+ - uid: 430
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 1
+- proto: LockerChiefEngineerFilled
+ entities:
+ - uid: 431
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 1
+- proto: LockerEngineerFilled
+ entities:
+ - uid: 380
+ components:
+ - type: Transform
+ pos: 2.5,-5.5
+ parent: 1
+ - uid: 426
+ components:
+ - type: Transform
+ pos: 1.5,-5.5
+ parent: 1
+- proto: MachineFlatpacker
+ entities:
+ - uid: 432
+ components:
+ - type: Transform
+ pos: 3.5,7.5
+ parent: 1
+- proto: MaterialReclaimer
+ entities:
+ - uid: 352
+ components:
+ - type: Transform
+ pos: 1.5,-12.5
+ parent: 1
+- proto: MatterBinStockPart
+ entities:
+ - uid: 727
+ components:
+ - type: Transform
+ pos: 1.26107,7.6963973
+ parent: 1
+ - uid: 728
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.2957922,7.5088973
+ parent: 1
+- proto: MicroManipulatorStockPart
+ entities:
+ - uid: 729
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.7055144,7.703342
+ parent: 1
+ - uid: 730
+ components:
+ - type: Transform
+ pos: 1.7263477,7.4463973
+ parent: 1
+- proto: NitrogenCanister
+ entities:
+ - uid: 586
+ components:
+ - type: Transform
+ anchored: True
+ pos: 3.5,-3.5
+ parent: 1
+ - type: Physics
+ bodyType: Static
+ - type: AtmosDevice
+ joinedGrid: 1
+- proto: OreProcessor
+ entities:
+ - uid: 459
+ components:
+ - type: Transform
+ pos: 3.5,8.5
+ parent: 1
+- proto: OxygenCanister
+ entities:
+ - uid: 587
+ components:
+ - type: Transform
+ anchored: True
+ pos: 3.5,-4.5
+ parent: 1
+ - type: Physics
+ bodyType: Static
+ - type: AtmosDevice
+ joinedGrid: 1
+- proto: Paper
+ entities:
+ - uid: 651
+ components:
+ - type: MetaData
+ flags: InContainer
+ - type: Transform
+ parent: 650
+ - type: Physics
+ canCollide: False
+ - uid: 652
+ components:
+ - type: MetaData
+ flags: InContainer
+ - type: Transform
+ parent: 650
+ - type: Physics
+ canCollide: False
+ - uid: 653
+ components:
+ - type: MetaData
+ flags: InContainer
+ - type: Transform
+ parent: 650
+ - type: Physics
+ canCollide: False
+ - uid: 654
+ components:
+ - type: MetaData
+ flags: InContainer
+ - type: Transform
+ parent: 650
+ - type: Physics
+ canCollide: False
+ - uid: 655
+ components:
+ - type: MetaData
+ flags: InContainer
+ - type: Transform
+ parent: 650
+ - type: Physics
+ canCollide: False
+ - uid: 656
+ components:
+ - type: MetaData
+ flags: InContainer
+ - type: Transform
+ parent: 650
+ - type: Physics
+ canCollide: False
+ - uid: 657
+ components:
+ - type: MetaData
+ flags: InContainer
+ - type: Transform
+ parent: 650
+ - type: Physics
+ canCollide: False
+ - uid: 658
+ components:
+ - type: MetaData
+ flags: InContainer
+ - type: Transform
+ parent: 650
+ - type: Physics
+ canCollide: False
+ - uid: 659
+ components:
+ - type: MetaData
+ flags: InContainer
+ - type: Transform
+ parent: 650
+ - type: Physics
+ canCollide: False
+ - uid: 660
+ components:
+ - type: MetaData
+ flags: InContainer
+ - type: Transform
+ parent: 650
+ - type: Physics
+ canCollide: False
+ - uid: 661
+ components:
+ - type: MetaData
+ flags: InContainer
+ - type: Transform
+ parent: 650
+ - type: Physics
+ canCollide: False
+- proto: PaperBin10
+ entities:
+ - uid: 650
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,0.5
+ parent: 1
+ - type: Bin
+ items:
+ - 651
+ - 652
+ - 653
+ - 654
+ - 655
+ - 656
+ - 657
+ - 658
+ - 659
+ - 660
+ - 661
+ - type: ContainerContainer
+ containers:
+ bin-container: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 651
+ - 652
+ - 653
+ - 654
+ - 655
+ - 656
+ - 657
+ - 658
+ - 659
+ - 660
+ - 661
+- proto: PenCap
+ entities:
+ - uid: 663
+ components:
+ - type: Transform
+ pos: -1.9694284,0.5056243
+ parent: 1
+ - type: Stamp
+ stampedName: Unknown
+- proto: PlasticFlapsAirtightClear
+ entities:
+ - uid: 256
+ components:
+ - type: Transform
+ pos: 2.5,18.5
+ parent: 1
+ - uid: 257
+ components:
+ - type: Transform
+ pos: -1.5,18.5
+ parent: 1
+ - uid: 444
+ components:
+ - type: Transform
+ pos: -1.5,15.5
+ parent: 1
+ - uid: 647
+ components:
+ - type: Transform
+ pos: 2.5,15.5
+ parent: 1
+- proto: PortableGeneratorPacmanMachineCircuitboard
+ entities:
+ - uid: 635
+ components:
+ - type: Transform
+ pos: 1.197083,4.3927317
+ parent: 1
+ - uid: 636
+ components:
+ - type: Transform
+ pos: 1.1936362,4.3561215
+ parent: 1
+- proto: PortableScrubber
+ entities:
+ - uid: 402
+ components:
+ - type: Transform
+ pos: -2.5,-3.5
+ parent: 1
+- proto: PowerCellRecharger
+ entities:
+ - uid: 646
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,0.5
+ parent: 1
+- proto: Poweredlight
+ entities:
+ - uid: 433
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,1.5
+ parent: 1
+ - uid: 434
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,1.5
+ parent: 1
+ - uid: 439
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-5.5
+ parent: 1
+ - uid: 441
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,6.5
+ parent: 1
+ - uid: 442
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-10.5
+ parent: 1
+ - uid: 456
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,6.5
+ parent: 1
+ - uid: 577
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,12.5
+ parent: 1
+ - uid: 578
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,16.5
+ parent: 1
+ - uid: 579
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,16.5
+ parent: 1
+ - uid: 580
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,12.5
+ parent: 1
+- proto: PoweredlightExterior
+ entities:
+ - uid: 624
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,8.5
+ parent: 1
+ - uid: 665
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,12.5
+ parent: 1
+ - uid: 666
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,12.5
+ parent: 1
+ - uid: 667
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,8.5
+ parent: 1
+- proto: PoweredlightSodium
+ entities:
+ - uid: 455
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-15.5
+ parent: 1
+ - uid: 585
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-8.5
+ parent: 1
+- proto: Rack
+ entities:
+ - uid: 202
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-11.5
+ parent: 1
+ - uid: 458
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,4.5
+ parent: 1
+ - uid: 473
+ components:
+ - type: Transform
+ rot: -1.570768074193273 rad
+ pos: 0.5,4.5
+ parent: 1
+ - uid: 634
+ components:
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 1
+- proto: ReinforcedWindow
+ entities:
+ - uid: 21
+ components:
+ - type: Transform
+ pos: -0.5,-17.5
+ parent: 1
+ - uid: 23
+ components:
+ - type: Transform
+ pos: 0.5,-17.5
+ parent: 1
+ - uid: 53
+ components:
+ - type: Transform
+ pos: 1.5,-17.5
+ parent: 1
+ - uid: 54
+ components:
+ - type: Transform
+ pos: -0.5,-16.5
+ parent: 1
+ - uid: 55
+ components:
+ - type: Transform
+ pos: 1.5,-16.5
+ parent: 1
+ - uid: 62
+ components:
+ - type: Transform
+ pos: -0.5,-14.5
+ parent: 1
+ - uid: 63
+ components:
+ - type: Transform
+ pos: -1.5,-14.5
+ parent: 1
+ - uid: 64
+ components:
+ - type: Transform
+ pos: -1.5,-11.5
+ parent: 1
+ - uid: 65
+ components:
+ - type: Transform
+ pos: 2.5,-11.5
+ parent: 1
+ - uid: 67
+ components:
+ - type: Transform
+ pos: -2.5,-7.5
+ parent: 1
+ - uid: 69
+ components:
+ - type: Transform
+ pos: 3.5,-7.5
+ parent: 1
+ - uid: 76
+ components:
+ - type: Transform
+ pos: -2.5,-1.5
+ parent: 1
+ - uid: 77
+ components:
+ - type: Transform
+ pos: 3.5,-1.5
+ parent: 1
+ - uid: 78
+ components:
+ - type: Transform
+ pos: -3.5,3.5
+ parent: 1
+ - uid: 79
+ components:
+ - type: Transform
+ pos: -3.5,4.5
+ parent: 1
+ - uid: 80
+ components:
+ - type: Transform
+ pos: -3.5,5.5
+ parent: 1
+ - uid: 81
+ components:
+ - type: Transform
+ pos: 4.5,3.5
+ parent: 1
+ - uid: 82
+ components:
+ - type: Transform
+ pos: 4.5,4.5
+ parent: 1
+ - uid: 83
+ components:
+ - type: Transform
+ pos: 4.5,5.5
+ parent: 1
+ - uid: 158
+ components:
+ - type: Transform
+ pos: -2.5,15.5
+ parent: 1
+ - uid: 159
+ components:
+ - type: Transform
+ pos: 3.5,15.5
+ parent: 1
+ - uid: 420
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,3.5
+ parent: 1
+ - uid: 421
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,3.5
+ parent: 1
+ - uid: 422
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,3.5
+ parent: 1
+ - uid: 423
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,3.5
+ parent: 1
+ - uid: 424
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,3.5
+ parent: 1
+ - uid: 461
+ components:
+ - type: Transform
+ pos: -2.5,-8.5
+ parent: 1
+ - uid: 462
+ components:
+ - type: Transform
+ pos: 3.5,-8.5
+ parent: 1
+ - uid: 717
+ components:
+ - type: Transform
+ pos: 1.5,-14.5
+ parent: 1
+ - uid: 718
+ components:
+ - type: Transform
+ pos: 2.5,-14.5
+ parent: 1
+- proto: RubberStampApproved
+ entities:
+ - uid: 662
+ components:
+ - type: Transform
+ pos: -1.6569284,0.6410409
+ parent: 1
+- proto: RubberStampDenied
+ entities:
+ - uid: 664
+ components:
+ - type: Transform
+ pos: -1.3444284,0.41187423
+ parent: 1
+- proto: Screwdriver
+ entities:
+ - uid: 726
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.3833046,7.3700085
+ parent: 1
+- proto: SheetGlass
+ entities:
+ - uid: 477
+ components:
+ - type: Transform
+ pos: -0.4893459,4.6509175
+ parent: 1
+ - uid: 552
+ components:
+ - type: Transform
+ pos: -0.4893459,4.661334
+ parent: 1
+- proto: SheetPlastic
+ entities:
+ - uid: 551
+ components:
+ - type: Transform
+ pos: 1.6555057,4.603859
+ parent: 1
+- proto: SheetSteel
+ entities:
+ - uid: 460
+ components:
+ - type: Transform
+ pos: 0.5861908,4.6388607
+ parent: 1
+ - uid: 549
+ components:
+ - type: Transform
+ pos: 0.57577413,4.597194
+ parent: 1
+ - uid: 550
+ components:
+ - type: Transform
+ pos: 0.59660745,4.6388607
+ parent: 1
+- proto: ShuttersNormalOpen
+ entities:
+ - uid: 731
+ components:
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 736
+ - uid: 732
+ components:
+ - type: Transform
+ pos: 1.5,3.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 736
+ - uid: 733
+ components:
+ - type: Transform
+ pos: 0.5,3.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 736
+ - uid: 734
+ components:
+ - type: Transform
+ pos: -0.5,3.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 736
+ - uid: 735
+ components:
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 736
+- proto: SignalButton
+ entities:
+ - uid: 19
+ components:
+ - type: Transform
+ pos: -2.5,14.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 18:
+ - Pressed: Toggle
+ 20:
+ - Pressed: Toggle
+ 451:
+ - Pressed: Toggle
+ 22:
+ - Pressed: Toggle
+ - uid: 693
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,12.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 683:
+ - Pressed: Toggle
+ 191:
+ - Pressed: Toggle
+ 10:
+ - Pressed: Toggle
+ - uid: 711
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,12.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 240:
+ - Pressed: Toggle
+ 239:
+ - Pressed: Toggle
+ 238:
+ - Pressed: Toggle
+ - uid: 736
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,1.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 690:
+ - Pressed: DoorBolt
+ 735:
+ - Pressed: Toggle
+ 734:
+ - Pressed: Toggle
+ 733:
+ - Pressed: Toggle
+ 732:
+ - Pressed: Toggle
+ 731:
+ - Pressed: Toggle
+ 689:
+ - Pressed: DoorBolt
+- proto: SMESBasic
+ entities:
+ - uid: 167
+ components:
+ - type: Transform
+ pos: -0.5,-11.5
+ parent: 1
+ - uid: 168
+ components:
+ - type: Transform
+ pos: -0.5,-12.5
+ parent: 1
+- proto: soda_dispenser
+ entities:
+ - uid: 649
+ components:
+ - type: Transform
+ pos: -1.5,-3.5
+ parent: 1
+- proto: SolidSecretDoor
+ entities:
+ - uid: 75
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-13.5
+ parent: 1
+- proto: SpawnPointChiefEngineer
+ entities:
+ - uid: 438
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 1
+- proto: SpawnPointLatejoin
+ entities:
+ - uid: 325
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,5.5
+ parent: 1
+- proto: SpawnPointPilot
+ entities:
+ - uid: 382
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 1
+- proto: SpawnPointSalvageSpecialist
+ entities:
+ - uid: 425
+ components:
+ - type: Transform
+ pos: -1.5,7.5
+ parent: 1
+- proto: SpawnPointStationEngineer
+ entities:
+ - uid: 435
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 1
+- proto: SubstationBasic
+ entities:
+ - uid: 171
+ components:
+ - type: Transform
+ pos: -1.5,-9.5
+ parent: 1
+- proto: SuitStorageEngi
+ entities:
+ - uid: 446
+ components:
+ - type: Transform
+ pos: 0.5,-5.5
+ parent: 1
+ - uid: 447
+ components:
+ - type: Transform
+ pos: -1.5,-5.5
+ parent: 1
+- proto: SuitStorageWallmountCaptain
+ entities:
+ - uid: 312
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-2.5
+ parent: 1
+ - type: Physics
+ canCollide: False
+- proto: SuitStorageWallmountCE
+ entities:
+ - uid: 314
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-2.5
+ parent: 1
+ - type: Physics
+ canCollide: False
+- proto: Table
+ entities:
+ - uid: 723
+ components:
+ - type: Transform
+ pos: -0.5,7.5
+ parent: 1
+ - uid: 724
+ components:
+ - type: Transform
+ pos: 1.5,7.5
+ parent: 1
+- proto: TableCounterMetal
+ entities:
+ - uid: 592
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,0.5
+ parent: 1
+ - uid: 593
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,0.5
+ parent: 1
+ - uid: 631
+ components:
+ - type: Transform
+ pos: 2.5,2.5
+ parent: 1
+ - uid: 643
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,0.5
+ parent: 1
+ - uid: 644
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,0.5
+ parent: 1
+ - uid: 677
+ components:
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 1
+ - uid: 678
+ components:
+ - type: Transform
+ pos: -1.5,-3.5
+ parent: 1
+- proto: Thruster
+ entities:
+ - uid: 2
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-19.5
+ parent: 1
+ - uid: 3
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-18.5
+ parent: 1
+ - uid: 4
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-18.5
+ parent: 1
+ - uid: 5
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-15.5
+ parent: 1
+ - uid: 6
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-15.5
+ parent: 1
+ - uid: 7
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-11.5
+ parent: 1
+ - uid: 8
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-11.5
+ parent: 1
+ - uid: 11
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-6.5
+ parent: 1
+ - uid: 12
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-6.5
+ parent: 1
+ - uid: 13
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-1.5
+ parent: 1
+ - uid: 14
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-1.5
+ parent: 1
+ - uid: 15
+ components:
+ - type: Transform
+ pos: -3.5,15.5
+ parent: 1
+ - uid: 16
+ components:
+ - type: Transform
+ pos: 4.5,15.5
+ parent: 1
+ - uid: 260
+ components:
+ - type: Transform
+ pos: 4.5,-9.5
+ parent: 1
+ - uid: 261
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-10.5
+ parent: 1
+ - uid: 262
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-10.5
+ parent: 1
+ - uid: 691
+ components:
+ - type: Transform
+ pos: -3.5,-9.5
+ parent: 1
+- proto: TwoWayLever
+ entities:
+ - uid: 694
+ components:
+ - type: Transform
+ pos: -2.5,13.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 401:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 407:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 254:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 253:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 267:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 400:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 376:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 269:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 241:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 242:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+- proto: VendingMachineEngiDrobe
+ entities:
+ - uid: 629
+ components:
+ - type: Transform
+ pos: -2.5,7.5
+ parent: 1
+- proto: VendingMachineSalvage
+ entities:
+ - uid: 599
+ components:
+ - type: Transform
+ pos: -2.5,8.5
+ parent: 1
+- proto: WallReinforced
+ entities:
+ - uid: 86
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -2.5,14.5
+ parent: 1
+ - uid: 87
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,18.5
+ parent: 1
+ - uid: 88
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -2.5,17.5
+ parent: 1
+ - uid: 89
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -2.5,18.5
+ parent: 1
+ - uid: 90
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 1.5,-15.5
+ parent: 1
+ - uid: 91
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -0.5,-15.5
+ parent: 1
+ - uid: 100
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -1.5,-12.5
+ parent: 1
+ - uid: 101
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 2.5,-12.5
+ parent: 1
+ - uid: 102
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 2.5,-13.5
+ parent: 1
+ - uid: 103
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -1.5,-13.5
+ parent: 1
+ - uid: 104
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -1.5,-10.5
+ parent: 1
+ - uid: 105
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -2.5,-10.5
+ parent: 1
+ - uid: 106
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 2.5,-10.5
+ parent: 1
+ - uid: 107
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,-10.5
+ parent: 1
+ - uid: 108
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -2.5,-9.5
+ parent: 1
+ - uid: 109
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,-9.5
+ parent: 1
+ - uid: 112
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -2.5,-5.5
+ parent: 1
+ - uid: 113
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,-5.5
+ parent: 1
+ - uid: 114
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,-5.5
+ parent: 1
+ - uid: 115
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,-5.5
+ parent: 1
+ - uid: 116
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,-4.5
+ parent: 1
+ - uid: 117
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,-3.5
+ parent: 1
+ - uid: 120
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,-2.5
+ parent: 1
+ - uid: 121
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,-2.5
+ parent: 1
+ - uid: 122
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,-2.5
+ parent: 1
+ - uid: 123
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,-3.5
+ parent: 1
+ - uid: 124
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,-4.5
+ parent: 1
+ - uid: 125
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -2.5,-2.5
+ parent: 1
+ - uid: 126
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,-0.5
+ parent: 1
+ - uid: 127
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,-0.5
+ parent: 1
+ - uid: 134
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -2.5,-0.5
+ parent: 1
+ - uid: 135
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,-0.5
+ parent: 1
+ - uid: 136
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,0.5
+ parent: 1
+ - uid: 137
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,1.5
+ parent: 1
+ - uid: 138
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,2.5
+ parent: 1
+ - uid: 139
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,0.5
+ parent: 1
+ - uid: 140
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,1.5
+ parent: 1
+ - uid: 141
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,2.5
+ parent: 1
+ - uid: 142
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,6.5
+ parent: 1
+ - uid: 143
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,7.5
+ parent: 1
+ - uid: 144
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,8.5
+ parent: 1
+ - uid: 145
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,6.5
+ parent: 1
+ - uid: 149
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,7.5
+ parent: 1
+ - uid: 150
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,8.5
+ parent: 1
+ - uid: 151
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,14.5
+ parent: 1
+ - uid: 152
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,16.5
+ parent: 1
+ - uid: 155
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,17.5
+ parent: 1
+ - uid: 156
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -2.5,16.5
+ parent: 1
+ - uid: 157
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,14.5
+ parent: 1
+ - uid: 160
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,14.5
+ parent: 1
+ - uid: 163
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,12.5
+ parent: 1
+ - uid: 164
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,13.5
+ parent: 1
+ - uid: 165
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,13.5
+ parent: 1
+ - uid: 166
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,12.5
+ parent: 1
+ - uid: 428
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,-6.5
+ parent: 1
+ - uid: 449
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -2.5,-6.5
+ parent: 1
+- proto: WallSolid
+ entities:
+ - uid: 72
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-13.5
+ parent: 1
+ - uid: 73
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-13.5
+ parent: 1
+ - uid: 372
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-6.5
+ parent: 1
+ - uid: 373
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-6.5
+ parent: 1
+ - uid: 374
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-6.5
+ parent: 1
+ - uid: 375
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-6.5
+ parent: 1
+ - uid: 463
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -1.5,-2.5
+ parent: 1
+ - uid: 464
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 1
+ - uid: 465
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 2.5,-2.5
+ parent: 1
+ - uid: 466
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 1.5,-2.5
+ parent: 1
+- proto: WarpPointShip
+ entities:
+ - uid: 543
+ components:
+ - type: Transform
+ pos: 0.5,7.5
+ parent: 1
+- proto: WaterTankFull
+ entities:
+ - uid: 470
+ components:
+ - type: Transform
+ anchored: True
+ pos: 3.5,12.5
+ parent: 1
+ - type: Physics
+ bodyType: Static
+- proto: WeaponCapacitorRecharger
+ entities:
+ - uid: 645
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,0.5
+ parent: 1
+- proto: WeaponGrapplingGun
+ entities:
+ - uid: 485
+ components:
+ - type: Transform
+ pos: -0.45358524,-3.4684365
+ parent: 1
+ - uid: 500
+ components:
+ - type: Transform
+ pos: -0.3513549,-3.6559849
+ parent: 1
+- proto: WeldingFuelTankFull
+ entities:
+ - uid: 476
+ components:
+ - type: Transform
+ anchored: True
+ pos: 3.5,13.5
+ parent: 1
+ - type: Physics
+ bodyType: Static
+- proto: Wrench
+ entities:
+ - uid: 725
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.6402491,7.585286
+ parent: 1
+...
diff --git a/Resources/Maps/_NF/Shuttles/decadedove.yml b/Resources/Maps/_NF/Shuttles/decadedove.yml
index cc09e0344a7b..25dce9ea7d86 100644
--- a/Resources/Maps/_NF/Shuttles/decadedove.yml
+++ b/Resources/Maps/_NF/Shuttles/decadedove.yml
@@ -6,7 +6,6 @@ tilemap:
14: FloorBar
30: FloorDark
57: FloorHull
- 77: FloorRGlass
78: FloorReinforced
92: FloorSteelCheckerDark
97: FloorSteelDirty
@@ -27,19 +26,19 @@ entities:
chunks:
0,0:
ind: 0,0
- tiles: TgAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAAXAAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAXAAAAAAAegAAAAAAXAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAXAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAXAAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAegAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAegAAAAAAXAAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAATQAAAAACTQAAAAADTQAAAAADTQAAAAADAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAegAAAAAAXAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAABAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAegAAAAAAdwAAAAACdwAAAAADdwAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAdwAAAAAAdwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAAAdwAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: TgAAAAAATgAAAAAATgAAAAAAegAAAAAAXAAAAAACXAAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAABdwAAAAAAdwAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAXAAAAAAAXAAAAAADXAAAAAADegAAAAAAdwAAAAACdwAAAAABdwAAAAADdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAXAAAAAACXAAAAAADXAAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAXAAAAAADegAAAAAAegAAAAAAHgAAAAABegAAAAAAHgAAAAAAegAAAAAAHgAAAAADHgAAAAADHgAAAAADegAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAXAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAAAegAAAAAAAAAAAAAADgAAAAADegAAAAAADgAAAAACDgAAAAACDgAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAABegAAAAAAAAAAAAAADgAAAAABDgAAAAAADgAAAAADDgAAAAACegAAAAAAXAAAAAABegAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAADgAAAAABDgAAAAAADgAAAAAADgAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAOQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAegAAAAAAYQAAAAAAYQAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAegAAAAAAYQAAAAAAYQAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAagAAAAAAagAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAagAAAAAAagAAAAAAHgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAXAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAAXAAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAegAAAAAAYQAAAAAAegAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAegAAAAAAYQAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAABegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAegAAAAAAYQAAAAAAYQAAAAAAegAAAAAAHgAAAAACegAAAAAAHgAAAAADHgAAAAACegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAHgAAAAACHgAAAAADHgAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAHgAAAAADegAAAAAAHgAAAAAAagAAAAAAagAAAAAAHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAXAAAAAABXAAAAAADXAAAAAAAegAAAAAAdwAAAAAAdwAAAAADdwAAAAADdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-1:
ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAHgAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAATgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAACYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAABegAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAABegAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAACegAAAAAAHgAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAYQAAAAAAYQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAXAAAAAAAXAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAegAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAXAAAAAAAegAAAAAAegAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAAAdwAAAAABdwAAAAABegAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAAAdwAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAYQAAAAAAYQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAegAAAAAAYQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAdwAAAAABdwAAAAACdwAAAAADdwAAAAADdwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAABdwAAAAACegAAAAAADgAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAADdwAAAAACdwAAAAAAdwAAAAADegAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAXAAAAAACegAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAADXAAAAAACXAAAAAADegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAXAAAAAADegAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAADXAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAOQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAAAAAAAAA
version: 6
- type: Broadphase
- type: Physics
@@ -79,11 +78,9 @@ entities:
21: -7,-1
22: -6,-1
23: -5,-1
- 197: 5,-6
- 198: 7,-6
- 199: 5,-4
- 200: -7,-4
- 201: -5,-6
+ 184: 5,-6
+ 185: 7,-6
+ 186: 5,-4
- node:
color: '#FFFFFFFF'
id: Caution
@@ -93,20 +90,19 @@ entities:
color: '#FFFFFFFF'
id: Dirt
decals:
- 202: 11,3
- 203: 13,3
- 204: 12,4
- 205: 10,3
- 206: 9,0
- 207: 10,1
- 208: 8,0
- 209: 5,8
- 210: 6,9
- 211: -4,8
- 212: -4,9
- 213: -3,9
- 214: 9,3
- 215: 10,2
+ 187: 11,3
+ 188: 13,3
+ 189: 12,4
+ 190: 10,3
+ 191: 9,0
+ 192: 10,1
+ 193: 8,0
+ 194: 5,8
+ 195: 6,9
+ 196: -4,8
+ 197: -3,9
+ 198: 9,3
+ 199: 10,2
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -238,35 +234,108 @@ entities:
163: -9,-1
164: -9,0
165: -9,1
- 168: -4,-3
- 169: -4,-3
- 170: -4,-4
- 171: -3,-3
- 172: -3,-3
- 173: -6,-4
- 174: -6,-3
- 175: -6,-3
- 176: -5,-4
- 177: -4,-5
- 178: -3,-7
- 179: -3,-6
- 180: -3,-6
- 181: -4,-3
- 182: 6,-3
- 183: 6,-3
- 184: 6,-5
- 185: 6,-5
- 186: 6,-2
- 187: 7,-4
- 188: 6,-5
- 189: 6,-5
- 190: 5,-3
- 191: 6,-6
- 192: 5,-4
- 193: 5,-4
- 194: 5,-6
- 195: 6,-4
- 196: 7,-6
+ 168: -3,-7
+ 169: 6,-3
+ 170: 6,-3
+ 171: 6,-5
+ 172: 6,-5
+ 173: 6,-2
+ 174: 7,-4
+ 175: 6,-5
+ 176: 6,-5
+ 177: 5,-3
+ 178: 6,-6
+ 179: 5,-4
+ 180: 5,-4
+ 181: 5,-6
+ 182: 6,-4
+ 183: 7,-6
+ 200: -6,-3
+ 201: -5,-3
+ 202: -5,-4
+ 203: -3,-4
+ 204: -3,-3
+ 205: -2,-5
+ 206: -3,-5
+ 207: -6,-4
+ 208: -6,-4
+ 209: -4,-3
+ 210: -3,-5
+ 211: -3,-6
+ 212: -4,-5
+ 213: -5,-3
+ 214: -7,-3
+ 215: -5,-3
+ 216: -4,-6
+ 217: -3,-6
+ 218: -4,-6
+ 219: -5,-5
+ 220: -6,-3
+ 221: -4,-3
+ 222: -4,-4
+ 223: -8,-4
+ 224: -4,-3
+ 225: -3,-4
+ 226: 7,-3
+ 227: 7,-3
+ 228: 9,-3
+ 229: 7,-5
+ 230: 5,-6
+ 231: 5,-4
+ 232: 3,-3
+ 233: -1,-3
+ 234: 1,-5
+ 235: -5,0
+ 236: -4,1
+ 237: -4,-1
+ 238: -7,0
+ 239: -6,1
+ 240: -3,2
+ 241: -2,0
+ 242: -5,8
+ 243: -3,8
+ 244: -3,8
+ 245: -3,10
+ 246: -4,9
+ 247: -4,5
+ 248: -3,4
+ 249: -3,6
+ 250: -3,5
+ 251: -5,5
+ 252: -5,6
+ 253: -3,5
+ 254: -3,4
+ 255: -5,5
+ 256: -1,5
+ 257: 0,5
+ 258: 2,5
+ 259: 3,5
+ 260: 4,5
+ 261: 3,5
+ 262: 1,5
+ 263: -1,5
+ 264: 5,8
+ 265: 5,9
+ 266: 5,10
+ 267: 6,9
+ 268: 4,2
+ 269: 4,3
+ 270: 5,3
+ 271: 5,2
+ 272: 6,1
+ 273: 6,1
+ 274: 5,2
+ 275: 12,3
+ 276: 8,-1
+ 277: 10,-1
+ 278: 10,0
+ 294: -3,10
+ 295: -4,8
+ 296: -6,5
+ 297: -6,6
+ 298: -6,4
+ 299: 0,-9
+ 300: 1,-9
- node:
color: '#FFFFFFFF'
id: Rust
@@ -291,6 +360,21 @@ entities:
158: -5,1
159: -3,-1
160: -3,2
+ 279: -7,1
+ 280: -5,-1
+ 281: -9,0
+ 282: -4,-8
+ 283: -2,-9
+ 284: 5,-8
+ 285: 4,15
+ 286: 5,13
+ 287: 5,12
+ 288: -3,12
+ 289: -2,13
+ 290: -2,15
+ 291: -4,13
+ 292: 4,-9
+ 293: -2,-8
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
@@ -358,19 +442,19 @@ entities:
0,1:
0: 65535
0,2:
- 0: 255
+ 0: 15
+ 1: 240
1,0:
0: 65535
1,1:
0: 65535
1,2:
- 0: 65023
- 1: 512
+ 0: 65535
1,3:
- 0: 4983
+ 0: 1
+ 1: 4982
2,0:
- 0: 65503
- 2: 32
+ 0: 65535
2,1:
0: 15359
2,2:
@@ -386,54 +470,70 @@ entities:
0,-1:
0: 65535
1,-3:
- 0: 28928
+ 1: 28928
1,-2:
- 0: 65535
+ 1: 15
+ 0: 65520
1,-1:
0: 65535
2,-2:
0: 29456
2,-1:
- 0: 57335
- 3: 8192
+ 0: 65399
+ 1: 128
3,-1:
0: 4352
-3,-1:
- 0: 61128
+ 0: 61000
+ 1: 128
-3,-2:
0: 32768
-2,-2:
- 0: 65516
+ 0: 65508
+ 1: 8
-2,-1:
0: 65535
-2,-3:
0: 32768
-1,-3:
- 0: 65024
+ 1: 29696
+ 0: 35328
-1,-2:
- 0: 65535
+ 1: 7
+ 0: 65528
-1,-1:
0: 65535
-3,0:
0: 52462
-3,1:
- 0: 140
+ 0: 132
+ 1: 8
-2,0:
0: 65535
-2,1:
0: 65535
-2,2:
- 0: 52462
+ 0: 65534
-2,3:
- 0: 136
+ 0: 187
-1,0:
0: 65535
-1,1:
0: 65535
-1,2:
- 0: 30719
+ 0: 30591
+ 1: 128
-1,3:
- 0: 26487
+ 1: 18035
+ 0: 8452
+ -4,2:
+ 0: 52416
+ -4,3:
+ 0: 204
+ -3,2:
+ 0: 65520
+ -3,3:
+ 0: 255
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -453,42 +553,12 @@ entities:
- volume: 2500
temperature: 293.15
moles:
- - 21.824806
- - 82.102844
- - 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.813705
- - 82.06108
- - 0
- - 0
- - 0
- - 0
- 0
- 0
- 0
@@ -501,64 +571,65 @@ entities:
id: DecadeDove
- proto: AirAlarm
entities:
- - uid: 796
+ - uid: 2
components:
- type: Transform
- pos: -3.5,11.5
+ pos: -5.5,-1.5
parent: 1
- type: DeviceList
devices:
- - 392
- - 581
- - 678
- - 711
- - 793
+ - 382
+ - 401
+ - 870
+ - 638
+ - 751
+ - 927
- type: AtmosDevice
joinedGrid: 1
- - uid: 797
+ - uid: 586
components:
- type: Transform
- pos: 6.5,11.5
+ pos: -1.5,3.5
parent: 1
- type: DeviceList
devices:
- - 714
- - 703
- - 794
- - 385
- - 582
+ - 737
+ - 875
+ - 873
+ - 74
+ - 754
+ - 762
+ - 486
+ - 382
- type: AtmosDevice
joinedGrid: 1
- - uid: 798
+ - uid: 672
components:
- type: Transform
- pos: -2.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,5.5
parent: 1
- - type: DeviceList
- devices:
- - 322
- - 319
- - 576
- - 243
- - 581
- - 873
- type: AtmosDevice
joinedGrid: 1
- - uid: 799
+ - uid: 796
components:
- type: Transform
- pos: -4.5,3.5
+ pos: -3.5,11.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 797
+ components:
+ - type: Transform
+ pos: 6.5,11.5
parent: 1
- type: DeviceList
devices:
- - 357
- - 163
- - 875
- - 754
- - 762
- - 486
- - 576
- - 382
+ - 582
+ - 924
+ - 926
+ - 925
+ - 5
- type: AtmosDevice
joinedGrid: 1
- uid: 801
@@ -568,18 +639,11 @@ entities:
parent: 1
- type: DeviceList
devices:
- - 864
- - 692
+ - 591
- 788
+ - 792
+ - 865
- 509
- - 591
- - type: AtmosDevice
- joinedGrid: 1
- - uid: 802
- components:
- - type: Transform
- pos: -6.5,-1.5
- parent: 1
- type: AtmosDevice
joinedGrid: 1
- uid: 804
@@ -590,12 +654,12 @@ entities:
parent: 1
- type: DeviceList
devices:
- - 712
- - 792
+ - 27
+ - 768
- 590
- 580
- 243
- - 874
+ - 26
- type: AtmosDevice
joinedGrid: 1
- uid: 805
@@ -605,10 +669,10 @@ entities:
parent: 1
- type: DeviceList
devices:
- - 691
+ - 631
- 790
- - 766
- 23
+ - 645
- type: AtmosDevice
joinedGrid: 1
- uid: 806
@@ -618,11 +682,11 @@ entities:
parent: 1
- type: DeviceList
devices:
- - 789
- - 765
+ - 640
+ - 34
- 278
- 23
- - 20
+ - 105
- type: AtmosDevice
joinedGrid: 1
- uid: 863
@@ -633,14 +697,14 @@ entities:
parent: 1
- type: DeviceList
devices:
- - 562
- - 605
- - 645
+ - 893
+ - 867
- 81
- 89
- 102
- 509
- 401
+ - 789
- type: AtmosDevice
joinedGrid: 1
- uid: 871
@@ -651,68 +715,57 @@ entities:
parent: 1
- type: DeviceList
devices:
- - 640
- - 865
+ - 753
+ - 21
- 580
- 582
- - 583
- 278
- 591
- - 872
- - type: AtmosDevice
- joinedGrid: 1
- - uid: 880
- components:
- - type: Transform
- pos: -2.5,-1.5
- parent: 1
- - type: DeviceList
- devices:
- - 589
- - 638
- - 588
- - 382
- - 401
+ - 639
+ - 774
- type: AtmosDevice
joinedGrid: 1
- proto: Airlock
entities:
- - uid: 169
+ - uid: 223
components:
- type: MetaData
flags: PvsPriority
- type: Transform
- pos: -4.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,9.5
parent: 1
- - uid: 579
+ - uid: 326
components:
- type: MetaData
flags: PvsPriority
- type: Transform
- pos: -4.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,7.5
parent: 1
- proto: AirlockAtmospherics
entities:
- - uid: 9
+ - uid: 8
components:
- type: MetaData
flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,7.5
parent: 1
- proto: AirlockCargoGlass
entities:
- - uid: 164
+ - uid: 487
components:
- type: Transform
- pos: -3.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-2.5
parent: 1
- - uid: 487
+ - uid: 576
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -1.5,-2.5
+ pos: -2.5,3.5
parent: 1
- uid: 629
components:
@@ -742,6 +795,62 @@ entities:
- type: Transform
pos: 1.5,4.5
parent: 1
+ - uid: 88
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,5.5
+ parent: 1
+- proto: AirlockExternal
+ entities:
+ - uid: 103
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,11.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 483
+ - 154
+ - uid: 127
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,11.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 483
+ - 154
+ - uid: 140
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-8.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 474
+ - uid: 143
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-8.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 474
- proto: AirlockExternalGlass
entities:
- uid: 144
@@ -750,6 +859,7 @@ entities:
pos: -7.5,1.5
parent: 1
- type: DeviceLinkSink
+ invokeCounter: 2
links:
- 154
- 308
@@ -760,6 +870,7 @@ entities:
pos: -7.5,0.5
parent: 1
- type: DeviceLinkSink
+ invokeCounter: 2
links:
- 154
- 308
@@ -770,26 +881,18 @@ entities:
pos: 2.5,-7.5
parent: 1
- type: DeviceLinkSink
+ invokeCounter: 2
links:
- 154
- 483
- 474
- - uid: 235
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,9.5
- parent: 1
- - type: DeviceLinkSink
- links:
- - 483
- - 154
- uid: 271
components:
- type: Transform
pos: 0.5,-7.5
parent: 1
- type: DeviceLinkSink
+ invokeCounter: 2
links:
- 154
- 483
@@ -800,52 +903,34 @@ entities:
pos: 1.5,-7.5
parent: 1
- type: DeviceLinkSink
+ invokeCounter: 2
links:
- 154
- 483
- 474
- - uid: 492
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,9.5
- parent: 1
- - type: DeviceLinkSink
- links:
- - 483
- - 154
- uid: 866
components:
- type: Transform
pos: -7.5,-0.5
parent: 1
- type: DeviceLinkSink
- invokeCounter: 4
+ invokeCounter: 6
links:
- 154
- 308
- 483
- proto: AirlockGlass
entities:
- - uid: 11
- components:
- - type: Transform
- pos: -3.5,7.5
- parent: 1
- - uid: 239
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,7.5
- parent: 1
- - uid: 360
+ - uid: 10
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 4.5,5.5
parent: 1
- - uid: 378
+ - uid: 12
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -1.5,5.5
parent: 1
- proto: AirlockGlassShuttle
@@ -885,28 +970,41 @@ entities:
parent: 1
- proto: AirlockScienceGlass
entities:
- - uid: 178
+ - uid: 15
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 6.5,-1.5
parent: 1
- - uid: 654
+ - uid: 20
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 4.5,-2.5
parent: 1
- proto: AirSensor
entities:
- - uid: 163
+ - uid: 26
components:
- type: Transform
- pos: -2.5,-0.5
+ pos: 2.5,6.5
parent: 1
- - uid: 322
+ - type: DeviceNetwork
+ deviceLists:
+ - 804
+ - uid: 34
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,6.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,3.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 806
+ - uid: 107
+ components:
+ - type: Transform
+ pos: -3.5,4.5
parent: 1
- uid: 638
components:
@@ -914,54 +1012,55 @@ entities:
rot: 3.141592653589793 rad
pos: -3.5,-4.5
parent: 1
- - uid: 645
+ - type: DeviceNetwork
+ deviceLists:
+ - 2
+ - uid: 753
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 2.5,-5.5
+ pos: 5.5,2.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 871
- uid: 788
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 6.5,-3.5
parent: 1
- - uid: 789
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,3.5
- parent: 1
- uid: 790
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 10.5,0.5
parent: 1
- - uid: 792
+ - uid: 875
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,6.5
- parent: 1
- - uid: 793
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,10.5
+ pos: -3.5,-0.5
parent: 1
- - uid: 794
+ - type: DeviceNetwork
+ deviceLists:
+ - 586
+ - uid: 893
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,10.5
+ pos: 2.5,-4.5
parent: 1
- - uid: 865
+ - type: DeviceNetwork
+ deviceLists:
+ - 863
+ - uid: 926
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,4.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,9.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 797
- proto: AmeController
entities:
- uid: 822
@@ -1044,17 +1143,17 @@ entities:
- type: Transform
pos: -5.5,3.5
parent: 1
- - uid: 48
+ - uid: 108
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-6.5
parent: 1
- - uid: 108
+ - uid: 204
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 4.5,-4.5
+ pos: 6.5,6.5
parent: 1
- uid: 493
components:
@@ -1073,14 +1172,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -1.5,-3.5
parent: 1
-- proto: APCElectronics
- entities:
- - uid: 861
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.4250891,-4.138492
- parent: 1
- proto: AtmosDeviceFanTiny
entities:
- uid: 85
@@ -1089,17 +1180,23 @@ entities:
rot: 1.5707963267948966 rad
pos: -9.5,-0.5
parent: 1
- - uid: 234
+ - uid: 254
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-8.5
parent: 1
- - uid: 352
+ - uid: 348
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-8.5
+ parent: 1
+ - uid: 392
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,11.5
parent: 1
- uid: 585
components:
@@ -1113,6 +1210,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -9.5,0.5
parent: 1
+ - uid: 714
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,11.5
+ parent: 1
- uid: 756
components:
- type: Transform
@@ -1131,1165 +1234,1201 @@ entities:
rot: -1.5707963267948966 rad
pos: 0.5,-9.5
parent: 1
-- proto: Autolathe
+- proto: AtmosFixBlockerMarker
entities:
- - uid: 763
+ - uid: 48
components:
- type: Transform
- pos: -4.5,-5.5
+ pos: 0.5,9.5
parent: 1
-- proto: Bed
- entities:
- - uid: 128
+ - uid: 52
components:
- type: Transform
- pos: -3.5,10.5
+ pos: -1.5,13.5
parent: 1
- - uid: 172
+ - uid: 54
components:
- type: Transform
- pos: -2.5,10.5
+ pos: -0.5,9.5
parent: 1
- - uid: 269
+ - uid: 64
components:
- type: Transform
- pos: 6.5,10.5
+ pos: -1.5,14.5
parent: 1
- - uid: 516
+ - uid: 72
components:
- type: Transform
- pos: 8.5,1.5
+ pos: 3.5,9.5
parent: 1
-- proto: BedsheetBrown
- entities:
- - uid: 83
+ - uid: 77
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,10.5
+ pos: 1.5,9.5
parent: 1
- - uid: 751
+ - uid: 79
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,10.5
+ pos: -2.5,14.5
parent: 1
-- proto: BedsheetCaptain
- entities:
- - uid: 515
+ - uid: 86
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,1.5
+ pos: 2.5,9.5
parent: 1
-- proto: BedsheetCE
- entities:
- - uid: 374
+ - uid: 134
components:
- type: Transform
- pos: 6.5,10.5
+ pos: -1.5,15.5
parent: 1
-- proto: BenchSofaCorpCorner
- entities:
- - uid: 136
+ - uid: 556
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,6.5
+ pos: -2.5,13.5
parent: 1
- - type: Physics
- canCollide: False
- bodyType: Static
- - type: Fixtures
- fixtures: {}
-- proto: BenchSofaCorpLeft
- entities:
- - uid: 130
+ - uid: 558
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,6.5
+ pos: -2.5,12.5
parent: 1
- - type: Physics
- bodyType: Static
-- proto: BenchSofaCorpMiddle
- entities:
- - uid: 564
+ - uid: 559
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,6.5
+ pos: -3.5,12.5
parent: 1
- - type: Physics
- bodyType: Static
-- proto: BenchSofaCorpRight
- entities:
- - uid: 133
+ - uid: 560
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,7.5
+ pos: -3.5,13.5
parent: 1
- - type: Physics
- bodyType: Static
-- proto: BoozeDispenser
- entities:
- - uid: 173
+ - uid: 561
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,7.5
+ pos: 4.5,15.5
parent: 1
-- proto: BorgCharger
- entities:
- - uid: 105
+ - uid: 562
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-3.5
+ pos: 4.5,14.5
parent: 1
-- proto: BoxLighttube
- entities:
- - uid: 877
+ - uid: 563
components:
- type: Transform
- pos: -5.31096,6.302729
+ pos: 4.5,13.5
parent: 1
-- proto: CableApcExtension
- entities:
- - uid: 2
+ - uid: 566
components:
- type: Transform
- pos: 6.5,3.5
+ pos: 5.5,14.5
parent: 1
- - uid: 3
+ - uid: 567
components:
- type: Transform
- pos: 2.5,6.5
+ pos: 5.5,13.5
parent: 1
- - uid: 8
+ - uid: 569
components:
- type: Transform
- pos: -1.5,8.5
+ pos: 5.5,12.5
parent: 1
- - uid: 10
+ - uid: 570
components:
- type: Transform
- pos: 4.5,11.5
+ pos: 6.5,12.5
parent: 1
- - uid: 26
+ - uid: 572
components:
- type: Transform
- pos: -9.5,1.5
+ pos: 6.5,12.5
parent: 1
- - uid: 37
+ - uid: 573
components:
- type: Transform
- pos: -6.5,0.5
+ pos: 6.5,13.5
parent: 1
- - uid: 43
+ - uid: 579
components:
- type: Transform
- pos: -2.5,0.5
+ pos: 11.5,-2.5
parent: 1
- - uid: 52
+ - uid: 583
components:
- type: Transform
- pos: -0.5,8.5
+ pos: 7.5,-7.5
parent: 1
- - uid: 54
+ - uid: 588
components:
- type: Transform
- pos: -9.5,3.5
+ pos: 6.5,-7.5
parent: 1
- - uid: 64
+ - uid: 589
components:
- type: Transform
- pos: 0.5,8.5
+ pos: 5.5,-7.5
parent: 1
- - uid: 77
+ - uid: 592
components:
- type: Transform
- pos: 1.5,6.5
+ pos: 4.5,-7.5
parent: 1
- - uid: 79
+ - uid: 594
components:
- type: Transform
- pos: -9.5,-0.5
+ pos: 4.5,-8.5
parent: 1
- - uid: 97
+ - uid: 596
components:
- type: Transform
- pos: -1.5,14.5
+ pos: -4.5,-7.5
parent: 1
- - uid: 99
+ - uid: 597
components:
- type: Transform
- pos: -1.5,13.5
+ pos: 5.5,-8.5
parent: 1
- - uid: 107
+ - uid: 600
components:
- type: Transform
- pos: -5.5,2.5
+ pos: 6.5,-8.5
parent: 1
- - uid: 109
+ - uid: 601
components:
- type: Transform
- pos: 4.5,8.5
+ pos: 4.5,-9.5
parent: 1
- - uid: 110
+ - uid: 602
components:
- type: Transform
- pos: 4.5,10.5
+ pos: -3.5,-7.5
parent: 1
- - uid: 111
+ - uid: 603
components:
- type: Transform
- pos: 4.5,12.5
+ pos: -2.5,-7.5
parent: 1
- - uid: 117
+ - uid: 604
components:
- type: Transform
- pos: 5.5,-2.5
+ pos: -1.5,-7.5
parent: 1
- - uid: 119
+ - uid: 605
components:
- type: Transform
- pos: 10.5,-3.5
+ pos: -1.5,-8.5
parent: 1
- - uid: 122
+ - uid: 606
components:
- type: Transform
- pos: 10.5,-2.5
+ pos: -2.5,-8.5
parent: 1
- - uid: 126
+ - uid: 607
components:
- type: Transform
- pos: -5.5,1.5
+ pos: -3.5,-8.5
parent: 1
- - uid: 132
+ - uid: 609
components:
- type: Transform
- pos: -5.5,-3.5
+ pos: -1.5,-9.5
parent: 1
- - uid: 135
+ - uid: 610
components:
- type: Transform
- pos: 8.5,0.5
+ pos: -8.5,-2.5
parent: 1
- - uid: 137
+ - uid: 611
components:
- type: Transform
- pos: 9.5,0.5
+ pos: -8.5,4.5
parent: 1
- - uid: 141
+- proto: Autolathe
+ entities:
+ - uid: 763
components:
- type: Transform
- pos: 10.5,2.5
+ pos: -4.5,-5.5
parent: 1
- - uid: 142
+- proto: Bed
+ entities:
+ - uid: 322
components:
- type: Transform
- pos: 10.5,1.5
+ pos: -4.5,6.5
parent: 1
- - uid: 147
+ - uid: 346
components:
- type: Transform
- pos: -4.5,0.5
+ pos: -5.5,6.5
parent: 1
- - uid: 149
+ - uid: 453
components:
- type: Transform
- pos: -5.5,3.5
+ pos: -3.5,6.5
parent: 1
- - uid: 155
+ - uid: 516
components:
- type: Transform
- pos: 3.5,-4.5
+ pos: 8.5,1.5
parent: 1
- - uid: 156
+- proto: BedsheetBrown
+ entities:
+ - uid: 653
components:
- type: Transform
- pos: -1.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,6.5
parent: 1
- - uid: 157
+ - uid: 703
components:
- type: Transform
- pos: -2.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,6.5
parent: 1
- - uid: 165
+- proto: BedsheetCaptain
+ entities:
+ - uid: 515
components:
- type: Transform
- pos: -3.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,1.5
parent: 1
- - uid: 166
+- proto: BedsheetCE
+ entities:
+ - uid: 718
components:
- type: Transform
- pos: 2.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,6.5
parent: 1
- - uid: 177
+- proto: BenchSofaCorpCorner
+ entities:
+ - uid: 136
components:
- type: Transform
- pos: 5.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,6.5
parent: 1
- - uid: 180
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+ - type: Fixtures
+ fixtures: {}
+- proto: BenchSofaCorpLeft
+ entities:
+ - uid: 130
components:
- type: Transform
- pos: -2.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,6.5
parent: 1
- - uid: 185
+ - type: Physics
+ bodyType: Static
+- proto: BenchSofaCorpMiddle
+ entities:
+ - uid: 564
components:
- type: Transform
- pos: 5.5,5.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,6.5
parent: 1
- - uid: 210
+ - type: Physics
+ bodyType: Static
+- proto: BenchSofaCorpRight
+ entities:
+ - uid: 133
components:
- type: Transform
- pos: 5.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,7.5
parent: 1
- - uid: 252
+ - type: Physics
+ bodyType: Static
+- proto: BoozeDispenser
+ entities:
+ - uid: 173
components:
- type: Transform
- pos: 1.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,7.5
parent: 1
- - uid: 275
+- proto: BorgCharger
+ entities:
+ - uid: 719
components:
- type: Transform
- pos: 5.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-3.5
parent: 1
- - uid: 276
+- proto: BoxLighttube
+ entities:
+ - uid: 510
components:
- type: Transform
- pos: 6.5,0.5
+ pos: -3.5219057,10.621534
parent: 1
- - uid: 284
+- proto: CableApcExtension
+ entities:
+ - uid: 97
components:
- type: Transform
- pos: -5.5,-5.5
+ pos: 5.5,-2.5
parent: 1
- - uid: 298
+ - uid: 215
components:
- type: Transform
- pos: -7.5,0.5
+ pos: 6.5,6.5
parent: 1
- - uid: 301
+ - uid: 218
components:
- type: Transform
- pos: -2.5,13.5
+ pos: 5.5,6.5
parent: 1
- - uid: 302
+ - uid: 219
components:
- type: Transform
- pos: 4.5,9.5
+ pos: 5.5,7.5
parent: 1
- - uid: 303
+ - uid: 224
components:
- type: Transform
- pos: 4.5,14.5
+ pos: 5.5,8.5
parent: 1
- - uid: 333
+ - uid: 225
components:
- type: Transform
- pos: 5.5,13.5
+ pos: 5.5,9.5
parent: 1
- - uid: 351
+ - uid: 227
components:
- type: Transform
- pos: 4.5,13.5
+ pos: 5.5,10.5
parent: 1
- - uid: 356
+ - uid: 246
components:
- type: Transform
- pos: -9.5,0.5
+ pos: 5.5,11.5
parent: 1
- - uid: 387
+ - uid: 249
components:
- type: Transform
- pos: -8.5,3.5
+ pos: 5.5,12.5
parent: 1
- - uid: 389
+ - uid: 252
components:
- type: Transform
- pos: 0.5,4.5
+ pos: 5.5,13.5
parent: 1
- - uid: 390
+ - uid: 253
components:
- type: Transform
- pos: 0.5,5.5
+ pos: 5.5,5.5
parent: 1
- - uid: 391
+ - uid: 256
components:
- type: Transform
- pos: -0.5,5.5
+ pos: 4.5,5.5
parent: 1
- - uid: 393
+ - uid: 259
components:
- type: Transform
- pos: -1.5,5.5
+ pos: 3.5,5.5
parent: 1
- - uid: 394
+ - uid: 262
components:
- type: Transform
- pos: -1.5,6.5
+ pos: 2.5,5.5
parent: 1
- - uid: 395
+ - uid: 263
components:
- type: Transform
- pos: -1.5,7.5
+ pos: 1.5,5.5
parent: 1
- - uid: 396
+ - uid: 267
components:
- type: Transform
- pos: 8.5,2.5
+ pos: 0.5,5.5
parent: 1
- - uid: 402
+ - uid: 269
components:
- type: Transform
- pos: 8.5,3.5
+ pos: -0.5,5.5
parent: 1
- - uid: 403
+ - uid: 270
components:
- type: Transform
- pos: 7.5,3.5
+ pos: -1.5,5.5
parent: 1
- - uid: 404
+ - uid: 273
components:
- type: Transform
- pos: 10.5,-4.5
+ pos: -2.5,5.5
parent: 1
- - uid: 405
+ - uid: 275
components:
- type: Transform
- pos: 9.5,-4.5
+ pos: -2.5,6.5
parent: 1
- - uid: 406
+ - uid: 276
components:
- type: Transform
- pos: 9.5,-5.5
+ pos: -2.5,7.5
parent: 1
- - uid: 407
+ - uid: 280
components:
- type: Transform
- pos: 8.5,-5.5
+ pos: -2.5,8.5
parent: 1
- - uid: 409
+ - uid: 284
components:
- type: Transform
- pos: 8.5,-6.5
+ pos: -2.5,9.5
parent: 1
- - uid: 410
+ - uid: 286
components:
- type: Transform
- pos: 7.5,-6.5
+ pos: -2.5,10.5
parent: 1
- - uid: 411
+ - uid: 291
components:
- type: Transform
- pos: 6.5,-6.5
+ pos: -2.5,11.5
parent: 1
- - uid: 412
+ - uid: 292
components:
- type: Transform
- pos: 5.5,-6.5
+ pos: -2.5,12.5
parent: 1
- - uid: 413
+ - uid: 295
components:
- type: Transform
- pos: 5.5,-7.5
+ pos: -2.5,13.5
parent: 1
- - uid: 414
+ - uid: 298
components:
- type: Transform
- pos: 4.5,-8.5
+ pos: -3.5,5.5
parent: 1
- - uid: 415
+ - uid: 299
components:
- type: Transform
- pos: 4.5,-7.5
+ pos: -4.5,5.5
parent: 1
- - uid: 416
+ - uid: 399
components:
- type: Transform
- pos: 2.5,-8.5
+ pos: 3.5,-6.5
parent: 1
- - uid: 417
+ - uid: 402
components:
- type: Transform
- pos: 1.5,-8.5
+ pos: 2.5,-6.5
parent: 1
- - uid: 419
+ - uid: 403
components:
- type: Transform
- pos: 0.5,-8.5
+ pos: 1.5,-6.5
parent: 1
- - uid: 420
+ - uid: 404
components:
- type: Transform
- pos: -0.5,-8.5
+ pos: 1.5,-7.5
parent: 1
- - uid: 422
+ - uid: 405
components:
- type: Transform
- pos: -1.5,-8.5
+ pos: 1.5,-8.5
parent: 1
- - uid: 424
+ - uid: 406
components:
- type: Transform
- pos: -1.5,-7.5
+ pos: 2.5,-8.5
parent: 1
- - uid: 425
+ - uid: 407
components:
- type: Transform
- pos: -2.5,-7.5
+ pos: 3.5,-8.5
parent: 1
- - uid: 426
+ - uid: 409
components:
- type: Transform
- pos: -2.5,-6.5
+ pos: 4.5,-8.5
parent: 1
- - uid: 427
+ - uid: 410
components:
- type: Transform
- pos: -3.5,-6.5
+ pos: 5.5,-8.5
parent: 1
- - uid: 428
+ - uid: 413
components:
- type: Transform
- pos: -4.5,-6.5
+ pos: 6.5,-8.5
parent: 1
- - uid: 430
+ - uid: 414
components:
- type: Transform
- pos: -6.5,-5.5
+ pos: 0.5,-8.5
parent: 1
- - uid: 431
+ - uid: 415
components:
- type: Transform
- pos: -6.5,-4.5
+ pos: -0.5,-8.5
parent: 1
- - uid: 432
+ - uid: 416
components:
- type: Transform
- pos: -7.5,-4.5
+ pos: -1.5,-8.5
parent: 1
- - uid: 433
+ - uid: 417
components:
- type: Transform
- pos: -7.5,-3.5
+ pos: -3.5,-8.5
parent: 1
- - uid: 434
+ - uid: 419
components:
- type: Transform
- pos: -7.5,-2.5
+ pos: -2.5,-8.5
parent: 1
- - uid: 439
+ - uid: 432
components:
- type: Transform
- pos: -9.5,2.5
+ pos: -5.5,3.5
parent: 1
- - uid: 440
+ - uid: 433
components:
- type: Transform
- pos: 4.5,-4.5
+ pos: -5.5,2.5
parent: 1
- - uid: 444
+ - uid: 434
components:
- type: Transform
- pos: -3.5,-3.5
+ pos: -4.5,2.5
parent: 1
- - uid: 447
+ - uid: 436
components:
- type: Transform
- pos: -4.5,-3.5
+ pos: -3.5,2.5
parent: 1
- - uid: 452
+ - uid: 437
components:
- type: Transform
pos: -3.5,1.5
parent: 1
- - uid: 482
+ - uid: 438
components:
- type: Transform
- pos: 1.5,-2.5
+ pos: -3.5,0.5
parent: 1
- - uid: 494
+ - uid: 439
components:
- type: Transform
- pos: 3.5,-8.5
+ pos: -4.5,0.5
parent: 1
- - uid: 495
+ - uid: 440
components:
- type: Transform
- pos: -5.5,-6.5
+ pos: -5.5,0.5
parent: 1
- - uid: 512
+ - uid: 444
components:
- type: Transform
- pos: -7.5,-1.5
+ pos: -6.5,0.5
parent: 1
- - uid: 513
+ - uid: 445
components:
- type: Transform
- pos: -8.5,-1.5
+ pos: -7.5,0.5
parent: 1
- - uid: 514
+ - uid: 446
components:
- type: Transform
- pos: -9.5,-1.5
+ pos: -8.5,0.5
parent: 1
- - uid: 525
+ - uid: 447
components:
- type: Transform
- pos: 6.5,-3.5
+ pos: -8.5,1.5
parent: 1
- - uid: 526
+ - uid: 449
components:
- type: Transform
- pos: 7.5,-3.5
+ pos: -8.5,2.5
parent: 1
- - uid: 527
+ - uid: 450
components:
- type: Transform
- pos: 7.5,-4.5
+ pos: -1.5,-3.5
parent: 1
- - uid: 528
+ - uid: 452
components:
- type: Transform
- pos: 8.5,-3.5
+ pos: -2.5,-3.5
parent: 1
- - uid: 537
+ - uid: 454
components:
- type: Transform
- pos: 1.5,-5.5
+ pos: -3.5,-3.5
parent: 1
- - uid: 539
+ - uid: 459
components:
- type: Transform
- pos: 1.5,-6.5
+ pos: -4.5,-3.5
parent: 1
- - uid: 541
+ - uid: 460
components:
- type: Transform
- pos: -3.5,2.5
+ pos: -5.5,-3.5
parent: 1
- - uid: 542
+ - uid: 461
components:
- type: Transform
- pos: -3.5,3.5
+ pos: -6.5,-3.5
parent: 1
- - uid: 544
+ - uid: 467
components:
- type: Transform
- pos: -3.5,4.5
+ pos: 5.5,-1.5
parent: 1
- - uid: 545
+ - uid: 470
components:
- type: Transform
- pos: -4.5,4.5
+ pos: 6.5,-2.5
parent: 1
- - uid: 546
+ - uid: 472
components:
- type: Transform
- pos: -3.5,5.5
+ pos: 6.5,-3.5
parent: 1
- - uid: 547
+ - uid: 478
components:
- type: Transform
- pos: -3.5,6.5
+ pos: 7.5,-3.5
parent: 1
- - uid: 548
+ - uid: 482
components:
- type: Transform
- pos: -3.5,7.5
+ pos: 8.5,-3.5
parent: 1
- - uid: 550
+ - uid: 485
components:
- type: Transform
- pos: -3.5,8.5
+ pos: 9.5,-3.5
parent: 1
- - uid: 551
+ - uid: 490
components:
- type: Transform
- pos: -5.5,4.5
+ pos: 4.5,-2.5
parent: 1
- - uid: 552
+ - uid: 492
components:
- type: Transform
- pos: -4.5,6.5
+ pos: 3.5,-2.5
parent: 1
- - uid: 553
+ - uid: 494
components:
- type: Transform
- pos: 5.5,3.5
+ pos: 2.5,-2.5
parent: 1
- - uid: 554
+ - uid: 495
components:
- type: Transform
- pos: 5.5,4.5
+ pos: 1.5,-2.5
parent: 1
- - uid: 559
+ - uid: 512
components:
- type: Transform
- pos: 9.5,3.5
+ pos: 1.5,-3.5
parent: 1
- - uid: 560
+ - uid: 513
components:
- type: Transform
- pos: 10.5,3.5
+ pos: 1.5,-4.5
parent: 1
- - uid: 561
+ - uid: 519
components:
- type: Transform
- pos: 11.5,3.5
+ pos: 8.5,2.5
parent: 1
- - uid: 563
+ - uid: 524
components:
- type: Transform
- pos: 6.5,7.5
+ pos: 8.5,3.5
parent: 1
- - uid: 569
+ - uid: 525
components:
- type: Transform
- pos: 12.5,3.5
+ pos: 9.5,3.5
parent: 1
- - uid: 570
+ - uid: 526
components:
- type: Transform
- pos: 12.5,4.5
+ pos: 10.5,3.5
parent: 1
- - uid: 572
+ - uid: 527
components:
- type: Transform
- pos: 10.5,0.5
+ pos: 11.5,3.5
parent: 1
- - uid: 600
+ - uid: 528
components:
- type: Transform
- pos: -1.5,12.5
+ pos: 12.5,3.5
parent: 1
- - uid: 601
+ - uid: 531
components:
- type: Transform
- pos: -1.5,11.5
+ pos: 12.5,4.5
parent: 1
- - uid: 602
+ - uid: 533
components:
- type: Transform
- pos: -1.5,10.5
+ pos: 12.5,5.5
parent: 1
- - uid: 603
+ - uid: 537
components:
- type: Transform
- pos: -1.5,9.5
+ pos: 6.5,5.5
parent: 1
- - uid: 611
+ - uid: 538
components:
- type: Transform
- pos: 1.5,8.5
+ pos: 7.5,5.5
parent: 1
- - uid: 612
+ - uid: 539
components:
- type: Transform
- pos: 2.5,8.5
+ pos: 8.5,5.5
parent: 1
- - uid: 613
+ - uid: 540
components:
- type: Transform
- pos: 3.5,8.5
+ pos: 10.5,2.5
parent: 1
- - uid: 617
+ - uid: 541
components:
- type: Transform
- pos: 0.5,3.5
+ pos: 10.5,1.5
parent: 1
- - uid: 618
+ - uid: 542
components:
- type: Transform
- pos: 1.5,3.5
+ pos: 10.5,0.5
parent: 1
- - uid: 619
+ - uid: 544
components:
- type: Transform
- pos: 6.5,2.5
+ pos: 9.5,0.5
parent: 1
- - uid: 620
+ - uid: 545
components:
- type: Transform
- pos: 6.5,1.5
+ pos: 7.5,3.5
parent: 1
- - uid: 621
+ - uid: 546
components:
- type: Transform
- pos: 1.5,-4.5
+ pos: 6.5,3.5
parent: 1
- - uid: 622
+ - uid: 549
components:
- type: Transform
- pos: 1.5,-3.5
+ pos: 5.5,3.5
parent: 1
- - uid: 627
+ - uid: 551
components:
- type: Transform
- pos: 6.5,5.5
+ pos: 5.5,2.5
parent: 1
- - uid: 631
+ - uid: 553
components:
- type: Transform
- pos: 0.5,6.5
+ pos: 5.5,1.5
parent: 1
- - uid: 690
+ - uid: 554
components:
- type: Transform
- pos: -5.5,0.5
+ pos: 5.5,0.5
parent: 1
- - uid: 811
+- proto: CableHV
+ entities:
+ - uid: 152
components:
- type: Transform
- pos: 5.5,-1.5
+ pos: 2.5,2.5
parent: 1
-- proto: CableApcStack10
- entities:
- - uid: 86
+ - uid: 155
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5032141,-4.138492
+ pos: 1.5,2.5
parent: 1
-- proto: CableHV
- entities:
- - uid: 214
+ - uid: 156
components:
- type: Transform
- pos: 1.5,3.5
+ pos: 0.5,2.5
parent: 1
- - uid: 215
+ - uid: 157
+ components:
+ - type: Transform
+ pos: 1.5,3.5
+ parent: 1
+ - uid: 161
components:
- type: Transform
pos: 1.5,4.5
parent: 1
- - uid: 218
+ - uid: 163
components:
- type: Transform
pos: 1.5,5.5
parent: 1
- - uid: 219
+ - uid: 165
components:
- type: Transform
pos: 2.5,5.5
parent: 1
- - uid: 225
+ - uid: 166
components:
- type: Transform
pos: 3.5,5.5
parent: 1
- - uid: 227
+ - uid: 177
components:
- type: Transform
pos: 4.5,5.5
parent: 1
- - uid: 380
+ - uid: 178
components:
- type: Transform
- pos: 1.5,2.5
+ pos: 5.5,5.5
parent: 1
- - uid: 381
+ - uid: 180
components:
- type: Transform
- pos: 0.5,2.5
+ pos: 6.5,5.5
parent: 1
- - uid: 467
+ - uid: 185
components:
- type: Transform
- pos: 2.5,2.5
+ pos: 7.5,5.5
parent: 1
- - uid: 470
+ - uid: 186
components:
- type: Transform
- pos: 5.5,5.5
+ pos: 8.5,5.5
parent: 1
- - uid: 471
+- proto: CableMV
+ entities:
+ - uid: 37
components:
- type: Transform
- pos: 5.5,6.5
+ pos: 2.5,5.5
parent: 1
- - uid: 472
+ - uid: 43
components:
- type: Transform
- pos: 5.5,7.5
+ pos: -2.5,-2.5
parent: 1
- - uid: 473
+ - uid: 187
components:
- type: Transform
- pos: 5.5,8.5
+ pos: 0.5,2.5
parent: 1
- - uid: 476
+ - uid: 191
components:
- type: Transform
- pos: 6.5,8.5
+ pos: 1.5,2.5
parent: 1
- - uid: 478
+ - uid: 193
components:
- type: Transform
- pos: 7.5,8.5
+ pos: 1.5,3.5
parent: 1
-- proto: CableMV
- entities:
- - uid: 12
+ - uid: 194
components:
- type: Transform
- pos: 1.5,3.5
+ pos: 1.5,4.5
parent: 1
- - uid: 15
+ - uid: 200
components:
- type: Transform
- pos: 1.5,-2.5
+ pos: 1.5,5.5
parent: 1
- - uid: 24
+ - uid: 205
components:
- type: Transform
- pos: 1.5,-4.5
+ pos: 3.5,5.5
parent: 1
- - uid: 27
+ - uid: 206
components:
- type: Transform
- pos: 0.5,4.5
+ pos: 4.5,5.5
parent: 1
- - uid: 100
+ - uid: 209
components:
- type: Transform
- pos: 1.5,1.5
+ pos: 5.5,5.5
parent: 1
- - uid: 121
+ - uid: 210
components:
- type: Transform
- pos: 8.5,3.5
+ pos: 6.5,5.5
parent: 1
- - uid: 134
+ - uid: 214
components:
- type: Transform
- pos: 6.5,3.5
+ pos: 6.5,6.5
parent: 1
- - uid: 145
+ - uid: 301
components:
- type: Transform
- pos: -0.5,0.5
+ pos: 5.5,4.5
parent: 1
- - uid: 152
+ - uid: 302
components:
- type: Transform
- pos: 1.5,2.5
+ pos: 5.5,3.5
parent: 1
- - uid: 200
+ - uid: 303
components:
- type: Transform
- pos: -5.5,3.5
+ pos: 6.5,3.5
parent: 1
- - uid: 206
+ - uid: 304
components:
- type: Transform
- pos: 1.5,-0.5
+ pos: 7.5,3.5
parent: 1
- - uid: 209
+ - uid: 311
components:
- type: Transform
- pos: 4.5,0.5
+ pos: 8.5,3.5
parent: 1
- - uid: 249
+ - uid: 314
components:
- type: Transform
- pos: -2.5,-3.5
+ pos: 8.5,2.5
parent: 1
- - uid: 253
+ - uid: 324
components:
- type: Transform
- pos: 1.5,0.5
+ pos: 6.5,1.5
parent: 1
- - uid: 259
+ - uid: 325
components:
- type: Transform
- pos: -5.5,2.5
+ pos: 6.5,0.5
parent: 1
- - uid: 262
+ - uid: 329
components:
- type: Transform
- pos: 5.5,0.5
+ pos: 0.5,5.5
parent: 1
- - uid: 270
+ - uid: 330
components:
- type: Transform
- pos: 1.5,-1.5
+ pos: -0.5,5.5
parent: 1
- - uid: 273
+ - uid: 333
components:
- type: Transform
- pos: 0.5,0.5
+ pos: -1.5,5.5
parent: 1
- - uid: 286
+ - uid: 339
components:
- type: Transform
- pos: 5.5,-0.5
+ pos: -2.5,5.5
parent: 1
- - uid: 291
+ - uid: 342
components:
- type: Transform
- pos: 5.5,-1.5
+ pos: -2.5,4.5
parent: 1
- - uid: 315
+ - uid: 347
components:
- type: Transform
- pos: 6.5,0.5
+ pos: -2.5,3.5
parent: 1
- - uid: 324
+ - uid: 351
components:
- type: Transform
- pos: -1.5,0.5
+ pos: -2.5,2.5
parent: 1
- - uid: 330
+ - uid: 353
components:
- type: Transform
- pos: 2.5,0.5
+ pos: -3.5,2.5
parent: 1
- - uid: 339
+ - uid: 356
components:
- type: Transform
- pos: 3.5,0.5
+ pos: -3.5,1.5
parent: 1
- - uid: 342
+ - uid: 357
components:
- type: Transform
- pos: -2.5,0.5
+ pos: -3.5,0.5
parent: 1
- - uid: 363
+ - uid: 360
components:
- type: Transform
- pos: 1.5,-3.5
+ pos: -3.5,-0.5
parent: 1
- - uid: 388
+ - uid: 363
components:
- type: Transform
- pos: 0.5,2.5
+ pos: -3.5,-1.5
parent: 1
- - uid: 397
+ - uid: 378
components:
- type: Transform
- pos: 7.5,3.5
+ pos: -3.5,-2.5
parent: 1
- - uid: 398
+ - uid: 380
components:
- type: Transform
- pos: 6.5,2.5
+ pos: -4.5,2.5
parent: 1
- - uid: 399
+ - uid: 381
components:
- type: Transform
- pos: 6.5,1.5
+ pos: -5.5,2.5
parent: 1
- - uid: 436
+ - uid: 385
components:
- type: Transform
- pos: 2.5,-4.5
+ pos: -5.5,3.5
parent: 1
- - uid: 437
+ - uid: 387
components:
- type: Transform
- pos: 3.5,-4.5
+ pos: -1.5,-2.5
parent: 1
- - uid: 438
+ - uid: 388
components:
- type: Transform
- pos: 4.5,-4.5
+ pos: -1.5,-3.5
parent: 1
- - uid: 490
+ - uid: 389
components:
- type: Transform
- pos: -3.5,-0.5
+ pos: -0.5,-2.5
parent: 1
- - uid: 556
+ - uid: 390
components:
- type: Transform
- pos: 8.5,2.5
+ pos: 0.5,-2.5
parent: 1
- - uid: 566
+ - uid: 391
components:
- type: Transform
- pos: -3.5,-1.5
+ pos: 1.5,-2.5
parent: 1
- - uid: 647
+ - uid: 393
components:
- type: Transform
- pos: -1.5,-3.5
+ pos: 1.5,-3.5
parent: 1
- - uid: 683
+ - uid: 394
components:
- type: Transform
- pos: -3.5,-3.5
+ pos: 1.5,-4.5
parent: 1
- - uid: 697
+ - uid: 395
components:
- type: Transform
- pos: -4.5,0.5
+ pos: 1.5,-5.5
parent: 1
- - uid: 809
+ - uid: 396
components:
- type: Transform
- pos: -3.5,-2.5
+ pos: 1.5,-6.5
parent: 1
- - uid: 837
+ - uid: 397
components:
- type: Transform
- pos: 1.5,4.5
+ pos: 2.5,-6.5
parent: 1
- - uid: 842
+ - uid: 398
components:
- type: Transform
- pos: -3.5,0.5
+ pos: 3.5,-6.5
parent: 1
- - uid: 854
+ - uid: 420
components:
- type: Transform
- pos: -5.5,1.5
+ pos: 6.5,-0.5
parent: 1
- - uid: 855
+ - uid: 422
components:
- type: Transform
- pos: -5.5,0.5
+ pos: 6.5,-1.5
parent: 1
-- proto: CableTerminal
- entities:
- - uid: 462
+ - uid: 424
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,2.5
+ pos: 6.5,-2.5
parent: 1
-- proto: CapacitorStockPart
- entities:
- - uid: 101
+ - uid: 425
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.2532141,-3.9041169
+ pos: 5.5,-2.5
parent: 1
- - uid: 748
+ - uid: 427
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5813391,-3.7947419
+ pos: 4.5,-2.5
parent: 1
-- proto: CargoPallet
- entities:
- - uid: 148
+ - uid: 428
components:
- type: Transform
- pos: -5.5,2.5
+ pos: 3.5,-2.5
parent: 1
- - uid: 505
+ - uid: 430
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,2.5
+ pos: 2.5,-2.5
parent: 1
- - uid: 578
+ - uid: 431
+ components:
+ - type: Transform
+ pos: 5.5,-1.5
+ parent: 1
+ - uid: 535
+ components:
+ - type: Transform
+ pos: 7.5,5.5
+ parent: 1
+ - uid: 536
+ components:
+ - type: Transform
+ pos: 8.5,5.5
+ parent: 1
+ - uid: 666
+ components:
+ - type: Transform
+ pos: 6.5,2.5
+ parent: 1
+- proto: CableTerminal
+ entities:
+ - uid: 462
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,2.5
+ parent: 1
+- proto: CargoPallet
+ entities:
+ - uid: 148
+ components:
+ - type: Transform
+ pos: -5.5,2.5
+ parent: 1
+ - uid: 505
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,2.5
+ parent: 1
+ - uid: 578
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -2309,91 +2448,109 @@ entities:
parent: 1
- proto: Catwalk
entities:
- - uid: 34
+ - uid: 874
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-0.5
+ pos: -3.5,2.5
parent: 1
- - uid: 187
+ - uid: 894
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,1.5
+ pos: -3.5,0.5
parent: 1
- - uid: 254
+ - uid: 895
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,6.5
+ pos: 1.5,5.5
parent: 1
- - uid: 295
+ - uid: 896
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,0.5
+ pos: -2.5,5.5
parent: 1
- - uid: 299
+ - uid: 902
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 5.5,3.5
parent: 1
- - uid: 311
+ - uid: 903
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-2.5
+ pos: 6.5,3.5
parent: 1
- - uid: 485
+ - uid: 907
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-2.5
+ pos: 8.5,3.5
parent: 1
- - uid: 518
+ - uid: 908
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-5.5
+ pos: 5.5,5.5
parent: 1
- - uid: 655
+ - uid: 909
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,1.5
+ pos: 6.5,0.5
parent: 1
- - uid: 661
+ - uid: 910
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,5.5
+ pos: 1.5,-2.5
parent: 1
- - uid: 738
+ - uid: 911
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-3.5
+ pos: 1.5,-4.5
parent: 1
- - uid: 845
+ - uid: 912
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,5.5
+ pos: 1.5,-6.5
+ parent: 1
+ - uid: 913
+ components:
+ - type: Transform
+ pos: 1.5,-8.5
+ parent: 1
+ - uid: 914
+ components:
+ - type: Transform
+ pos: 6.5,-2.5
+ parent: 1
+ - uid: 915
+ components:
+ - type: Transform
+ pos: -3.5,-2.5
+ parent: 1
+ - uid: 916
+ components:
+ - type: Transform
+ pos: 10.5,3.5
+ parent: 1
+ - uid: 917
+ components:
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 1
+ - uid: 918
+ components:
+ - type: Transform
+ pos: 6.5,-4.5
parent: 1
- proto: ChairPilotSeat
entities:
- - uid: 162
+ - uid: 149
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 10.5,-0.5
+ pos: 7.5,5.5
parent: 1
- - uid: 454
+ - uid: 162
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 6.5,8.5
+ pos: 10.5,-0.5
parent: 1
- uid: 488
components:
@@ -2415,6 +2572,13 @@ entities:
rot: -1.5707963267948966 rad
pos: 7.405751,-4.5731897
parent: 1
+- proto: ClothingUnderSocksCoder
+ entities:
+ - uid: 773
+ components:
+ - type: Transform
+ pos: 8.412914,5.5955024
+ parent: 1
- proto: ComfyChair
entities:
- uid: 90
@@ -2441,11 +2605,11 @@ entities:
parent: 1
- proto: ComputerPowerMonitoring
entities:
- - uid: 453
+ - uid: 147
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 7.5,8.5
+ pos: 8.5,5.5
parent: 1
- proto: ComputerRadar
entities:
@@ -2559,10 +2723,10 @@ entities:
- 820
- proto: CrateEmptySpawner
entities:
- - uid: 460
+ - uid: 466
components:
- type: Transform
- pos: -2.5,2.5
+ pos: -1.5,2.5
parent: 1
- uid: 840
components:
@@ -2578,17 +2742,19 @@ entities:
parent: 1
- proto: CyborgEndoskeleton
entities:
- - uid: 839
+ - uid: 282
components:
- type: Transform
- pos: 8.552904,-2.3871548
+ rot: -1.5707963267948966 rad
+ pos: 9.5976925,-2.3687294
parent: 1
- proto: DefibrillatorCabinetFilled
entities:
- - uid: 366
+ - uid: 164
components:
- type: Transform
- pos: 6.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,2.5
parent: 1
- proto: DiceBag
entities:
@@ -2597,20 +2763,6 @@ entities:
- type: Transform
pos: 4.456059,0.65753937
parent: 1
-- proto: DoorElectronics
- entities:
- - uid: 88
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.4407141,-4.357242
- parent: 1
- - uid: 667
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.3313391,-4.544742
- parent: 1
- proto: DrinkAleGlass
entities:
- uid: 868
@@ -2648,12 +2800,36 @@ entities:
parent: 1
- proto: EmergencyLight
entities:
+ - uid: 247
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,13.5
+ parent: 1
- uid: 400
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 4.5,2.5
parent: 1
+ - uid: 659
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,13.5
+ parent: 1
+ - uid: 681
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,5.5
+ parent: 1
+ - uid: 821
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,8.5
+ parent: 1
- uid: 833
components:
- type: Transform
@@ -2693,12 +2869,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -0.5,-4.5
parent: 1
- - uid: 896
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,5.5
- parent: 1
- uid: 897
components:
- type: Transform
@@ -2745,19 +2915,61 @@ entities:
rot: 3.141592653589793 rad
pos: 3.5,5.5
parent: 1
+ - uid: 928
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,9.5
+ parent: 1
+ - uid: 929
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,5.5
+ parent: 1
- proto: ExosuitFabricator
entities:
- - uid: 170
+ - uid: 213
components:
- type: Transform
- pos: 9.5,-2.5
+ pos: 9.5,-3.5
parent: 1
+- proto: ExteriorLightTube
+ entities:
+ - uid: 697
+ components:
+ - type: MetaData
+ flags: InContainer
+ - type: Transform
+ parent: 696
+ - type: Physics
+ canCollide: False
+ - uid: 699
+ components:
+ - type: MetaData
+ flags: InContainer
+ - type: Transform
+ parent: 698
+ - type: Physics
+ canCollide: False
- proto: ExtinguisherCabinetFilled
entities:
- - uid: 238
+ - uid: 100
components:
- type: Transform
- pos: 8.5,4.5
+ pos: 7.5,4.5
+ parent: 1
+ - uid: 354
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,9.5
+ parent: 1
+ - uid: 518
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-6.5
parent: 1
- uid: 810
components:
@@ -2771,11 +2983,22 @@ entities:
rot: 3.141592653589793 rad
pos: 9.5,-4.5
parent: 1
- - uid: 924
+ - uid: 930
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,5.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,-6.5
+ parent: 1
+ - uid: 931
+ components:
+ - type: Transform
+ pos: -3.5,7.5
+ parent: 1
+ - uid: 932
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,-1.5
parent: 1
- proto: FaxMachineShip
entities:
@@ -2786,12 +3009,35 @@ entities:
parent: 1
- proto: Firelock
entities:
+ - uid: 5
+ components:
+ - type: Transform
+ pos: 5.5,11.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 797
- uid: 23
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 10.5,2.5
parent: 1
+ - uid: 41
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-8.5
+ parent: 1
+ - uid: 74
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,3.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 586
- uid: 81
components:
- type: Transform
@@ -2810,6 +3056,12 @@ entities:
rot: 3.141592653589793 rad
pos: 2.5,-7.5
parent: 1
+ - uid: 199
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-8.5
+ parent: 1
- uid: 243
components:
- type: Transform
@@ -2827,23 +3079,24 @@ entities:
rot: 3.141592653589793 rad
pos: -3.5,-1.5
parent: 1
- - uid: 385
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,9.5
- parent: 1
- - uid: 392
+ - type: DeviceNetwork
+ deviceLists:
+ - 586
+ - 2
+ - uid: 401
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -1.5,9.5
+ pos: -1.5,-2.5
parent: 1
- - uid: 401
+ - type: DeviceNetwork
+ deviceLists:
+ - 2
+ - uid: 473
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -1.5,-2.5
+ pos: -2.5,11.5
parent: 1
- uid: 486
components:
@@ -2851,37 +3104,31 @@ entities:
rot: 3.141592653589793 rad
pos: -7.5,-0.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 586
- uid: 509
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 4.5,-2.5
parent: 1
- - uid: 576
- components:
- - type: Transform
- pos: -3.5,3.5
- parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 801
- uid: 580
components:
- type: Transform
pos: 4.5,5.5
parent: 1
- - uid: 581
- components:
- - type: Transform
- pos: -3.5,7.5
- parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 871
- uid: 582
components:
- type: Transform
pos: 5.5,7.5
parent: 1
- - uid: 583
- components:
- - type: Transform
- pos: 6.5,5.5
- parent: 1
- uid: 590
components:
- type: Transform
@@ -2892,839 +3139,1110 @@ entities:
- type: Transform
pos: 6.5,-1.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 801
+ - uid: 691
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,9.5
+ parent: 1
+ - uid: 692
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,7.5
+ parent: 1
- uid: 754
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -7.5,1.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 586
- uid: 762
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -7.5,0.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 586
+ - uid: 774
+ components:
+ - type: Transform
+ pos: 6.5,5.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 871
+- proto: FirelockGlass
+ entities:
+ - uid: 927
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-5.5
+ parent: 1
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ deviceLists:
+ - 2
- proto: FloorDrain
entities:
- - uid: 867
+ - uid: 729
components:
- type: Transform
- pos: -5.5,4.5
+ pos: -2.5,8.5
parent: 1
- type: Fixtures
fixtures: {}
- proto: GasMixer
entities:
- - uid: 314
+ - uid: 248
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 7.5,5.5
+ pos: 6.5,8.5
parent: 1
- type: GasMixer
- inletTwoConcentration: 0.78
- inletOneConcentration: 0.22
+ inletTwoConcentration: 0.22000003
+ inletOneConcentration: 0.78
- type: AtmosDevice
joinedGrid: 1
-- proto: GasPassiveVent
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasOutletInjector
entities:
- - uid: 870
+ - uid: 725
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-9.5
+ pos: 5.5,12.5
parent: 1
- type: AtmosDevice
joinedGrid: 1
-- proto: GasPipeBend
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPassiveVent
entities:
- - uid: 120
+ - uid: 722
+ components:
+ - type: Transform
+ pos: -2.5,12.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 839
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 1.5,-9.5
+ pos: 4.5,-8.5
parent: 1
- - uid: 386
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPipeBend
+ entities:
+ - uid: 3
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 7.5,6.5
+ pos: 0.5,-4.5
parent: 1
- - uid: 700
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 612
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,8.5
parent: 1
- - uid: 715
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 664
components:
- type: Transform
- pos: -2.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,0.5
parent: 1
- - uid: 716
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 701
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,2.5
parent: 1
- - uid: 717
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 726
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,6.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,10.5
parent: 1
- - uid: 718
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 735
components:
- type: Transform
- pos: 6.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,2.5
parent: 1
- - uid: 731
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 837
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,4.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,-8.5
parent: 1
- - uid: 768
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 842
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 12.5,2.5
+ pos: 0.5,-5.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPipeFourway
entities:
- - uid: 263
- components:
- - type: Transform
- pos: 5.5,5.5
- parent: 1
- - uid: 614
+ - uid: 670
components:
- type: Transform
- pos: 1.5,6.5
+ pos: 1.5,5.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- proto: GasPipeStraight
entities:
- - uid: 72
+ - uid: 315
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,5.5
parent: 1
- - uid: 131
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 613
components:
- type: Transform
- pos: 1.5,5.5
+ pos: 5.5,7.5
parent: 1
- - uid: 186
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 614
components:
- type: Transform
- pos: 1.5,-7.5
+ pos: 5.5,6.5
parent: 1
- - uid: 193
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 616
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,-3.5
+ pos: 5.5,4.5
parent: 1
- - uid: 194
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 617
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,5.5
parent: 1
- - uid: 204
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 618
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,3.5
parent: 1
- - uid: 312
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 620
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -2.5,4.5
+ pos: 7.5,3.5
parent: 1
- - uid: 446
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 621
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 0.5,1.5
+ pos: 8.5,3.5
parent: 1
- - uid: 519
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 622
components:
- type: Transform
- pos: -3.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: 9.5,3.5
parent: 1
- - uid: 524
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 624
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,5.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,2.5
parent: 1
- - uid: 530
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 647
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,5.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,2.5
parent: 1
- - uid: 531
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 648
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,0.5
parent: 1
- - uid: 533
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 654
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,0.5
parent: 1
- - uid: 535
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 655
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -2.5,-2.5
+ pos: 10.5,0.5
parent: 1
- - uid: 536
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 663
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-8.5
+ pos: 11.5,1.5
parent: 1
- - uid: 538
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 668
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,5.5
parent: 1
- - uid: 549
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 674
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,5.5
parent: 1
- - uid: 558
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 675
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-2.5
+ pos: 6.5,-1.5
parent: 1
- - uid: 596
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 677
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-2.5
+ pos: -2.5,4.5
parent: 1
- - uid: 597
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 680
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,5.5
parent: 1
- - uid: 606
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 685
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 0.5,-5.5
+ pos: -1.5,5.5
parent: 1
- - uid: 607
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 690
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-0.5
+ pos: -2.5,3.5
parent: 1
- - uid: 609
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 705
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 6.5,0.5
+ pos: -2.5,7.5
parent: 1
- - uid: 610
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 707
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,6.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,9.5
parent: 1
- - uid: 615
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 708
components:
- type: Transform
- pos: 1.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,10.5
parent: 1
- - uid: 616
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 712
components:
- type: Transform
- pos: 1.5,4.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,11.5
parent: 1
- - uid: 623
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 717
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,8.5
parent: 1
- - uid: 639
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 727
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,11.5
parent: 1
- - uid: 648
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 731
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-2.5
+ pos: -3.5,6.5
parent: 1
- - uid: 663
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 732
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,5.5
+ pos: -3.5,7.5
parent: 1
- - uid: 664
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 738
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,5.5
+ pos: -3.5,1.5
parent: 1
- - uid: 665
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 740
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,5.5
+ pos: -3.5,-0.5
parent: 1
- - uid: 666
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 755
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -0.5,5.5
+ pos: -2.5,-2.5
parent: 1
- - uid: 668
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 760
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -1.5,5.5
+ pos: -1.5,-2.5
parent: 1
- - uid: 671
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 765
components:
- type: Transform
- pos: -3.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-2.5
parent: 1
- - uid: 672
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 766
components:
- type: Transform
- pos: -3.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-2.5
parent: 1
- - uid: 673
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 769
components:
- type: Transform
- pos: -3.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,6.5
parent: 1
- - uid: 674
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 770
components:
- type: Transform
- pos: -3.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,6.5
parent: 1
- - uid: 675
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 771
components:
- type: Transform
- pos: -3.5,2.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,4.5
parent: 1
- - uid: 677
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 776
components:
- type: Transform
- pos: -3.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-2.5
parent: 1
- - uid: 680
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 777
components:
- type: Transform
- pos: -3.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-2.5
parent: 1
- - uid: 694
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 781
components:
- type: Transform
- pos: 10.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-2.5
parent: 1
- - uid: 695
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 794
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,3.5
+ pos: 6.5,-0.5
parent: 1
- - uid: 696
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 798
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,3.5
+ pos: 6.5,-1.5
parent: 1
- - uid: 699
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 799
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,4.5
+ pos: 6.5,-2.5
parent: 1
- - uid: 701
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 802
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,6.5
+ pos: 6.5,-3.5
parent: 1
- - uid: 702
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 809
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-4.5
parent: 1
- - uid: 705
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 811
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-4.5
parent: 1
- - uid: 706
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 812
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-4.5
parent: 1
- - uid: 707
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 813
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-4.5
parent: 1
- - uid: 708
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 818
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 6.5,-1.5
+ pos: 1.5,-5.5
parent: 1
- - uid: 719
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 819
components:
- type: Transform
- pos: -2.5,7.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,-6.5
parent: 1
- - uid: 720
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 823
components:
- type: Transform
- pos: -2.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,-7.5
parent: 1
- - uid: 722
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 825
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-8.5
parent: 1
- - uid: 725
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 835
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 2.5,6.5
+ pos: 3.5,-8.5
parent: 1
- - uid: 726
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 845
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 3.5,6.5
+ pos: -1.5,-5.5
parent: 1
- - uid: 727
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 848
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 4.5,6.5
+ pos: -0.5,-5.5
parent: 1
- - uid: 728
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 851
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,6.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,-4.5
parent: 1
- - uid: 729
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 852
components:
- type: Transform
- pos: 6.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,-3.5
parent: 1
- - uid: 730
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 854
components:
- type: Transform
- pos: 6.5,8.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,-2.5
parent: 1
- - uid: 732
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 855
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -1.5,5.5
+ pos: -2.5,-1.5
parent: 1
- - uid: 735
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 872
components:
- type: Transform
- pos: 0.5,4.5
+ pos: -2.5,-0.5
parent: 1
- - uid: 740
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 892
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,1.5
+ pos: -3.5,-1.5
parent: 1
- - uid: 741
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeTJunction
+ entities:
+ - uid: 24
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -1.5,1.5
+ pos: -3.5,-2.5
parent: 1
- - uid: 769
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 615
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 10.5,2.5
+ pos: 5.5,5.5
parent: 1
- - uid: 770
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 619
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,2.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,3.5
parent: 1
- - uid: 771
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 623
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 8.5,2.5
+ pos: 10.5,3.5
parent: 1
- - uid: 772
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 665
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,2.5
+ pos: 9.5,0.5
parent: 1
- - uid: 773
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 683
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,2.5
+ pos: -2.5,5.5
parent: 1
- - uid: 774
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 693
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,5.5
parent: 1
- - uid: 775
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 702
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,6.5
parent: 1
- - uid: 776
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 706
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 3.5,2.5
+ pos: -2.5,8.5
parent: 1
- - uid: 777
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 741
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 2.5,2.5
+ pos: -3.5,0.5
parent: 1
- - uid: 781
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 775
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-9.5
+ pos: 1.5,-2.5
parent: 1
- - uid: 848
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 793
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 4.5,-2.5
+ pos: 6.5,0.5
parent: 1
- - uid: 876
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-9.5
- parent: 1
-- proto: GasPipeTJunction
- entities:
- - uid: 205
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-2.5
- parent: 1
- - uid: 540
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-2.5
- parent: 1
- - uid: 592
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,2.5
- parent: 1
- - uid: 624
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-5.5
- parent: 1
- - uid: 670
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,5.5
- parent: 1
- - uid: 693
- components:
- - type: Transform
- pos: 10.5,3.5
- parent: 1
- - uid: 698
- components:
- - type: Transform
- pos: 6.5,3.5
- parent: 1
- - uid: 721
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 815
components:
- type: Transform
- pos: -1.5,6.5
+ pos: 1.5,-4.5
parent: 1
- - uid: 737
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 816
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 1.5,1.5
+ pos: 6.5,-4.5
parent: 1
- - uid: 767
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 841
components:
- type: Transform
- pos: 11.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,-5.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPort
entities:
- - uid: 248
+ - uid: 530
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,5.5
+ pos: 6.5,9.5
parent: 1
- type: AtmosDevice
joinedGrid: 1
- - uid: 251
+ - uid: 548
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 8.5,6.5
+ pos: 6.5,10.5
parent: 1
- type: AtmosDevice
joinedGrid: 1
- - uid: 628
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 635
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,8.5
parent: 1
- type: AtmosDevice
joinedGrid: 1
-- proto: GasPressurePump
+- proto: GasVentPump
entities:
- - uid: 567
+ - uid: 27
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,5.5
+ pos: 1.5,6.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 804
- type: AtmosDevice
joinedGrid: 1
-- proto: GasVentPump
- entities:
- - uid: 20
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 99
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,3.5
+ pos: -3.5,8.5
parent: 1
- type: AtmosDevice
joinedGrid: 1
- - uid: 562
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 105
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-2.5
+ pos: 10.5,4.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 806
- type: AtmosDevice
joinedGrid: 1
- - uid: 589
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 631
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -3.5,-3.5
+ pos: 10.5,1.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 805
- type: AtmosDevice
joinedGrid: 1
- - uid: 678
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 639
components:
- type: Transform
- pos: -3.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,3.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 871
- type: AtmosDevice
joinedGrid: 1
- - uid: 691
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 728
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,5.5
parent: 1
- type: AtmosDevice
joinedGrid: 1
- - uid: 692
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 737
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,0.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 586
- type: AtmosDevice
joinedGrid: 1
- - uid: 703
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 751
components:
- type: Transform
- pos: 5.5,8.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,-3.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2
- type: AtmosDevice
joinedGrid: 1
- - uid: 872
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 772
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,3.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,3.5
parent: 1
- type: AtmosDevice
joinedGrid: 1
- - uid: 873
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 789
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,5.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,-3.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 863
- type: AtmosDevice
joinedGrid: 1
- - uid: 874
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 792
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 1.5,5.5
+ pos: 5.5,-2.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 801
- type: AtmosDevice
joinedGrid: 1
- - uid: 875
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 924
components:
- type: Transform
- pos: -3.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,8.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 797
- type: AtmosDevice
joinedGrid: 1
- proto: GasVentScrubber
entities:
- - uid: 319
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,4.5
- parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- - uid: 357
+ - uid: 21
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,1.5
+ pos: 6.5,1.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 871
- type: AtmosDevice
joinedGrid: 1
- - uid: 588
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 640
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-5.5
+ pos: 11.5,3.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 806
- type: AtmosDevice
joinedGrid: 1
- - uid: 605
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 645
components:
- type: Transform
- pos: 1.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,-0.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 805
- type: AtmosDevice
joinedGrid: 1
- - uid: 640
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 721
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 5.5,2.5
+ pos: -4.5,8.5
parent: 1
- type: AtmosDevice
joinedGrid: 1
- - uid: 711
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 767
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -3.5,9.5
+ pos: -3.5,6.5
parent: 1
- type: AtmosDevice
joinedGrid: 1
- - uid: 712
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 768
components:
- type: Transform
- pos: 1.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,6.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 804
- type: AtmosDevice
joinedGrid: 1
- - uid: 714
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 865
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,-5.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 801
- type: AtmosDevice
joinedGrid: 1
- - uid: 765
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 867
components:
- type: Transform
- pos: 12.5,3.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,-5.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 863
- type: AtmosDevice
joinedGrid: 1
- - uid: 766
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 870
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-5.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2
- type: AtmosDevice
joinedGrid: 1
- - uid: 864
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 873
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-2.5
+ pos: -2.5,0.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 586
- type: AtmosDevice
joinedGrid: 1
-- proto: GasVolumePump
- entities:
- - uid: 191
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 925
components:
- type: Transform
- pos: 1.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,10.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 797
- type: AtmosDevice
joinedGrid: 1
- proto: GravityGeneratorMini
entities:
- - uid: 344
+ - uid: 274
components:
- type: Transform
- pos: -3.5,-7.5
+ pos: 8.5,6.5
parent: 1
- proto: Grille
entities:
@@ -3734,6 +4252,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -0.5,8.5
parent: 1
+ - uid: 115
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-0.5
+ parent: 1
- uid: 118
components:
- type: Transform
@@ -3752,56 +4276,122 @@ entities:
rot: 3.141592653589793 rad
pos: 1.5,8.5
parent: 1
- - uid: 242
+ - uid: 234
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 2.5,8.5
+ pos: 0.5,-1.5
parent: 1
- - uid: 336
+ - uid: 235
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,-1.5
parent: 1
- - uid: 443
+ - uid: 239
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 7.5,10.5
+ pos: 2.5,-1.5
parent: 1
- - uid: 499
+ - uid: 240
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-0.5
parent: 1
- - uid: 736
+ - uid: 242
components:
- type: Transform
- pos: 11.5,6.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,8.5
parent: 1
- - uid: 742
+ - uid: 332
components:
- type: Transform
- pos: 12.5,6.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,0.5
parent: 1
- - uid: 743
+ - uid: 334
components:
- type: Transform
- pos: 12.5,7.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,1.5
parent: 1
- - uid: 744
+ - uid: 336
components:
- type: Transform
- pos: 13.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-3.5
parent: 1
- - uid: 745
+ - uid: 443
components:
- type: Transform
- pos: 13.5,6.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,10.5
parent: 1
- - uid: 746
+ - uid: 476
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,1.5
+ parent: 1
+ - uid: 499
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-3.5
+ parent: 1
+ - uid: 547
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,0.5
+ parent: 1
+ - uid: 694
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,1.5
+ parent: 1
+ - uid: 695
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,0.5
+ parent: 1
+ - uid: 700
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-0.5
+ parent: 1
+ - uid: 736
+ components:
+ - type: Transform
+ pos: 11.5,6.5
+ parent: 1
+ - uid: 742
+ components:
+ - type: Transform
+ pos: 12.5,6.5
+ parent: 1
+ - uid: 743
+ components:
+ - type: Transform
+ pos: 12.5,7.5
+ parent: 1
+ - uid: 744
+ components:
+ - type: Transform
+ pos: 13.5,7.5
+ parent: 1
+ - uid: 745
+ components:
+ - type: Transform
+ pos: 13.5,6.5
+ parent: 1
+ - uid: 746
components:
- type: Transform
pos: 14.5,6.5
@@ -3833,11 +4423,11 @@ entities:
parent: 1
- proto: Gyroscope
entities:
- - uid: 343
+ - uid: 106
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,6.5
parent: 1
- proto: HandheldGPSBasic
entities:
@@ -3847,14 +4437,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 3.546164,-5.340608
parent: 1
-- proto: IntercomElectronics
- entities:
- - uid: 862
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.3782141,-3.9041169
- parent: 1
- proto: JetpackMiniFilled
entities:
- uid: 780
@@ -3914,47 +4496,30 @@ entities:
- 0
- proto: LockerChiefEngineerFilledHardsuit
entities:
- - uid: 213
+ - uid: 172
components:
- type: Transform
- pos: 5.5,10.5
+ pos: -5.5,4.5
parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.8978093
- - 7.139378
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- proto: LockerSalvageSpecialistFilled
entities:
- - uid: 851
+ - uid: 211
components:
- type: Transform
- pos: -2.5,8.5
+ pos: -4.5,4.5
parent: 1
- - uid: 852
+ - uid: 715
components:
- type: Transform
- pos: -4.5,8.5
+ pos: -3.5,4.5
parent: 1
- proto: LockerWallMedical
entities:
- - uid: 221
+ - uid: 786
components:
- type: Transform
- pos: 7.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-3.5
parent: 1
- type: Lock
locked: False
@@ -3982,20 +4547,17 @@ entities:
showEnts: False
occludes: True
ents:
- - 237
- - uid: 786
+ - 153
+ - uid: 890
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-3.5
+ pos: 6.5,4.5
parent: 1
- - type: Lock
- locked: False
- type: EntityStorage
air:
volume: 200
immutable: False
- temperature: 293.1496
+ temperature: 293.14923
moles:
- 1.7459903
- 6.568249
@@ -4015,7 +4577,7 @@ entities:
showEnts: False
occludes: True
ents:
- - 153
+ - 237
- proto: MaterialReclaimer
entities:
- uid: 779
@@ -4023,18 +4585,6 @@ entities:
- type: Transform
pos: -6.5,-3.5
parent: 1
-- proto: MatterBinStockPart
- entities:
- - uid: 749
- components:
- - type: Transform
- pos: -2.2688391,-3.6853669
- parent: 1
- - uid: 750
- components:
- - type: Transform
- pos: -2.2219641,-3.3416169
- parent: 1
- proto: MedkitFilled
entities:
- uid: 153
@@ -4051,30 +4601,16 @@ entities:
- type: MetaData
flags: InContainer
- type: Transform
- parent: 221
+ parent: 890
- type: Physics
canCollide: False
- type: InsideEntityStorage
-- proto: MicroManipulatorStockPart
- entities:
- - uid: 859
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5969641,-3.3572419
- parent: 1
- - uid: 860
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.6282141,-3.5916169
- parent: 1
- proto: MopBucketFull
entities:
- - uid: 277
+ - uid: 481
components:
- type: Transform
- pos: -5.603009,6.631767
+ pos: -3.7719057,10.355909
parent: 1
- type: ContainerContainer
containers:
@@ -4085,13 +4621,14 @@ entities:
shark_slot: !type:ContainerSlot
showEnts: False
occludes: True
- ent: 280
+ ent: 508
- proto: MopItem
entities:
- - uid: 16
+ - uid: 221
components:
- type: Transform
- pos: -5.710291,6.38702
+ rot: 1.5707963267948966 rad
+ pos: -3.5375307,10.481003
parent: 1
- proto: Multitool
entities:
@@ -4111,11 +4648,11 @@ entities:
linkModeActive: False
- proto: NitrogenCanister
entities:
- - uid: 282
+ - uid: 316
components:
- type: Transform
anchored: True
- pos: 8.5,6.5
+ pos: 7.5,8.5
parent: 1
- type: Physics
bodyType: Static
@@ -4138,11 +4675,11 @@ entities:
parent: 1
- proto: OxygenCanister
entities:
- - uid: 211
+ - uid: 341
components:
- type: Transform
anchored: True
- pos: 8.5,5.5
+ pos: 6.5,9.5
parent: 1
- type: Physics
bodyType: Static
@@ -4150,11 +4687,11 @@ entities:
joinedGrid: 1
- proto: PaintingAmogusTriptych
entities:
- - uid: 812
+ - uid: 627
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 11.5,2.5
+ pos: 11.5,-1.5
parent: 1
- proto: PersonalAI
entities:
@@ -4168,7 +4705,7 @@ entities:
- uid: 196
components:
- type: Transform
- pos: 3.3429353,-3.887483
+ pos: 3.3311083,-3.8082356
parent: 1
- uid: 503
components:
@@ -4191,10 +4728,10 @@ entities:
parent: 1
- proto: PlushieAtmosian
entities:
- - uid: 835
+ - uid: 251
components:
- type: Transform
- pos: 7.4777355,6.4889383
+ pos: 5.6111116,10.513407
parent: 1
- proto: PlushieSharkBlue
entities:
@@ -4203,20 +4740,22 @@ entities:
- type: Transform
pos: 8.354213,1.415276
parent: 1
- - uid: 280
+- proto: PlushieSharkPink
+ entities:
+ - uid: 508
components:
- type: MetaData
flags: InContainer
- type: Transform
- parent: 277
+ parent: 481
- type: Physics
canCollide: False
- proto: PortableScrubber
entities:
- - uid: 653
+ - uid: 671
components:
- type: Transform
- pos: -2.5,4.5
+ pos: 6.5,10.5
parent: 1
- proto: PosterContrabandBorgFancyv2
entities:
@@ -4228,11 +4767,10 @@ entities:
parent: 1
- proto: PosterContrabandBountyHunters
entities:
- - uid: 161
+ - uid: 891
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-1.5
+ pos: -6.5,-1.5
parent: 1
- proto: PosterContrabandEnergySwords
entities:
@@ -4259,19 +4797,18 @@ entities:
parent: 1
- proto: PosterContrabandMissingGloves
entities:
- - uid: 223
+ - uid: 678
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 5.5,11.5
+ pos: -5.5,7.5
parent: 1
- proto: PosterContrabandNuclearDeviceInformational
entities:
- - uid: 481
+ - uid: 471
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-1.5
+ pos: -0.5,2.5
parent: 1
- proto: PosterLegitDejaVu
entities:
@@ -4323,10 +4860,11 @@ entities:
parent: 1
- proto: PosterLegitSMPiping
entities:
- - uid: 881
+ - uid: 523
components:
- type: Transform
- pos: 8.5,7.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,7.5
parent: 1
- proto: PosterLegitStateLaws
entities:
@@ -4352,13 +4890,21 @@ entities:
rot: 3.141592653589793 rad
pos: -1.5,-4.5
parent: 1
-- proto: PottedPlantRandomPlastic
+- proto: PottedPlant27
entities:
- - uid: 71
+ - uid: 238
components:
- type: Transform
pos: 5.5,-3.5
parent: 1
+ - type: ContainerContainer
+ containers:
+ stash: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 241
+- proto: PottedPlantRandomPlastic
+ entities:
- uid: 139
components:
- type: Transform
@@ -4369,16 +4915,6 @@ entities:
- type: Transform
pos: 13.5,3.5
parent: 1
- - uid: 534
- components:
- - type: Transform
- pos: 6.5,9.5
- parent: 1
- - uid: 755
- components:
- - type: Transform
- pos: -2.5,9.5
- parent: 1
- proto: PowerCellRecharger
entities:
- uid: 642
@@ -4388,174 +4924,184 @@ entities:
parent: 1
- proto: Poweredlight
entities:
- - uid: 140
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-0.5
- parent: 1
- - uid: 143
+ - uid: 168
components:
- type: MetaData
flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: 8.5,3.5
+ pos: 8.5,-4.5
parent: 1
- uid: 201
components:
- type: MetaData
flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,2.5
parent: 1
- - uid: 247
+ - uid: 307
components:
- type: MetaData
flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,6.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,-4.5
parent: 1
- uid: 327
components:
- type: MetaData
flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-6.5
parent: 1
- uid: 506
components:
- type: MetaData
flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,-0.5
parent: 1
- - uid: 510
+ - uid: 599
components:
- type: MetaData
flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: 13.5,3.5
parent: 1
- - uid: 523
+ - uid: 682
components:
- type: MetaData
flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,3.5
parent: 1
- - uid: 574
+- proto: PoweredlightEmpty
+ entities:
+ - uid: 696
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: -8.5,-0.5
+ pos: -1.5,13.5
parent: 1
- - uid: 586
+ - type: ContainerContainer
+ containers:
+ light_bulb: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 697
+ - type: ApcPowerReceiver
+ powerLoad: 100
+ - uid: 698
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,13.5
parent: 1
- - uid: 593
- components:
- - type: MetaData
- flags: PvsPriority
+ - type: ContainerContainer
+ containers:
+ light_bulb: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 699
+ - type: ApcPowerReceiver
+ powerLoad: 100
+- proto: PoweredSmallLight
+ entities:
+ - uid: 128
+ components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,9.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,8.5
parent: 1
- - uid: 594
+ - uid: 352
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 7.5,6.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,-0.5
parent: 1
- - uid: 599
+ - uid: 355
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,5.5
+ parent: 1
+ - uid: 514
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: 13.5,3.5
+ pos: 3.5,5.5
parent: 1
- - uid: 681
+ - uid: 552
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
- pos: -1.5,2.5
+ pos: 6.5,9.5
parent: 1
- - uid: 682
+- proto: RadioHandheld
+ entities:
+ - uid: 80
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
- pos: 2.5,3.5
+ pos: 3.561789,-5.121858
parent: 1
- - uid: 821
+ - uid: 158
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -4.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 11.558688,1.1160057
parent: 1
- - uid: 825
+- proto: Railing
+ entities:
+ - uid: 660
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,13.5
parent: 1
-- proto: PoweredSmallLight
- entities:
- - uid: 179
+ - uid: 661
components:
- type: Transform
- pos: -6.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,14.5
parent: 1
- - uid: 181
+ - uid: 673
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -5.5,6.5
+ pos: -1.5,13.5
parent: 1
-- proto: RadioHandheld
- entities:
- - uid: 80
+ - uid: 711
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 3.561789,-5.121858
+ pos: 4.5,14.5
parent: 1
- - uid: 158
+- proto: RailingRound
+ entities:
+ - uid: 687
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.558688,1.1160057
+ rot: 3.141592653589793 rad
+ pos: 4.5,15.5
+ parent: 1
+ - uid: 716
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,15.5
parent: 1
- proto: RandomSoap
entities:
- uid: 636
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,4.5
+ pos: -3.5,8.5
parent: 1
- proto: RandomSpawner
entities:
@@ -4605,6 +5151,86 @@ entities:
- type: Transform
pos: 1.5,-2.5
parent: 1
+- proto: ReinforcedWindow
+ entities:
+ - uid: 109
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,1.5
+ parent: 1
+ - uid: 110
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,0.5
+ parent: 1
+ - uid: 111
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,1.5
+ parent: 1
+ - uid: 112
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-1.5
+ parent: 1
+ - uid: 117
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-0.5
+ parent: 1
+ - uid: 119
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-1.5
+ parent: 1
+ - uid: 120
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,0.5
+ parent: 1
+ - uid: 121
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-1.5
+ parent: 1
+ - uid: 122
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-0.5
+ parent: 1
+ - uid: 125
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,0.5
+ parent: 1
+ - uid: 126
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,2.5
+ parent: 1
+ - uid: 131
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-4.5
+ parent: 1
+ - uid: 132
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-1.5
+ parent: 1
- proto: RemoteSignaller
entities:
- uid: 154
@@ -4626,9 +5252,9 @@ entities:
- Pressed: DoorBolt
144:
- Pressed: DoorBolt
- 235:
+ 127:
- Pressed: DoorBolt
- 492:
+ 103:
- Pressed: DoorBolt
- uid: 479
components:
@@ -4666,6 +5292,121 @@ entities:
parent: 1
- proto: ShuttersNormalOpen
entities:
+ - uid: 11
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-3.5
+ parent: 1
+ - uid: 16
+ components:
+ - type: Transform
+ pos: 3.5,8.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 920
+ - uid: 169
+ components:
+ - type: Transform
+ pos: 0.5,8.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 920
+ - uid: 170
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,10.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 921
+ - uid: 179
+ components:
+ - type: Transform
+ pos: -0.5,8.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 920
+ - uid: 181
+ components:
+ - type: Transform
+ pos: 1.5,8.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 920
+ - uid: 216
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-3.5
+ parent: 1
+ - uid: 306
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,10.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 922
+ - uid: 312
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,8.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 921
+ - uid: 504
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,1.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 830
+ - uid: 529
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,0.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 830
+ - uid: 581
+ components:
+ - type: Transform
+ pos: 2.5,8.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 920
+ - uid: 593
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,8.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 922
+ - uid: 630
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-0.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 830
- uid: 689
components:
- type: Transform
@@ -4675,38 +5416,91 @@ entities:
- type: DeviceLinkSink
links:
- 830
-- proto: ShuttleWindow
- entities:
- - uid: 246
+ - uid: 864
components:
- type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,1.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 919
+ - uid: 876
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,0.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 919
+ - uid: 877
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-0.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 919
+ - uid: 880
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 3.5,1.5
parent: 1
- - uid: 292
+ - type: DeviceLinkSink
+ links:
+ - 919
+ - uid: 881
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: 3.5,0.5
parent: 1
- - uid: 445
+ - type: DeviceLinkSink
+ links:
+ - 919
+ - uid: 883
components:
- type: Transform
- pos: -0.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-0.5
parent: 1
- - uid: 448
+ - type: DeviceLinkSink
+ links:
+ - 919
+ - uid: 885
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,6.5
+ pos: 2.5,-1.5
parent: 1
- - uid: 449
+ - type: DeviceLinkSink
+ links:
+ - 919
+ - uid: 886
components:
- type: Transform
pos: 1.5,-1.5
parent: 1
- - uid: 450
+ - type: DeviceLinkSink
+ links:
+ - 919
+ - uid: 889
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 919
+- proto: ShuttleWindow
+ entities:
+ - uid: 448
components:
- type: Transform
- pos: -0.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,6.5
parent: 1
- uid: 457
components:
@@ -4720,16 +5514,6 @@ entities:
rot: 3.141592653589793 rad
pos: 13.5,6.5
parent: 1
- - uid: 459
- components:
- - type: Transform
- pos: 2.5,-1.5
- parent: 1
- - uid: 461
- components:
- - type: Transform
- pos: -0.5,0.5
- parent: 1
- uid: 463
components:
- type: Transform
@@ -4760,12 +5544,6 @@ entities:
rot: 3.141592653589793 rad
pos: 12.5,1.5
parent: 1
- - uid: 573
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-1.5
- parent: 1
- uid: 688
components:
- type: Transform
@@ -4809,11 +5587,6 @@ entities:
- type: Transform
pos: -0.5,8.5
parent: 1
- - uid: 753
- components:
- - type: Transform
- pos: 3.5,-0.5
- parent: 1
- uid: 800
components:
- type: Transform
@@ -4832,12 +5605,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -4.5,10.5
parent: 1
- - uid: 841
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,0.5
- parent: 1
- uid: 858
components:
- type: Transform
@@ -4873,6 +5640,10 @@ entities:
- Pressed: DoorBolt
271:
- Pressed: DoorBolt
+ 143:
+ - Pressed: DoorBolt
+ 140:
+ - Pressed: DoorBolt
- uid: 483
components:
- type: Transform
@@ -4887,16 +5658,16 @@ entities:
- Pressed: DoorBolt
866:
- Pressed: DoorBolt
- 492:
- - Pressed: DoorBolt
- 235:
- - Pressed: DoorBolt
271:
- Pressed: DoorBolt
489:
- Pressed: DoorBolt
189:
- Pressed: DoorBolt
+ 127:
+ - Pressed: DoorBolt
+ 103:
+ - Pressed: DoorBolt
- uid: 830
components:
- type: Transform
@@ -4907,13 +5678,88 @@ entities:
linkedPorts:
689:
- Pressed: Toggle
+ 504:
+ - Pressed: Toggle
+ 529:
+ - Pressed: Toggle
+ 630:
+ - Pressed: Toggle
+- proto: SignalButtonDirectional
+ entities:
+ - uid: 919
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 877:
+ - Pressed: Toggle
+ 876:
+ - Pressed: Toggle
+ 864:
+ - Pressed: Toggle
+ 889:
+ - Pressed: Toggle
+ 886:
+ - Pressed: Toggle
+ 885:
+ - Pressed: Toggle
+ 883:
+ - Pressed: Toggle
+ 881:
+ - Pressed: Toggle
+ 880:
+ - Pressed: Toggle
+ - uid: 920
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,4.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 179:
+ - Pressed: Toggle
+ 169:
+ - Pressed: Toggle
+ 181:
+ - Pressed: Toggle
+ 581:
+ - Pressed: Toggle
+ 16:
+ - Pressed: Toggle
+ - uid: 921
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,10.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 170:
+ - Pressed: Toggle
+ 312:
+ - Pressed: Toggle
+ - uid: 922
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,10.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 306:
+ - Pressed: Toggle
+ 593:
+ - Pressed: Toggle
- proto: SignLastIdiot
entities:
- - uid: 504
+ - uid: 9
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -2.5,3.5
+ pos: -4.5,3.5
parent: 1
- proto: SignSecureMed
entities:
@@ -4925,10 +5771,10 @@ entities:
parent: 1
- proto: SinkWide
entities:
- - uid: 61
+ - uid: 368
components:
- type: Transform
- pos: -5.5,4.5
+ pos: -3.5,8.5
parent: 1
- proto: SMESBasic
entities:
@@ -4953,24 +5799,24 @@ entities:
parent: 1
- proto: SpawnPointSalvageSpecialist
entities:
- - uid: 660
+ - uid: 372
components:
- type: Transform
- pos: -3.5,9.5
+ pos: -4.5,5.5
parent: 1
- proto: SpawnPointStationEngineer
entities:
- - uid: 346
+ - uid: 277
components:
- type: Transform
- pos: 5.5,9.5
+ pos: -5.5,5.5
parent: 1
- proto: SprayBottleSpaceCleaner
entities:
- - uid: 909
+ - uid: 522
components:
- type: Transform
- pos: -5.271,6.6839633
+ pos: -3.1625307,10.762159
parent: 1
- proto: SubstationBasic
entities:
@@ -5022,21 +5868,11 @@ entities:
- type: Transform
pos: -4.5,-4.5
parent: 1
- - uid: 838
- components:
- - type: Transform
- pos: -2.5,-3.5
- parent: 1
- uid: 844
components:
- type: Transform
pos: -5.5,-4.5
parent: 1
- - uid: 846
- components:
- - type: Transform
- pos: -2.5,-4.5
- parent: 1
- proto: TableCounterWood
entities:
- uid: 371
@@ -5101,12 +5937,6 @@ entities:
parent: 1
- proto: Thruster
entities:
- - uid: 41
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-9.5
- parent: 1
- uid: 46
components:
- type: Transform
@@ -5119,16 +5949,16 @@ entities:
rot: 1.5707963267948966 rad
pos: -8.5,-2.5
parent: 1
- - uid: 224
+ - uid: 279
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-9.5
+ pos: 5.5,14.5
parent: 1
- - uid: 279
+ - uid: 283
components:
- type: Transform
- pos: 5.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-7.5
parent: 1
- uid: 287
components:
@@ -5142,17 +5972,29 @@ entities:
rot: 1.5707963267948966 rad
pos: -8.5,4.5
parent: 1
+ - uid: 309
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-9.5
+ parent: 1
- uid: 313
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -3.5,-8.5
parent: 1
- - uid: 348
+ - uid: 320
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 7.5,-7.5
+ pos: 4.5,-9.5
+ parent: 1
+ - uid: 337
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-7.5
parent: 1
- uid: 349
components:
@@ -5166,12 +6008,6 @@ entities:
rot: 3.141592653589793 rad
pos: 5.5,-8.5
parent: 1
- - uid: 353
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-7.5
- parent: 1
- uid: 362
components:
- type: Transform
@@ -5199,49 +6035,57 @@ entities:
rot: 1.5707963267948966 rad
pos: -3.5,12.5
parent: 1
-- proto: ToiletEmpty
+- proto: ToiletDirtyWater
entities:
- - uid: 372
+ - uid: 426
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -6.5,4.5
+ pos: -4.5,8.5
parent: 1
- proto: ToolboxElectricalFilled
entities:
- - uid: 687
+ - uid: 633
components:
- type: Transform
- pos: 7.5525436,-2.4825954
+ pos: 8.471577,-2.2281044
parent: 1
- proto: ToyAmongPequeno
entities:
- - uid: 633
+ - uid: 241
+ components:
+ - type: MetaData
+ flags: InContainer
+ - type: Transform
+ parent: 238
+ - type: Physics
+ canCollide: False
+ - uid: 534
components:
- type: Transform
- pos: 8.839711,6.2352433
+ pos: -1.4978473,15.473528
parent: 1
- proto: ToySpawner
entities:
- - uid: 127
+ - uid: 61
components:
- type: Transform
- pos: -3.5,10.5
+ pos: -4.5,6.5
parent: 1
- uid: 598
components:
- type: Transform
pos: 3.5,7.5
parent: 1
- - uid: 630
+ - uid: 628
components:
- type: Transform
- pos: -2.5,10.5
+ pos: -3.5,6.5
parent: 1
- - uid: 632
+ - uid: 730
components:
- type: Transform
- pos: 6.5,10.5
+ pos: -5.5,6.5
parent: 1
- proto: ToySword
entities:
@@ -5307,17 +6151,17 @@ entities:
- Middle: Off
- proto: VendingMachineCargoDrobe
entities:
- - uid: 125
+ - uid: 720
components:
- type: Transform
- pos: 4.5,3.5
+ pos: -6.5,4.5
parent: 1
- proto: VendingMachineCigs
entities:
- - uid: 815
+ - uid: 649
components:
- type: Transform
- pos: 4.5,2.5
+ pos: 4.5,3.5
parent: 1
- proto: VendingMachineEngiDrobe
entities:
@@ -5335,17 +6179,17 @@ entities:
parent: 1
- proto: VendingMachineSalvage
entities:
- - uid: 522
+ - uid: 101
components:
- type: Transform
- pos: 3.5,-6.5
+ pos: -2.5,-4.5
parent: 1
- proto: VendingMachineTankDispenserEVA
entities:
- - uid: 685
+ - uid: 145
components:
- type: Transform
- pos: -0.5,-6.5
+ pos: -2.5,-3.5
parent: 1
- proto: VendingMachineYouTool
entities:
@@ -5363,13 +6207,6 @@ entities:
- type: Transform
pos: 14.5,5.5
parent: 1
- - uid: 5
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 4.5,-7.5
- parent: 1
- uid: 6
components:
- type: MetaData
@@ -5610,13 +6447,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -1.5,-4.5
parent: 1
- - uid: 74
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -2.5,3.5
- parent: 1
- uid: 75
components:
- type: MetaData
@@ -5639,6 +6469,14 @@ entities:
- type: Transform
pos: -0.5,4.5
parent: 1
+ - uid: 83
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,9.5
+ parent: 1
- uid: 92
components:
- type: MetaData
@@ -5671,62 +6509,66 @@ entities:
rot: 1.5707963267948966 rad
pos: -6.5,5.5
parent: 1
- - uid: 103
+ - uid: 104
components:
- type: MetaData
flags: PvsPriority
- type: Transform
- pos: -0.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,9.5
parent: 1
- - uid: 104
+ - uid: 113
components:
- type: MetaData
flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,9.5
+ pos: 4.5,11.5
parent: 1
- - uid: 106
+ - uid: 114
components:
- type: MetaData
flags: PvsPriority
- type: Transform
- pos: 4.5,-8.5
+ pos: 4.5,12.5
parent: 1
- - uid: 112
+ - uid: 116
components:
- type: MetaData
flags: PvsPriority
- type: Transform
- pos: 4.5,13.5
+ pos: 12.5,-1.5
parent: 1
- - uid: 113
+ - uid: 135
components:
- type: MetaData
flags: PvsPriority
- type: Transform
- pos: 4.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,4.5
parent: 1
- - uid: 114
+ - uid: 137
components:
- type: MetaData
flags: PvsPriority
- type: Transform
- pos: 4.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,4.5
parent: 1
- - uid: 115
+ - uid: 141
components:
- type: MetaData
flags: PvsPriority
- type: Transform
- pos: 5.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,4.5
parent: 1
- - uid: 116
+ - uid: 142
components:
- type: MetaData
flags: PvsPriority
- type: Transform
- pos: 12.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,6.5
parent: 1
- uid: 150
components:
@@ -5750,13 +6592,6 @@ entities:
- type: Transform
pos: 7.5,-0.5
parent: 1
- - uid: 168
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -1.5,-7.5
- parent: 1
- uid: 171
components:
- type: MetaData
@@ -5833,14 +6668,6 @@ entities:
rot: 3.141592653589793 rad
pos: -8.5,-1.5
parent: 1
- - uid: 199
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,4.5
- parent: 1
- uid: 202
components:
- type: MetaData
@@ -5865,14 +6692,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -6.5,-1.5
parent: 1
- - uid: 216
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,5.5
- parent: 1
- uid: 220
components:
- type: MetaData
@@ -5910,21 +6729,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -7.5,3.5
parent: 1
- - uid: 240
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -5.5,5.5
- parent: 1
- - uid: 241
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,4.5
- parent: 1
- uid: 244
components:
- type: MetaData
@@ -5954,13 +6758,6 @@ entities:
rot: 3.141592653589793 rad
pos: 9.5,7.5
parent: 1
- - uid: 256
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 11.5,2.5
- parent: 1
- uid: 257
components:
- type: MetaData
@@ -5991,22 +6788,6 @@ entities:
- type: Transform
pos: 3.5,3.5
parent: 1
- - uid: 266
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,7.5
- parent: 1
- - uid: 267
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,7.5
- parent: 1
- uid: 268
components:
- type: MetaData
@@ -6014,13 +6795,6 @@ entities:
- type: Transform
pos: -0.5,3.5
parent: 1
- - uid: 274
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -1.5,-8.5
- parent: 1
- uid: 281
components:
- type: MetaData
@@ -6029,14 +6803,6 @@ entities:
rot: 3.141592653589793 rad
pos: -1.5,-3.5
parent: 1
- - uid: 283
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,6.5
- parent: 1
- uid: 285
components:
- type: MetaData
@@ -6075,40 +6841,13 @@ entities:
- type: Transform
pos: -1.5,12.5
parent: 1
- - uid: 304
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -2.5,12.5
- parent: 1
- uid: 305
components:
- type: MetaData
flags: PvsPriority
- type: Transform
- pos: 5.5,12.5
- parent: 1
- - uid: 306
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -1.5,14.5
- parent: 1
- - uid: 307
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -1.5,15.5
- parent: 1
- - uid: 309
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 3.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,3.5
parent: 1
- uid: 310
components:
@@ -6117,13 +6856,6 @@ entities:
- type: Transform
pos: -1.5,11.5
parent: 1
- - uid: 316
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -2.5,11.5
- parent: 1
- uid: 317
components:
- type: MetaData
@@ -6138,13 +6870,13 @@ entities:
- type: Transform
pos: -4.5,11.5
parent: 1
- - uid: 320
+ - uid: 319
components:
- type: MetaData
flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
- pos: 6.5,7.5
+ pos: -4.5,7.5
parent: 1
- uid: 323
components:
@@ -6154,20 +6886,6 @@ entities:
rot: 3.141592653589793 rad
pos: 5.5,-6.5
parent: 1
- - uid: 325
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 4.5,14.5
- parent: 1
- - uid: 326
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 5.5,11.5
- parent: 1
- uid: 328
components:
- type: MetaData
@@ -6176,13 +6894,6 @@ entities:
rot: 3.141592653589793 rad
pos: -2.5,-6.5
parent: 1
- - uid: 329
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -2.5,13.5
- parent: 1
- uid: 331
components:
- type: MetaData
@@ -6190,13 +6901,6 @@ entities:
- type: Transform
pos: -7.5,5.5
parent: 1
- - uid: 334
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 4.5,15.5
- parent: 1
- uid: 335
components:
- type: MetaData
@@ -6205,44 +6909,19 @@ entities:
rot: 3.141592653589793 rad
pos: 4.5,4.5
parent: 1
- - uid: 337
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,4.5
- parent: 1
- - uid: 341
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -1.5,13.5
- parent: 1
- - uid: 347
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-7.5
- parent: 1
- - uid: 354
+ - uid: 343
components:
- type: MetaData
flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-7.5
+ pos: 3.5,-6.5
parent: 1
- - uid: 355
+ - uid: 344
components:
- type: MetaData
flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-6.5
+ pos: -0.5,-6.5
parent: 1
- uid: 358
components:
@@ -6283,7 +6962,7 @@ entities:
rot: -1.5707963267948966 rad
pos: 3.5,4.5
parent: 1
- - uid: 368
+ - uid: 366
components:
- type: MetaData
flags: PvsPriority
@@ -6306,6 +6985,14 @@ entities:
- type: Transform
pos: 9.5,4.5
parent: 1
+ - uid: 374
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,7.5
+ parent: 1
- uid: 376
components:
- type: MetaData
@@ -6321,6 +7008,30 @@ entities:
- type: Transform
pos: -4.5,3.5
parent: 1
+ - uid: 386
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-6.5
+ parent: 1
+ - uid: 411
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,7.5
+ parent: 1
+ - uid: 412
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-6.5
+ parent: 1
- uid: 441
components:
- type: MetaData
@@ -6372,21 +7083,21 @@ entities:
- type: Transform
pos: -0.5,-7.5
parent: 1
- - uid: 508
+ - uid: 550
components:
- type: MetaData
flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,9.5
parent: 1
- - uid: 604
+ - uid: 632
components:
- type: MetaData
flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,9.5
parent: 1
- uid: 795
components:
@@ -6396,13 +7107,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -1.5,10.5
parent: 1
- - uid: 813
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -2.5,-1.5
- parent: 1
- uid: 817
components:
- type: MetaData
@@ -6428,18 +7132,19 @@ entities:
parent: 1
- proto: WarningAir
entities:
- - uid: 649
+ - uid: 574
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,7.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,9.5
parent: 1
- proto: WarpPointShip
entities:
- - uid: 21
+ - uid: 71
components:
- type: Transform
- pos: 12.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,5.5
parent: 1
- proto: WeaponCapacitorRecharger
entities:
@@ -6466,13 +7171,6 @@ entities:
rot: 3.141592653589793 rad
pos: 3.546164,-4.793733
parent: 1
-- proto: WeaponLaserGun
- entities:
- - uid: 635
- components:
- - type: Transform
- pos: -0.35904384,6.960963
- parent: 1
- proto: WelderIndustrial
entities:
- uid: 656
@@ -6504,14 +7202,14 @@ entities:
parent: 1
- proto: Wrench
entities:
- - uid: 637
+ - uid: 266
components:
- type: Transform
- pos: 8.462758,-4.4906874
+ pos: 5.36551,10.458939
parent: 1
- - uid: 760
+ - uid: 637
components:
- type: Transform
- pos: 7.330324,6.3472447
+ pos: 8.462758,-4.4906874
parent: 1
...
diff --git a/Resources/Maps/_NF/Shuttles/disciple.yml b/Resources/Maps/_NF/Shuttles/disciple.yml
new file mode 100644
index 000000000000..993bbeeb7888
--- /dev/null
+++ b/Resources/Maps/_NF/Shuttles/disciple.yml
@@ -0,0 +1,1621 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 20: FloorBrokenWood
+ 46: FloorGlass
+ 119: FloorWood
+ 121: Lattice
+ 122: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 1
+ components:
+ - type: MetaData
+ name: grid
+ - type: Transform
+ pos: -0.47058776,-0.52941173
+ parent: invalid
+ - type: MapGrid
+ chunks:
+ 0,0:
+ ind: 0,0
+ tiles: dwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAEegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAFAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAdwAAAAABFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAdwAAAAACdwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA
+ version: 6
+ - type: Broadphase
+ - type: Physics
+ bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ - type: Fixtures
+ fixtures: {}
+ - type: OccluderTree
+ - type: SpreaderGrid
+ - type: Shuttle
+ - type: GridPathfinding
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ color: '#FFFFFFFF'
+ id: Dirt
+ decals:
+ 0: -1,2
+ 1: -2,2
+ 2: -1,3
+ 3: 0,4
+ 4: 2,4
+ 5: 1,4
+ 6: 3,2
+ 7: 2,-1
+ 8: -1,-1
+ 9: -1,-2
+ 10: 0,-2
+ 11: -2,-2
+ 12: -2,-1
+ 13: -3,1
+ 14: -1,4
+ 15: -2,4
+ 26: 0,-3
+ 27: 4,-2
+ 32: -2,6
+ 33: -2,5
+ 34: -3,5
+ 35: 3,-2
+ 36: 2,5
+ 40: 1,0
+ 41: -2,1
+ - node:
+ color: '#FFFFFFFF'
+ id: Rust
+ decals:
+ 16: -2,-1
+ 17: -3,0
+ 18: -3,-2
+ 19: -3,-1
+ 20: 0,-2
+ 21: 0,-1
+ 22: 2,2
+ 23: 3,4
+ 24: 2,5
+ 25: -4,1
+ 28: 4,-1
+ 29: -2,4
+ 30: -3,5
+ 31: -2,6
+ 38: -1,5
+ 39: 1,0
+ 42: 2,-2
+ 43: 0,3
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnBox
+ decals:
+ 37: -2,6
+ - type: GridAtmosphere
+ version: 2
+ data:
+ tiles:
+ 0,0:
+ 0: 65535
+ -1,0:
+ 0: 61439
+ 1: 4096
+ 0,1:
+ 0: 1279
+ 1: 2816
+ 1,0:
+ 0: 4371
+ 1: 544
+ 1,1:
+ 0: 1
+ 1: 272
+ -2,0:
+ 0: 2184
+ -2,1:
+ 1: 136
+ -1,1:
+ 0: 28415
+ 1: 37120
+ 0,-1:
+ 0: 65521
+ 1: 14
+ 1,-1:
+ 0: 13072
+ 1: 32
+ -2,-1:
+ 1: 34816
+ -1,-1:
+ 1: 30
+ 0: 65504
+ 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:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+ - type: NavMap
+- proto: ActionToggleLight
+ entities:
+ - uid: 112
+ components:
+ - type: MetaData
+ flags: InContainer
+ - type: Transform
+ parent: 156
+ - type: InstantAction
+ container: 156
+- proto: AirAlarm
+ entities:
+ - uid: 194
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-0.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 119
+ - 193
+ - type: AtmosDevice
+ joinedGrid: 1
+- proto: AirlockGlassShuttle
+ entities:
+ - uid: 31
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,1.5
+ parent: 1
+- proto: AltarConvertMaint
+ entities:
+ - uid: 96
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,4.5
+ parent: 1
+- proto: APCBasic
+ entities:
+ - uid: 158
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,1.5
+ parent: 1
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 118
+ components:
+ - type: Transform
+ pos: -4.5,1.5
+ parent: 1
+- proto: AtmosFixBlockerMarker
+ entities:
+ - uid: 29
+ components:
+ - type: Transform
+ pos: -2.5,-3.5
+ parent: 1
+ - uid: 113
+ components:
+ - type: Transform
+ pos: 1.5,-3.5
+ parent: 1
+ - uid: 171
+ components:
+ - type: Transform
+ pos: 1.5,6.5
+ parent: 1
+ - uid: 178
+ components:
+ - type: Transform
+ pos: 3.5,-3.5
+ parent: 1
+ - uid: 181
+ components:
+ - type: Transform
+ pos: 2.5,-3.5
+ parent: 1
+ - uid: 182
+ components:
+ - type: Transform
+ pos: 4.5,5.5
+ parent: 1
+ - uid: 187
+ components:
+ - type: Transform
+ pos: -3.5,-2.5
+ parent: 1
+ - uid: 188
+ components:
+ - type: Transform
+ pos: -1.5,-3.5
+ parent: 1
+ - uid: 189
+ components:
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 1
+ - uid: 196
+ components:
+ - type: Transform
+ pos: -4.5,-1.5
+ parent: 1
+ - uid: 197
+ components:
+ - type: Transform
+ pos: -4.5,-0.5
+ parent: 1
+ - uid: 198
+ components:
+ - type: Transform
+ pos: 5.5,1.5
+ parent: 1
+ - uid: 199
+ components:
+ - type: Transform
+ pos: 5.5,2.5
+ parent: 1
+ - uid: 200
+ components:
+ - type: Transform
+ pos: 3.5,6.5
+ parent: 1
+ - uid: 201
+ components:
+ - type: Transform
+ pos: 4.5,6.5
+ parent: 1
+ - uid: 202
+ components:
+ - type: Transform
+ pos: 0.5,6.5
+ parent: 1
+ - uid: 203
+ components:
+ - type: Transform
+ pos: -0.5,7.5
+ parent: 1
+ - uid: 204
+ components:
+ - type: Transform
+ pos: -3.5,7.5
+ parent: 1
+ - uid: 205
+ components:
+ - type: Transform
+ pos: -3.5,6.5
+ parent: 1
+ - uid: 206
+ components:
+ - type: Transform
+ pos: -4.5,5.5
+ parent: 1
+ - uid: 207
+ components:
+ - type: Transform
+ pos: -4.5,4.5
+ parent: 1
+ - uid: 208
+ components:
+ - type: Transform
+ pos: -3.5,3.5
+ parent: 1
+ - uid: 209
+ components:
+ - type: Transform
+ pos: 5.5,-2.5
+ parent: 1
+- proto: BookDemonomiconRandom
+ entities:
+ - uid: 98
+ components:
+ - type: Transform
+ pos: -2.3135006,-1.4496882
+ parent: 1
+- proto: BookshelfFilled
+ entities:
+ - uid: 97
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -0.5,4.5
+ parent: 1
+- proto: CableApcExtension
+ entities:
+ - uid: 64
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 1
+ - uid: 67
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 1
+ - uid: 68
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 1
+ - uid: 69
+ components:
+ - type: Transform
+ pos: -1.5,0.5
+ parent: 1
+ - uid: 70
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 1
+ - uid: 71
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 1
+ - uid: 72
+ components:
+ - type: Transform
+ pos: -3.5,1.5
+ parent: 1
+ - uid: 73
+ components:
+ - type: Transform
+ pos: -4.5,1.5
+ parent: 1
+ - uid: 74
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 1
+ - uid: 75
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 1
+ - uid: 76
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 1
+ - uid: 77
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 1
+ - uid: 79
+ components:
+ - type: Transform
+ pos: 3.5,-0.5
+ parent: 1
+ - uid: 80
+ components:
+ - type: Transform
+ pos: 3.5,0.5
+ parent: 1
+ - uid: 81
+ components:
+ - type: Transform
+ pos: 3.5,1.5
+ parent: 1
+ - uid: 82
+ components:
+ - type: Transform
+ pos: 3.5,2.5
+ parent: 1
+ - uid: 83
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 1
+ - uid: 84
+ components:
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 1
+ - uid: 85
+ components:
+ - type: Transform
+ pos: -0.5,4.5
+ parent: 1
+ - uid: 87
+ components:
+ - type: Transform
+ pos: -1.5,-0.5
+ parent: 1
+ - uid: 88
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 1
+ - uid: 157
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 1
+ - uid: 160
+ components:
+ - type: Transform
+ pos: -1.5,4.5
+ parent: 1
+ - uid: 161
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 1
+ - uid: 162
+ components:
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 1
+ - uid: 183
+ components:
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 1
+ - uid: 184
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 1
+- proto: CableApcStack1
+ entities:
+ - uid: 78
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.24719,-1.1895173
+ parent: 1
+- proto: CableHV
+ entities:
+ - uid: 55
+ components:
+ - type: Transform
+ pos: 4.5,-0.5
+ parent: 1
+ - uid: 56
+ components:
+ - type: Transform
+ pos: 4.5,-1.5
+ parent: 1
+- proto: CableMV
+ entities:
+ - uid: 38
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 1
+ - uid: 57
+ components:
+ - type: Transform
+ pos: 4.5,-1.5
+ parent: 1
+ - uid: 58
+ components:
+ - type: Transform
+ pos: 3.5,-1.5
+ parent: 1
+ - uid: 59
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 1
+ - uid: 60
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 1
+ - uid: 61
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 1
+ - uid: 62
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 1
+ - uid: 63
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 1
+ - uid: 65
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 1
+- proto: CandleBlack
+ entities:
+ - uid: 99
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.8135002,2.8150184
+ parent: 1
+ - uid: 124
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.13703,2.8444297
+ parent: 1
+- proto: ChairFolding
+ entities:
+ - uid: 147
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,1.5
+ parent: 1
+- proto: ClosetWallMaintenanceFilledRandom
+ entities:
+ - uid: 136
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,2.5
+ parent: 1
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14923
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: ComputerTabletopShuttle
+ entities:
+ - uid: 131
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,1.5
+ parent: 1
+- proto: ComputerTabletopStationRecords
+ entities:
+ - uid: 130
+ components:
+ - type: Transform
+ pos: 2.5,2.5
+ parent: 1
+- proto: Crematorium
+ entities:
+ - uid: 27
+ components:
+ - type: Transform
+ pos: -1.5,6.5
+ parent: 1
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14923
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: CrowbarRed
+ entities:
+ - uid: 151
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.2905545,-0.5521434
+ parent: 1
+- proto: CultAltarSpawner
+ entities:
+ - uid: 95
+ components:
+ - type: Transform
+ pos: -2.5,-1.5
+ parent: 1
+- proto: DefibrillatorEmpty
+ entities:
+ - uid: 159
+ components:
+ - type: Transform
+ pos: 0.5,-2.6290417
+ parent: 1
+- proto: DrinkBottleWhiskey
+ entities:
+ - uid: 186
+ components:
+ - type: Transform
+ pos: -2.2092133,5.491998
+ parent: 1
+- proto: DrinkBottleWine
+ entities:
+ - uid: 126
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.46056,2.4032536
+ parent: 1
+- proto: FaxMachineShip
+ entities:
+ - uid: 132
+ components:
+ - type: Transform
+ pos: 3.5,2.5
+ parent: 1
+- proto: FireExtinguisher
+ entities:
+ - uid: 144
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.6960783,-0.6486493
+ parent: 1
+- proto: FoodBadRecipe
+ entities:
+ - uid: 86
+ components:
+ - type: Transform
+ pos: -1.4739913,5.6859937
+ parent: 1
+- proto: FoodBreadMoldy
+ entities:
+ - uid: 125
+ components:
+ - type: Transform
+ pos: -2.5193827,2.8150184
+ parent: 1
+- proto: FoodCondimentBottleBBQ
+ entities:
+ - uid: 185
+ components:
+ - type: Transform
+ pos: -2.7624044,5.4494452
+ parent: 1
+- proto: FoodMeatRatdoubleKebab
+ entities:
+ - uid: 154
+ components:
+ - type: Transform
+ pos: -1.434973,-0.4808603
+ parent: 1
+- proto: FoodTinPeachesMaint
+ entities:
+ - uid: 135
+ components:
+ - type: Transform
+ pos: 2.5118957,4.7516603
+ parent: 1
+- proto: GasPassiveVent
+ entities:
+ - uid: 122
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-3.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+- proto: GasPipeStraight
+ entities:
+ - uid: 121
+ components:
+ - type: Transform
+ pos: 3.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 192
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+- proto: GasPort
+ entities:
+ - uid: 66
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-2.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+- proto: GasPressurePump
+ entities:
+ - uid: 120
+ components:
+ - type: Transform
+ pos: 3.5,-1.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 195
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-1.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+- proto: GasVentPump
+ entities:
+ - uid: 193
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 194
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+- proto: GasVentScrubber
+ entities:
+ - uid: 119
+ components:
+ - type: Transform
+ pos: 3.5,-0.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 194
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+- proto: Girder
+ entities:
+ - uid: 44
+ components:
+ - type: Transform
+ pos: 1.5,3.5
+ parent: 1
+- proto: Grille
+ entities:
+ - uid: 24
+ components:
+ - type: Transform
+ pos: 4.5,1.5
+ parent: 1
+ - uid: 115
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,3.5
+ parent: 1
+- proto: GrilleBroken
+ entities:
+ - uid: 168
+ components:
+ - type: Transform
+ pos: 1.5,0.5
+ parent: 1
+- proto: GrilleSpawner
+ entities:
+ - uid: 34
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,4.5
+ parent: 1
+ - uid: 165
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,1.5
+ parent: 1
+ - uid: 167
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,0.5
+ parent: 1
+- proto: Gyroscope
+ entities:
+ - uid: 172
+ components:
+ - type: Transform
+ pos: -1.5,-3.5
+ parent: 1
+- proto: InflatableDoor
+ entities:
+ - uid: 37
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,0.5
+ parent: 1
+ - uid: 48
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 1
+ - uid: 133
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 1
+- proto: InflatableDoorStack1
+ entities:
+ - uid: 149
+ components:
+ - type: Transform
+ pos: 3.4711604,-0.4331339
+ parent: 1
+- proto: InflatableWall
+ entities:
+ - uid: 20
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,0.5
+ parent: 1
+ - uid: 50
+ components:
+ - type: Transform
+ pos: 4.5,2.5
+ parent: 1
+ - uid: 51
+ components:
+ - type: Transform
+ pos: 5.5,0.5
+ parent: 1
+ - uid: 117
+ components:
+ - type: Transform
+ pos: 4.5,4.5
+ parent: 1
+ - uid: 137
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,3.5
+ parent: 1
+ - uid: 152
+ components:
+ - type: Transform
+ pos: -2.5,7.5
+ parent: 1
+- proto: InflatableWallStack5
+ entities:
+ - uid: 150
+ components:
+ - type: Transform
+ pos: 3.2941947,-0.5510896
+ parent: 1
+- proto: Lantern
+ entities:
+ - uid: 156
+ components:
+ - type: Transform
+ pos: -1.5916386,5.548739
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 112
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 112
+ - type: ActionsContainer
+- proto: MaintenanceWeaponSpawner
+ entities:
+ - uid: 134
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-0.5
+ parent: 1
+- proto: PlushieRatvar
+ entities:
+ - uid: 94
+ components:
+ - type: Transform
+ pos: -2.5487955,-0.4496892
+ parent: 1
+- proto: PortableGeneratorPacmanShuttle
+ entities:
+ - uid: 53
+ components:
+ - type: Transform
+ pos: 4.5,-0.5
+ parent: 1
+ - type: FuelGenerator
+ on: False
+ - type: Physics
+ bodyType: Static
+- proto: PosterContrabandBreadLies
+ entities:
+ - uid: 190
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,2.5
+ parent: 1
+- proto: Poweredlight
+ entities:
+ - uid: 40
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 1
+ - uid: 110
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,2.5
+ parent: 1
+ - uid: 111
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-1.5
+ parent: 1
+- proto: PoweredlightColoredRed
+ entities:
+ - uid: 109
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-1.5
+ parent: 1
+- proto: Rack
+ entities:
+ - uid: 148
+ components:
+ - type: Transform
+ pos: 3.5,-0.5
+ parent: 1
+- proto: RandomArcade
+ entities:
+ - uid: 123
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-1.5
+ parent: 1
+- proto: RandomBook
+ entities:
+ - uid: 100
+ components:
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 1
+ - uid: 101
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 1
+- proto: RandomSpawner
+ entities:
+ - uid: 102
+ components:
+ - type: Transform
+ pos: 3.5,2.5
+ parent: 1
+ - uid: 103
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 1
+ - uid: 104
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-1.5
+ parent: 1
+ - uid: 105
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-1.5
+ parent: 1
+- proto: ReinforcedGirder
+ entities:
+ - uid: 49
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,0.5
+ parent: 1
+ - uid: 91
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 1
+- proto: ShardGlass
+ entities:
+ - uid: 106
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.4217944,2.5797243
+ parent: 1
+ - uid: 107
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.4512051,4.579724
+ parent: 1
+ - uid: 108
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.9017365,-0.6849826
+ parent: 1
+- proto: SheetPlasma1
+ entities:
+ - uid: 155
+ components:
+ - type: Transform
+ pos: 3.5301504,-0.4626224
+ parent: 1
+ - type: Stack
+ count: 5
+- proto: SignChapel
+ entities:
+ - uid: 163
+ components:
+ - type: Transform
+ pos: 0.5,5.5
+ parent: 1
+- proto: SolidSecretDoor
+ entities:
+ - uid: 47
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -2.5,0.5
+ parent: 1
+- proto: SpawnPointLatejoin
+ entities:
+ - uid: 138
+ components:
+ - type: Transform
+ pos: -0.5,3.5
+ parent: 1
+- proto: SubstationBasic
+ entities:
+ - uid: 54
+ components:
+ - type: Transform
+ pos: 4.5,-1.5
+ parent: 1
+- proto: TableWood
+ entities:
+ - uid: 116
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,2.5
+ parent: 1
+ - uid: 127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,2.5
+ parent: 1
+ - uid: 128
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,2.5
+ parent: 1
+ - uid: 129
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,1.5
+ parent: 1
+- proto: Thruster
+ entities:
+ - uid: 114
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-3.5
+ parent: 1
+ - uid: 173
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-3.5
+ parent: 1
+ - uid: 174
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,6.5
+ parent: 1
+ - uid: 179
+ components:
+ - type: Transform
+ pos: 1.5,6.5
+ parent: 1
+- proto: ToyFigurineGreytider
+ entities:
+ - uid: 170
+ components:
+ - type: Transform
+ pos: -2.4928765,-1.3214347
+ parent: 1
+- proto: WallShuttleDiagonal
+ entities:
+ - uid: 7
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-3.5
+ parent: 1
+ - uid: 142
+ components:
+ - type: Transform
+ pos: -3.5,6.5
+ parent: 1
+ - uid: 175
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,5.5
+ parent: 1
+- proto: WallShuttleInterior
+ entities:
+ - uid: 41
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 1
+ - uid: 42
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 1.5,2.5
+ parent: 1
+- proto: WallSolid
+ entities:
+ - uid: 3
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,6.5
+ parent: 1
+ - uid: 4
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-2.5
+ parent: 1
+ - uid: 5
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-2.5
+ parent: 1
+ - uid: 9
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-2.5
+ parent: 1
+ - uid: 10
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-2.5
+ parent: 1
+ - uid: 11
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-2.5
+ parent: 1
+ - uid: 25
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,5.5
+ parent: 1
+ - uid: 26
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,5.5
+ parent: 1
+ - uid: 28
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,3.5
+ parent: 1
+ - uid: 36
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 2.5,5.5
+ parent: 1
+ - uid: 39
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-0.5
+ parent: 1
+ - uid: 45
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 1
+ - uid: 89
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 1
+ - uid: 143
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,5.5
+ parent: 1
+ - uid: 146
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,4.5
+ parent: 1
+- proto: WallSolidDiagonal
+ entities:
+ - uid: 13
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-2.5
+ parent: 1
+ - uid: 22
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,6.5
+ parent: 1
+ - uid: 46
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-3.5
+ parent: 1
+ - uid: 52
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,7.5
+ parent: 1
+ - uid: 93
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-2.5
+ parent: 1
+- proto: WallSolidRust
+ entities:
+ - uid: 2
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,-1.5
+ parent: 1
+ - uid: 6
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 1
+ - uid: 8
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 1
+ - uid: 12
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,-2.5
+ parent: 1
+ - uid: 14
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 5.5,-1.5
+ parent: 1
+ - uid: 15
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 5.5,-0.5
+ parent: 1
+ - uid: 16
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,0.5
+ parent: 1
+ - uid: 17
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,2.5
+ parent: 1
+ - uid: 19
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,3.5
+ parent: 1
+ - uid: 21
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,5.5
+ parent: 1
+ - uid: 23
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 2.5,6.5
+ parent: 1
+ - uid: 30
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,2.5
+ parent: 1
+ - uid: 32
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,0.5
+ parent: 1
+ - uid: 33
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,-0.5
+ parent: 1
+ - uid: 35
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -0.5,5.5
+ parent: 1
+ - uid: 43
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,3.5
+ parent: 1
+ - uid: 90
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -1.5,0.5
+ parent: 1
+ - uid: 92
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 1
+ - uid: 140
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,7.5
+ parent: 1
+ - uid: 141
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,6.5
+ parent: 1
+ - uid: 145
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 1
+- proto: WardrobeChapelFilled
+ entities:
+ - uid: 166
+ components:
+ - type: Transform
+ pos: 1.5,0.5
+ parent: 1
+- proto: WarningCO2
+ entities:
+ - uid: 191
+ components:
+ - type: Transform
+ pos: 4.5,0.5
+ parent: 1
+- proto: WarpPointShip
+ entities:
+ - uid: 139
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 1
+ - type: BecomesStation
+ id: disciple
+- proto: Window
+ entities:
+ - uid: 18
+ components:
+ - type: Transform
+ pos: 4.5,1.5
+ parent: 1
+- proto: WindowDirectional
+ entities:
+ - uid: 164
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,0.5
+ parent: 1
+- proto: Wirecutter
+ entities:
+ - uid: 169
+ components:
+ - type: Transform
+ pos: -3.6136637,1.3915416
+ parent: 1
+- proto: Wrench
+ entities:
+ - uid: 153
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.6149917,-0.4341877
+ parent: 1
+...
diff --git a/Resources/Maps/_NF/Shuttles/dragonfly.yml b/Resources/Maps/_NF/Shuttles/dragonfly.yml
index ecae333166af..c7b98be22149 100644
--- a/Resources/Maps/_NF/Shuttles/dragonfly.yml
+++ b/Resources/Maps/_NF/Shuttles/dragonfly.yml
@@ -25,19 +25,19 @@ entities:
chunks:
0,0:
ind: 0,0
- tiles: HgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAALgAAAAAAegAAAAAAegAAAAAAHwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALgAAAAAAegAAAAAAHwAAAAAAHwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAeQAAAAAAegAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAegAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAegAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAegAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: HgAAAAABHgAAAAAAHgAAAAADHgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAABegAAAAAALgAAAAAAegAAAAAAegAAAAAAHwAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAALgAAAAABHwAAAAADHwAAAAADHwAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAADHgAAAAACLgAAAAAAegAAAAAAHwAAAAABHwAAAAACegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAADeQAAAAAAegAAAAAAHwAAAAABHwAAAAAAHwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAADHgAAAAAAAAAAAAAAegAAAAAAHwAAAAACHwAAAAAAHwAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAAAHgAAAAACAAAAAAAAegAAAAAAHwAAAAACHwAAAAABHwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAAAHgAAAAABAAAAAAAAegAAAAAAHwAAAAABHwAAAAACHwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAAAegAAAAAAegAAAAAALgAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAALgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAAAegAAAAAALgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAeQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAAAdwAAAAAAegAAAAAAegAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADHgAAAAACHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAADegAAAAAAegAAAAAALgAAAAADegAAAAAAHgAAAAADHgAAAAABHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAACdwAAAAACdwAAAAADLgAAAAABHgAAAAACHgAAAAADHgAAAAABHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAABegAAAAAALgAAAAADHgAAAAAAHgAAAAACHgAAAAADHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAADdwAAAAACdwAAAAACegAAAAAAeQAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAADegAAAAAAAAAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAABdwAAAAADdwAAAAAAegAAAAAAAAAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAADdwAAAAABegAAAAAAegAAAAAAAAAAAAAAHgAAAAABHgAAAAADHgAAAAADHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-1:
ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAXAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAegAAAAAALgAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAALgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAagAAAAAAXAAAAAAAegAAAAAAegAAAAAALgAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAAAHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAABHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAXAAAAAACegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAACHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAACXAAAAAAAXAAAAAABegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAACXAAAAAADXAAAAAADegAAAAAAegAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAABXAAAAAABXAAAAAACegAAAAAAegAAAAAAeQAAAAAAegAAAAAAHgAAAAADHgAAAAADHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAACXAAAAAACXAAAAAADXAAAAAADegAAAAAALgAAAAADegAAAAAAHgAAAAADHgAAAAACHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAABXAAAAAAALgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAagAAAAAAXAAAAAABegAAAAAAegAAAAAALgAAAAABegAAAAAAHgAAAAADHgAAAAADHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALgAAAAABegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAABHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAACHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAABHgAAAAAB
version: 6
0,-1:
ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAeQAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAALgAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALgAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAALgAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAALgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAAAegAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAACegAAAAAAeQAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAABegAAAAAALgAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAADHgAAAAADLgAAAAADagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAACegAAAAAALgAAAAABegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAACegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAALgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADHgAAAAADHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- type: Broadphase
- type: Physics
@@ -297,29 +297,33 @@ entities:
data:
tiles:
0,0:
- 0: 65531
- 1: 4
+ 0: 65535
1,0:
- 0: 64273
+ 0: 61713
+ 1: 2560
-1,0:
0: 65535
0,1:
0: 65535
0,2:
- 0: 36863
+ 0: 255
+ 1: 36608
0,3:
- 0: 8
+ 1: 8
1,1:
- 0: 57343
+ 0: 56831
+ 1: 512
1,2:
- 0: 19933
+ 0: 3549
+ 1: 16384
2,0:
- 0: 12561
+ 1: 273
+ 0: 12288
2,1:
- 0: 22387
- 1: 8192
+ 0: 30579
2,2:
- 0: 18295
+ 0: 1911
+ 1: 16384
-3,1:
0: 52424
-3,2:
@@ -327,40 +331,45 @@ entities:
-3,0:
0: 32768
-2,0:
- 0: 64273
+ 1: 2833
+ 0: 61440
-2,1:
- 0: 32767
+ 0: 30719
+ 1: 2048
-2,2:
0: 13175
-2,3:
- 0: 17
+ 1: 17
-1,1:
0: 65535
-1,2:
- 0: 12287
+ 0: 511
+ 1: 11776
-1,3:
- 0: 2
+ 1: 2
-3,-4:
- 0: 60480
+ 0: 57344
+ 1: 3136
-3,-3:
0: 61166
-3,-2:
0: 52462
-3,-1:
- 0: 68
+ 1: 68
-2,-4:
- 0: 12560
+ 1: 272
+ 0: 12288
-2,-3:
- 1: 1
- 0: 65394
+ 0: 63283
+ 1: 2112
-2,-2:
- 0: 15103
- 1: 256
+ 0: 13311
+ 1: 2048
-1,-3:
- 0: 65535
+ 1: 1
+ 0: 65534
-1,-2:
- 0: 65503
- 1: 32
+ 0: 65535
-1,-1:
0: 61167
-1,-4:
@@ -374,25 +383,26 @@ entities:
0,-1:
0: 65535
1,-3:
- 0: 32729
- 1: 32768
+ 1: 577
+ 0: 64920
1,-2:
- 0: 39935
+ 0: 39423
+ 1: 512
1,-1:
0: 1
1,-4:
0: 32768
2,-4:
- 0: 63312
+ 1: 1872
+ 0: 61440
2,-3:
0: 65535
2,-2:
- 0: 30715
- 1: 4
+ 0: 30719
2,-1:
- 0: 69
+ 1: 69
-2,-1:
- 0: 1
+ 1: 1
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -410,10 +420,10 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 293.14996
+ temperature: 293.15
moles:
- - 20.078888
- - 75.53487
+ - 0
+ - 0
- 0
- 0
- 0
@@ -924,6 +934,263 @@ entities:
rot: 3.141592653589793 rad
pos: -8.5,-12.5
parent: 1
+- proto: AtmosFixBlockerMarker
+ entities:
+ - uid: 512
+ components:
+ - type: Transform
+ pos: -7.5,13.5
+ parent: 1
+ - uid: 602
+ components:
+ - type: Transform
+ pos: -7.5,12.5
+ parent: 1
+ - uid: 618
+ components:
+ - type: Transform
+ pos: -9.5,-13.5
+ parent: 1
+ - uid: 668
+ components:
+ - type: Transform
+ pos: -2.5,12.5
+ parent: 1
+ - uid: 680
+ components:
+ - type: Transform
+ pos: -2.5,11.5
+ parent: 1
+ - uid: 788
+ components:
+ - type: Transform
+ pos: -2.5,10.5
+ parent: 1
+ - uid: 830
+ components:
+ - type: Transform
+ pos: -1.5,10.5
+ parent: 1
+ - uid: 831
+ components:
+ - type: Transform
+ pos: -0.5,10.5
+ parent: 1
+ - uid: 832
+ components:
+ - type: Transform
+ pos: 0.5,10.5
+ parent: 1
+ - uid: 833
+ components:
+ - type: Transform
+ pos: 1.5,10.5
+ parent: 1
+ - uid: 840
+ components:
+ - type: Transform
+ pos: 2.5,10.5
+ parent: 1
+ - uid: 884
+ components:
+ - type: Transform
+ pos: 3.5,10.5
+ parent: 1
+ - uid: 885
+ components:
+ - type: Transform
+ pos: 3.5,11.5
+ parent: 1
+ - uid: 886
+ components:
+ - type: Transform
+ pos: 3.5,12.5
+ parent: 1
+ - uid: 887
+ components:
+ - type: Transform
+ pos: 6.5,11.5
+ parent: 1
+ - uid: 888
+ components:
+ - type: Transform
+ pos: 10.5,11.5
+ parent: 1
+ - uid: 889
+ components:
+ - type: Transform
+ pos: 5.5,6.5
+ parent: 1
+ - uid: 890
+ components:
+ - type: Transform
+ pos: 5.5,2.5
+ parent: 1
+ - uid: 891
+ components:
+ - type: Transform
+ pos: 7.5,2.5
+ parent: 1
+ - uid: 892
+ components:
+ - type: Transform
+ pos: 8.5,2.5
+ parent: 1
+ - uid: 893
+ components:
+ - type: Transform
+ pos: 8.5,1.5
+ parent: 1
+ - uid: 894
+ components:
+ - type: Transform
+ pos: 8.5,0.5
+ parent: 1
+ - uid: 895
+ components:
+ - type: Transform
+ pos: -4.5,6.5
+ parent: 1
+ - uid: 896
+ components:
+ - type: Transform
+ pos: -4.5,2.5
+ parent: 1
+ - uid: 897
+ components:
+ - type: Transform
+ pos: -7.5,2.5
+ parent: 1
+ - uid: 898
+ components:
+ - type: Transform
+ pos: -7.5,1.5
+ parent: 1
+ - uid: 899
+ components:
+ - type: Transform
+ pos: -7.5,0.5
+ parent: 1
+ - uid: 900
+ components:
+ - type: Transform
+ pos: -6.5,2.5
+ parent: 1
+ - uid: 901
+ components:
+ - type: Transform
+ pos: -7.5,-3.5
+ parent: 1
+ - uid: 902
+ components:
+ - type: Transform
+ pos: -9.5,-2.5
+ parent: 1
+ - uid: 903
+ components:
+ - type: Transform
+ pos: -9.5,-3.5
+ parent: 1
+ - uid: 904
+ components:
+ - type: Transform
+ pos: 8.5,-3.5
+ parent: 1
+ - uid: 905
+ components:
+ - type: Transform
+ pos: 10.5,-2.5
+ parent: 1
+ - uid: 906
+ components:
+ - type: Transform
+ pos: 10.5,-3.5
+ parent: 1
+ - uid: 907
+ components:
+ - type: Transform
+ pos: 5.5,-5.5
+ parent: 1
+ - uid: 908
+ components:
+ - type: Transform
+ pos: 8.5,-14.5
+ parent: 1
+ - uid: 909
+ components:
+ - type: Transform
+ pos: 8.5,-13.5
+ parent: 1
+ - uid: 910
+ components:
+ - type: Transform
+ pos: 9.5,-13.5
+ parent: 1
+ - uid: 911
+ components:
+ - type: Transform
+ pos: 10.5,-13.5
+ parent: 1
+ - uid: 912
+ components:
+ - type: Transform
+ pos: 10.5,-14.5
+ parent: 1
+ - uid: 913
+ components:
+ - type: Transform
+ pos: 5.5,-9.5
+ parent: 1
+ - uid: 914
+ components:
+ - type: Transform
+ pos: 6.5,-10.5
+ parent: 1
+ - uid: 915
+ components:
+ - type: Transform
+ pos: 4.5,-11.5
+ parent: 1
+ - uid: 916
+ components:
+ - type: Transform
+ pos: -5.5,-10.5
+ parent: 1
+ - uid: 917
+ components:
+ - type: Transform
+ pos: -4.5,-9.5
+ parent: 1
+ - uid: 918
+ components:
+ - type: Transform
+ pos: -3.5,-11.5
+ parent: 1
+ - uid: 919
+ components:
+ - type: Transform
+ pos: -4.5,-5.5
+ parent: 1
+ - uid: 920
+ components:
+ - type: Transform
+ pos: -8.5,-13.5
+ parent: 1
+ - uid: 921
+ components:
+ - type: Transform
+ pos: -7.5,-13.5
+ parent: 1
+ - uid: 922
+ components:
+ - type: Transform
+ pos: -7.5,-14.5
+ parent: 1
+ - uid: 923
+ components:
+ - type: Transform
+ pos: -9.5,-14.5
+ parent: 1
- proto: Autolathe
entities:
- uid: 518
@@ -2628,6 +2895,8 @@ entities:
targetPressure: 300
- type: AtmosDevice
joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- proto: GasPassiveVent
entities:
- uid: 582
@@ -2638,6 +2907,8 @@ entities:
parent: 1
- type: AtmosDevice
joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 583
components:
- type: Transform
@@ -2646,6 +2917,8 @@ entities:
parent: 1
- type: AtmosDevice
joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 590
components:
- type: Transform
@@ -2653,6 +2926,8 @@ entities:
parent: 1
- type: AtmosDevice
joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 699
components:
- type: Transform
@@ -2661,6 +2936,8 @@ entities:
parent: 1
- type: AtmosDevice
joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 813
components:
- type: Transform
@@ -2669,6 +2946,8 @@ entities:
parent: 1
- type: AtmosDevice
joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPipeBend
entities:
- uid: 441
@@ -2677,24 +2956,32 @@ entities:
rot: -1.5707963267948966 rad
pos: 9.5,-7.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 588
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 2.5,8.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 589
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 3.5,8.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 612
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 2.5,-5.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPipeFourway
entities:
- uid: 556
@@ -2702,6 +2989,8 @@ entities:
- type: Transform
pos: 0.5,4.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- proto: GasPipeStraight
entities:
- uid: 375
@@ -2710,343 +2999,474 @@ entities:
rot: 1.5707963267948966 rad
pos: -5.5,4.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 376
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -4.5,4.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 377
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -3.5,4.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 379
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -2.5,4.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 444
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 6.5,-7.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 445
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 5.5,-7.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 446
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 4.5,-7.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 447
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 3.5,-7.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 465
components:
- type: Transform
pos: 2.5,1.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 471
components:
- type: Transform
pos: 0.5,0.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 493
+ components:
+ - type: Transform
+ pos: 0.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 537
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 2.5,-7.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 538
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 1.5,-7.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 539
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -0.5,-7.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 540
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -1.5,-7.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 541
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -2.5,-7.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 542
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -3.5,-7.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 543
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -4.5,-7.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 544
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -5.5,-7.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 546
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 1.5,6.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 547
components:
- type: Transform
pos: 0.5,-5.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 548
components:
- type: Transform
pos: 0.5,-4.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 549
components:
- type: Transform
pos: 0.5,-3.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 550
components:
- type: Transform
pos: 0.5,-2.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 551
components:
- type: Transform
pos: 0.5,-1.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 552
components:
- type: Transform
pos: 0.5,-0.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 553
components:
- type: Transform
pos: 0.5,1.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 554
components:
- type: Transform
pos: 0.5,2.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 557
components:
- type: Transform
pos: 0.5,5.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 558
components:
- type: Transform
pos: 0.5,6.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 562
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -1.5,4.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 563
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -0.5,4.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 564
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 1.5,4.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 565
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 2.5,4.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 566
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 3.5,4.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 567
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 4.5,4.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 568
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 5.5,4.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 569
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 6.5,4.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 578
components:
- type: Transform
pos: -7.5,3.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 579
components:
- type: Transform
pos: -7.5,4.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 580
components:
- type: Transform
pos: 8.5,4.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 581
components:
- type: Transform
pos: 8.5,3.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 587
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 2.5,7.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 591
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 3.5,9.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 592
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 2.5,5.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 593
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 2.5,4.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 596
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 1.5,2.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 597
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 2.5,3.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 604
components:
- type: Transform
pos: 2.5,0.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 605
components:
- type: Transform
pos: 2.5,-0.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 606
components:
- type: Transform
pos: 2.5,-2.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 607
components:
- type: Transform
pos: 2.5,-1.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 608
components:
- type: Transform
pos: 2.5,-3.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 609
components:
- type: Transform
pos: 2.5,-4.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 611
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 1.5,-5.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 701
components:
- type: Transform
pos: -8.5,-12.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 803
components:
- type: Transform
pos: 0.5,-6.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 806
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 7.5,-7.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 808
components:
- type: Transform
pos: 9.5,-8.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 809
components:
- type: Transform
pos: 9.5,-9.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 810
components:
- type: Transform
pos: 9.5,-10.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 811
components:
- type: Transform
pos: 9.5,-11.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 812
components:
- type: Transform
pos: 9.5,-12.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPipeTJunction
entities:
- uid: 366
@@ -3055,35 +3475,47 @@ entities:
rot: 3.141592653589793 rad
pos: 0.5,-7.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 545
components:
- type: Transform
pos: -6.5,-7.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 560
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 7.5,4.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 561
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -6.5,4.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 586
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 2.5,6.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 595
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 2.5,2.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPort
entities:
- uid: 438
@@ -3108,6 +3540,8 @@ entities:
parent: 1
- type: AtmosDevice
joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 574
components:
- type: Transform
@@ -3115,6 +3549,8 @@ entities:
parent: 1
- type: AtmosDevice
joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 575
components:
- type: Transform
@@ -3123,6 +3559,8 @@ entities:
parent: 1
- type: AtmosDevice
joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 594
components:
- type: Transform
@@ -3130,6 +3568,8 @@ entities:
parent: 1
- type: AtmosDevice
joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPressurePump
entities:
- uid: 442
@@ -3142,6 +3582,8 @@ entities:
targetPressure: 300
- type: AtmosDevice
joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- proto: GasVentPump
entities:
- uid: 443
@@ -3152,6 +3594,8 @@ entities:
parent: 1
- type: AtmosDevice
joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 469
components:
- type: Transform
@@ -3159,6 +3603,8 @@ entities:
parent: 1
- type: AtmosDevice
joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 559
components:
- type: Transform
@@ -3166,6 +3612,8 @@ entities:
parent: 1
- type: AtmosDevice
joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 570
components:
- type: Transform
@@ -3174,6 +3622,8 @@ entities:
parent: 1
- type: AtmosDevice
joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 571
components:
- type: Transform
@@ -3182,6 +3632,8 @@ entities:
parent: 1
- type: AtmosDevice
joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 572
components:
- type: Transform
@@ -3190,6 +3642,8 @@ entities:
parent: 1
- type: AtmosDevice
joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 802
components:
- type: Transform
@@ -3197,6 +3651,8 @@ entities:
parent: 1
- type: AtmosDevice
joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- proto: GasVentScrubber
entities:
- uid: 3
@@ -3206,6 +3662,8 @@ entities:
parent: 1
- type: AtmosDevice
joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 472
components:
- type: Transform
@@ -3213,6 +3671,8 @@ entities:
parent: 1
- type: AtmosDevice
joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 577
components:
- type: Transform
@@ -3220,6 +3680,8 @@ entities:
parent: 1
- type: AtmosDevice
joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 599
components:
- type: Transform
@@ -3228,6 +3690,8 @@ entities:
parent: 1
- type: AtmosDevice
joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 610
components:
- type: Transform
@@ -3236,6 +3700,8 @@ entities:
parent: 1
- type: AtmosDevice
joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 678
components:
- type: Transform
@@ -3244,6 +3710,8 @@ entities:
parent: 1
- type: AtmosDevice
joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 700
components:
- type: Transform
@@ -3251,6 +3719,8 @@ entities:
parent: 1
- type: AtmosDevice
joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GravityGeneratorMini
entities:
- uid: 697
@@ -3385,6 +3855,11 @@ entities:
rot: 1.5707963267948966 rad
pos: 3.5,9.5
parent: 1
+ - uid: 367
+ components:
+ - type: Transform
+ pos: 2.5,-3.5
+ parent: 1
- uid: 389
components:
- type: Transform
@@ -3408,6 +3883,14 @@ entities:
rot: 3.141592653589793 rad
pos: -10.5,-10.5
parent: 1
+- proto: GunSafeShuttleT1Spawner
+ entities:
+ - uid: 244
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,5.5
+ parent: 1
- proto: Gyroscope
entities:
- uid: 479
@@ -3614,17 +4097,17 @@ entities:
- 0
- 0
- 0
-- proto: LockerSalvageSpecialistFilledHardsuit
+- proto: LockerSalvageSpecialistFilled
entities:
- - uid: 490
+ - uid: 218
components:
- type: Transform
- pos: 2.5,8.5
+ pos: -1.5,8.5
parent: 1
- - uid: 788
+ - uid: 243
components:
- type: Transform
- pos: -1.5,8.5
+ pos: 2.5,8.5
parent: 1
- proto: LockerWallMedical
entities:
@@ -3997,11 +4480,6 @@ entities:
- type: Transform
pos: -8.5,-11.5
parent: 1
- - uid: 602
- components:
- - type: Transform
- pos: 7.5,5.5
- parent: 1
- uid: 834
components:
- type: Transform
@@ -4629,6 +5107,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -2.5,9.5
parent: 1
+ - uid: 495
+ components:
+ - type: Transform
+ pos: 2.5,-3.5
+ parent: 1
- uid: 601
components:
- type: Transform
@@ -4818,13 +5301,6 @@ entities:
- Pressed: Toggle
206:
- Pressed: Toggle
-- proto: SignConspiracyBoard
- entities:
- - uid: 367
- components:
- - type: Transform
- pos: 2.5,-3.5
- parent: 1
- proto: SignLastIdiot
entities:
- uid: 237
@@ -4918,6 +5394,11 @@ entities:
parent: 1
- proto: SuitStorageSalv
entities:
+ - uid: 555
+ components:
+ - type: Transform
+ pos: -2.5,7.5
+ parent: 1
- uid: 617
components:
- type: Transform
@@ -5101,24 +5582,18 @@ entities:
rot: 3.141592653589793 rad
pos: 8.5,-14.5
parent: 1
- - uid: 243
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-14.5
- parent: 1
- - uid: 244
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,-14.5
- parent: 1
- uid: 311
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -7.5,-13.5
parent: 1
+ - uid: 378
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-14.5
+ parent: 1
- uid: 458
components:
- type: Transform
@@ -5128,7 +5603,8 @@ entities:
- uid: 459
components:
- type: Transform
- pos: -9.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-14.5
parent: 1
- uid: 473
components:
@@ -5136,22 +5612,21 @@ entities:
rot: 3.141592653589793 rad
pos: -7.5,-14.5
parent: 1
- - uid: 493
+ - uid: 476
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,-10.5
parent: 1
- - uid: 494
+ - uid: 490
components:
- type: Transform
- pos: 10.5,-2.5
+ pos: -7.5,-3.5
parent: 1
- - uid: 495
+ - uid: 494
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-3.5
+ pos: 8.5,-3.5
parent: 1
- uid: 496
components:
@@ -5199,6 +5674,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 8.5,1.5
parent: 1
+ - uid: 598
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-10.5
+ parent: 1
- uid: 775
components:
- type: Transform
@@ -6329,13 +6810,6 @@ entities:
rot: 3.141592653589793 rad
pos: 2.5,9.5
parent: 1
- - uid: 218
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 2.5,-3.5
- parent: 1
- uid: 219
components:
- type: MetaData
diff --git a/Resources/Maps/_NF/Shuttles/empress.yml b/Resources/Maps/_NF/Shuttles/empress.yml
index 5b72d54b044f..efb4d0e5a37f 100644
--- a/Resources/Maps/_NF/Shuttles/empress.yml
+++ b/Resources/Maps/_NF/Shuttles/empress.yml
@@ -12041,7 +12041,7 @@ entities:
pos: 2.5,7.5
parent: 1
type: Transform
-- proto: Hypospray
+- proto: HypoBrigmedic
entities:
- uid: 1054
components:
diff --git a/Resources/Maps/_NF/Shuttles/gasbender.yml b/Resources/Maps/_NF/Shuttles/gasbender.yml
index 2adfb05c3d3e..11c0cb494f08 100644
--- a/Resources/Maps/_NF/Shuttles/gasbender.yml
+++ b/Resources/Maps/_NF/Shuttles/gasbender.yml
@@ -3,81 +3,82 @@ meta:
postmapinit: false
tilemap:
0: Space
- 28: FloorDark
- 31: FloorDarkHerringbone
- 33: FloorDarkMono
- 60: FloorLaundry
- 86: FloorSteelCheckerDark
- 97: FloorTechMaint
- 102: FloorWhiteDiagonal
- 112: FloorWoodTile
- 113: Lattice
- 114: Plating
+ 30: FloorDark
+ 33: FloorDarkHerringbone
+ 35: FloorDarkMono
+ 62: FloorLaundry
+ 92: FloorSteelCheckerDark
+ 105: FloorTechMaint
+ 110: FloorWhiteDiagonal
+ 120: FloorWoodTile
+ 121: Lattice
+ 122: Plating
entities:
- proto: ""
entities:
- uid: 1
components:
- - name: grid
- type: MetaData
- - pos: -0.5426248,-0.4928913
+ - type: MetaData
+ name: grid
+ - type: Transform
+ pos: -0.5426248,-0.4928913
parent: invalid
- type: Transform
- - chunks:
+ - type: MapGrid
+ chunks:
0,0:
ind: 0,0
- tiles: HAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAYQAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAVgAAAAAAVgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAcgAAAAAAPAAAAAAAPAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAcgAAAAAAPAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: HgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAaQAAAAAAHgAAAAAAHgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAXAAAAAAAXAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAegAAAAAAPgAAAAAAPgAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAegAAAAAAPgAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAHAAAAAAAHAAAAAAAYQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAYQAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAaQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-1:
ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAIQAAAAAAHAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIQAAAAAAHAAAAAAAHAAAAAAAIQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIQAAAAAAYQAAAAAAIQAAAAAAHAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIQAAAAAAYQAAAAAAIQAAAAAAHAAAAAAAHAAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIQAAAAAAYQAAAAAAIQAAAAAAIQAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAYQAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAYQAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAYQAAAAAAcgAAAAAAYQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIwAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAIwAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAAAaQAAAAAAIwAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAAAaQAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAAAaQAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAaQAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAaQAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAaQAAAAAAegAAAAAAaQAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAIQAAAAAAIQAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIQAAAAAAIQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcAAAAAAAcgAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHwAAAAAAHwAAAAAAcAAAAAAAcgAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAIQAAAAAAIQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcgAAAAAAZgAAAAAAZgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAaQAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAaQAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAAAIwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAeAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAeAAAAAAAegAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIQAAAAAAIQAAAAAAeAAAAAAAegAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAIwAAAAAAIwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAAbgAAAAAAbgAAAAAA
version: 6
0,1:
ind: 0,1
- tiles: cgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: egAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- type: MapGrid
- type: Broadphase
- - bodyStatus: InAir
+ - type: Physics
+ bodyStatus: InAir
angularDamping: 0.05
linearDamping: 0.05
fixedRotation: False
bodyType: Dynamic
- type: Physics
- - fixtures: {}
- type: Fixtures
+ - type: Fixtures
+ fixtures: {}
- type: OccluderTree
- type: SpreaderGrid
- type: Shuttle
- type: GridPathfinding
- - gravityShakeSound: !type:SoundPathSpecifier
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
path: /Audio/Effects/alert.ogg
- type: Gravity
- - chunkCollection:
+ - type: DecalGrid
+ chunkCollection:
version: 2
nodes:
- node:
color: '#FFFFFFFF'
id: Arrows
decals:
- 123: -3,-12
- 124: -2,-12
- 125: -1,-12
- 182: -1,-14
- 183: -2,-14
- 184: -3,-14
+ 119: -3,-12
+ 120: -2,-12
+ 121: -1,-12
+ 178: -1,-14
+ 179: -2,-14
+ 180: -3,-14
- node:
angle: 4.71238898038469 rad
color: '#FFFFFFFF'
@@ -85,8 +86,8 @@ entities:
decals:
9: -5,-8
10: -5,-9
- 185: -7,-9
- 186: -7,-8
+ 181: -7,-9
+ 182: -7,-8
- node:
color: '#FFFFFFFF'
id: Bot
@@ -108,46 +109,47 @@ entities:
112: -6,15
113: -5,15
114: -6,11
- 142: -1,-6
- 143: 0,-6
- 147: -7,-4
- 148: -7,-5
- 149: -6,-5
- 150: -7,-11
- 151: -6,-12
- 152: -2,-8
- 153: -1,-8
- 154: -1,6
- 155: 6,-9
- 156: 6,-10
- 171: -6,6
- 172: -5,6
- 173: 5,-8
- 174: 6,-8
- 176: 4,-8
- 197: -6,-2
- 202: -1,2
- 203: -1,5
- 204: 2,-8
- 205: 3,-8
- 206: -7,-5
+ 138: -1,-6
+ 139: 0,-6
+ 143: -7,-4
+ 144: -7,-5
+ 145: -6,-5
+ 146: -7,-11
+ 147: -6,-12
+ 148: -2,-8
+ 149: -1,-8
+ 150: -1,6
+ 151: 6,-9
+ 152: 6,-10
+ 167: -6,6
+ 168: -5,6
+ 169: 5,-8
+ 170: 6,-8
+ 172: 4,-8
+ 193: -6,-2
+ 198: -1,2
+ 199: -1,5
+ 200: 2,-8
+ 201: 3,-8
+ 202: -7,-5
+ 212: -3,4
- node:
angle: 4.71238898038469 rad
color: '#FFFFFFFF'
id: BotGreyscale
decals:
- 187: -3,-1
- 188: -3,0
- 189: -3,1
+ 183: -3,-1
+ 184: -3,0
+ 185: -3,1
- node:
color: '#FFFFFFFF'
id: BotLeftGreyscale
decals:
- 177: -7,-8
- 178: -7,-9
- 179: -3,-14
- 180: -2,-14
- 181: -1,-14
+ 173: -7,-8
+ 174: -7,-9
+ 175: -3,-14
+ 176: -2,-14
+ 177: -1,-14
- node:
color: '#FFFFFFFF'
id: BoxGreyscale
@@ -164,6 +166,14 @@ entities:
decals:
7: -5,-10
8: -5,-12
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineE
+ decals:
+ 203: 3,8
+ 204: 3,9
+ 205: 3,10
+ 206: 3,11
- node:
color: '#334E6DFF'
id: BrickTileWhiteCornerNe
@@ -206,8 +216,8 @@ entities:
color: '#169C9CFF'
id: BrickTileWhiteLineN
decals:
- 137: -1,6
- 138: 0,6
+ 133: -1,6
+ 134: 0,6
- node:
color: '#334E6DFF'
id: BrickTileWhiteLineN
@@ -226,25 +236,25 @@ entities:
color: '#EFB34196'
id: BrickTileWhiteLineN
decals:
- 157: -6,6
- 158: -5,6
- 159: -3,6
- 160: -4,6
- 165: 1,-8
- 166: 2,-8
- 167: 3,-8
- 168: 4,-8
- 169: 5,-8
- 170: 6,-8
+ 153: -6,6
+ 154: -5,6
+ 155: -3,6
+ 156: -4,6
+ 161: 1,-8
+ 162: 2,-8
+ 163: 3,-8
+ 164: 4,-8
+ 165: 5,-8
+ 166: 6,-8
- node:
color: '#169C9CFF'
id: BrickTileWhiteLineS
decals:
- 132: -1,-6
- 133: 0,-6
- 134: 1,-6
- 135: 2,-6
- 136: 3,-6
+ 128: -1,-6
+ 129: 0,-6
+ 130: 1,-6
+ 131: 2,-6
+ 132: 3,-6
- node:
color: '#334E6DFF'
id: BrickTileWhiteLineS
@@ -266,10 +276,10 @@ entities:
42: -7,-5
43: -6,-5
44: -5,-5
- 161: -3,8
- 162: -4,8
- 163: -4,-5
- 164: -3,-5
+ 157: -3,8
+ 158: -4,8
+ 159: -4,-5
+ 160: -3,-5
- node:
color: '#334E6DFF'
id: BrickTileWhiteLineW
@@ -286,23 +296,23 @@ entities:
color: '#3AB3DAFF'
id: DeliveryGreyscale
decals:
- 145: -1,-1
+ 141: -1,-1
- node:
color: '#B02E26FF'
id: DeliveryGreyscale
decals:
- 140: 3,-5
- 141: 3,-6
+ 136: 3,-5
+ 137: 3,-6
- node:
color: '#F9801DFF'
id: DeliveryGreyscale
decals:
- 144: -1,1
+ 140: -1,1
- node:
color: '#FF0000FF'
id: DeliveryGreyscale
decals:
- 146: -1,0
+ 142: -1,0
- node:
color: '#334E6DFF'
id: HerringboneOverlay
@@ -314,28 +324,20 @@ entities:
color: '#FFFFFFFF'
id: LoadingArea
decals:
- 122: -4,-11
+ 118: -4,-11
- node:
angle: 4.71238898038469 rad
color: '#FFFFFFFF'
id: LoadingArea
decals:
6: -4,-7
- - node:
- color: '#FFFFFFFF'
- id: MiniTileSteelLineE
- decals:
- 118: 3,11
- 119: 3,10
- 120: 3,9
- 121: 3,8
- node:
color: '#FFFFFFFF'
id: StandClear
decals:
69: 7,5
- 126: -4,-13
- 127: -4,-15
+ 122: -4,-13
+ 123: -4,-15
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
@@ -356,7 +358,7 @@ entities:
color: '#FFFFFFFF'
id: WarnCornerNE
decals:
- 198: 0,2
+ 194: 0,2
- node:
color: '#FFFFFFFF'
id: WarnCornerSW
@@ -367,7 +369,8 @@ entities:
id: WarnCornerSmallNE
decals:
103: 0,-5
- 195: -4,-2
+ 191: -4,-2
+ 211: -4,3
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallNW
@@ -377,7 +380,8 @@ entities:
color: '#FFFFFFFF'
id: WarnCornerSmallSE
decals:
- 196: -4,2
+ 192: -4,2
+ 210: -4,5
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallSW
@@ -405,19 +409,21 @@ entities:
98: 0,-2
99: 0,-3
100: 0,-4
- 190: -4,-1
- 191: -4,0
- 192: -4,1
+ 186: -4,-1
+ 187: -4,0
+ 188: -4,1
+ 209: -4,4
- node:
color: '#FFFFFFFF'
id: WarnLineN
decals:
68: 7,5
- 130: -4,-15
- 131: -4,-13
- 194: -3,2
- 200: -1,5
- 201: 0,5
+ 126: -4,-15
+ 127: -4,-13
+ 190: -3,2
+ 196: -1,5
+ 197: 0,5
+ 208: -3,5
- node:
color: '#FFFFFFFF'
id: WarnLineS
@@ -437,7 +443,7 @@ entities:
93: 4,-9
116: -5,8
117: -5,9
- 175: 4,-8
+ 171: 4,-8
- node:
color: '#FFFFFFFF'
id: WarnLineW
@@ -448,11 +454,12 @@ entities:
92: 3,-10
101: 1,-5
102: 2,-5
- 128: -4,-13
- 129: -4,-15
- 139: 3,-5
- 193: -3,-2
- 199: -1,2
+ 124: -4,-13
+ 125: -4,-15
+ 135: 3,-5
+ 189: -3,-2
+ 195: -1,2
+ 207: -3,3
- node:
color: '#FFFFFFFF'
id: WoodTrimThinInnerNe
@@ -480,8 +487,8 @@ entities:
id: WoodTrimThinLineS
decals:
34: -4,15
- type: DecalGrid
- - version: 2
+ - type: GridAtmosphere
+ version: 2
data:
tiles:
0,0:
@@ -679,64 +686,52 @@ entities:
- 0
- 0
chunkSize: 4
- type: GridAtmosphere
- type: GasTileOverlay
- type: RadiationGridResistance
- - id: gasbender
- type: BecomesStation
+ - type: BecomesStation
+ id: gasbender
- proto: AirAlarm
entities:
- uid: 317
components:
- - name: ignition chamber output
- type: MetaData
- - pos: 1.5,5.5
+ - type: MetaData
+ name: ignition chamber output
+ - type: Transform
+ pos: 1.5,5.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 250
- - 249
- type: DeviceNetwork
- - devices:
+ - type: DeviceList
+ devices:
- 249
- 250
- type: DeviceList
- - enabled: False
- type: AccessReader
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AccessReader
+ enabled: False
- type: Emagged
- uid: 318
components:
- - name: ignition chamber vent
- type: MetaData
- - pos: 2.5,5.5
+ - type: MetaData
+ name: ignition chamber vent
+ - type: Transform
+ pos: 2.5,5.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
+ - type: DeviceList
+ devices:
- 253
- type: DeviceNetwork
- - devices:
- - 253
- type: DeviceList
- - enabled: False
- type: AccessReader
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AccessReader
+ enabled: False
- type: Emagged
- uid: 449
components:
- - name: main atmos lab air alarm
- type: MetaData
- - pos: 3.5,5.5
+ - type: MetaData
+ name: main atmos lab air alarm
+ - type: Transform
+ pos: 3.5,5.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 915
- - 914
- - 913
- - 245
- - 218
- - 5
- - 279
- type: DeviceNetwork
- - devices:
+ - type: DeviceList
+ devices:
- 915
- 914
- 913
@@ -744,3035 +739,3069 @@ entities:
- 218
- 5
- 279
- type: DeviceList
+ - type: AtmosDevice
+ joinedGrid: 1
- uid: 479
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 0.5,-7.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
+ - type: DeviceList
+ devices:
- 285
- 424
- 446
- type: DeviceNetwork
- - devices:
- - 285
- - 424
- - 446
- type: DeviceList
+ - type: AtmosDevice
+ joinedGrid: 1
- uid: 480
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 0.5,-9.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 882
- - 881
- - 883
- type: DeviceNetwork
- - devices:
+ - type: DeviceList
+ devices:
- 882
- 881
- 883
- type: DeviceList
+ - type: AtmosDevice
+ joinedGrid: 1
- uid: 481
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,5.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 911
- - 910
- - 912
- type: DeviceNetwork
- - devices:
+ - type: DeviceList
+ devices:
- 912
- 910
- 911
- type: DeviceList
+ - type: AtmosDevice
+ joinedGrid: 1
- uid: 482
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -7.5,10.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 931
- - 929
- - 930
- type: DeviceNetwork
- - devices:
+ - type: DeviceList
+ devices:
- 931
- 929
- 930
- type: DeviceList
+ - type: AtmosDevice
+ joinedGrid: 1
- uid: 864
components:
- - pos: 3.5,12.5
+ - type: Transform
+ pos: 3.5,12.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 960
- - 966
- - 959
- - 961
- - 967
- - 958
- type: DeviceNetwork
- - devices:
+ - type: DeviceList
+ devices:
- 960
- 966
- 959
- 961
- 967
- 958
- type: DeviceList
+ - type: AtmosDevice
+ joinedGrid: 1
- proto: AirCanister
entities:
- uid: 916
components:
- - pos: -6.5,9.5
+ - type: Transform
+ pos: -6.5,9.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- uid: 917
components:
- - pos: -5.5,9.5
+ - type: Transform
+ pos: -5.5,9.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- uid: 928
components:
- - pos: -6.5,8.5
+ - type: Transform
+ pos: -6.5,8.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- proto: Airlock
entities:
- uid: 526
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 2.5,12.5
parent: 1
- type: Transform
- proto: AirlockAtmosphericsGlass
entities:
- uid: 304
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,6.5
parent: 1
- type: Transform
- uid: 405
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -1.5,-1.5
parent: 1
- type: Transform
- uid: 411
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -1.5,-2.5
parent: 1
- type: Transform
- proto: AirlockCommandGlass
entities:
- uid: 492
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -3.5,10.5
parent: 1
- type: Transform
- proto: AirlockEngineeringGlass
entities:
- uid: 193
components:
- - pos: -0.5,-12.5
+ - type: Transform
+ pos: -0.5,-12.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 824
- type: DeviceLinkSink
- uid: 219
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -2.5,-5.5
parent: 1
- type: Transform
- uid: 220
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -3.5,-5.5
parent: 1
- type: Transform
- uid: 328
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,7.5
parent: 1
- type: Transform
- uid: 338
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -5.5,-7.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 824
- type: DeviceLinkSink
- uid: 339
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -5.5,-8.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 824
- type: DeviceLinkSink
- uid: 346
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,-6.5
parent: 1
- type: Transform
- uid: 353
components:
- - pos: -2.5,-12.5
+ - type: Transform
+ pos: -2.5,-12.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 824
- type: DeviceLinkSink
- uid: 367
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -3.5,7.5
parent: 1
- type: Transform
- uid: 779
components:
- - pos: -1.5,-12.5
+ - type: Transform
+ pos: -1.5,-12.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 824
- type: DeviceLinkSink
- proto: AirlockExternalGlass
entities:
- uid: 155
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 4.5,6.5
parent: 1
- type: Transform
- proto: AirlockGlassShuttle
entities:
- uid: 7
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,-8.5
parent: 1
- type: Transform
- uid: 10
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,-7.5
parent: 1
- type: Transform
- uid: 159
components:
- - pos: -2.5,-14.5
+ - type: Transform
+ pos: -2.5,-14.5
parent: 1
- type: Transform
- uid: 238
components:
- - pos: -1.5,-14.5
+ - type: Transform
+ pos: -1.5,-14.5
parent: 1
- type: Transform
- uid: 329
components:
- - pos: -0.5,-14.5
+ - type: Transform
+ pos: -0.5,-14.5
parent: 1
- type: Transform
- proto: AirlockMedicalGlass
entities:
- uid: 502
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 0.5,12.5
parent: 1
- type: Transform
- proto: AirSensor
entities:
- uid: 218
components:
- - pos: 1.5,-4.5
+ - type: Transform
+ pos: 1.5,-4.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 449
- type: DeviceNetwork
- uid: 285
components:
- - pos: 3.5,-8.5
+ - type: Transform
+ pos: 3.5,-8.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 479
- type: DeviceNetwork
- uid: 883
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -3.5,-8.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 480
- type: DeviceNetwork
- uid: 912
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -3.5,1.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 481
- type: DeviceNetwork
- uid: 931
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -5.5,14.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 482
- type: DeviceNetwork
- uid: 966
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 3.5,10.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 864
- type: DeviceNetwork
- uid: 967
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -0.5,14.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 864
- type: DeviceNetwork
- proto: AmeController
entities:
- uid: 234
components:
- - pos: 4.5,-11.5
+ - type: Transform
+ pos: 4.5,-11.5
parent: 1
- type: Transform
- - injecting: True
- type: AmeController
- - containers:
+ - type: AmeController
+ injecting: True
+ - type: ContainerContainer
+ containers:
AmeFuel: !type:ContainerSlot
showEnts: False
occludes: True
ent: 16
- type: ContainerContainer
- proto: AmeJar
entities:
- uid: 16
components:
- - flags: InContainer
- type: MetaData
- - parent: 234
- type: Transform
- - canCollide: False
- type: Physics
+ - type: MetaData
+ flags: InContainer
+ - type: Transform
+ parent: 234
+ - type: Physics
+ canCollide: False
- uid: 53
components:
- - pos: 5.274978,-10.459393
+ - type: Transform
+ pos: 5.274978,-10.459393
parent: 1
- type: Transform
- proto: AmePart
entities:
- uid: 1138
components:
- - pos: 5.7003665,-10.388437
+ - type: Transform
+ pos: 5.7003665,-10.388437
parent: 1
- type: Transform
- uid: 1139
components:
- - pos: 5.7145457,-10.530349
+ - type: Transform
+ pos: 5.7145457,-10.530349
parent: 1
- type: Transform
- uid: 1140
components:
- - pos: 5.7854433,-10.615496
+ - type: Transform
+ pos: 5.7854433,-10.615496
parent: 1
- type: Transform
- proto: AmeShielding
entities:
- uid: 181
components:
- - pos: 1.5,-12.5
+ - type: Transform
+ pos: 1.5,-12.5
parent: 1
- type: Transform
- uid: 213
components:
- - pos: 2.5,-12.5
+ - type: Transform
+ pos: 2.5,-12.5
parent: 1
- type: Transform
- uid: 231
components:
- - pos: 3.5,-12.5
+ - type: Transform
+ pos: 3.5,-12.5
parent: 1
- type: Transform
- uid: 232
components:
- - pos: 2.5,-11.5
+ - type: Transform
+ pos: 2.5,-11.5
parent: 1
- type: Transform
- - radius: 2
+ - type: PointLight
+ radius: 2
enabled: True
- type: PointLight
- uid: 233
components:
- - pos: 1.5,-11.5
+ - type: Transform
+ pos: 1.5,-11.5
parent: 1
- type: Transform
- uid: 235
components:
- - pos: 1.5,-10.5
+ - type: Transform
+ pos: 1.5,-10.5
parent: 1
- type: Transform
- uid: 236
components:
- - pos: 2.5,-10.5
+ - type: Transform
+ pos: 2.5,-10.5
parent: 1
- type: Transform
- uid: 242
components:
- - pos: 3.5,-10.5
+ - type: Transform
+ pos: 3.5,-10.5
parent: 1
- type: Transform
- uid: 254
components:
- - pos: 3.5,-11.5
+ - type: Transform
+ pos: 3.5,-11.5
parent: 1
- type: Transform
- proto: APCBasic
entities:
- uid: 368
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -4.5,-5.5
parent: 1
- type: Transform
- uid: 557
components:
- - pos: 4.5,-6.5
+ - type: Transform
+ pos: 4.5,-6.5
parent: 1
- type: Transform
- uid: 559
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -5.5,10.5
parent: 1
- type: Transform
- uid: 560
components:
- - pos: 1.5,12.5
+ - type: Transform
+ pos: 1.5,12.5
parent: 1
- type: Transform
- uid: 610
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 0.5,-10.5
parent: 1
- type: Transform
- proto: AtmosDeviceFanTiny
entities:
- uid: 8
components:
- - pos: -6.5,1.5
+ - type: Transform
+ pos: -6.5,1.5
parent: 1
- type: Transform
- uid: 32
components:
- - pos: -6.5,3.5
+ - type: Transform
+ pos: -6.5,3.5
parent: 1
- type: Transform
- uid: 42
components:
- - pos: -7.5,-8.5
+ - type: Transform
+ pos: -7.5,-8.5
parent: 1
- type: Transform
- uid: 111
components:
- - pos: -2.5,-14.5
+ - type: Transform
+ pos: -2.5,-14.5
parent: 1
- type: Transform
- uid: 143
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 4.5,6.5
parent: 1
- type: Transform
- uid: 148
components:
- - pos: -1.5,-14.5
+ - type: Transform
+ pos: -1.5,-14.5
parent: 1
- type: Transform
- uid: 158
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,-14.5
parent: 1
- type: Transform
- uid: 171
components:
- - pos: -3.5,-14.5
+ - type: Transform
+ pos: -3.5,-14.5
parent: 1
- type: Transform
- uid: 185
components:
- - pos: -7.5,-6.5
+ - type: Transform
+ pos: -7.5,-6.5
parent: 1
- type: Transform
- uid: 337
components:
- - pos: -7.5,-7.5
+ - type: Transform
+ pos: -7.5,-7.5
parent: 1
- type: Transform
- uid: 372
components:
- - pos: -6.5,4.5
+ - type: Transform
+ pos: -6.5,4.5
parent: 1
- type: Transform
- uid: 373
components:
- - pos: -6.5,2.5
+ - type: Transform
+ pos: -6.5,2.5
parent: 1
- type: Transform
- uid: 374
components:
- - pos: -6.5,0.5
+ - type: Transform
+ pos: -6.5,0.5
parent: 1
- type: Transform
- proto: AtmosFixBlockerMarker
entities:
- uid: 292
components:
- - pos: 8.5,7.5
+ - type: Transform
+ pos: 8.5,7.5
parent: 1
- type: Transform
- uid: 423
components:
- - pos: 8.5,8.5
+ - type: Transform
+ pos: 8.5,8.5
parent: 1
- type: Transform
- uid: 1071
components:
- - pos: 7.5,4.5
+ - type: Transform
+ pos: 7.5,4.5
parent: 1
- type: Transform
- uid: 1072
components:
- - pos: 8.5,4.5
+ - type: Transform
+ pos: 8.5,4.5
parent: 1
- type: Transform
- uid: 1073
components:
- - pos: 8.5,3.5
+ - type: Transform
+ pos: 8.5,3.5
parent: 1
- type: Transform
- uid: 1074
components:
- - pos: 7.5,3.5
+ - type: Transform
+ pos: 7.5,3.5
parent: 1
- type: Transform
- uid: 1075
components:
- - pos: 7.5,2.5
+ - type: Transform
+ pos: 7.5,2.5
parent: 1
- type: Transform
- uid: 1076
components:
- - pos: 8.5,2.5
+ - type: Transform
+ pos: 8.5,2.5
parent: 1
- type: Transform
- uid: 1077
components:
- - pos: 7.5,5.5
+ - type: Transform
+ pos: 7.5,5.5
parent: 1
- type: Transform
- uid: 1078
components:
- - pos: 9.5,4.5
+ - type: Transform
+ pos: 9.5,4.5
parent: 1
- type: Transform
- uid: 1079
components:
- - pos: 9.5,3.5
+ - type: Transform
+ pos: 9.5,3.5
parent: 1
- type: Transform
- uid: 1080
components:
- - pos: 9.5,2.5
+ - type: Transform
+ pos: 9.5,2.5
parent: 1
- type: Transform
- uid: 1095
components:
- - pos: 8.5,6.5
+ - type: Transform
+ pos: 8.5,6.5
parent: 1
- type: Transform
- uid: 1096
components:
- - pos: 7.5,6.5
+ - type: Transform
+ pos: 7.5,6.5
parent: 1
- type: Transform
- uid: 1097
components:
- - pos: 6.5,6.5
+ - type: Transform
+ pos: 6.5,6.5
parent: 1
- type: Transform
- uid: 1098
components:
- - pos: 5.5,6.5
+ - type: Transform
+ pos: 5.5,6.5
parent: 1
- type: Transform
- uid: 1099
components:
- - pos: 5.5,5.5
+ - type: Transform
+ pos: 5.5,5.5
parent: 1
- type: Transform
- uid: 1100
components:
- - pos: 5.5,4.5
+ - type: Transform
+ pos: 5.5,4.5
parent: 1
- type: Transform
- uid: 1101
components:
- - pos: 5.5,3.5
+ - type: Transform
+ pos: 5.5,3.5
parent: 1
- type: Transform
- uid: 1102
components:
- - pos: 5.5,2.5
+ - type: Transform
+ pos: 5.5,2.5
parent: 1
- type: Transform
- uid: 1103
components:
- - pos: 5.5,1.5
+ - type: Transform
+ pos: 5.5,1.5
parent: 1
- type: Transform
- uid: 1104
components:
- - pos: 5.5,0.5
+ - type: Transform
+ pos: 5.5,0.5
parent: 1
- type: Transform
- uid: 1105
components:
- - pos: 5.5,-0.5
+ - type: Transform
+ pos: 5.5,-0.5
parent: 1
- type: Transform
- uid: 1106
components:
- - pos: 5.5,-1.5
+ - type: Transform
+ pos: 5.5,-1.5
parent: 1
- type: Transform
- uid: 1107
components:
- - pos: 5.5,-2.5
+ - type: Transform
+ pos: 5.5,-2.5
parent: 1
- type: Transform
- uid: 1108
components:
- - pos: 5.5,-3.5
+ - type: Transform
+ pos: 5.5,-3.5
parent: 1
- type: Transform
- uid: 1109
components:
- - pos: 5.5,-4.5
+ - type: Transform
+ pos: 5.5,-4.5
parent: 1
- type: Transform
- uid: 1110
components:
- - pos: 5.5,-5.5
+ - type: Transform
+ pos: 5.5,-5.5
parent: 1
- type: Transform
- uid: 1111
components:
- - pos: 6.5,-5.5
+ - type: Transform
+ pos: 6.5,-5.5
parent: 1
- type: Transform
- uid: 1112
components:
- - pos: 7.5,-5.5
+ - type: Transform
+ pos: 7.5,-5.5
parent: 1
- type: Transform
- uid: 1113
components:
- - pos: 8.5,-5.5
+ - type: Transform
+ pos: 8.5,-5.5
parent: 1
- type: Transform
- uid: 1114
components:
- - pos: 8.5,-6.5
+ - type: Transform
+ pos: 8.5,-6.5
parent: 1
- type: Transform
- uid: 1115
components:
- - pos: 7.5,-11.5
+ - type: Transform
+ pos: 7.5,-11.5
parent: 1
- type: Transform
- uid: 1116
components:
- - pos: 6.5,-12.5
+ - type: Transform
+ pos: 6.5,-12.5
parent: 1
- type: Transform
- uid: 1117
components:
- - pos: 5.5,-13.5
+ - type: Transform
+ pos: 5.5,-13.5
parent: 1
- type: Transform
- uid: 1118
components:
- - pos: 4.5,-14.5
+ - type: Transform
+ pos: 4.5,-14.5
parent: 1
- type: Transform
- uid: 1119
components:
- - pos: 3.5,-14.5
+ - type: Transform
+ pos: 3.5,-14.5
parent: 1
- type: Transform
- uid: 1120
components:
- - pos: 2.5,-14.5
+ - type: Transform
+ pos: 2.5,-14.5
parent: 1
- type: Transform
- uid: 1121
components:
- - pos: -5.5,-14.5
+ - type: Transform
+ pos: -5.5,-14.5
parent: 1
- type: Transform
- uid: 1122
components:
- - pos: -6.5,-13.5
+ - type: Transform
+ pos: -6.5,-13.5
parent: 1
- type: Transform
- uid: 1123
components:
- - pos: -7.5,-12.5
+ - type: Transform
+ pos: -7.5,-12.5
parent: 1
- type: Transform
- uid: 1124
components:
- - pos: -7.5,-1.5
+ - type: Transform
+ pos: -7.5,-1.5
parent: 1
- type: Transform
- uid: 1125
components:
- - pos: -7.5,-0.5
+ - type: Transform
+ pos: -7.5,-0.5
parent: 1
- type: Transform
- uid: 1126
components:
- - pos: -7.5,0.5
+ - type: Transform
+ pos: -7.5,0.5
parent: 1
- type: Transform
- uid: 1127
components:
- - pos: -7.5,1.5
+ - type: Transform
+ pos: -7.5,1.5
parent: 1
- type: Transform
- uid: 1128
components:
- - pos: -7.5,2.5
+ - type: Transform
+ pos: -7.5,2.5
parent: 1
- type: Transform
- uid: 1129
components:
- - pos: -7.5,3.5
+ - type: Transform
+ pos: -7.5,3.5
parent: 1
- type: Transform
- uid: 1130
components:
- - pos: -7.5,4.5
+ - type: Transform
+ pos: -7.5,4.5
parent: 1
- type: Transform
- uid: 1131
components:
- - pos: -7.5,5.5
+ - type: Transform
+ pos: -7.5,5.5
parent: 1
- type: Transform
- uid: 1132
components:
- - pos: -7.5,6.5
+ - type: Transform
+ pos: -7.5,6.5
parent: 1
- type: Transform
- uid: 1133
components:
- - pos: 2.5,16.5
+ - type: Transform
+ pos: 2.5,16.5
parent: 1
- type: Transform
- uid: 1134
components:
- - pos: 3.5,16.5
+ - type: Transform
+ pos: 3.5,16.5
parent: 1
- type: Transform
- uid: 1135
components:
- - pos: 4.5,15.5
+ - type: Transform
+ pos: 4.5,15.5
parent: 1
- type: Transform
- uid: 1136
components:
- - pos: 5.5,14.5
+ - type: Transform
+ pos: 5.5,14.5
parent: 1
- type: Transform
- uid: 1137
components:
- - pos: 6.5,13.5
+ - type: Transform
+ pos: 6.5,13.5
parent: 1
- type: Transform
- proto: AtmosFixNitrogenMarker
entities:
- uid: 183
components:
- - pos: 7.5,-1.5
+ - type: Transform
+ pos: 7.5,-1.5
parent: 1
- type: Transform
- uid: 188
components:
- - pos: 8.5,-1.5
+ - type: Transform
+ pos: 8.5,-1.5
parent: 1
- type: Transform
- proto: AtmosFixOxygenMarker
entities:
- uid: 136
components:
- - pos: 7.5,-3.5
+ - type: Transform
+ pos: 7.5,-3.5
parent: 1
- type: Transform
- uid: 168
components:
- - pos: 8.5,-3.5
+ - type: Transform
+ pos: 8.5,-3.5
parent: 1
- type: Transform
- uid: 530
components:
- - pos: 8.5,-3.5
+ - type: Transform
+ pos: 8.5,-3.5
parent: 1
- type: Transform
- uid: 1015
components:
- - pos: 7.5,-3.5
+ - type: Transform
+ pos: 7.5,-3.5
parent: 1
- type: Transform
- uid: 1016
components:
- - pos: 7.5,-3.5
+ - type: Transform
+ pos: 7.5,-3.5
parent: 1
- type: Transform
- uid: 1017
components:
- - pos: 8.5,-3.5
+ - type: Transform
+ pos: 8.5,-3.5
parent: 1
- type: Transform
- proto: AtmosFixPlasmaMarker
entities:
- uid: 95
components:
- - pos: 7.5,0.5
+ - type: Transform
+ pos: 7.5,0.5
parent: 1
- type: Transform
- uid: 127
components:
- - pos: 8.5,0.5
+ - type: Transform
+ pos: 8.5,0.5
parent: 1
- type: Transform
- proto: Autolathe
entities:
- uid: 314
components:
- - pos: -6.5,-3.5
+ - type: Transform
+ pos: -6.5,-3.5
parent: 1
- type: Transform
- proto: BedsheetMedical
entities:
- uid: 1148
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,15.5
parent: 1
- type: Transform
- uid: 1150
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,15.5
parent: 1
- type: Transform
- proto: BenchSofaCorpCorner
entities:
- uid: 832
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,8.5
parent: 1
- type: Transform
- - canCollide: False
+ - type: Physics
+ canCollide: False
bodyType: Static
- type: Physics
- - fixtures: {}
- type: Fixtures
+ - type: Fixtures
+ fixtures: {}
- uid: 840
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -0.5,8.5
parent: 1
- type: Transform
- - canCollide: False
+ - type: Physics
+ canCollide: False
bodyType: Static
- type: Physics
- - fixtures: {}
- type: Fixtures
+ - type: Fixtures
+ fixtures: {}
- proto: BenchSofaCorpLeft
entities:
- uid: 518
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,9.5
parent: 1
- type: Transform
- - bodyType: Static
- type: Physics
+ - type: Physics
+ bodyType: Static
- proto: BenchSofaCorpMiddle
entities:
- uid: 528
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,8.5
parent: 1
- type: Transform
- - bodyType: Static
- type: Physics
+ - type: Physics
+ bodyType: Static
- uid: 539
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 0.5,8.5
parent: 1
- type: Transform
- - bodyType: Static
- type: Physics
+ - type: Physics
+ bodyType: Static
- uid: 540
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 2.5,8.5
parent: 1
- type: Transform
- - bodyType: Static
- type: Physics
+ - type: Physics
+ bodyType: Static
- proto: BenchSofaCorpRight
entities:
- uid: 833
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,9.5
parent: 1
- type: Transform
- - bodyType: Static
- type: Physics
+ - type: Physics
+ bodyType: Static
- proto: BlastDoor
entities:
- uid: 79
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 9.5,3.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 416
- 321
- type: DeviceLinkSink
- uid: 87
components:
- - pos: 7.5,5.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 7.5,5.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 320
- 321
- type: DeviceLinkSink
- uid: 129
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 9.5,2.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 416
- 321
- type: DeviceLinkSink
- uid: 130
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 9.5,4.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 416
- 321
- type: DeviceLinkSink
- uid: 164
components:
- - pos: -3.5,-14.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,-14.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 1014
- type: DeviceLinkSink
- uid: 191
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,-6.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 394
- type: DeviceLinkSink
- uid: 347
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -5.5,-6.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 394
- type: DeviceLinkSink
- uid: 425
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -6.5,4.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 445
- 444
- type: DeviceLinkSink
- uid: 426
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -6.5,3.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 445
- 444
- type: DeviceLinkSink
- uid: 427
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -6.5,2.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 445
- 444
- type: DeviceLinkSink
- uid: 428
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -6.5,1.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 445
- 444
- type: DeviceLinkSink
- uid: 429
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -6.5,0.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 445
- 444
- type: DeviceLinkSink
- uid: 536
components:
- - pos: -3.5,-12.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,-12.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 1014
- type: DeviceLinkSink
- proto: BookshelfFilled
entities:
- uid: 744
components:
- - pos: -3.5,15.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,15.5
parent: 1
- type: Transform
- proto: BorgCharger
entities:
- uid: 472
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -5.5,-1.5
parent: 1
- type: Transform
- proto: BorgModuleConstruction
entities:
- uid: 1059
components:
- - pos: -2.7174199,3.2826922
+ - type: Transform
+ pos: -2.7174199,3.2826922
parent: 1
- type: Transform
- proto: BoxDarts
entities:
- uid: 224
components:
- - pos: 3.4302099,9.316309
+ - type: Transform
+ pos: 3.4302099,9.316309
parent: 1
- type: Transform
- proto: Bucket
entities:
- uid: 1029
components:
- - pos: 2.246398,14.452408
+ - type: Transform
+ pos: 2.246398,14.452408
parent: 1
- type: Transform
- proto: CableApcExtension
entities:
- uid: 80
components:
- - pos: 6.5,-0.5
+ - type: Transform
+ pos: 6.5,-0.5
parent: 1
- type: Transform
- uid: 362
components:
- - pos: 7.5,-5.5
+ - type: Transform
+ pos: 7.5,-5.5
parent: 1
- type: Transform
- uid: 379
components:
- - pos: -5.5,-11.5
+ - type: Transform
+ pos: -5.5,-11.5
parent: 1
- type: Transform
- uid: 381
components:
- - pos: -5.5,-12.5
+ - type: Transform
+ pos: -5.5,-12.5
parent: 1
- type: Transform
- uid: 577
components:
- - pos: -4.5,-5.5
+ - type: Transform
+ pos: -4.5,-5.5
parent: 1
- type: Transform
- uid: 578
components:
- - pos: -4.5,-4.5
+ - type: Transform
+ pos: -4.5,-4.5
parent: 1
- type: Transform
- uid: 619
components:
- - pos: -5.5,10.5
+ - type: Transform
+ pos: -5.5,10.5
parent: 1
- type: Transform
- uid: 620
components:
- - pos: -5.5,11.5
+ - type: Transform
+ pos: -5.5,11.5
parent: 1
- type: Transform
- uid: 621
components:
- - pos: -5.5,12.5
+ - type: Transform
+ pos: -5.5,12.5
parent: 1
- type: Transform
- uid: 622
components:
- - pos: -5.5,13.5
+ - type: Transform
+ pos: -5.5,13.5
parent: 1
- type: Transform
- uid: 623
components:
- - pos: -6.5,13.5
+ - type: Transform
+ pos: -6.5,13.5
parent: 1
- type: Transform
- uid: 624
components:
- - pos: -7.5,13.5
+ - type: Transform
+ pos: -7.5,13.5
parent: 1
- type: Transform
- uid: 626
components:
- - pos: -5.5,13.5
+ - type: Transform
+ pos: -5.5,13.5
parent: 1
- type: Transform
- uid: 629
components:
- - pos: 1.5,12.5
+ - type: Transform
+ pos: 1.5,12.5
parent: 1
- type: Transform
- uid: 630
components:
- - pos: 1.5,11.5
+ - type: Transform
+ pos: 1.5,11.5
parent: 1
- type: Transform
- uid: 631
components:
- - pos: 1.5,10.5
+ - type: Transform
+ pos: 1.5,10.5
parent: 1
- type: Transform
- uid: 632
components:
- - pos: 3.5,10.5
+ - type: Transform
+ pos: 3.5,10.5
parent: 1
- type: Transform
- uid: 633
components:
- - pos: 2.5,10.5
+ - type: Transform
+ pos: 2.5,10.5
parent: 1
- type: Transform
- uid: 634
components:
- - pos: 4.5,10.5
+ - type: Transform
+ pos: 4.5,10.5
parent: 1
- type: Transform
- uid: 635
components:
- - pos: 5.5,10.5
+ - type: Transform
+ pos: 5.5,10.5
parent: 1
- type: Transform
- uid: 636
components:
- - pos: 5.5,9.5
+ - type: Transform
+ pos: 5.5,9.5
parent: 1
- type: Transform
- uid: 637
components:
- - pos: 5.5,8.5
+ - type: Transform
+ pos: 5.5,8.5
parent: 1
- type: Transform
- uid: 638
components:
- - pos: 0.5,12.5
+ - type: Transform
+ pos: 0.5,12.5
parent: 1
- type: Transform
- uid: 639
components:
- - pos: 0.5,13.5
+ - type: Transform
+ pos: 0.5,13.5
parent: 1
- type: Transform
- uid: 640
components:
- - pos: 0.5,14.5
+ - type: Transform
+ pos: 0.5,14.5
parent: 1
- type: Transform
- uid: 642
components:
- - pos: 0.5,-10.5
+ - type: Transform
+ pos: 0.5,-10.5
parent: 1
- type: Transform
- uid: 643
components:
- - pos: -0.5,-10.5
+ - type: Transform
+ pos: -0.5,-10.5
parent: 1
- type: Transform
- uid: 644
components:
- - pos: -1.5,-10.5
+ - type: Transform
+ pos: -1.5,-10.5
parent: 1
- type: Transform
- uid: 645
components:
- - pos: -2.5,-10.5
+ - type: Transform
+ pos: -2.5,-10.5
parent: 1
- type: Transform
- uid: 646
components:
- - pos: -3.5,-10.5
+ - type: Transform
+ pos: -3.5,-10.5
parent: 1
- type: Transform
- uid: 647
components:
- - pos: -4.5,-10.5
+ - type: Transform
+ pos: -4.5,-10.5
parent: 1
- type: Transform
- uid: 648
components:
- - pos: -5.5,-10.5
+ - type: Transform
+ pos: -5.5,-10.5
parent: 1
- type: Transform
- uid: 649
components:
- - pos: -1.5,-9.5
+ - type: Transform
+ pos: -1.5,-9.5
parent: 1
- type: Transform
- uid: 650
components:
- - pos: -1.5,-8.5
+ - type: Transform
+ pos: -1.5,-8.5
parent: 1
- type: Transform
- uid: 651
components:
- - pos: -1.5,-7.5
+ - type: Transform
+ pos: -1.5,-7.5
parent: 1
- type: Transform
- uid: 653
components:
- - pos: -5.5,-4.5
+ - type: Transform
+ pos: -5.5,-4.5
parent: 1
- type: Transform
- uid: 654
components:
- - pos: -6.5,-4.5
+ - type: Transform
+ pos: -6.5,-4.5
parent: 1
- type: Transform
- uid: 655
components:
- - pos: -6.5,-3.5
+ - type: Transform
+ pos: -6.5,-3.5
parent: 1
- type: Transform
- uid: 656
components:
- - pos: -4.5,-3.5
+ - type: Transform
+ pos: -4.5,-3.5
parent: 1
- type: Transform
- uid: 657
components:
- - pos: -4.5,-2.5
+ - type: Transform
+ pos: -4.5,-2.5
parent: 1
- type: Transform
- uid: 658
components:
- - pos: -4.5,-1.5
+ - type: Transform
+ pos: -4.5,-1.5
parent: 1
- type: Transform
- uid: 659
components:
- - pos: -3.5,-4.5
+ - type: Transform
+ pos: -3.5,-4.5
parent: 1
- type: Transform
- uid: 660
components:
- - pos: -2.5,-4.5
+ - type: Transform
+ pos: -2.5,-4.5
parent: 1
- type: Transform
- uid: 661
components:
- - pos: -2.5,-5.5
+ - type: Transform
+ pos: -2.5,-5.5
parent: 1
- type: Transform
- uid: 662
components:
- - pos: -2.5,-13.5
+ - type: Transform
+ pos: -2.5,-13.5
parent: 1
- type: Transform
- uid: 663
components:
- - pos: -2.5,-12.5
+ - type: Transform
+ pos: -2.5,-12.5
parent: 1
- type: Transform
- uid: 664
components:
- - pos: -2.5,-11.5
+ - type: Transform
+ pos: -2.5,-11.5
parent: 1
- type: Transform
- uid: 665
components:
- - pos: -6.5,-8.5
+ - type: Transform
+ pos: -6.5,-8.5
parent: 1
- type: Transform
- uid: 666
components:
- - pos: -5.5,-8.5
+ - type: Transform
+ pos: -5.5,-8.5
parent: 1
- type: Transform
- uid: 667
components:
- - pos: -4.5,-8.5
+ - type: Transform
+ pos: -4.5,-8.5
parent: 1
- type: Transform
- uid: 668
components:
- - pos: -3.5,-8.5
+ - type: Transform
+ pos: -3.5,-8.5
parent: 1
- type: Transform
- uid: 669
components:
- - pos: -2.5,-8.5
+ - type: Transform
+ pos: -2.5,-8.5
parent: 1
- type: Transform
- uid: 670
components:
- - pos: -4.5,-0.5
+ - type: Transform
+ pos: -4.5,-0.5
parent: 1
- type: Transform
- uid: 671
components:
- - pos: -4.5,0.5
+ - type: Transform
+ pos: -4.5,0.5
parent: 1
- type: Transform
- uid: 672
components:
- - pos: -4.5,2.5
+ - type: Transform
+ pos: -4.5,2.5
parent: 1
- type: Transform
- uid: 673
components:
- - pos: -4.5,1.5
+ - type: Transform
+ pos: -4.5,1.5
parent: 1
- type: Transform
- uid: 674
components:
- - pos: -4.5,3.5
+ - type: Transform
+ pos: -4.5,3.5
parent: 1
- type: Transform
- uid: 675
components:
- - pos: -4.5,4.5
+ - type: Transform
+ pos: -4.5,4.5
parent: 1
- type: Transform
- uid: 676
components:
- - pos: -4.5,5.5
+ - type: Transform
+ pos: -4.5,5.5
parent: 1
- type: Transform
- uid: 677
components:
- - pos: -4.5,6.5
+ - type: Transform
+ pos: -4.5,6.5
parent: 1
- type: Transform
- uid: 678
components:
- - pos: -3.5,6.5
+ - type: Transform
+ pos: -3.5,6.5
parent: 1
- type: Transform
- uid: 679
components:
- - pos: -2.5,6.5
+ - type: Transform
+ pos: -2.5,6.5
parent: 1
- type: Transform
- uid: 680
components:
- - pos: -2.5,7.5
+ - type: Transform
+ pos: -2.5,7.5
parent: 1
- type: Transform
- uid: 681
components:
- - pos: -3.5,1.5
+ - type: Transform
+ pos: -3.5,1.5
parent: 1
- type: Transform
- uid: 682
components:
- - pos: -2.5,1.5
+ - type: Transform
+ pos: -2.5,1.5
parent: 1
- type: Transform
- uid: 683
components:
- - pos: -4.5,-1.5
+ - type: Transform
+ pos: -4.5,-1.5
parent: 1
- type: Transform
- uid: 684
components:
- - pos: -3.5,-1.5
+ - type: Transform
+ pos: -3.5,-1.5
parent: 1
- type: Transform
- uid: 685
components:
- - pos: -2.5,-1.5
+ - type: Transform
+ pos: -2.5,-1.5
parent: 1
- type: Transform
- uid: 686
components:
- - pos: -5.5,1.5
+ - type: Transform
+ pos: -5.5,1.5
parent: 1
- type: Transform
- uid: 687
components:
- - pos: -5.5,4.5
+ - type: Transform
+ pos: -5.5,4.5
parent: 1
- type: Transform
- uid: 689
components:
- - pos: -6.5,4.5
+ - type: Transform
+ pos: -6.5,4.5
parent: 1
- type: Transform
- uid: 690
components:
- - pos: -5.5,-1.5
+ - type: Transform
+ pos: -5.5,-1.5
parent: 1
- type: Transform
- uid: 692
components:
- - pos: -3.5,4.5
+ - type: Transform
+ pos: -3.5,4.5
parent: 1
- type: Transform
- uid: 693
components:
- - pos: -2.5,4.5
+ - type: Transform
+ pos: -2.5,4.5
parent: 1
- type: Transform
- uid: 695
components:
- - pos: 4.5,-6.5
+ - type: Transform
+ pos: 4.5,-6.5
parent: 1
- type: Transform
- uid: 696
components:
- - pos: 4.5,-7.5
+ - type: Transform
+ pos: 4.5,-7.5
parent: 1
- type: Transform
- uid: 697
components:
- - pos: 4.5,-8.5
+ - type: Transform
+ pos: 4.5,-8.5
parent: 1
- type: Transform
- uid: 698
components:
- - pos: 4.5,-9.5
+ - type: Transform
+ pos: 4.5,-9.5
parent: 1
- type: Transform
- uid: 699
components:
- - pos: 4.5,-9.5
+ - type: Transform
+ pos: 4.5,-9.5
parent: 1
- type: Transform
- uid: 700
components:
- - pos: 4.5,-10.5
+ - type: Transform
+ pos: 4.5,-10.5
parent: 1
- type: Transform
- uid: 701
components:
- - pos: 3.5,-7.5
+ - type: Transform
+ pos: 3.5,-7.5
parent: 1
- type: Transform
- uid: 702
components:
- - pos: 2.5,-7.5
+ - type: Transform
+ pos: 2.5,-7.5
parent: 1
- type: Transform
- uid: 703
components:
- - pos: 1.5,-7.5
+ - type: Transform
+ pos: 1.5,-7.5
parent: 1
- type: Transform
- uid: 704
components:
- - pos: 1.5,-6.5
+ - type: Transform
+ pos: 1.5,-6.5
parent: 1
- type: Transform
- uid: 705
components:
- - pos: 1.5,-5.5
+ - type: Transform
+ pos: 1.5,-5.5
parent: 1
- type: Transform
- uid: 706
components:
- - pos: 1.5,-4.5
+ - type: Transform
+ pos: 1.5,-4.5
parent: 1
- type: Transform
- uid: 707
components:
- - pos: 1.5,-3.5
+ - type: Transform
+ pos: 1.5,-3.5
parent: 1
- type: Transform
- uid: 708
components:
- - pos: 1.5,-2.5
+ - type: Transform
+ pos: 1.5,-2.5
parent: 1
- type: Transform
- uid: 709
components:
- - pos: -0.5,-1.5
+ - type: Transform
+ pos: -0.5,-1.5
parent: 1
- type: Transform
- uid: 710
components:
- - pos: 0.5,-1.5
+ - type: Transform
+ pos: 0.5,-1.5
parent: 1
- type: Transform
- uid: 711
components:
- - pos: 4.5,-6.5
+ - type: Transform
+ pos: 4.5,-6.5
parent: 1
- type: Transform
- uid: 712
components:
- - pos: 4.5,-5.5
+ - type: Transform
+ pos: 4.5,-5.5
parent: 1
- type: Transform
- uid: 713
components:
- - pos: 4.5,-4.5
+ - type: Transform
+ pos: 4.5,-4.5
parent: 1
- type: Transform
- uid: 714
components:
- - pos: 4.5,-3.5
+ - type: Transform
+ pos: 4.5,-3.5
parent: 1
- type: Transform
- uid: 715
components:
- - pos: 4.5,-2.5
+ - type: Transform
+ pos: 4.5,-2.5
parent: 1
- type: Transform
- uid: 716
components:
- - pos: 4.5,-1.5
+ - type: Transform
+ pos: 4.5,-1.5
parent: 1
- type: Transform
- uid: 717
components:
- - pos: 4.5,-0.5
+ - type: Transform
+ pos: 4.5,-0.5
parent: 1
- type: Transform
- uid: 718
components:
- - pos: 4.5,0.5
+ - type: Transform
+ pos: 4.5,0.5
parent: 1
- type: Transform
- uid: 719
components:
- - pos: 4.5,1.5
+ - type: Transform
+ pos: 4.5,1.5
parent: 1
- type: Transform
- uid: 720
components:
- - pos: 4.5,2.5
+ - type: Transform
+ pos: 4.5,2.5
parent: 1
- type: Transform
- uid: 721
components:
- - pos: 4.5,3.5
+ - type: Transform
+ pos: 4.5,3.5
parent: 1
- type: Transform
- uid: 722
components:
- - pos: 4.5,4.5
+ - type: Transform
+ pos: 4.5,4.5
parent: 1
- type: Transform
- uid: 723
components:
- - pos: 1.5,-1.5
+ - type: Transform
+ pos: 1.5,-1.5
parent: 1
- type: Transform
- uid: 724
components:
- - pos: 1.5,-0.5
+ - type: Transform
+ pos: 1.5,-0.5
parent: 1
- type: Transform
- uid: 725
components:
- - pos: 1.5,0.5
+ - type: Transform
+ pos: 1.5,0.5
parent: 1
- type: Transform
- uid: 726
components:
- - pos: 1.5,1.5
+ - type: Transform
+ pos: 1.5,1.5
parent: 1
- type: Transform
- uid: 727
components:
- - pos: 1.5,2.5
+ - type: Transform
+ pos: 1.5,2.5
parent: 1
- type: Transform
- uid: 728
components:
- - pos: 1.5,3.5
+ - type: Transform
+ pos: 1.5,3.5
parent: 1
- type: Transform
- uid: 729
components:
- - pos: 1.5,4.5
+ - type: Transform
+ pos: 1.5,4.5
parent: 1
- type: Transform
- uid: 730
components:
- - pos: 0.5,4.5
+ - type: Transform
+ pos: 0.5,4.5
parent: 1
- type: Transform
- uid: 731
components:
- - pos: 0.5,5.5
+ - type: Transform
+ pos: 0.5,5.5
parent: 1
- type: Transform
- uid: 732
components:
- - pos: 0.5,6.5
+ - type: Transform
+ pos: 0.5,6.5
parent: 1
- type: Transform
- uid: 733
components:
- - pos: 1.5,6.5
+ - type: Transform
+ pos: 1.5,6.5
parent: 1
- type: Transform
- uid: 734
components:
- - pos: 2.5,6.5
+ - type: Transform
+ pos: 2.5,6.5
parent: 1
- type: Transform
- uid: 735
components:
- - pos: 3.5,6.5
+ - type: Transform
+ pos: 3.5,6.5
parent: 1
- type: Transform
- uid: 736
components:
- - pos: 4.5,6.5
+ - type: Transform
+ pos: 4.5,6.5
parent: 1
- type: Transform
- uid: 737
components:
- - pos: 5.5,6.5
+ - type: Transform
+ pos: 5.5,6.5
parent: 1
- type: Transform
- uid: 738
components:
- - pos: 6.5,6.5
+ - type: Transform
+ pos: 6.5,6.5
parent: 1
- type: Transform
- uid: 739
components:
- - pos: 6.5,5.5
+ - type: Transform
+ pos: 6.5,5.5
parent: 1
- type: Transform
- uid: 740
components:
- - pos: 6.5,4.5
+ - type: Transform
+ pos: 6.5,4.5
parent: 1
- type: Transform
- uid: 741
components:
- - pos: 6.5,3.5
+ - type: Transform
+ pos: 6.5,3.5
parent: 1
- type: Transform
- uid: 742
components:
- - pos: 6.5,2.5
+ - type: Transform
+ pos: 6.5,2.5
parent: 1
- type: Transform
- uid: 743
components:
- - pos: 6.5,0.5
+ - type: Transform
+ pos: 6.5,0.5
parent: 1
- type: Transform
- uid: 745
components:
- - pos: 6.5,-1.5
+ - type: Transform
+ pos: 6.5,-1.5
parent: 1
- type: Transform
- uid: 746
components:
- - pos: 6.5,-2.5
+ - type: Transform
+ pos: 6.5,-2.5
parent: 1
- type: Transform
- uid: 747
components:
- - pos: 6.5,-3.5
+ - type: Transform
+ pos: 6.5,-3.5
parent: 1
- type: Transform
- uid: 748
components:
- - pos: 6.5,-4.5
+ - type: Transform
+ pos: 6.5,-4.5
parent: 1
- type: Transform
- uid: 749
components:
- - pos: 5.5,-6.5
+ - type: Transform
+ pos: 5.5,-6.5
parent: 1
- type: Transform
- uid: 750
components:
- - pos: 6.5,-6.5
+ - type: Transform
+ pos: 6.5,-6.5
parent: 1
- type: Transform
- uid: 751
components:
- - pos: 6.5,-5.5
+ - type: Transform
+ pos: 6.5,-5.5
parent: 1
- type: Transform
- uid: 752
components:
- - pos: 6.5,-4.5
+ - type: Transform
+ pos: 6.5,-4.5
parent: 1
- type: Transform
- uid: 757
components:
- - pos: -4.5,11.5
+ - type: Transform
+ pos: -4.5,11.5
parent: 1
- type: Transform
- uid: 758
components:
- - pos: -3.5,11.5
+ - type: Transform
+ pos: -3.5,11.5
parent: 1
- type: Transform
- uid: 759
components:
- - pos: -3.5,10.5
+ - type: Transform
+ pos: -3.5,10.5
parent: 1
- type: Transform
- uid: 760
components:
- - pos: 1.5,9.5
+ - type: Transform
+ pos: 1.5,9.5
parent: 1
- type: Transform
- uid: 761
components:
- - pos: 1.5,8.5
+ - type: Transform
+ pos: 1.5,8.5
parent: 1
- type: Transform
- uid: 762
components:
- - pos: 0.5,8.5
+ - type: Transform
+ pos: 0.5,8.5
parent: 1
- type: Transform
- uid: 763
components:
- - pos: -0.5,8.5
+ - type: Transform
+ pos: -0.5,8.5
parent: 1
- type: Transform
- uid: 764
components:
- - pos: -1.5,8.5
+ - type: Transform
+ pos: -1.5,8.5
parent: 1
- type: Transform
- uid: 765
components:
- - pos: -1.5,11.5
+ - type: Transform
+ pos: -1.5,11.5
parent: 1
- type: Transform
- uid: 766
components:
- - pos: -0.5,11.5
+ - type: Transform
+ pos: -0.5,11.5
parent: 1
- type: Transform
- uid: 767
components:
- - pos: 0.5,11.5
+ - type: Transform
+ pos: 0.5,11.5
parent: 1
- type: Transform
- uid: 784
components:
- - pos: 4.5,-14.5
+ - type: Transform
+ pos: 4.5,-14.5
parent: 1
- type: Transform
- uid: 785
components:
- - pos: 4.5,-13.5
+ - type: Transform
+ pos: 4.5,-13.5
parent: 1
- type: Transform
- uid: 786
components:
- - pos: 5.5,-13.5
+ - type: Transform
+ pos: 5.5,-13.5
parent: 1
- type: Transform
- uid: 787
components:
- - pos: 5.5,-12.5
+ - type: Transform
+ pos: 5.5,-12.5
parent: 1
- type: Transform
- uid: 788
components:
- - pos: 6.5,-12.5
+ - type: Transform
+ pos: 6.5,-12.5
parent: 1
- type: Transform
- uid: 789
components:
- - pos: 4.5,-12.5
+ - type: Transform
+ pos: 4.5,-12.5
parent: 1
- type: Transform
- uid: 790
components:
- - pos: 4.5,-11.5
+ - type: Transform
+ pos: 4.5,-11.5
parent: 1
- type: Transform
- uid: 797
components:
- - pos: 2.5,16.5
+ - type: Transform
+ pos: 2.5,16.5
parent: 1
- type: Transform
- uid: 798
components:
- - pos: 3.5,16.5
+ - type: Transform
+ pos: 3.5,16.5
parent: 1
- type: Transform
- uid: 799
components:
- - pos: 4.5,15.5
+ - type: Transform
+ pos: 4.5,15.5
parent: 1
- type: Transform
- uid: 800
components:
- - pos: 5.5,14.5
+ - type: Transform
+ pos: 5.5,14.5
parent: 1
- type: Transform
- uid: 801
components:
- - pos: 4.5,14.5
+ - type: Transform
+ pos: 4.5,14.5
parent: 1
- type: Transform
- uid: 802
components:
- - pos: 3.5,14.5
+ - type: Transform
+ pos: 3.5,14.5
parent: 1
- type: Transform
- uid: 803
components:
- - pos: 3.5,15.5
+ - type: Transform
+ pos: 3.5,15.5
parent: 1
- type: Transform
- uid: 804
components:
- - pos: 2.5,16.5
+ - type: Transform
+ pos: 2.5,16.5
parent: 1
- type: Transform
- uid: 805
components:
- - pos: 5.5,13.5
+ - type: Transform
+ pos: 5.5,13.5
parent: 1
- type: Transform
- uid: 806
components:
- - pos: 5.5,12.5
+ - type: Transform
+ pos: 5.5,12.5
parent: 1
- type: Transform
- uid: 807
components:
- - pos: 5.5,11.5
+ - type: Transform
+ pos: 5.5,11.5
parent: 1
- type: Transform
- uid: 809
components:
- - pos: 5.5,-7.5
+ - type: Transform
+ pos: 5.5,-7.5
parent: 1
- type: Transform
- uid: 865
components:
- - pos: 7.5,-11.5
+ - type: Transform
+ pos: 7.5,-11.5
parent: 1
- type: Transform
- uid: 866
components:
- - pos: 6.5,-11.5
+ - type: Transform
+ pos: 6.5,-11.5
parent: 1
- type: Transform
- uid: 869
components:
- - pos: 6.5,13.5
+ - type: Transform
+ pos: 6.5,13.5
parent: 1
- type: Transform
- uid: 870
components:
- - pos: 5.5,13.5
+ - type: Transform
+ pos: 5.5,13.5
parent: 1
- type: Transform
- uid: 972
components:
- - pos: -0.5,14.5
+ - type: Transform
+ pos: -0.5,14.5
parent: 1
- type: Transform
- uid: 973
components:
- - pos: -1.5,14.5
+ - type: Transform
+ pos: -1.5,14.5
parent: 1
- type: Transform
- uid: 1022
components:
- - pos: 6.5,8.5
+ - type: Transform
+ pos: 6.5,8.5
parent: 1
- type: Transform
- uid: 1038
components:
- - pos: -5.5,6.5
+ - type: Transform
+ pos: -5.5,6.5
parent: 1
- type: Transform
- uid: 1039
components:
- - pos: -6.5,6.5
+ - type: Transform
+ pos: -6.5,6.5
parent: 1
- type: Transform
- proto: CableHV
entities:
+ - uid: 31
+ components:
+ - type: Transform
+ pos: 4.5,-8.5
+ parent: 1
- uid: 93
components:
- - pos: 6.5,-9.5
+ - type: Transform
+ pos: 6.5,-9.5
parent: 1
- type: Transform
- uid: 117
components:
- - pos: 4.5,-10.5
+ - type: Transform
+ pos: 4.5,-10.5
parent: 1
- type: Transform
- uid: 119
components:
- - pos: 5.5,-10.5
+ - type: Transform
+ pos: 5.5,-10.5
parent: 1
- type: Transform
- uid: 134
components:
- - pos: 6.5,-8.5
+ - type: Transform
+ pos: 6.5,-8.5
parent: 1
- type: Transform
- uid: 163
components:
- - pos: 5.5,-9.5
+ - type: Transform
+ pos: 5.5,-9.5
parent: 1
- type: Transform
- uid: 198
components:
- - pos: 6.5,-7.5
+ - type: Transform
+ pos: 6.5,-7.5
parent: 1
- type: Transform
- uid: 228
components:
- - pos: 5.5,-8.5
+ - type: Transform
+ pos: 5.5,-8.5
parent: 1
- type: Transform
- uid: 255
components:
- - pos: 4.5,-11.5
+ - type: Transform
+ pos: 4.5,-11.5
parent: 1
- type: Transform
- uid: 535
components:
- - pos: 2.5,-7.5
+ - type: Transform
+ pos: 2.5,-7.5
parent: 1
- type: Transform
- uid: 1005
components:
- - pos: 3.5,-7.5
+ - type: Transform
+ pos: 3.5,-7.5
parent: 1
- type: Transform
- uid: 1011
components:
- - pos: 4.5,-7.5
- parent: 1
- type: Transform
- - uid: 1033
- components:
- - pos: 5.5,-7.5
+ - type: Transform
+ pos: 4.5,-7.5
parent: 1
- type: Transform
- proto: CableMV
entities:
- uid: 331
components:
- - pos: -5.5,11.5
+ - type: Transform
+ pos: -5.5,11.5
parent: 1
- type: Transform
- uid: 541
components:
- - pos: 1.5,9.5
+ - type: Transform
+ pos: 1.5,9.5
parent: 1
- type: Transform
- uid: 558
components:
- - pos: -4.5,11.5
+ - type: Transform
+ pos: -4.5,11.5
parent: 1
- type: Transform
- uid: 561
components:
- - pos: 6.5,-7.5
+ - type: Transform
+ pos: 6.5,-7.5
parent: 1
- type: Transform
- uid: 562
components:
- - pos: 5.5,-7.5
+ - type: Transform
+ pos: 5.5,-7.5
parent: 1
- type: Transform
- uid: 563
components:
- - pos: 4.5,-7.5
+ - type: Transform
+ pos: 4.5,-7.5
parent: 1
- type: Transform
- uid: 564
components:
- - pos: 4.5,-6.5
+ - type: Transform
+ pos: 4.5,-6.5
parent: 1
- type: Transform
- uid: 565
components:
- - pos: 3.5,-7.5
+ - type: Transform
+ pos: 3.5,-7.5
parent: 1
- type: Transform
- uid: 566
components:
- - pos: 2.5,-7.5
+ - type: Transform
+ pos: 2.5,-7.5
parent: 1
- type: Transform
- uid: 567
components:
- - pos: 1.5,-7.5
+ - type: Transform
+ pos: 1.5,-7.5
parent: 1
- type: Transform
- uid: 568
components:
- - pos: 1.5,-6.5
+ - type: Transform
+ pos: 1.5,-6.5
parent: 1
- type: Transform
- uid: 569
components:
- - pos: -3.5,11.5
+ - type: Transform
+ pos: -3.5,11.5
parent: 1
- type: Transform
- uid: 571
components:
- - pos: -3.5,10.5
+ - type: Transform
+ pos: -3.5,10.5
parent: 1
- type: Transform
- uid: 572
components:
- - pos: -3.5,9.5
+ - type: Transform
+ pos: -3.5,9.5
parent: 1
- type: Transform
- uid: 573
components:
- - pos: -3.5,8.5
+ - type: Transform
+ pos: -3.5,8.5
parent: 1
- type: Transform
- uid: 574
components:
- - pos: -3.5,7.5
+ - type: Transform
+ pos: -3.5,7.5
parent: 1
- type: Transform
- uid: 575
components:
- - pos: -5.5,10.5
+ - type: Transform
+ pos: -5.5,10.5
parent: 1
- type: Transform
- uid: 579
components:
- - pos: -3.5,6.5
+ - type: Transform
+ pos: -3.5,6.5
parent: 1
- type: Transform
- uid: 580
components:
- - pos: -3.5,5.5
+ - type: Transform
+ pos: -3.5,5.5
parent: 1
- type: Transform
- uid: 581
components:
- - pos: -3.5,4.5
+ - type: Transform
+ pos: -3.5,4.5
parent: 1
- type: Transform
- uid: 582
components:
- - pos: -3.5,3.5
+ - type: Transform
+ pos: -3.5,3.5
parent: 1
- type: Transform
- uid: 583
components:
- - pos: -3.5,2.5
+ - type: Transform
+ pos: -3.5,2.5
parent: 1
- type: Transform
- uid: 584
components:
- - pos: -3.5,1.5
+ - type: Transform
+ pos: -3.5,1.5
parent: 1
- type: Transform
- uid: 585
components:
- - pos: -3.5,0.5
+ - type: Transform
+ pos: -3.5,0.5
parent: 1
- type: Transform
- uid: 586
components:
- - pos: -3.5,-0.5
+ - type: Transform
+ pos: -3.5,-0.5
parent: 1
- type: Transform
- uid: 587
components:
- - pos: -3.5,-1.5
+ - type: Transform
+ pos: -3.5,-1.5
parent: 1
- type: Transform
- uid: 588
components:
- - pos: -3.5,-2.5
+ - type: Transform
+ pos: -3.5,-2.5
parent: 1
- type: Transform
- uid: 589
components:
- - pos: -2.5,-2.5
+ - type: Transform
+ pos: -2.5,-2.5
parent: 1
- type: Transform
- uid: 590
components:
- - pos: -1.5,-2.5
+ - type: Transform
+ pos: -1.5,-2.5
parent: 1
- type: Transform
- uid: 591
components:
- - pos: -0.5,-2.5
+ - type: Transform
+ pos: -0.5,-2.5
parent: 1
- type: Transform
- uid: 592
components:
- - pos: 0.5,-2.5
+ - type: Transform
+ pos: 0.5,-2.5
parent: 1
- type: Transform
- uid: 593
components:
- - pos: 0.5,-3.5
+ - type: Transform
+ pos: 0.5,-3.5
parent: 1
- type: Transform
- uid: 594
components:
- - pos: 0.5,-4.5
+ - type: Transform
+ pos: 0.5,-4.5
parent: 1
- type: Transform
- uid: 595
components:
- - pos: 0.5,-5.5
+ - type: Transform
+ pos: 0.5,-5.5
parent: 1
- type: Transform
- uid: 596
components:
- - pos: 1.5,-5.5
+ - type: Transform
+ pos: 1.5,-5.5
parent: 1
- type: Transform
- uid: 597
components:
- - pos: -3.5,-3.5
+ - type: Transform
+ pos: -3.5,-3.5
parent: 1
- type: Transform
- uid: 598
components:
- - pos: -3.5,-4.5
+ - type: Transform
+ pos: -3.5,-4.5
parent: 1
- type: Transform
- uid: 599
components:
- - pos: -3.5,-5.5
+ - type: Transform
+ pos: -3.5,-5.5
parent: 1
- type: Transform
- uid: 600
components:
- - pos: -3.5,-6.5
+ - type: Transform
+ pos: -3.5,-6.5
parent: 1
- type: Transform
- uid: 601
components:
- - pos: -3.5,-7.5
+ - type: Transform
+ pos: -3.5,-7.5
parent: 1
- type: Transform
- uid: 602
components:
- - pos: -3.5,-8.5
+ - type: Transform
+ pos: -3.5,-8.5
parent: 1
- type: Transform
- uid: 603
components:
- - pos: -3.5,-9.5
+ - type: Transform
+ pos: -3.5,-9.5
parent: 1
- type: Transform
- uid: 604
components:
- - pos: -3.5,-10.5
+ - type: Transform
+ pos: -3.5,-10.5
parent: 1
- type: Transform
- uid: 605
components:
- - pos: -3.5,-10.5
+ - type: Transform
+ pos: -3.5,-10.5
parent: 1
- type: Transform
- uid: 606
components:
- - pos: -2.5,-10.5
+ - type: Transform
+ pos: -2.5,-10.5
parent: 1
- type: Transform
- uid: 607
components:
- - pos: -1.5,-10.5
+ - type: Transform
+ pos: -1.5,-10.5
parent: 1
- type: Transform
- uid: 608
components:
- - pos: -0.5,-10.5
+ - type: Transform
+ pos: -0.5,-10.5
parent: 1
- type: Transform
- uid: 609
components:
- - pos: 0.5,-10.5
+ - type: Transform
+ pos: 0.5,-10.5
parent: 1
- type: Transform
- uid: 612
components:
- - pos: -2.5,8.5
+ - type: Transform
+ pos: -2.5,8.5
parent: 1
- type: Transform
- uid: 613
components:
- - pos: -3.5,8.5
+ - type: Transform
+ pos: -3.5,8.5
parent: 1
- type: Transform
- uid: 614
components:
- - pos: -1.5,8.5
+ - type: Transform
+ pos: -1.5,8.5
parent: 1
- type: Transform
- uid: 615
components:
- - pos: 1.5,9.5
+ - type: Transform
+ pos: 1.5,9.5
parent: 1
- type: Transform
- uid: 616
components:
- - pos: 1.5,10.5
+ - type: Transform
+ pos: 1.5,10.5
parent: 1
- type: Transform
- uid: 617
components:
- - pos: 1.5,11.5
+ - type: Transform
+ pos: 1.5,11.5
parent: 1
- type: Transform
- uid: 618
components:
- - pos: 1.5,12.5
+ - type: Transform
+ pos: 1.5,12.5
parent: 1
- type: Transform
- uid: 641
components:
- - pos: -4.5,-5.5
+ - type: Transform
+ pos: -4.5,-5.5
parent: 1
- type: Transform
- uid: 841
components:
- - pos: 1.5,8.5
+ - type: Transform
+ pos: 1.5,8.5
parent: 1
- type: Transform
- uid: 842
components:
- - pos: 0.5,8.5
+ - type: Transform
+ pos: 0.5,8.5
parent: 1
- type: Transform
- uid: 843
components:
- - pos: -0.5,8.5
+ - type: Transform
+ pos: -0.5,8.5
parent: 1
- type: Transform
- proto: CableTerminal
entities:
- uid: 160
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 5.5,-9.5
parent: 1
- type: Transform
- uid: 227
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 5.5,-8.5
parent: 1
- type: Transform
- proto: CapacitorStockPart
entities:
- uid: 325
components:
- - pos: -2.377158,3.2595437
+ - type: Transform
+ pos: -2.377158,3.2595437
parent: 1
- type: Transform
- uid: 326
components:
- - pos: -2.1644638,3.2595437
+ - type: Transform
+ pos: -2.1644638,3.2595437
parent: 1
- type: Transform
- proto: CarpetBlack
entities:
- uid: 834
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,9.5
parent: 1
- type: Transform
- uid: 835
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,8.5
parent: 1
- type: Transform
- uid: 836
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 2.5,8.5
parent: 1
- type: Transform
- uid: 837
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 2.5,9.5
parent: 1
- type: Transform
- uid: 838
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,9.5
parent: 1
- type: Transform
- uid: 839
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,8.5
parent: 1
- type: Transform
- uid: 968
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 0.5,9.5
parent: 1
- type: Transform
- uid: 969
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 0.5,8.5
parent: 1
- type: Transform
- uid: 970
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -0.5,8.5
parent: 1
- type: Transform
- uid: 971
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -0.5,9.5
parent: 1
- type: Transform
- proto: Catwalk
entities:
- uid: 291
components:
- - pos: 8.5,8.5
+ - type: Transform
+ pos: 8.5,8.5
parent: 1
- type: Transform
- uid: 433
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,-1.5
parent: 1
- type: Transform
- uid: 434
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,-0.5
parent: 1
- type: Transform
- uid: 435
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,0.5
parent: 1
- type: Transform
- uid: 436
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,1.5
parent: 1
- type: Transform
- uid: 437
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,2.5
parent: 1
- type: Transform
- uid: 438
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,3.5
parent: 1
- type: Transform
- uid: 439
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,4.5
parent: 1
- type: Transform
- uid: 440
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,5.5
parent: 1
- type: Transform
- uid: 441
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,6.5
parent: 1
- type: Transform
- uid: 753
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 5.5,6.5
parent: 1
- type: Transform
- uid: 754
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 6.5,6.5
parent: 1
- type: Transform
- uid: 755
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 7.5,6.5
parent: 1
- type: Transform
- uid: 1068
components:
- - pos: 8.5,-5.5
+ - type: Transform
+ pos: 8.5,-5.5
parent: 1
- type: Transform
- uid: 1069
components:
- - pos: 8.5,-6.5
+ - type: Transform
+ pos: 8.5,-6.5
parent: 1
- type: Transform
- uid: 1070
components:
- - pos: 7.5,-11.5
+ - type: Transform
+ pos: 7.5,-11.5
parent: 1
- type: Transform
- uid: 1082
components:
- - pos: 6.5,-12.5
+ - type: Transform
+ pos: 6.5,-12.5
parent: 1
- type: Transform
- uid: 1083
components:
- - pos: 5.5,-13.5
+ - type: Transform
+ pos: 5.5,-13.5
parent: 1
- type: Transform
- uid: 1084
components:
- - pos: 4.5,-14.5
+ - type: Transform
+ pos: 4.5,-14.5
parent: 1
- type: Transform
- uid: 1085
components:
- - pos: 3.5,-14.5
+ - type: Transform
+ pos: 3.5,-14.5
parent: 1
- type: Transform
- uid: 1086
components:
- - pos: 2.5,-14.5
+ - type: Transform
+ pos: 2.5,-14.5
parent: 1
- type: Transform
- uid: 1087
components:
- - pos: -5.5,-14.5
+ - type: Transform
+ pos: -5.5,-14.5
parent: 1
- type: Transform
- uid: 1088
components:
- - pos: -6.5,-13.5
+ - type: Transform
+ pos: -6.5,-13.5
parent: 1
- type: Transform
- uid: 1089
components:
- - pos: -7.5,-12.5
+ - type: Transform
+ pos: -7.5,-12.5
parent: 1
- type: Transform
- uid: 1090
components:
- - pos: 6.5,13.5
+ - type: Transform
+ pos: 6.5,13.5
parent: 1
- type: Transform
- uid: 1091
components:
- - pos: 5.5,14.5
+ - type: Transform
+ pos: 5.5,14.5
parent: 1
- type: Transform
- uid: 1092
components:
- - pos: 4.5,15.5
+ - type: Transform
+ pos: 4.5,15.5
parent: 1
- type: Transform
- uid: 1093
components:
- - pos: 3.5,16.5
+ - type: Transform
+ pos: 3.5,16.5
parent: 1
- type: Transform
- uid: 1094
components:
- - pos: 2.5,16.5
+ - type: Transform
+ pos: 2.5,16.5
parent: 1
- type: Transform
- proto: Chair
entities:
- uid: 531
components:
- - pos: 0.5,10.5
+ - type: Transform
+ pos: 0.5,10.5
parent: 1
- type: Transform
- uid: 534
components:
- - pos: 1.5,10.5
+ - type: Transform
+ pos: 1.5,10.5
parent: 1
- type: Transform
- uid: 1021
components:
- - pos: 2.5,10.5
+ - type: Transform
+ pos: 2.5,10.5
parent: 1
- type: Transform
- proto: ChairOfficeDark
entities:
- uid: 1034
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 2.5,-8.5
parent: 1
- type: Transform
- proto: ChairPilotSeat
entities:
- uid: 345
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -8.5,13.5
parent: 1
- type: Transform
- uid: 550
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -7.5,14.5
parent: 1
- type: Transform
- uid: 551
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,12.5
parent: 1
- type: Transform
- uid: 553
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -6.5,14.5
parent: 1
- type: Transform
- proto: CircuitImprinter
entities:
- uid: 420
components:
- - pos: -5.5,-4.5
+ - type: Transform
+ pos: -5.5,-4.5
parent: 1
- type: Transform
- proto: ComfyChair
entities:
- uid: 547
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -3.5,14.5
parent: 1
- type: Transform
- uid: 548
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -3.5,12.5
parent: 1
- type: Transform
- proto: ComputerCrewMonitoring
entities:
- uid: 543
components:
- - pos: -7.5,15.5
+ - type: Transform
+ pos: -7.5,15.5
parent: 1
- type: Transform
- proto: ComputerPowerMonitoring
entities:
- uid: 298
components:
- - pos: 2.5,-7.5
+ - type: Transform
+ pos: 2.5,-7.5
parent: 1
- type: Transform
- proto: ComputerShuttle
entities:
- uid: 287
components:
- - pos: -8.5,14.5
+ - type: Transform
+ pos: -8.5,14.5
parent: 1
- type: Transform
- proto: ComputerStationRecords
entities:
- uid: 545
components:
- - pos: -6.5,15.5
+ - type: Transform
+ pos: -6.5,15.5
parent: 1
- type: Transform
- proto: ComputerSurveillanceCameraMonitor
entities:
- uid: 544
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -8.5,12.5
parent: 1
- type: Transform
- proto: ConveyorBelt
entities:
- uid: 122
components:
- - pos: -3.5,-11.5
+ - type: Transform
+ pos: -3.5,-11.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 862
- type: DeviceLinkSink
- uid: 123
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -5.5,-6.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 290
- type: DeviceLinkSink
- uid: 150
components:
- - pos: -3.5,-12.5
+ - type: Transform
+ pos: -3.5,-12.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 862
- type: DeviceLinkSink
- uid: 151
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -6.5,-6.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 290
- type: DeviceLinkSink
- uid: 156
components:
- - pos: -3.5,-13.5
+ - type: Transform
+ pos: -3.5,-13.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 862
- type: DeviceLinkSink
- uid: 157
components:
- - pos: -3.5,-14.5
+ - type: Transform
+ pos: -3.5,-14.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 862
- type: DeviceLinkSink
- uid: 190
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,-6.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 290
- type: DeviceLinkSink
- uid: 393
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -4.5,-6.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 290
- type: DeviceLinkSink
- proto: CrateEngineeringCableBulk
entities:
- uid: 1143
components:
- - pos: -5.5,-0.5
+ - type: Transform
+ pos: -5.5,-0.5
parent: 1
- type: Transform
- proto: CrateMaterialGlass
entities:
- uid: 975
components:
- - pos: -2.5,-9.5
+ - type: Transform
+ pos: -2.5,-9.5
parent: 1
- type: Transform
- proto: CrateMaterialSteel
entities:
- uid: 920
components:
- - pos: -0.5,-9.5
+ - type: Transform
+ pos: -0.5,-9.5
parent: 1
- type: Transform
- uid: 923
components:
- - pos: -1.5,-9.5
+ - type: Transform
+ pos: -1.5,-9.5
parent: 1
- type: Transform
- proto: DefibrillatorCabinetFilled
entities:
- uid: 1147
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,15.5
parent: 1
- type: Transform
+- proto: DisposalBend
+ entities:
+ - uid: 461
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,4.5
+ parent: 1
+ - uid: 508
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,8.5
+ parent: 1
- proto: DisposalPipe
entities:
- - uid: 859
+ - uid: 121
components:
- - rot: 1.5707963267948966 rad
- pos: 5.5,8.5
+ - type: Transform
+ pos: -3.5,7.5
parent: 1
- type: Transform
- - uid: 860
+ - uid: 688
components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,8.5
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,8.5
parent: 1
- type: Transform
- - uid: 861
+ - uid: 691
components:
- - rot: 1.5707963267948966 rad
- pos: 7.5,8.5
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,8.5
parent: 1
- type: Transform
- - uid: 1020
+ - uid: 791
components:
- - rot: 1.5707963267948966 rad
- pos: 8.5,8.5
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,8.5
+ parent: 1
+ - uid: 792
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,8.5
+ parent: 1
+ - uid: 793
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,8.5
+ parent: 1
+ - uid: 794
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,8.5
+ parent: 1
+ - uid: 796
+ components:
+ - type: Transform
+ pos: -3.5,6.5
+ parent: 1
+ - uid: 808
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,8.5
+ parent: 1
+ - uid: 816
+ components:
+ - type: Transform
+ pos: -3.5,5.5
parent: 1
- type: Transform
- proto: DisposalTrunk
entities:
- - uid: 858
+ - uid: 694
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 4.5,8.5
parent: 1
- type: Transform
- proto: DisposalUnit
entities:
- uid: 863
components:
- - pos: 4.5,8.5
+ - type: Transform
+ pos: 4.5,8.5
parent: 1
- type: Transform
- proto: DrinkMugMetal
entities:
- uid: 845
components:
- - pos: 6.5791116,10.125744
+ - type: Transform
+ pos: 6.5791116,10.125744
parent: 1
- type: Transform
- uid: 846
components:
- - pos: 6.3446736,10.061763
+ - type: Transform
+ pos: 6.3446736,10.061763
parent: 1
- type: Transform
- uid: 850
components:
- - pos: 6.5151734,9.805839
+ - type: Transform
+ pos: 6.5151734,9.805839
parent: 1
- type: Transform
- uid: 852
components:
- - pos: 6.2807355,9.741858
+ - type: Transform
+ pos: 6.2807355,9.741858
parent: 1
- type: Transform
- uid: 855
components:
- - pos: 6.621737,9.357971
+ - type: Transform
+ pos: 6.621737,9.357971
parent: 1
- type: Transform
- uid: 856
components:
- - pos: 6.4299245,9.571241
+ - type: Transform
+ pos: 6.4299245,9.571241
parent: 1
- type: Transform
- uid: 857
components:
- - pos: 6.302048,9.272663
+ - type: Transform
+ pos: 6.302048,9.272663
parent: 1
- type: Transform
- proto: DrinkVacuumFlask
entities:
- uid: 844
components:
- - pos: 6.856175,9.357971
+ - type: Transform
+ pos: 6.856175,9.357971
parent: 1
- type: Transform
- uid: 851
components:
- - pos: 6.8135514,10.232379
+ - type: Transform
+ pos: 6.8135514,10.232379
parent: 1
- type: Transform
- uid: 853
components:
- - pos: 6.856175,9.613895
+ - type: Transform
+ pos: 6.856175,9.613895
parent: 1
- type: Transform
- uid: 854
components:
- - pos: 6.8135514,9.912474
+ - type: Transform
+ pos: 6.8135514,9.912474
parent: 1
- type: Transform
- proto: EmergencyLight
entities:
- uid: 272
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,0.5
parent: 1
- type: Transform
- uid: 276
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 1.5,-8.5
parent: 1
- type: Transform
- uid: 283
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,-10.5
parent: 1
- type: Transform
- uid: 514
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -2.5,1.5
parent: 1
- type: Transform
- uid: 552
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 2.5,8.5
parent: 1
- type: Transform
- uid: 1061
components:
- - pos: -0.5,15.5
+ - type: Transform
+ pos: -0.5,15.5
parent: 1
- type: Transform
- uid: 1062
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -5.5,11.5
parent: 1
- type: Transform
- uid: 1063
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -5.5,8.5
parent: 1
- type: Transform
- proto: ExosuitFabricator
entities:
- uid: 322
components:
- - pos: -2.5,0.5
+ - type: Transform
+ pos: -2.5,0.5
parent: 1
- type: Transform
- proto: ExtinguisherCabinetFilled
entities:
- uid: 1003
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -6.5,-2.5
parent: 1
- type: Transform
- uid: 1004
components:
- - pos: 3.5,-6.5
+ - type: Transform
+ pos: 3.5,-6.5
parent: 1
- type: Transform
- uid: 1006
components:
- - pos: 3.5,7.5
+ - type: Transform
+ pos: 3.5,7.5
parent: 1
- type: Transform
- uid: 1008
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -4.5,7.5
parent: 1
- type: Transform
- uid: 1064
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -1.5,12.5
parent: 1
- type: Transform
- proto: FaxMachineShip
entities:
- uid: 527
components:
- - pos: -7.5,11.5
+ - type: Transform
+ pos: -7.5,11.5
parent: 1
- type: Transform
- proto: FireAxeCabinetFilled
entities:
- uid: 1002
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -2.5,13.5
parent: 1
- type: Transform
- proto: FirelockEdge
entities:
- uid: 245
components:
- - pos: 1.5,-5.5
+ - type: Transform
+ pos: 1.5,-5.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 449
- type: DeviceNetwork
- uid: 913
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,-2.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 449
- type: DeviceNetwork
- uid: 914
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,-1.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 449
- type: DeviceNetwork
- uid: 915
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 0.5,6.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 449
- type: DeviceNetwork
- proto: FloorDrain
entities:
- uid: 525
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 2.5,14.5
parent: 1
- type: Transform
- - fixtures: {}
- type: Fixtures
+ - type: Fixtures
+ fixtures: {}
- proto: GasbenderMothershipComputer
entities:
- uid: 403
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -6.5,-10.5
parent: 1
- type: Transform
- - containers:
+ - type: ContainerContainer
+ containers:
ShipyardConsole-targetId: !type:ContainerSlot
showEnts: False
occludes: True
@@ -3781,2087 +3810,2146 @@ entities:
showEnts: False
occludes: True
ents: []
- type: ContainerContainer
- proto: GasMixer
entities:
- uid: 271
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 3.5,0.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- proto: GasMixerFlipped
entities:
- uid: 261
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,-3.5
parent: 1
- type: Transform
- - inletTwoConcentration: 0.22000003
+ - type: GasMixer
+ inletTwoConcentration: 0.22000003
inletOneConcentration: 0.78
- type: GasMixer
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- proto: GasOutletInjector
entities:
- uid: 172
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 8.5,-3.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- uid: 177
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 8.5,0.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- uid: 180
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 7.5,4.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- uid: 820
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 8.5,-1.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- proto: GasPassiveVent
entities:
- uid: 263
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 7.5,-3.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- uid: 264
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 7.5,-1.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- uid: 265
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 7.5,0.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- uid: 335
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 7.5,-5.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- uid: 476
components:
- - pos: 8.5,7.5
+ - type: Transform
+ pos: 8.5,7.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- proto: GasPipeBend
entities:
+ - uid: 48
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 49
components:
- - pos: 8.5,-0.5
+ - type: Transform
+ pos: 8.5,-0.5
parent: 1
- type: Transform
- uid: 73
components:
- - pos: 0.5,-0.5
+ - type: Transform
+ pos: 0.5,-0.5
parent: 1
- type: Transform
- - color: '#449DFFFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#449DFFFF'
- uid: 96
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,-0.5
parent: 1
- type: Transform
- - color: '#F94541FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#F94541FF'
- uid: 161
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 0.5,-2.5
parent: 1
- type: Transform
- - color: '#449DFFFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#449DFFFF'
- uid: 244
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 7.5,2.5
parent: 1
- type: Transform
- uid: 269
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 0.5,-4.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 270
components:
- - pos: 1.5,0.5
+ - type: Transform
+ pos: 1.5,0.5
parent: 1
- type: Transform
- - color: '#F94541FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#F94541FF'
- uid: 278
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 1.5,-1.5
parent: 1
- type: Transform
- uid: 282
components:
- - pos: -0.5,-4.5
+ - type: Transform
+ pos: -0.5,-4.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 453
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -0.5,-5.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 781
components:
- - pos: 8.5,-2.5
+ - type: Transform
+ pos: 8.5,-2.5
parent: 1
- type: Transform
- uid: 826
components:
- - pos: 0.5,-3.5
+ - type: Transform
+ pos: 0.5,-3.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 877
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -4.5,-4.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 896
components:
- - pos: -3.5,-4.5
+ - type: Transform
+ pos: -3.5,-4.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 907
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -4.5,6.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 908
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -3.5,6.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 918
components:
- - pos: -3.5,8.5
+ - type: Transform
+ pos: -3.5,8.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 932
components:
- - pos: -4.5,11.5
+ - type: Transform
+ pos: -4.5,11.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 933
components:
- - pos: -5.5,12.5
+ - type: Transform
+ pos: -5.5,12.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 934
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -5.5,11.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 937
components:
- - pos: -3.5,13.5
+ - type: Transform
+ pos: -3.5,13.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 938
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -3.5,11.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 942
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,8.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 950
- components:
- - rot: 1.5707963267948966 rad
- pos: -2.5,8.5
- parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 1019
components:
- - pos: 8.5,1.5
+ - type: Transform
+ pos: 8.5,1.5
parent: 1
- type: Transform
- proto: GasPipeFourway
entities:
- uid: 334
components:
- - pos: 2.5,-5.5
+ - type: Transform
+ pos: 2.5,-5.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 941
components:
- - pos: -1.5,11.5
+ - type: Transform
+ pos: -1.5,11.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPipeStraight
entities:
- uid: 50
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 2.5,-0.5
parent: 1
- type: Transform
- uid: 86
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 8.5,5.5
parent: 1
- type: Transform
- uid: 105
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 4.5,1.5
parent: 1
- type: Transform
- - color: '#EB6B00FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#EB6B00FF'
- uid: 106
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 2.5,-3.5
parent: 1
- type: Transform
- uid: 118
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,-2.5
parent: 1
- type: Transform
- uid: 144
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 0.5,0.5
parent: 1
- type: Transform
- - color: '#F94541FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#F94541FF'
- uid: 170
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,4.5
parent: 1
- type: Transform
- uid: 186
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 6.5,1.5
parent: 1
- type: Transform
- uid: 189
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 0.5,1.5
parent: 1
- type: Transform
- - color: '#EB6B00FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#EB6B00FF'
- uid: 196
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 6.5,4.5
parent: 1
- type: Transform
- uid: 199
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 4.5,4.5
parent: 1
- type: Transform
- uid: 205
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 2.5,1.5
parent: 1
- type: Transform
- - color: '#EB6B00FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#EB6B00FF'
- uid: 207
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,-0.5
parent: 1
- type: Transform
- - color: '#F94541FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#F94541FF'
- uid: 225
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,-2.5
parent: 1
- type: Transform
- - color: '#449DFFFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#449DFFFF'
- uid: 243
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 6.5,3.5
parent: 1
- type: Transform
- uid: 248
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 3.5,-0.5
parent: 1
- type: Transform
- uid: 251
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 4.5,3.5
parent: 1
- type: Transform
- uid: 252
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 3.5,-1.5
parent: 1
- type: Transform
- uid: 260
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 7.5,-2.5
parent: 1
- type: Transform
- uid: 266
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 6.5,0.5
parent: 1
- type: Transform
- uid: 267
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 3.5,-2.5
parent: 1
- type: Transform
- uid: 268
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 4.5,0.5
parent: 1
- type: Transform
- uid: 273
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 6.5,-1.5
parent: 1
- type: Transform
- uid: 275
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 4.5,-1.5
parent: 1
- type: Transform
- uid: 277
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 7.5,1.5
parent: 1
- type: Transform
- uid: 280
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 4.5,-2.5
parent: 1
- type: Transform
- - color: '#449DFFFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#449DFFFF'
- uid: 284
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 6.5,-3.5
parent: 1
- type: Transform
- uid: 286
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 4.5,-3.5
parent: 1
- type: Transform
- uid: 294
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 7.5,-0.5
parent: 1
- type: Transform
- uid: 295
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 6.5,-2.5
parent: 1
- type: Transform
- uid: 323
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 2.5,-2.5
parent: 1
- type: Transform
- - color: '#449DFFFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#449DFFFF'
- uid: 324
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,1.5
parent: 1
- type: Transform
- - color: '#EB6B00FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#EB6B00FF'
- uid: 342
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 3.5,-1.5
parent: 1
- type: Transform
- uid: 361
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 6.5,-0.5
parent: 1
- type: Transform
- uid: 363
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,3.5
parent: 1
- type: Transform
- uid: 430
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 2.5,-6.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 431
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 2.5,-7.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 442
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 1.5,-5.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 443
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 0.5,-5.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 448
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,-5.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 450
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,-6.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 451
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 4.5,-5.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 452
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,-7.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 611
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -2.5,9.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 756
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 0.5,3.5
parent: 1
- type: Transform
- uid: 811
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 2.5,-0.5
parent: 1
- type: Transform
- - color: '#F94541FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#F94541FF'
- uid: 827
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 4.5,-0.5
parent: 1
- type: Transform
- - color: '#F94541FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#F94541FF'
- uid: 828
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 1.5,-2.5
parent: 1
- type: Transform
- - color: '#449DFFFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#449DFFFF'
- uid: 829
components:
- - pos: 0.5,-1.5
+ - type: Transform
+ pos: 0.5,-1.5
parent: 1
- type: Transform
- - color: '#449DFFFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#449DFFFF'
- uid: 873
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -1.5,-3.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 874
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -1.5,-4.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 875
components:
- - pos: -2.5,-5.5
+ - type: Transform
+ pos: -2.5,-5.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 876
components:
- - pos: -2.5,-6.5
+ - type: Transform
+ pos: -2.5,-6.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 878
components:
- - pos: -3.5,-5.5
+ - type: Transform
+ pos: -3.5,-5.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 879
components:
- - pos: -3.5,-6.5
+ - type: Transform
+ pos: -3.5,-6.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 880
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -2.5,-3.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 884
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,-3.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 885
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,-2.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 886
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,-1.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 888
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,0.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 889
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,1.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 890
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,2.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 891
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,3.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 892
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,4.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 893
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,5.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 894
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,6.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 895
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,7.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 897
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -3.5,-3.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 898
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -4.5,-2.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 899
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -4.5,-1.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 900
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -4.5,-0.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 901
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -4.5,1.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 902
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -4.5,2.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 903
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -4.5,3.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 904
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -4.5,4.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 905
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -4.5,5.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 906
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -3.5,7.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 924
components:
- - pos: -4.5,10.5
+ - type: Transform
+ pos: -4.5,10.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 935
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -5.5,13.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 936
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -4.5,13.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 939
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -3.5,12.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 940
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -2.5,11.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 943
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -3.5,9.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 944
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,9.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 945
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,9.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 947
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,9.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 948
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 2.5,9.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 949
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,9.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 951
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -1.5,9.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 952
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -1.5,10.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 953
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -1.5,12.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 954
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -1.5,13.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 955
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,11.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 956
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 0.5,11.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 957
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 1.5,11.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 962
components:
- - pos: 0.5,13.5
+ - type: Transform
+ pos: 0.5,13.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 963
components:
- - pos: 0.5,12.5
+ - type: Transform
+ pos: 0.5,12.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 964
components:
- - pos: 0.5,11.5
+ - type: Transform
+ pos: 0.5,11.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 965
components:
- - pos: 0.5,10.5
+ - type: Transform
+ pos: 0.5,10.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 974
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,1.5
parent: 1
- type: Transform
- - color: '#EB6B00FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#EB6B00FF'
- uid: 1001
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 0.5,4.5
parent: 1
- type: Transform
- proto: GasPipeTJunction
entities:
- uid: 226
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 3.5,-3.5
parent: 1
- type: Transform
- uid: 247
components:
- - pos: 7.5,3.5
+ - type: Transform
+ pos: 7.5,3.5
parent: 1
- type: Transform
- uid: 262
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,-4.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 289
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -0.5,-3.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 356
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 2.5,-1.5
parent: 1
- type: Transform
- uid: 432
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 3.5,-5.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 871
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -2.5,-4.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 872
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -4.5,-3.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 887
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -2.5,-0.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 909
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -4.5,0.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 921
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -4.5,8.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 922
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -4.5,9.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 946
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 0.5,9.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- proto: GasPort
entities:
- uid: 169
components:
- - name: N2 connector port
- type: MetaData
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ name: N2 connector port
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,0.5
parent: 1
- type: Transform
- - color: '#F94541FF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#F94541FF'
- uid: 206
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,4.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- uid: 293
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,3.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- uid: 308
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,-5.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 354
components:
- - name: plasma connector port
- type: MetaData
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ name: plasma connector port
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,1.5
parent: 1
- type: Transform
- - color: '#EB6B00FF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#EB6B00FF'
- uid: 359
components:
- - pos: 3.5,-4.5
+ - type: Transform
+ pos: 3.5,-4.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 825
components:
- - name: O2 connector port
- type: MetaData
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ name: O2 connector port
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,-0.5
parent: 1
- type: Transform
- - color: '#449DFFFF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#449DFFFF'
- uid: 926
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -6.5,8.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- proto: GasPressurePump
entities:
- uid: 15
components:
- - name: waste loop pump
- type: MetaData
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ name: waste loop pump
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 5.5,-5.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 211
components:
- - name: O2 output pump
- type: MetaData
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ name: O2 output pump
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 5.5,-3.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- uid: 214
components:
- - name: N2 output pump
- type: MetaData
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ name: N2 output pump
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 5.5,-1.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- uid: 216
components:
- - name: ignition chamber output pump
- type: MetaData
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ name: ignition chamber output pump
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 5.5,3.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- uid: 217
components:
- - name: plasma output pump
- type: MetaData
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ name: plasma output pump
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 5.5,0.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- uid: 475
components:
- - name: ignition chamber vent pump
- type: MetaData
- - rot: 3.141592653589793 rad
+ - type: MetaData
+ name: ignition chamber vent pump
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 8.5,6.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- proto: GasThermoMachineFreezer
entities:
- uid: 414
components:
- - pos: -0.5,6.5
+ - type: Transform
+ pos: -0.5,6.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- uid: 415
components:
- - pos: -0.5,5.5
+ - type: Transform
+ pos: -0.5,5.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- proto: GasThermoMachineHeater
entities:
- uid: 369
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,2.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- proto: GasValve
entities:
- uid: 385
components:
- - name: waste loop manual valve
- type: MetaData
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ name: waste loop manual valve
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 6.5,-5.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- proto: GasVentPump
entities:
- uid: 279
components:
- - pos: -0.5,-2.5
+ - type: Transform
+ pos: -0.5,-2.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 449
- type: DeviceNetwork
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 446
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,-8.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 479
- type: DeviceNetwork
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 882
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -3.5,-7.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 480
- type: DeviceNetwork
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 910
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -3.5,0.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 481
- type: DeviceNetwork
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 930
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -6.5,12.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 482
- type: DeviceNetwork
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 960
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 4.5,9.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 864
- type: DeviceNetwork
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 961
components:
- - pos: 0.5,14.5
+ - type: Transform
+ pos: 0.5,14.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 864
- type: DeviceNetwork
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- proto: GasVentScrubber
entities:
- uid: 5
components:
- - pos: 2.5,-4.5
+ - type: Transform
+ pos: 2.5,-4.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 449
- type: DeviceNetwork
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 249
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 8.5,3.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 317
- type: DeviceNetwork
+ - type: AtmosDevice
+ joinedGrid: 1
- uid: 250
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 8.5,2.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 317
- type: DeviceNetwork
+ - type: AtmosDevice
+ joinedGrid: 1
- uid: 253
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 8.5,4.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 318
- type: DeviceNetwork
+ - type: AtmosDevice
+ joinedGrid: 1
- uid: 424
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 2.5,-8.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 479
- type: DeviceNetwork
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 881
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,-7.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 480
- type: DeviceNetwork
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 911
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -3.5,-0.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 481
- type: DeviceNetwork
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 929
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -6.5,13.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 482
- type: DeviceNetwork
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 958
components:
- - pos: -1.5,14.5
+ - type: Transform
+ pos: -1.5,14.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 864
- type: DeviceNetwork
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 959
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 2.5,11.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 864
- type: DeviceNetwork
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasVolumePump
entities:
- uid: 375
components:
- - name: plasma input pump
- type: MetaData
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ name: plasma input pump
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 5.5,1.5
parent: 1
- type: Transform
- - color: '#EB6B00FF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#EB6B00FF'
- uid: 477
components:
- - name: ignition chamber input pump
- type: MetaData
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ name: ignition chamber input pump
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 5.5,4.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- uid: 812
components:
- - name: O2 input pump
- type: MetaData
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ name: O2 input pump
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 5.5,-2.5
parent: 1
- type: Transform
- - color: '#449DFFFF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#449DFFFF'
- uid: 927
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -5.5,8.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 1018
components:
- - name: N2 input pump
- type: MetaData
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ name: N2 input pump
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 5.5,-0.5
parent: 1
- type: Transform
- - color: '#F94541FF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#F94541FF'
- uid: 1144
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 1.5,4.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- uid: 1145
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 1.5,3.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
- proto: GravityGeneratorMini
entities:
- uid: 195
components:
- - pos: 4.5,-7.5
+ - type: Transform
+ pos: 4.5,-7.5
parent: 1
- type: Transform
- proto: Grille
entities:
- uid: 9
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -6.5,16.5
parent: 1
- type: Transform
- uid: 17
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -6.5,-0.5
parent: 1
- type: Transform
- uid: 25
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -5.5,16.5
parent: 1
- type: Transform
- uid: 27
components:
- - pos: -4.5,16.5
+ - type: Transform
+ pos: -4.5,16.5
parent: 1
- type: Transform
- uid: 36
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -8.5,11.5
parent: 1
- type: Transform
- uid: 43
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -6.5,5.5
parent: 1
- type: Transform
- uid: 51
components:
- - pos: 4.5,-3.5
+ - type: Transform
+ pos: 4.5,-3.5
parent: 1
- type: Transform
- uid: 74
components:
- - pos: 6.5,0.5
+ - type: Transform
+ pos: 6.5,0.5
parent: 1
- type: Transform
- uid: 76
components:
- - pos: 6.5,-1.5
+ - type: Transform
+ pos: 6.5,-1.5
parent: 1
- type: Transform
- uid: 81
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,16.5
parent: 1
- type: Transform
- uid: 88
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -8.5,16.5
parent: 1
- type: Transform
- uid: 89
components:
- - pos: 4.5,3.5
+ - type: Transform
+ pos: 4.5,3.5
parent: 1
- type: Transform
- uid: 91
components:
- - pos: 4.5,4.5
+ - type: Transform
+ pos: 4.5,4.5
parent: 1
- type: Transform
- uid: 97
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,9.5
parent: 1
- type: Transform
- uid: 125
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 6.5,3.5
parent: 1
- type: Transform
- uid: 133
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,-4.5
parent: 1
- type: Transform
- uid: 137
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,8.5
parent: 1
- type: Transform
- uid: 138
components:
- - pos: 6.5,-3.5
+ - type: Transform
+ pos: 6.5,-3.5
parent: 1
- type: Transform
- uid: 139
components:
- - pos: 4.5,2.5
+ - type: Transform
+ pos: 4.5,2.5
parent: 1
- type: Transform
- uid: 140
components:
- - pos: 4.5,1.5
+ - type: Transform
+ pos: 4.5,1.5
parent: 1
- type: Transform
- uid: 142
components:
- - pos: 4.5,0.5
+ - type: Transform
+ pos: 4.5,0.5
parent: 1
- type: Transform
- uid: 146
components:
- - pos: 4.5,-1.5
+ - type: Transform
+ pos: 4.5,-1.5
parent: 1
- type: Transform
- uid: 149
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,-3.5
parent: 1
- type: Transform
- uid: 178
components:
- - pos: 6.5,2.5
+ - type: Transform
+ pos: 6.5,2.5
parent: 1
- type: Transform
- uid: 179
components:
- - pos: 6.5,4.5
+ - type: Transform
+ pos: 6.5,4.5
parent: 1
- type: Transform
- uid: 192
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 4.5,-5.5
parent: 1
- type: Transform
- uid: 194
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 2.5,-6.5
parent: 1
- type: Transform
- uid: 256
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 8.5,5.5
parent: 1
- type: Transform
- uid: 288
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -9.5,11.5
parent: 1
- type: Transform
- uid: 311
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -9.5,15.5
parent: 1
- type: Transform
- uid: 316
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -9.5,14.5
parent: 1
- type: Transform
- uid: 343
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -8.5,10.5
parent: 1
- type: Transform
- uid: 349
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -9.5,13.5
parent: 1
- type: Transform
- uid: 351
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -8.5,15.5
parent: 1
- type: Transform
- uid: 355
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -9.5,12.5
parent: 1
- type: Transform
- uid: 395
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 5.5,-6.5
parent: 1
- type: Transform
- uid: 398
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 5.5,7.5
parent: 1
- type: Transform
- uid: 400
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 7.5,8.5
parent: 1
- type: Transform
- uid: 401
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 7.5,10.5
parent: 1
- type: Transform
- uid: 402
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 7.5,9.5
parent: 1
- type: Transform
- uid: 404
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -1.5,-3.5
parent: 1
- type: Transform
- uid: 408
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,4.5
parent: 1
- type: Transform
- uid: 409
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,3.5
parent: 1
- type: Transform
- uid: 410
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,2.5
parent: 1
- type: Transform
- uid: 412
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -1.5,-4.5
parent: 1
- type: Transform
- uid: 485
components:
- - pos: -2.5,11.5
+ - type: Transform
+ pos: -2.5,11.5
parent: 1
- type: Transform
- uid: 487
components:
- - pos: -4.5,10.5
+ - type: Transform
+ pos: -4.5,10.5
parent: 1
- type: Transform
- uid: 1040
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 4.5,-4.5
parent: 1
- type: Transform
- uid: 1041
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 4.5,-2.5
parent: 1
- type: Transform
- uid: 1042
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 4.5,-0.5
parent: 1
- type: Transform
- proto: GroundTobacco
entities:
- uid: 1025
components:
- - pos: -3.3039844,13.8782
+ - type: Transform
+ pos: -3.3039844,13.8782
parent: 1
- type: Transform
- uid: 1026
components:
- - pos: -3.4457805,13.849817
+ - type: Transform
+ pos: -3.4457805,13.849817
parent: 1
- type: Transform
- uid: 1027
components:
- - pos: -3.5733974,13.920773
+ - type: Transform
+ pos: -3.5733974,13.920773
parent: 1
- type: Transform
- proto: Gyroscope
entities:
- uid: 246
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 5.5,-7.5
parent: 1
- type: Transform
- uid: 1037
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -7.5,6.5
parent: 1
- type: Transform
- proto: HappyHonk
entities:
- uid: 847
components:
- - pos: 1.2600632,9.77184
+ - type: Transform
+ pos: 1.2600632,9.77184
parent: 1
- type: Transform
- proto: HappyHonkMime
entities:
- uid: 1081
components:
- - pos: 1.7857738,9.487479
+ - type: Transform
+ pos: 1.7857738,9.487479
parent: 1
- type: Transform
- proto: HolofanProjector
entities:
- uid: 1057
components:
- - pos: -0.69590646,-3.6085553
+ - type: Transform
+ pos: -0.69590646,-3.6085553
parent: 1
- type: Transform
- proto: HospitalCurtainsOpen
entities:
- uid: 507
components:
- - pos: 0.5,15.5
+ - type: Transform
+ pos: 0.5,15.5
parent: 1
- type: Transform
- uid: 511
components:
- - pos: -1.5,15.5
+ - type: Transform
+ pos: -1.5,15.5
parent: 1
- type: Transform
- uid: 512
components:
- - pos: -0.5,15.5
+ - type: Transform
+ pos: -0.5,15.5
parent: 1
- type: Transform
- uid: 524
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,13.5
parent: 1
- type: Transform
- proto: Igniter
entities:
- uid: 258
components:
- - pos: 8.040113,3.9907713
+ - type: Transform
+ pos: 8.040113,3.9907713
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 45
- type: DeviceLinkSink
- proto: InflatableDoorStack
entities:
- uid: 1056
components:
- - pos: -0.3699959,-3.5660625
+ - type: Transform
+ pos: -0.3699959,-3.5660625
parent: 1
- type: Transform
- proto: InflatableWallStack
entities:
- uid: 1054
components:
- - pos: -0.6392264,-3.367762
+ - type: Transform
+ pos: -0.6392264,-3.367762
parent: 1
- type: Transform
- uid: 1055
components:
- - pos: -0.29914552,-3.2969403
+ - type: Transform
+ pos: -0.29914552,-3.2969403
parent: 1
- type: Transform
- proto: KitchenMicrowave
entities:
- uid: 496
components:
- - pos: 6.5,10.5
+ - type: Transform
+ pos: 6.5,10.5
parent: 1
- type: Transform
- proto: LockerAtmosphericsFilledHardsuit
entities:
- uid: 366
components:
- - pos: 0.5,-5.5
+ - type: Transform
+ pos: 0.5,-5.5
parent: 1
- type: Transform
- uid: 447
components:
- - pos: -0.5,-5.5
+ - type: Transform
+ pos: -0.5,-5.5
parent: 1
- type: Transform
- proto: LockerChiefEngineerFilledHardsuit
entities:
- uid: 546
components:
- - pos: -5.5,11.5
+ - type: Transform
+ pos: -5.5,11.5
parent: 1
- type: Transform
- proto: LockerEngineerFilledHardsuit
entities:
- uid: 364
components:
- - pos: 3.5,-7.5
+ - type: Transform
+ pos: 3.5,-7.5
parent: 1
- type: Transform
- uid: 365
components:
- - pos: -4.5,6.5
+ - type: Transform
+ pos: -4.5,6.5
parent: 1
- type: Transform
- uid: 819
components:
- - pos: -5.5,6.5
+ - type: Transform
+ pos: -5.5,6.5
parent: 1
- type: Transform
- proto: LockerFreezer
entities:
- uid: 498
components:
- - pos: 5.5,11.5
+ - type: Transform
+ pos: 5.5,11.5
parent: 1
- type: Transform
- proto: LockerWallMedicalFilled
entities:
- uid: 516
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,14.5
parent: 1
- type: Transform
-- proto: MachineCryoSleepPod
+- proto: MachineFlatpacker
entities:
- - uid: 508
+ - uid: 652
components:
- - pos: 0.5,15.5
+ - type: Transform
+ pos: -2.5,1.5
parent: 1
- type: Transform
- proto: Matchbox
entities:
- uid: 1028
components:
- - pos: -3.6584756,13.480848
+ - type: Transform
+ pos: -3.6584756,13.480848
parent: 1
- type: Transform
- proto: MaterialReclaimer
entities:
- - uid: 48
+ - uid: 627
components:
- - pos: -2.5,1.5
+ - type: Transform
+ pos: -2.5,4.5
parent: 1
- type: Transform
- proto: MatterBinStockPart
entities:
- uid: 467
components:
- - pos: -2.7679088,2.3573534
+ - type: Transform
+ pos: -2.7679088,2.3573534
parent: 1
- type: Transform
- uid: 468
components:
- - pos: -2.831847,2.6132777
+ - type: Transform
+ pos: -2.831847,2.6132777
parent: 1
- type: Transform
- uid: 469
components:
- - pos: -2.7892215,2.8052208
+ - type: Transform
+ pos: -2.7892215,2.8052208
parent: 1
- type: Transform
- uid: 470
components:
- - pos: -2.7252834,3.018491
+ - type: Transform
+ pos: -2.7252834,3.018491
parent: 1
- type: Transform
- proto: MedicalBed
entities:
- uid: 509
components:
- - pos: -0.5,15.5
+ - type: Transform
+ pos: -0.5,15.5
parent: 1
- type: Transform
- uid: 510
components:
- - pos: -1.5,15.5
+ - type: Transform
+ pos: -1.5,15.5
parent: 1
- type: Transform
- proto: MicroManipulatorStockPart
entities:
- uid: 463
components:
- - pos: -2.3203456,2.4213345
+ - type: Transform
+ pos: -2.3203456,2.4213345
parent: 1
- type: Transform
- uid: 464
components:
- - pos: -2.299033,2.6772587
+ - type: Transform
+ pos: -2.299033,2.6772587
parent: 1
- type: Transform
- uid: 465
components:
- - pos: -2.362971,2.8478749
+ - type: Transform
+ pos: -2.362971,2.8478749
parent: 1
- type: Transform
- uid: 466
components:
- - pos: -2.3203456,3.018491
+ - type: Transform
+ pos: -2.3203456,3.018491
parent: 1
- type: Transform
- proto: MopItem
entities:
- uid: 1030
components:
- - pos: 2.5299902,14.395643
+ - type: Transform
+ pos: 2.5299902,14.395643
parent: 1
- type: Transform
- proto: NitrogenCanister
entities:
- uid: 1050
components:
- - pos: 8.5,-1.5
+ - type: Transform
+ pos: 8.5,-1.5
parent: 1
- type: Transform
- - releaseValve: True
+ - type: GasCanister
+ releaseValve: True
releasePressure: 1013.25
- type: GasCanister
+ - type: AtmosDevice
+ joinedGrid: 1
- proto: OxygenCanister
entities:
- uid: 1051
components:
- - pos: 8.5,-3.5
+ - type: Transform
+ pos: 8.5,-3.5
parent: 1
- type: Transform
- - releaseValve: True
+ - type: GasCanister
+ releaseValve: True
releasePressure: 1013.25
- type: GasCanister
+ - type: AtmosDevice
+ joinedGrid: 1
- proto: PaintingFireaxeCabinet
entities:
- uid: 1067
components:
- - pos: 0.5,7.5
+ - type: Transform
+ pos: 0.5,7.5
parent: 1
- type: Transform
- proto: Paper
entities:
- uid: 1149
components:
- - pos: 2.65279,-7.404173
+ - type: Transform
+ pos: 2.65279,-7.404173
parent: 1
- type: Transform
- - stampState: paper_stamp-ce
+ - type: Paper
+ stampState: paper_stamp-ce
stampedBy:
- stampedBorderless: False
stampedColor: '#C69B17FF'
@@ -5958,704 +6046,735 @@ entities:
__________________________________________________________________
[bold]*[/bold] - Gasbender-class service ships are equipped with a five APC units that can be used to appraise the ship's total power consumption. Unmodifued Gasbender-class ship requires 38 kW of power to remain operational.
- type: Paper
- proto: PartRodMetal
entities:
- uid: 458
components:
- - pos: -2.5141208,3.8284311
+ - type: Transform
+ pos: -2.601088,3.6155367
parent: 1
- type: Transform
- uid: 459
components:
- - pos: -2.4075572,3.4658718
+ - type: Transform
+ pos: -2.4075572,3.4658718
parent: 1
- type: Transform
- uid: 460
components:
- - pos: -2.4501827,3.679142
+ - type: Transform
+ pos: -2.241713,3.7249117
parent: 1
- type: Transform
- proto: PlasmaCanister
entities:
- uid: 1049
components:
- - pos: 8.5,0.5
+ - type: Transform
+ pos: 8.5,0.5
parent: 1
- type: Transform
- - releaseValve: True
+ - type: GasCanister
+ releaseValve: True
releasePressure: 1013.25
- type: GasCanister
- - locked: False
- type: Lock
+ - type: Lock
+ locked: False
+ - type: AtmosDevice
+ joinedGrid: 1
- proto: PlasticFlapsAirtightClear
entities:
- uid: 30
components:
- - pos: -3.5,-14.5
+ - type: Transform
+ pos: -3.5,-14.5
parent: 1
- type: Transform
- uid: 377
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -5.5,-6.5
parent: 1
- type: Transform
- uid: 378
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,-6.5
parent: 1
- type: Transform
- uid: 471
components:
- - pos: -3.5,-12.5
+ - type: Transform
+ pos: -3.5,-12.5
parent: 1
- type: Transform
- proto: PortableGeneratorPacmanMachineCircuitboard
entities:
- uid: 306
components:
- - pos: -2.5756724,4.1535835
+ - type: Transform
+ pos: -2.2005904,3.6770601
parent: 1
- type: Transform
- proto: PortableScrubber
entities:
- uid: 309
components:
- - pos: 3.5,-4.5
+ - type: Transform
+ pos: 3.5,-4.5
parent: 1
- type: Transform
- uid: 419
components:
- - pos: 3.5,-5.5
+ - type: Transform
+ pos: 3.5,-5.5
parent: 1
- type: Transform
- proto: PottedPlantRandom
entities:
- uid: 554
components:
- - pos: -6.5,11.5
+ - type: Transform
+ pos: -6.5,11.5
parent: 1
- type: Transform
- proto: PowerCellRecharger
entities:
- - uid: 461
+ - uid: 462
components:
- - pos: -2.5,4.5
+ - type: Transform
+ pos: -2.5,3.5
parent: 1
- type: Transform
- - uid: 462
+ - uid: 795
components:
- - pos: -2.5,3.5
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,2.5
parent: 1
- type: Transform
- proto: PoweredlightLED
entities:
- uid: 980
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 1.5,-9.5
parent: 1
- type: Transform
- uid: 981
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,1.5
parent: 1
- type: Transform
- uid: 982
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,-4.5
parent: 1
- type: Transform
- uid: 983
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -2.5,5.5
parent: 1
- type: Transform
- uid: 984
components:
- - rot: 3.141592653589793 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -4.5,-4.5
parent: 1
- type: Transform
- uid: 985
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,-9.5
parent: 1
- type: Transform
- uid: 986
components:
- - rot: 3.141592653589793 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -5.5,11.5
parent: 1
- type: Transform
- uid: 987
components:
- - rot: 3.141592653589793 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -4.5,8.5
parent: 1
- type: Transform
- uid: 988
components:
- - rot: 3.141592653589793 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,8.5
parent: 1
- type: Transform
- uid: 989
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -1.5,14.5
parent: 1
- type: Transform
- uid: 990
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,6.5
parent: 1
- type: Transform
- uid: 991
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,-1.5
parent: 1
- type: Transform
- uid: 994
components:
- - rot: 3.141592653589793 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 6.5,8.5
parent: 1
- type: Transform
- uid: 1060
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,4.5
parent: 1
- type: Transform
- proto: PoweredSmallLight
entities:
- uid: 473
components:
- - pos: 7.5,6.5
+ - type: Transform
+ pos: 7.5,6.5
parent: 1
- type: Transform
- uid: 976
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 8.5,-3.5
parent: 1
- type: Transform
- uid: 977
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 8.5,-1.5
parent: 1
- type: Transform
- uid: 978
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 8.5,0.5
parent: 1
- type: Transform
- uid: 979
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 7.5,2.5
parent: 1
- type: Transform
- uid: 992
components:
- - pos: 2.5,6.5
+ - type: Transform
+ pos: 2.5,6.5
parent: 1
- type: Transform
- uid: 993
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 2.5,13.5
parent: 1
- type: Transform
- proto: Protolathe
entities:
- uid: 352
components:
- - pos: -6.5,-4.5
+ - type: Transform
+ pos: -6.5,-4.5
parent: 1
- type: Transform
- proto: Rack
entities:
- uid: 37
components:
- - pos: -5.5,-2.5
+ - type: Transform
+ pos: -5.5,-2.5
parent: 1
- type: Transform
- uid: 336
components:
- - pos: -4.5,-4.5
+ - type: Transform
+ pos: -4.5,-4.5
parent: 1
- type: Transform
- uid: 360
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 5.5,-10.5
parent: 1
- type: Transform
- uid: 1053
components:
- - pos: -0.5,-3.5
+ - type: Transform
+ pos: -0.5,-3.5
parent: 1
- type: Transform
- proto: RandomFoodMeal
entities:
- uid: 848
components:
- - pos: 2.5,9.5
+ - type: Transform
+ pos: 2.5,9.5
parent: 1
- type: Transform
- uid: 849
components:
- - pos: 0.5,9.5
+ - type: Transform
+ pos: 0.5,9.5
parent: 1
- type: Transform
- proto: RandomPainting
entities:
- uid: 555
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -2.5,14.5
parent: 1
- type: Transform
- uid: 556
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -2.5,12.5
parent: 1
- type: Transform
- proto: RandomPosterAny
entities:
- uid: 1009
components:
- - pos: 3.5,14.5
+ - type: Transform
+ pos: 3.5,14.5
parent: 1
- type: Transform
- uid: 1010
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,7.5
parent: 1
- type: Transform
- uid: 1012
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -1.5,1.5
parent: 1
- type: Transform
- uid: 1013
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 0.5,-8.5
parent: 1
- type: Transform
- proto: ReinforcedPlasmaWindow
entities:
- uid: 58
components:
- - pos: 6.5,4.5
+ - type: Transform
+ pos: 6.5,4.5
parent: 1
- type: Transform
- uid: 75
components:
- - pos: 6.5,2.5
+ - type: Transform
+ pos: 6.5,2.5
parent: 1
- type: Transform
- uid: 128
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 6.5,3.5
parent: 1
- type: Transform
- uid: 141
components:
- - pos: 6.5,-1.5
+ - type: Transform
+ pos: 6.5,-1.5
parent: 1
- type: Transform
- uid: 173
components:
- - pos: 6.5,-3.5
+ - type: Transform
+ pos: 6.5,-3.5
parent: 1
- type: Transform
- uid: 176
components:
- - pos: 6.5,0.5
+ - type: Transform
+ pos: 6.5,0.5
parent: 1
- type: Transform
- uid: 257
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 8.5,5.5
parent: 1
- type: Transform
- proto: ReinforcedWindow
entities:
- uid: 12
components:
- - pos: 4.5,-1.5
+ - type: Transform
+ pos: 4.5,-1.5
parent: 1
- type: Transform
- uid: 26
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -6.5,5.5
parent: 1
- type: Transform
- uid: 33
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,2.5
parent: 1
- type: Transform
- uid: 38
components:
- - pos: 4.5,-3.5
+ - type: Transform
+ pos: 4.5,-3.5
parent: 1
- type: Transform
- uid: 47
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -6.5,-0.5
parent: 1
- type: Transform
- uid: 54
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -9.5,14.5
parent: 1
- type: Transform
- uid: 55
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -8.5,15.5
parent: 1
- type: Transform
- uid: 56
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -8.5,10.5
parent: 1
- type: Transform
- uid: 57
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -9.5,12.5
parent: 1
- type: Transform
- uid: 60
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -8.5,11.5
parent: 1
- type: Transform
- uid: 64
components:
- - pos: 4.5,1.5
+ - type: Transform
+ pos: 4.5,1.5
parent: 1
- type: Transform
- uid: 90
components:
- - pos: 4.5,4.5
+ - type: Transform
+ pos: 4.5,4.5
parent: 1
- type: Transform
- uid: 102
components:
- - pos: 4.5,0.5
+ - type: Transform
+ pos: 4.5,0.5
parent: 1
- type: Transform
- uid: 103
components:
- - pos: 4.5,2.5
+ - type: Transform
+ pos: 4.5,2.5
parent: 1
- type: Transform
- uid: 104
components:
- - pos: 4.5,3.5
+ - type: Transform
+ pos: 4.5,3.5
parent: 1
- type: Transform
- uid: 135
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,4.5
parent: 1
- type: Transform
- uid: 221
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 2.5,-6.5
parent: 1
- type: Transform
- uid: 312
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -9.5,11.5
parent: 1
- type: Transform
- uid: 313
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -9.5,15.5
parent: 1
- type: Transform
- uid: 315
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,16.5
parent: 1
- type: Transform
- uid: 327
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -1.5,-3.5
parent: 1
- type: Transform
- uid: 332
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 5.5,7.5
parent: 1
- type: Transform
- uid: 340
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -6.5,16.5
parent: 1
- type: Transform
- uid: 341
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -5.5,16.5
parent: 1
- type: Transform
- uid: 344
components:
- - pos: -4.5,16.5
+ - type: Transform
+ pos: -4.5,16.5
parent: 1
- type: Transform
- uid: 348
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -8.5,16.5
parent: 1
- type: Transform
- uid: 350
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -9.5,13.5
parent: 1
- type: Transform
- uid: 358
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,3.5
parent: 1
- type: Transform
- uid: 380
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,-4.5
parent: 1
- type: Transform
- uid: 382
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 5.5,-6.5
parent: 1
- type: Transform
- uid: 383
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,8.5
parent: 1
- type: Transform
- uid: 384
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,-3.5
parent: 1
- type: Transform
- uid: 386
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,9.5
parent: 1
- type: Transform
- uid: 387
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -1.5,-4.5
parent: 1
- type: Transform
- uid: 519
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 7.5,8.5
parent: 1
- type: Transform
- uid: 520
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 7.5,9.5
parent: 1
- type: Transform
- uid: 521
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 7.5,10.5
parent: 1
- type: Transform
- uid: 919
components:
- - pos: -2.5,11.5
+ - type: Transform
+ pos: -2.5,11.5
parent: 1
- type: Transform
- uid: 925
components:
- - pos: -4.5,10.5
+ - type: Transform
+ pos: -4.5,10.5
parent: 1
- type: Transform
- uid: 1044
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 4.5,-2.5
parent: 1
- type: Transform
- uid: 1045
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 4.5,-0.5
parent: 1
- type: Transform
- proto: ResearchAndDevelopmentServer
entities:
- uid: 46
components:
- - pos: -5.5,15.5
+ - type: Transform
+ pos: -5.5,15.5
parent: 1
- type: Transform
- proto: SheetGlass
entities:
- uid: 392
components:
- - pos: -4.4961915,-4.4792156
+ - type: Transform
+ pos: -4.4961915,-4.4792156
parent: 1
- type: Transform
- uid: 456
components:
- - pos: -4.4961915,-4.4792156
+ - type: Transform
+ pos: -4.4961915,-4.4792156
parent: 1
- type: Transform
- uid: 457
components:
- - pos: -4.4961915,-4.4792156
+ - type: Transform
+ pos: -4.4961915,-4.4792156
parent: 1
- type: Transform
- proto: SheetPlastic
entities:
- uid: 830
components:
- - pos: -5.3717155,-2.3743224
+ - type: Transform
+ pos: -5.3717155,-2.3743224
parent: 1
- type: Transform
- uid: 831
components:
- - pos: -4.284774,-4.400389
+ - type: Transform
+ pos: -4.284774,-4.400389
parent: 1
- type: Transform
- proto: SheetRPGlass
entities:
- uid: 296
components:
- - pos: -4.618571,-4.5239058
+ - type: Transform
+ pos: -4.618571,-4.5239058
parent: 1
- type: Transform
- proto: SheetSteel
entities:
- uid: 13
components:
- - pos: -5.4978824,-2.4958038
+ - type: Transform
+ pos: -5.4978824,-2.4958038
parent: 1
- type: Transform
- uid: 14
components:
- - pos: -5.4978824,-2.4958038
+ - type: Transform
+ pos: -5.4978824,-2.4958038
parent: 1
- type: Transform
- uid: 28
components:
- - pos: -5.4978824,-2.4958038
+ - type: Transform
+ pos: -5.4978824,-2.4958038
parent: 1
- type: Transform
- uid: 1058
components:
- - pos: -0.45501596,-3.3960907
+ - type: Transform
+ pos: -0.45501596,-3.3960907
parent: 1
- type: Transform
- proto: ShuttersWindow
entities:
- uid: 376
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 4.5,-4.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 1052
- type: DeviceLinkSink
- uid: 1043
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 4.5,-5.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 1052
- type: DeviceLinkSink
- proto: SignalButton
entities:
- uid: 45
components:
- - name: igniter signal button
- type: MetaData
- - pos: 2.5,5.5
+ - type: MetaData
+ name: igniter signal button
+ - type: Transform
+ pos: 2.5,5.5
parent: 1
- type: Transform
- - linkedPorts:
+ - type: DeviceLinkSource
+ linkedPorts:
258:
- Pressed: Trigger
- type: DeviceLinkSource
- proto: SignalButtonDirectional
entities:
- uid: 320
components:
- - name: access blast door switch
- type: MetaData
- - pos: 7.5,7.5
+ - type: MetaData
+ name: access blast door switch
+ - type: Transform
+ pos: 7.5,7.5
parent: 1
- type: Transform
- - linkedPorts:
+ - type: DeviceLinkSource
+ linkedPorts:
87:
- Pressed: Toggle
- type: DeviceLinkSource
- uid: 321
components:
- - name: blast doors switch
- type: MetaData
- - rot: 3.141592653589793 rad
+ - type: MetaData
+ name: blast doors switch
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 8.5,1.5
parent: 1
- type: Transform
- - linkedPorts:
+ - type: DeviceLinkSource
+ linkedPorts:
129:
- Pressed: Toggle
79:
@@ -6664,45 +6783,45 @@ entities:
- Pressed: Toggle
87:
- Pressed: Toggle
- type: DeviceLinkSource
- uid: 394
components:
- - name: portside loading blast doors switch
- type: MetaData
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ name: portside loading blast doors switch
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -5.5,-9.5
parent: 1
- type: Transform
- - linkedPorts:
+ - type: DeviceLinkSource
+ linkedPorts:
347:
- Pressed: Toggle
191:
- Pressed: Toggle
- type: DeviceLinkSource
- uid: 416
components:
- - name: ignition chamber vent blast doors
- type: MetaData
- - pos: 1.5,5.5
+ - type: MetaData
+ name: ignition chamber vent blast doors
+ - type: Transform
+ pos: 1.5,5.5
parent: 1
- type: Transform
- - linkedPorts:
+ - type: DeviceLinkSource
+ linkedPorts:
130:
- Pressed: Toggle
79:
- Pressed: Toggle
129:
- Pressed: Toggle
- type: DeviceLinkSource
- uid: 444
components:
- - name: portside blast doors switch
- type: MetaData
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ name: portside blast doors switch
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -6.5,-1.5
parent: 1
- type: Transform
- - linkedPorts:
+ - type: DeviceLinkSource
+ linkedPorts:
429:
- Pressed: Toggle
428:
@@ -6713,16 +6832,16 @@ entities:
- Pressed: Toggle
425:
- Pressed: Toggle
- type: DeviceLinkSource
- uid: 445
components:
- - name: portside blast doors switch
- type: MetaData
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ name: portside blast doors switch
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -6.5,6.5
parent: 1
- type: Transform
- - linkedPorts:
+ - type: DeviceLinkSource
+ linkedPorts:
425:
- Pressed: Toggle
426:
@@ -6733,16 +6852,16 @@ entities:
- Pressed: Toggle
429:
- Pressed: Toggle
- type: DeviceLinkSource
- uid: 824
components:
- - name: bolts switch
- type: MetaData
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ name: bolts switch
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,-6.5
parent: 1
- type: Transform
- - linkedPorts:
+ - type: DeviceLinkSource
+ linkedPorts:
338:
- Pressed: DoorBolt
339:
@@ -6753,462 +6872,456 @@ entities:
- Pressed: DoorBolt
193:
- Pressed: DoorBolt
- type: DeviceLinkSource
- uid: 1014
components:
- - name: sternside loading blast doors switch
- type: MetaData
- - rot: 3.141592653589793 rad
+ - type: MetaData
+ name: sternside loading blast doors switch
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -4.5,-12.5
parent: 1
- type: Transform
- - linkedPorts:
+ - type: DeviceLinkSource
+ linkedPorts:
536:
- Pressed: Toggle
164:
- Pressed: Toggle
- type: DeviceLinkSource
- uid: 1052
components:
- - name: 'emergency vent switch: main atmos lab'
- type: MetaData
- - pos: 3.5,5.5
+ - type: MetaData
+ name: 'emergency vent switch: main atmos lab'
+ - type: Transform
+ pos: 3.5,5.5
parent: 1
- type: Transform
- - state: True
- type: SignalSwitch
- - linkedPorts:
+ - type: SignalSwitch
+ state: True
+ - type: DeviceLinkSource
+ linkedPorts:
376:
- Pressed: Toggle
1043:
- Pressed: Toggle
- type: DeviceLinkSource
-
- proto: SignAtmos
entities:
- uid: 821
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -1.5,-0.5
parent: 1
- type: Transform
- proto: SignDirectionalBar
entities:
- uid: 1036
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -2.4981225,10.71793
parent: 1
- type: Transform
- proto: SignDirectionalBridge
entities:
- uid: 1035
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,10.5
parent: 1
- type: Transform
- proto: SignElectricalMed
entities:
- - uid: 1032
+ - uid: 783
components:
- - pos: 6.5,-10.5
+ - type: Transform
+ pos: 5.5,-11.5
parent: 1
- type: Transform
- proto: SignEngine
entities:
- uid: 474
components:
- - pos: 0.5,-6.5
+ - type: Transform
+ pos: 0.5,-6.5
parent: 1
- type: Transform
- proto: SignFire
entities:
- uid: 259
components:
- - pos: 6.5,5.5
+ - type: Transform
+ pos: 6.5,5.5
parent: 1
- type: Transform
- uid: 297
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 6.5,1.5
parent: 1
- type: Transform
- proto: Sink
entities:
- uid: 522
components:
- - pos: 2.5,14.5
+ - type: Transform
+ pos: 2.5,14.5
parent: 1
- type: Transform
- proto: SMESBasic
entities:
- uid: 240
components:
- - pos: 6.5,-8.5
+ - type: Transform
+ pos: 6.5,-8.5
parent: 1
- type: Transform
- uid: 241
components:
- - pos: 6.5,-9.5
+ - type: Transform
+ pos: 6.5,-9.5
parent: 1
- type: Transform
- proto: SmokingPipeFilledTobacco
entities:
- uid: 1024
components:
- - pos: -3.176369,13.49504
+ - type: Transform
+ pos: -3.176369,13.49504
parent: 1
- type: Transform
- proto: soda_dispenser
entities:
- uid: 497
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 6.5,8.5
parent: 1
- type: Transform
- proto: SpawnPointAtmos
entities:
- uid: 814
components:
- - pos: -0.5,-4.5
+ - type: Transform
+ pos: -0.5,-4.5
parent: 1
- type: Transform
- uid: 815
components:
- - pos: 0.5,-4.5
+ - type: Transform
+ pos: 0.5,-4.5
parent: 1
- type: Transform
- proto: SpawnPointBorg
entities:
- uid: 454
components:
- - pos: -3.5,0.5
+ - type: Transform
+ pos: -3.5,0.5
parent: 1
- type: Transform
- proto: SpawnPointLatejoin
entities:
- uid: 817
components:
- - pos: 2.5,13.5
+ - type: Transform
+ pos: 2.5,13.5
parent: 1
- type: Transform
- proto: SpawnPointParamedic
entities:
- uid: 810
components:
- - pos: 0.5,14.5
+ - type: Transform
+ pos: 0.5,14.5
parent: 1
- type: Transform
- proto: SpawnPointPilot
entities:
- uid: 1146
components:
- - pos: -6.5,13.5
- parent: 1
- type: Transform
-- proto: SpawnPointSeniorEngineer
- entities:
- - uid: 816
- components:
- - pos: -5.5,13.5
+ - type: Transform
+ pos: -6.5,13.5
parent: 1
- type: Transform
- proto: SpawnPointStationEngineer
entities:
- uid: 813
components:
- - pos: 3.5,-8.5
+ - type: Transform
+ pos: 3.5,-8.5
parent: 1
- type: Transform
- uid: 822
components:
- - pos: -5.5,5.5
+ - type: Transform
+ pos: -5.5,5.5
parent: 1
- type: Transform
- uid: 823
components:
- - pos: -4.5,5.5
+ - type: Transform
+ pos: -4.5,5.5
+ parent: 1
+- proto: StasisBed
+ entities:
+ - uid: 628
+ components:
+ - type: Transform
+ pos: 0.5,15.5
parent: 1
- type: Transform
- proto: SubstationBasic
entities:
- uid: 237
components:
- - pos: 6.5,-7.5
+ - type: Transform
+ pos: 6.5,-7.5
parent: 1
- type: Transform
- proto: SuitStorageParamedic
entities:
- uid: 1007
components:
- - pos: -1.5,13.5
+ - type: Transform
+ pos: -1.5,13.5
parent: 1
- type: Transform
- proto: SurveillanceCameraGeneral
entities:
- uid: 995
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,-8.5
parent: 1
- type: Transform
- uid: 996
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,-8.5
parent: 1
- type: Transform
- uid: 997
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -2.5,-0.5
parent: 1
- type: Transform
- uid: 998
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -2.5,-0.5
parent: 1
- type: Transform
- uid: 999
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 3.5,11.5
parent: 1
- type: Transform
- uid: 1000
components:
- - pos: 8.5,2.5
+ - type: Transform
+ pos: 8.5,2.5
parent: 1
- type: Transform
- uid: 1031
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,4.5
parent: 1
- type: Transform
- proto: SurveillanceCameraRouterGeneral
entities:
- uid: 780
components:
- - pos: -4.5,15.5
+ - type: Transform
+ pos: -4.5,15.5
parent: 1
- type: Transform
- proto: Table
entities:
- - uid: 31
- components:
- - pos: -2.5,4.5
- parent: 1
- type: Transform
- uid: 422
components:
- - pos: -2.5,2.5
+ - type: Transform
+ pos: -2.5,2.5
parent: 1
- type: Transform
- uid: 455
components:
- - pos: -2.5,3.5
+ - type: Transform
+ pos: -2.5,3.5
parent: 1
- type: Transform
- uid: 493
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 6.5,10.5
parent: 1
- type: Transform
- uid: 494
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 6.5,9.5
parent: 1
- type: Transform
- uid: 495
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 6.5,8.5
parent: 1
- type: Transform
- uid: 529
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -6.5,11.5
parent: 1
- type: Transform
- uid: 532
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 2.5,9.5
parent: 1
- type: Transform
- uid: 533
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 0.5,9.5
parent: 1
- type: Transform
- uid: 537
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 1.5,9.5
parent: 1
- type: Transform
- uid: 542
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -7.5,11.5
parent: 1
- type: Transform
- proto: TableCarpet
entities:
- uid: 549
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -3.5,13.5
parent: 1
- type: Transform
- proto: TableReinforcedGlass
entities:
- uid: 517
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,13.5
parent: 1
- type: Transform
- proto: TargetDarts
entities:
- uid: 223
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -1.5,11.5
parent: 1
- type: Transform
- proto: ThermomachineFreezerMachineCircuitBoard
entities:
- uid: 1142
components:
- - pos: -2.2236395,4.1489863
+ - type: Transform
+ pos: -2.429213,3.5999117
parent: 1
- type: Transform
- proto: ThermomachineHeaterMachineCircuitBoard
entities:
- uid: 1141
components:
- - pos: -2.7199252,3.9645019
+ - type: Transform
+ pos: -2.6537154,3.6145601
parent: 1
- type: Transform
- proto: Thruster
entities:
- uid: 330
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 8.5,-6.5
parent: 1
- type: Transform
- uid: 333
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 8.5,-5.5
parent: 1
- type: Transform
- uid: 538
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 2.5,-14.5
parent: 1
- type: Transform
- uid: 768
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 3.5,-14.5
parent: 1
- type: Transform
- uid: 769
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 4.5,-14.5
parent: 1
- type: Transform
- uid: 770
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -5.5,-14.5
parent: 1
- type: Transform
- uid: 771
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -6.5,-13.5
parent: 1
- type: Transform
- uid: 772
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -7.5,-12.5
parent: 1
- type: Transform
- uid: 773
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 5.5,-13.5
parent: 1
- type: Transform
- uid: 774
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 6.5,-12.5
parent: 1
- type: Transform
- uid: 775
components:
- - pos: 2.5,16.5
+ - type: Transform
+ pos: 2.5,16.5
parent: 1
- type: Transform
- uid: 776
components:
- - pos: 3.5,16.5
+ - type: Transform
+ pos: 3.5,16.5
parent: 1
- type: Transform
- uid: 777
components:
- - pos: 4.5,15.5
+ - type: Transform
+ pos: 4.5,15.5
parent: 1
- type: Transform
- uid: 778
components:
- - pos: 5.5,14.5
+ - type: Transform
+ pos: 5.5,14.5
parent: 1
- type: Transform
- uid: 867
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 7.5,-11.5
parent: 1
- type: Transform
- uid: 868
components:
- - pos: 6.5,13.5
+ - type: Transform
+ pos: 6.5,13.5
parent: 1
- type: Transform
- proto: ToiletDirtyWater
entities:
- uid: 523
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,13.5
parent: 1
- type: Transform
- proto: TwoWayLever
entities:
- uid: 290
components:
- - pos: -4.5,-9.5
+ - type: Transform
+ pos: -4.5,-9.5
parent: 1
- type: Transform
- - linkedPorts:
+ - type: DeviceLinkSource
+ linkedPorts:
393:
- Left: Forward
- Right: Reverse
@@ -7225,13 +7338,13 @@ entities:
- Left: Forward
- Right: Reverse
- Middle: Off
- type: DeviceLinkSource
- uid: 862
components:
- - pos: -4.5,-11.5
+ - type: Transform
+ pos: -4.5,-11.5
parent: 1
- type: Transform
- - linkedPorts:
+ - type: DeviceLinkSource
+ linkedPorts:
122:
- Left: Forward
- Right: Reverse
@@ -7248,803 +7361,1069 @@ entities:
- Left: Forward
- Right: Reverse
- Middle: Off
- type: DeviceLinkSource
- proto: VendingMachineCigs
entities:
- uid: 505
components:
- - pos: 4.5,11.5
+ - type: Transform
+ pos: 4.5,11.5
parent: 1
- type: Transform
- proto: VendingMachineEngiDrobe
entities:
- uid: 625
components:
- - pos: -5.5,-11.5
+ - type: Transform
+ pos: -5.5,-11.5
parent: 1
- type: Transform
- proto: VendingMachineEngivend
entities:
- uid: 153
components:
- - pos: -0.5,-7.5
+ - type: Transform
+ pos: -0.5,-7.5
parent: 1
- type: Transform
- proto: VendingMachineRestockMedical
entities:
- uid: 1065
components:
- - pos: -0.49530023,13.522913
+ - type: Transform
+ pos: -0.49530023,13.522913
parent: 1
- type: Transform
- uid: 1066
components:
- - pos: -0.6087366,13.664824
+ - type: Transform
+ pos: -0.6087366,13.664824
parent: 1
- type: Transform
- proto: VendingMachineRobotics
entities:
- uid: 389
components:
- - pos: -2.5,-0.5
+ - type: Transform
+ pos: -2.5,-0.5
parent: 1
- type: Transform
- proto: VendingMachineTankDispenserEVA
entities:
- uid: 388
components:
- - pos: -7.5,-1.5
+ - type: Transform
+ pos: -7.5,-1.5
parent: 1
- type: Transform
- proto: VendingMachineWallMedical
entities:
- uid: 515
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,13.5
parent: 1
- type: Transform
- proto: VendingMachineYouTool
entities:
- uid: 391
components:
- - pos: -1.5,-7.5
+ - type: Transform
+ pos: -1.5,-7.5
parent: 1
- type: Transform
- proto: WallReinforced
entities:
- uid: 3
components:
- - pos: 4.5,-12.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,-12.5
parent: 1
- type: Transform
- uid: 4
components:
- - pos: 4.5,13.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,13.5
parent: 1
- type: Transform
- uid: 6
components:
- - pos: 2.5,-13.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 2.5,-13.5
parent: 1
- type: Transform
- uid: 18
components:
- - pos: 6.5,12.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 6.5,12.5
parent: 1
- type: Transform
- uid: 19
components:
- - pos: 5.5,13.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 5.5,13.5
parent: 1
- type: Transform
- uid: 20
components:
- - pos: 6.5,11.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 6.5,11.5
parent: 1
- type: Transform
- uid: 21
components:
- - pos: 5.5,12.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 5.5,12.5
parent: 1
- type: Transform
- uid: 22
components:
- - pos: 5.5,-12.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 5.5,-12.5
parent: 1
- type: Transform
- uid: 23
components:
- - pos: -0.5,16.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -0.5,16.5
parent: 1
- type: Transform
- uid: 24
components:
- - pos: 9.5,-0.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 9.5,-0.5
parent: 1
- type: Transform
- uid: 29
components:
- - pos: -3.5,16.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,16.5
parent: 1
- type: Transform
- uid: 34
components:
- - pos: 9.5,-4.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 9.5,-4.5
parent: 1
- type: Transform
- uid: 35
components:
- - pos: 7.5,-9.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 7.5,-9.5
parent: 1
- type: Transform
- uid: 39
components:
- - pos: 3.5,15.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,15.5
parent: 1
- type: Transform
- uid: 40
components:
- - pos: 6.5,-10.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 6.5,-10.5
parent: 1
- type: Transform
- uid: 41
components:
- - pos: 1.5,15.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 1.5,15.5
parent: 1
- type: Transform
- uid: 52
components:
- - pos: -6.5,-2.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -6.5,-2.5
parent: 1
- type: Transform
- uid: 59
components:
- - pos: 1.5,-13.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 1.5,-13.5
parent: 1
- type: Transform
- uid: 61
components:
- - pos: -2.5,16.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -2.5,16.5
parent: 1
- type: Transform
- uid: 62
components:
- - pos: 4.5,-13.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,-13.5
parent: 1
- type: Transform
- uid: 63
components:
- - pos: 7.5,-7.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 7.5,-7.5
parent: 1
- type: Transform
- uid: 65
components:
- - pos: -1.5,16.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -1.5,16.5
parent: 1
- type: Transform
- uid: 66
components:
- - pos: 6.5,-11.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 6.5,-11.5
parent: 1
- type: Transform
- uid: 67
components:
- - pos: 7.5,-6.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 7.5,-6.5
parent: 1
- type: Transform
- uid: 68
components:
- - pos: -4.5,-14.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -4.5,-14.5
parent: 1
- type: Transform
- uid: 69
components:
- - pos: -5.5,-13.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -5.5,-13.5
parent: 1
- type: Transform
- uid: 70
components:
- - pos: -6.5,-12.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -6.5,-12.5
parent: 1
- type: Transform
- uid: 71
components:
- - pos: -7.5,-11.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -7.5,-11.5
parent: 1
- type: Transform
- uid: 72
components:
- - pos: -7.5,-5.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -7.5,-5.5
parent: 1
- type: Transform
- uid: 77
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 9.5,-3.5
parent: 1
- type: Transform
- uid: 78
components:
- - pos: 4.5,-6.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,-6.5
parent: 1
- type: Transform
- uid: 82
components:
- - pos: 9.5,1.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 9.5,1.5
parent: 1
- type: Transform
- uid: 83
components:
- - pos: 8.5,1.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 8.5,1.5
parent: 1
- type: Transform
- uid: 84
components:
- - pos: 7.5,1.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 7.5,1.5
parent: 1
- type: Transform
- uid: 85
components:
- - pos: 6.5,1.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 6.5,1.5
parent: 1
- type: Transform
- uid: 92
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 6.5,7.5
parent: 1
- type: Transform
- uid: 94
components:
- - pos: 7.5,7.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 7.5,7.5
parent: 1
- type: Transform
- uid: 98
components:
- - pos: -4.5,-13.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -4.5,-13.5
parent: 1
- type: Transform
- uid: 99
components:
- - pos: 1.5,-14.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 1.5,-14.5
parent: 1
- type: Transform
- uid: 100
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 6.5,-6.5
parent: 1
- type: Transform
- uid: 101
components:
- - pos: 3.5,-13.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,-13.5
parent: 1
- type: Transform
- uid: 107
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 4.5,5.5
parent: 1
- type: Transform
- uid: 108
components:
- - pos: 5.5,-11.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 5.5,-11.5
parent: 1
- type: Transform
- uid: 109
components:
- - pos: 7.5,-8.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 7.5,-8.5
parent: 1
- type: Transform
- uid: 110
components:
- - pos: 7.5,-10.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 7.5,-10.5
parent: 1
- type: Transform
- uid: 112
components:
- - pos: 4.5,14.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,14.5
parent: 1
- type: Transform
- uid: 113
components:
- - pos: 3.5,14.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,14.5
parent: 1
- type: Transform
- uid: 114
components:
- - pos: 0.5,16.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,16.5
parent: 1
- type: Transform
- uid: 115
components:
- - pos: 1.5,16.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 1.5,16.5
parent: 1
- type: Transform
- uid: 116
components:
- - pos: 2.5,15.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 2.5,15.5
parent: 1
- type: Transform
- uid: 126
components:
- - pos: 6.5,5.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 6.5,5.5
parent: 1
- type: Transform
- uid: 131
components:
- - pos: 9.5,5.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 9.5,5.5
parent: 1
- type: Transform
- uid: 132
components:
- - pos: 4.5,7.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,7.5
parent: 1
- type: Transform
- uid: 145
components:
- - pos: 0.5,-12.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,-12.5
parent: 1
- type: Transform
- uid: 147
components:
- - pos: 7.5,11.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 7.5,11.5
parent: 1
- type: Transform
- uid: 152
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,-2.5
parent: 1
- type: Transform
- uid: 154
components:
- - pos: 0.5,-13.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,-13.5
parent: 1
- type: Transform
- uid: 165
components:
- - pos: -4.5,-12.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -4.5,-12.5
parent: 1
- type: Transform
- uid: 167
components:
- - pos: 0.5,-14.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,-14.5
parent: 1
- type: Transform
- uid: 174
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 9.5,-2.5
parent: 1
- type: Transform
- uid: 175
components:
- - pos: 9.5,0.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 9.5,0.5
parent: 1
- type: Transform
- uid: 184
components:
- - pos: -7.5,-9.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -7.5,-9.5
parent: 1
- type: Transform
- uid: 187
components:
- - pos: -6.5,-11.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -6.5,-11.5
parent: 1
- type: Transform
- uid: 197
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 2.5,7.5
parent: 1
- type: Transform
- uid: 212
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 9.5,-1.5
parent: 1
- type: Transform
- uid: 229
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,7.5
parent: 1
- type: Transform
- uid: 230
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,7.5
parent: 1
- type: Transform
- uid: 274
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 6.5,-4.5
parent: 1
- type: Transform
- uid: 281
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 8.5,-0.5
parent: 1
- type: Transform
- uid: 299
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 8.5,-2.5
parent: 1
- type: Transform
- uid: 300
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 6.5,-2.5
parent: 1
- type: Transform
- uid: 301
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 6.5,-0.5
parent: 1
- type: Transform
- uid: 302
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,5.5
parent: 1
- type: Transform
- uid: 303
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 2.5,5.5
parent: 1
- type: Transform
- uid: 305
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,5.5
parent: 1
- type: Transform
- uid: 310
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,7.5
parent: 1
- type: Transform
- uid: 319
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 8.5,-4.5
parent: 1
- type: Transform
- uid: 357
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 7.5,-2.5
parent: 1
- type: Transform
- uid: 370
components:
- - pos: -6.5,-1.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -6.5,-1.5
parent: 1
- type: Transform
- uid: 371
components:
- - pos: -6.5,6.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -6.5,6.5
parent: 1
- type: Transform
- uid: 396
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -6.5,-9.5
parent: 1
- type: Transform
- uid: 397
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -5.5,-9.5
parent: 1
- type: Transform
- uid: 399
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 7.5,-0.5
parent: 1
- type: Transform
- uid: 406
components:
- - pos: -6.5,7.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -6.5,7.5
parent: 1
- type: Transform
- uid: 417
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -6.5,-5.5
parent: 1
- type: Transform
- uid: 418
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -5.5,-5.5
parent: 1
- type: Transform
- uid: 421
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -7.5,10.5
parent: 1
- type: Transform
- uid: 478
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 7.5,-4.5
parent: 1
- type: Transform
+ - uid: 782
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -7.5,-10.5
+ parent: 1
- proto: WallSolid
entities:
- uid: 2
components:
- - pos: 0.5,-6.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,-6.5
parent: 1
- type: Transform
- uid: 11
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -4.5,-5.5
parent: 1
- type: Transform
- uid: 44
components:
- - pos: 0.5,-10.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,-10.5
parent: 1
- type: Transform
- uid: 120
components:
- - pos: 0.5,-11.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,-11.5
parent: 1
- type: Transform
- - uid: 121
- components:
- - pos: -7.5,-10.5
- parent: 1
- type: Transform
- uid: 124
components:
- - pos: 0.5,-7.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,-7.5
parent: 1
- type: Transform
- uid: 162
components:
- - pos: -5.5,-12.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -5.5,-12.5
parent: 1
- type: Transform
- uid: 166
components:
- - pos: 0.5,-8.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,-8.5
parent: 1
- type: Transform
- uid: 182
components:
- - pos: 0.5,-9.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,-9.5
parent: 1
- type: Transform
- uid: 200
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 0.5,7.5
parent: 1
- type: Transform
- uid: 201
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,7.5
parent: 1
- type: Transform
- uid: 202
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,7.5
parent: 1
- type: Transform
- uid: 203
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,6.5
parent: 1
- type: Transform
- uid: 204
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,5.5
parent: 1
- type: Transform
- uid: 208
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,1.5
parent: 1
- type: Transform
- uid: 209
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,0.5
parent: 1
- type: Transform
- uid: 210
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,-0.5
parent: 1
- type: Transform
- uid: 215
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,-5.5
parent: 1
- type: Transform
- uid: 307
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,-6.5
parent: 1
- type: Transform
- uid: 407
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,-6.5
parent: 1
- type: Transform
- uid: 413
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,-6.5
parent: 1
- type: Transform
- uid: 483
components:
- - rot: 3.141592653589793 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -6.5,10.5
parent: 1
- type: Transform
- uid: 484
components:
- - rot: 3.141592653589793 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -5.5,10.5
parent: 1
- type: Transform
- uid: 486
components:
- - rot: 3.141592653589793 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,10.5
parent: 1
- type: Transform
- uid: 488
components:
- - rot: 3.141592653589793 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,12.5
parent: 1
- type: Transform
- uid: 489
components:
- - rot: 3.141592653589793 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,13.5
parent: 1
- type: Transform
- uid: 490
components:
- - rot: 3.141592653589793 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,14.5
parent: 1
- type: Transform
- uid: 491
components:
- - rot: 3.141592653589793 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,15.5
parent: 1
- type: Transform
- uid: 499
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,14.5
parent: 1
- type: Transform
- uid: 500
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,13.5
parent: 1
- type: Transform
- uid: 501
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,12.5
parent: 1
- type: Transform
- uid: 503
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,12.5
parent: 1
- type: Transform
- uid: 504
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,12.5
parent: 1
- type: Transform
- uid: 506
components:
- - pos: 4.5,12.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,12.5
parent: 1
- type: Transform
- uid: 513
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,12.5
parent: 1
- type: Transform
- uid: 570
components:
- - pos: -4.5,7.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -4.5,7.5
parent: 1
- type: Transform
- uid: 576
components:
- - pos: -5.5,7.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -5.5,7.5
parent: 1
- type: Transform
- proto: WarningN2
entities:
- uid: 1046
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 6.5,-2.5
parent: 1
- type: Transform
- proto: WarningO2
entities:
- uid: 1047
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 6.5,-4.5
parent: 1
- type: Transform
- proto: WarningPlasma
entities:
- uid: 1048
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 6.5,-0.5
parent: 1
- type: Transform
- proto: WarpPointShip
entities:
- uid: 818
components:
- - pos: -3.5,2.5
+ - type: Transform
+ pos: -3.5,2.5
parent: 1
- type: Transform
- proto: WindoorSecure
entities:
- uid: 222
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -4.5,8.5
parent: 1
- type: Transform
- uid: 390
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -5.5,-10.5
parent: 1
- type: Transform
+ - uid: 860
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,4.5
+ parent: 1
- proto: WindowReinforcedDirectional
entities:
- uid: 239
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -4.5,9.5
parent: 1
- type: Transform
+ - uid: 858
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,3.5
+ parent: 1
+ - uid: 859
+ components:
+ - type: Transform
+ pos: -2.5,5.5
+ parent: 1
...
diff --git a/Resources/Maps/_NF/Shuttles/gourd.yml b/Resources/Maps/_NF/Shuttles/gourd.yml
index 7ebe6be26ea6..ac1f3cad24be 100644
--- a/Resources/Maps/_NF/Shuttles/gourd.yml
+++ b/Resources/Maps/_NF/Shuttles/gourd.yml
@@ -10283,18 +10283,6 @@ entities:
- type: Transform
pos: 0.92998254,5.462837
parent: 1
-- proto: MiningDrill
- entities:
- - uid: 1316
- components:
- - type: Transform
- pos: 8.467209,-3.6639047
- parent: 1
- - uid: 1317
- components:
- - type: Transform
- pos: 8.529709,-3.3435922
- parent: 1
- proto: Multitool
entities:
- uid: 68
diff --git a/Resources/Maps/_NF/Shuttles/honker.yml b/Resources/Maps/_NF/Shuttles/honker.yml
index a2b1ea656a11..efa684463e0f 100644
--- a/Resources/Maps/_NF/Shuttles/honker.yml
+++ b/Resources/Maps/_NF/Shuttles/honker.yml
@@ -62,35 +62,37 @@ entities:
0,0:
0: 65535
0,1:
- 0: 65279
+ 0: 61167
+ 1: 4112
0,2:
- 0: 65525
- 1: 10
+ 0: 65535
1,0:
- 0: 13107
+ 0: 13105
+ 1: 2
1,1:
- 0: 12307
- 2: 32
+ 0: 8193
+ 1: 4146
1,2:
- 0: 30563
- 1: 16
+ 0: 29553
+ 1: 1026
0,-1:
- 0: 61440
+ 1: 4096
+ 0: 57344
1,-1:
- 0: 4096
- 2: 8192
+ 1: 12288
-1,-1:
- 2: 32768
+ 1: 32768
-1,2:
- 0: 52424
+ 0: 51392
+ 1: 1032
-1,0:
- 0: 34952
+ 1: 8
+ 0: 34944
-1,1:
- 0: 32776
- 2: 128
+ 1: 136
+ 0: 32768
0,3:
- 0: 253
- 3: 2
+ 0: 255
1,3:
0: 119
-1,3:
@@ -111,21 +113,6 @@ entities:
- 0
- 0
- 0
- - volume: 2500
- temperature: 293.1499
- moles:
- - 20.078888
- - 75.53487
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- volume: 2500
temperature: 293.15
moles:
@@ -141,31 +128,45 @@ entities:
- 0
- 0
- 0
- - volume: 2500
- temperature: 293.14996
- moles:
- - 21.813705
- - 82.06108
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
chunkSize: 4
- type: GasTileOverlay
- type: RadiationGridResistance
+- proto: ActionToggleLight
+ entities:
+ - uid: 3
+ components:
+ - type: MetaData
+ flags: InContainer
+ - type: Transform
+ parent: 1
+ - type: InstantAction
+ container: 1
+- proto: AirAlarm
+ entities:
+ - uid: 160
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,6.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 281
+ - 104
+ - 277
+ - 95
+ - type: AtmosDevice
+ joinedGrid: 2
- proto: AirCanister
entities:
- uid: 290
components:
- type: Transform
+ anchored: True
pos: 4.5,10.5
parent: 2
+ - type: Physics
+ bodyType: Static
- type: AtmosDevice
joinedGrid: 2
- proto: AirlockExternal
@@ -232,123 +233,120 @@ entities:
parent: 2
- proto: AtmosFixBlockerMarker
entities:
- - uid: 291
+ - uid: 110
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-0.5
+ pos: 0.5,5.5
parent: 2
- - uid: 292
+ - uid: 111
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-0.5
+ pos: -0.5,4.5
parent: 2
- - uid: 293
+ - uid: 130
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,5.5
+ pos: 4.5,5.5
parent: 2
- - uid: 294
+ - uid: 131
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,5.5
+ pos: 5.5,4.5
parent: 2
-- proto: BananaSeeds
- entities:
- - uid: 77
+ - uid: 132
+ components:
+ - type: Transform
+ pos: 4.5,7.5
+ parent: 2
+ - uid: 133
components:
- type: Transform
- pos: -0.5125418,11.6107855
+ pos: 5.5,8.5
parent: 2
- - uid: 78
+ - uid: 134
components:
- type: Transform
- pos: -0.46566677,11.6107855
+ pos: 6.5,10.5
parent: 2
- - uid: 79
+ - uid: 135
components:
- type: Transform
- pos: -0.34066677,11.4545355
+ pos: 0.5,7.5
parent: 2
- - uid: 80
+ - uid: 136
components:
- type: Transform
- pos: -0.5125418,11.4545355
+ pos: -0.5,8.5
parent: 2
- - uid: 81
+ - uid: 137
components:
- type: Transform
- pos: -0.7000418,11.5014105
+ pos: -1.5,10.5
parent: 2
- - uid: 82
+ - uid: 138
components:
- type: Transform
- pos: -0.7000418,11.5014105
+ pos: 5.5,0.5
parent: 2
- - uid: 83
+ - uid: 139
components:
- type: Transform
- pos: -0.7000418,11.5951605
+ pos: 4.5,-0.5
parent: 2
- - uid: 84
+ - uid: 140
components:
- type: Transform
- pos: -0.30941677,11.9232855
+ pos: 0.5,-0.5
parent: 2
- - uid: 85
+ - uid: 141
components:
- type: Transform
- pos: -0.6844168,11.8764105
+ pos: -0.5,0.5
parent: 2
- - uid: 86
+ - uid: 291
components:
- type: Transform
- pos: -0.6687918,11.7826605
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-0.5
parent: 2
- - uid: 87
+ - uid: 292
components:
- type: Transform
- pos: -0.38754177,11.6576605
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-0.5
parent: 2
- - uid: 88
+ - uid: 293
components:
- type: Transform
- pos: -0.38754177,11.6576605
+ rot: 1.5707963267948966 rad
+ pos: 5.5,5.5
parent: 2
- - uid: 89
+ - uid: 294
components:
- type: Transform
- pos: -0.40316677,11.6576605
+ rot: 1.5707963267948966 rad
+ pos: -0.5,5.5
parent: 2
-- proto: BeachBall
+- proto: BananaSeeds
entities:
- - uid: 218
+ - uid: 20
components:
- - type: MetaData
- flags: InContainer
- type: Transform
- parent: 1
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 230
+ pos: -0.6839864,11.370257
+ parent: 2
+ - uid: 32
components:
- - type: MetaData
- flags: InContainer
- type: Transform
- parent: 220
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 234
+ pos: -0.23086143,11.370257
+ parent: 2
+- proto: BeachBall
+ entities:
+ - uid: 230
components:
- type: MetaData
flags: InContainer
- type: Transform
- parent: 232
+ parent: 220
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -361,145 +359,93 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
-- proto: BikeHorn
+- proto: BoxCartridgeCap
entities:
- - uid: 107
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 92
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 109
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 92
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 115
+ - uid: 224
components:
- type: MetaData
flags: InContainer
- type: Transform
- parent: 96
+ parent: 220
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 122
+ - uid: 228
components:
- type: MetaData
flags: InContainer
- type: Transform
- parent: 96
+ parent: 220
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 135
+ - uid: 250
components:
- type: MetaData
flags: InContainer
- type: Transform
- parent: 104
+ parent: 244
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 137
+ - uid: 254
components:
- type: MetaData
flags: InContainer
- type: Transform
- parent: 104
+ parent: 244
- type: Physics
canCollide: False
- type: InsideEntityStorage
-- proto: BoxCartridgeCap
+- proto: Bucket
entities:
- - uid: 214
+ - uid: 256
components:
- - type: MetaData
- flags: InContainer
- type: Transform
- parent: 1
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 217
+ pos: 0.29700422,11.801703
+ parent: 2
+- proto: CableApcExtension
+ entities:
+ - uid: 74
components:
- - type: MetaData
- flags: InContainer
- type: Transform
- parent: 1
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 224
+ pos: 1.5,2.5
+ parent: 2
+ - uid: 77
components:
- - type: MetaData
- flags: InContainer
- type: Transform
- parent: 220
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 228
+ pos: 1.5,1.5
+ parent: 2
+ - uid: 78
components:
- - type: MetaData
- flags: InContainer
- type: Transform
- parent: 220
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 236
+ pos: 1.5,0.5
+ parent: 2
+ - uid: 79
components:
- - type: MetaData
- flags: InContainer
- type: Transform
- parent: 232
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 241
+ pos: 1.5,4.5
+ parent: 2
+ - uid: 80
components:
- - type: MetaData
- flags: InContainer
- type: Transform
- parent: 232
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 250
+ pos: 3.5,4.5
+ parent: 2
+ - uid: 81
components:
- - type: MetaData
- flags: InContainer
- type: Transform
- parent: 244
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 254
+ pos: 3.5,0.5
+ parent: 2
+ - uid: 83
components:
- - type: MetaData
- flags: InContainer
- type: Transform
- parent: 244
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: Bucket
- entities:
- - uid: 256
+ pos: 3.5,2.5
+ parent: 2
+ - uid: 84
components:
- type: Transform
- pos: 0.29700422,11.801703
+ pos: 3.5,1.5
parent: 2
-- proto: CableApcExtension
- entities:
- uid: 165
components:
- type: Transform
@@ -575,75 +521,55 @@ entities:
- type: Transform
pos: 2.5,2.5
parent: 2
- - uid: 180
+- proto: CableHV
+ entities:
+ - uid: 154
components:
- type: Transform
- pos: 2.5,1.5
+ pos: 5.5,11.5
parent: 2
- - uid: 181
+ - uid: 155
components:
- type: Transform
- pos: 2.5,0.5
+ pos: 6.5,11.5
parent: 2
- - uid: 182
+- proto: CableMV
+ entities:
+ - uid: 49
components:
- type: Transform
- pos: 2.5,-0.5
+ pos: 2.5,6.5
parent: 2
- - uid: 183
- components:
- - type: Transform
- pos: 1.5,-0.5
- parent: 2
- - uid: 184
- components:
- - type: Transform
- pos: 0.5,-0.5
- parent: 2
- - uid: 185
- components:
- - type: Transform
- pos: 3.5,-0.5
- parent: 2
- - uid: 186
- components:
- - type: Transform
- pos: 4.5,-0.5
- parent: 2
- - uid: 187
+ - uid: 60
components:
- type: Transform
- pos: 4.5,5.5
+ pos: 3.5,6.5
parent: 2
- - uid: 188
+ - uid: 85
components:
- type: Transform
- pos: 3.5,5.5
+ pos: 2.5,11.5
parent: 2
- - uid: 189
+ - uid: 86
components:
- type: Transform
- pos: 1.5,5.5
+ pos: 2.5,10.5
parent: 2
- - uid: 190
+ - uid: 87
components:
- type: Transform
- pos: 0.5,5.5
+ pos: 2.5,9.5
parent: 2
-- proto: CableHV
- entities:
- - uid: 154
+ - uid: 88
components:
- type: Transform
- pos: 5.5,11.5
+ pos: 2.5,8.5
parent: 2
- - uid: 155
+ - uid: 89
components:
- type: Transform
- pos: 6.5,11.5
+ pos: 2.5,7.5
parent: 2
-- proto: CableMV
- entities:
- uid: 156
components:
- type: Transform
@@ -664,301 +590,8 @@ entities:
- type: Transform
pos: 3.5,11.5
parent: 2
- - uid: 160
- components:
- - type: Transform
- pos: 3.5,10.5
- parent: 2
- - uid: 161
- components:
- - type: Transform
- pos: 3.5,9.5
- parent: 2
- - uid: 162
- components:
- - type: Transform
- pos: 3.5,8.5
- parent: 2
- - uid: 163
- components:
- - type: Transform
- pos: 3.5,7.5
- parent: 2
- - uid: 164
- components:
- - type: Transform
- pos: 3.5,6.5
- parent: 2
-- proto: ClothingBackpackDuffelClown
- entities:
- - uid: 112
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 92
- - type: Physics
- canCollide: False
- - 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
- - message: This decreases your running speed by [color=yellow]10%[/color].
- priority: 0
- component: ClothingSpeedModifier
- title: null
- - type: InsideEntityStorage
- - uid: 121
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 96
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 142
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 104
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 261
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 114
- - type: Physics
- canCollide: False
- - 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
- - message: This decreases your running speed by [color=yellow]10%[/color].
- priority: 0
- component: ClothingSpeedModifier
- title: null
- - type: InsideEntityStorage
-- proto: ClothingMaskClown
- entities:
- - uid: 93
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 114
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 105
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 92
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 111
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 92
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 118
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 96
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 119
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 96
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 138
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 104
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 140
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 104
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingMaskSexyClown
- entities:
- - uid: 94
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 114
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingNeckClownmedal
- entities:
- - uid: 100
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 114
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingOuterClownPriest
- entities:
- - uid: 101
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 114
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingOuterHardsuitClown
- entities:
- - uid: 95
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 114
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 97
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 114
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingShoesClown
- entities:
- - uid: 98
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 114
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 106
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 92
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 108
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 92
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 116
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 96
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 120
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 96
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 141
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 104
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 143
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 104
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: ClothingShoesClownLarge
entities:
- - uid: 216
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 1
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 223
components:
- type: MetaData
@@ -968,15 +601,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 238
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 232
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 245
components:
- type: MetaData
@@ -986,142 +610,32 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
-- proto: ClothingUniformJumpsuitClown
+- proto: ComputerTabletopShuttle
entities:
- - uid: 102
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 114
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 110
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 92
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 113
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 92
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 117
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 96
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 123
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 96
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 136
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 104
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 139
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 104
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClownRecorder
- entities:
- - uid: 206
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 114
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ComputerShuttle
- entities:
- - uid: 90
+ - uid: 120
components:
- type: Transform
pos: 2.5,12.5
parent: 2
-- proto: ComputerStationRecords
+- proto: ComputerTabletopStationRecords
entities:
- - uid: 91
+ - uid: 93
components:
- type: Transform
pos: 3.5,12.5
parent: 2
- proto: CrateToyBox
entities:
- - uid: 1
+ - uid: 35
components:
- type: Transform
pos: 4.5,3.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 148
- - 149
- - 150
- - 151
- - 213
- - 214
- - 215
- - 216
- - 217
- - 218
- - 219
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
+ - uid: 46
+ components:
+ - type: Transform
+ pos: 0.5,3.5
+ parent: 2
- uid: 220
components:
- type: Transform
@@ -1166,50 +680,6 @@ entities:
showEnts: False
occludes: True
ent: null
- - uid: 232
- components:
- - type: Transform
- pos: 0.5,3.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 233
- - 234
- - 235
- - 236
- - 237
- - 238
- - 239
- - 240
- - 241
- - 242
- - 243
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- uid: 244
components:
- type: Transform
@@ -1256,24 +726,6 @@ entities:
ent: null
- proto: CrazyGlue
entities:
- - uid: 148
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 1
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 213
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 1
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 225
components:
- type: MetaData
@@ -1292,24 +744,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 235
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 232
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 240
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 232
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 246
components:
- type: MetaData
@@ -1328,6 +762,21 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+- proto: CrowbarRed
+ entities:
+ - uid: 149
+ components:
+ - type: Transform
+ pos: 5.4565086,11.521303
+ parent: 2
+- proto: DefibrillatorCabinetFilled
+ entities:
+ - uid: 151
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,4.5
+ parent: 2
- proto: EmergencyLight
entities:
- uid: 295
@@ -1335,12 +784,20 @@ entities:
- type: Transform
pos: 2.5,12.5
parent: 2
+- proto: ExtinguisherCabinetFilled
+ entities:
+ - uid: 82
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,10.5
+ parent: 2
- proto: FaxMachineShip
entities:
- - uid: 260
+ - uid: 119
components:
- type: Transform
- pos: 0.5,10.5
+ pos: 1.5,12.5
parent: 2
- proto: FirelockGlass
entities:
@@ -1352,10 +809,10 @@ entities:
parent: 2
- proto: GasPassiveVent
entities:
- - uid: 280
+ - uid: 108
components:
- type: Transform
- pos: 5.5,5.5
+ pos: -0.5,5.5
parent: 2
- type: AtmosDevice
joinedGrid: 2
@@ -1363,21 +820,37 @@ entities:
color: '#990000FF'
- proto: GasPipeBend
entities:
- - uid: 270
+ - uid: 94
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 96
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 2.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0055CCFF'
+ - uid: 97
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 271
components:
- type: Transform
pos: 2.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0055CCFF'
- uid: 279
components:
- type: Transform
@@ -1386,16 +859,39 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 283
+- proto: GasPipeStraight
+ entities:
+ - uid: 90
+ components:
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 98
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 101
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 117
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,4.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
-- proto: GasPipeStraight
- entities:
- uid: 264
components:
- type: Transform
@@ -1403,7 +899,7 @@ entities:
pos: 2.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0055CCFF'
- uid: 265
components:
- type: Transform
@@ -1411,7 +907,7 @@ entities:
pos: 2.5,8.5
parent: 2
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0055CCFF'
- uid: 266
components:
- type: Transform
@@ -1419,7 +915,7 @@ entities:
pos: 2.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0055CCFF'
- uid: 267
components:
- type: Transform
@@ -1427,7 +923,7 @@ entities:
pos: 2.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0055CCFF'
- uid: 268
components:
- type: Transform
@@ -1435,15 +931,7 @@ entities:
pos: 2.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 269
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 272
components:
- type: Transform
@@ -1451,14 +939,7 @@ entities:
pos: 1.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 273
- components:
- - type: Transform
- pos: 2.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0055CCFF'
- uid: 275
components:
- type: Transform
@@ -1466,14 +947,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 278
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 284
components:
- type: Transform
@@ -1516,22 +989,22 @@ entities:
color: '#990000FF'
- proto: GasPipeTJunction
entities:
- - uid: 263
+ - uid: 121
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 274
+ color: '#990000FF'
+ - uid: 263
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 3.5,4.5
+ pos: 2.5,10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- proto: GasPort
entities:
- uid: 289
@@ -1543,47 +1016,81 @@ entities:
- type: AtmosDevice
joinedGrid: 2
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0055CCFF'
+- proto: GasPressurePump
+ entities:
+ - uid: 100
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,10.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 102
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,4.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasVentPump
entities:
- - uid: 276
+ - uid: 95
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,3.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,2.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 160
- type: AtmosDevice
joinedGrid: 2
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0055CCFF'
- uid: 277
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 0.5,11.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 160
- type: AtmosDevice
joinedGrid: 2
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0055CCFF'
- proto: GasVentScrubber
entities:
- - uid: 281
+ - uid: 104
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,11.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,2.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 160
- type: AtmosDevice
joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 282
+ - uid: 281
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,11.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 160
- type: AtmosDevice
joinedGrid: 2
- type: AtmosPipeColor
@@ -1603,24 +1110,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 5.5,3.5
parent: 2
- - uid: 57
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,1.5
- parent: 2
- uid: 58
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 5.5,2.5
parent: 2
- - uid: 60
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,1.5
- parent: 2
- uid: 61
components:
- type: Transform
@@ -1663,13 +1158,10 @@ entities:
rot: 1.5707963267948966 rad
pos: 0.5,13.5
parent: 2
-- proto: Gyroscope
- entities:
- - uid: 74
+ - uid: 123
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,12.5
+ pos: 2.5,0.5
parent: 2
- proto: hydroponicsTray
entities:
@@ -1679,177 +1171,36 @@ entities:
rot: -1.5707963267948966 rad
pos: -0.5,11.5
parent: 2
-- proto: LockerClown
+- proto: LampBanana
entities:
- - uid: 92
- components:
- - type: Transform
- pos: 4.5,9.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14914
- 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:
- - 113
- - 112
- - 111
- - 110
- - 109
- - 108
- - 107
- - 106
- - 105
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 96
+ - uid: 1
components:
- type: Transform
- pos: 1.5,8.5
+ pos: 4.787325,9.869072
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14914
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
+ - type: HandheldLight
+ toggleActionEntity: 3
- type: ContainerContainer
containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 115
- - 116
- - 117
- - 118
- - 119
- - 120
- - 121
- - 122
- - 123
- paper_label: !type:ContainerSlot
+ cell_slot: !type:ContainerSlot
showEnts: False
occludes: True
ent: null
- - uid: 104
- components:
- - type: Transform
- pos: 3.5,8.5
- parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14914
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
+ actions: !type:Container
showEnts: False
occludes: True
ents:
- - 143
- - 142
- - 141
- - 140
- - 139
- - 138
- - 137
- - 136
- - 135
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 114
+ - 3
+ - type: Physics
+ canCollide: True
+ - type: ActionsContainer
+- proto: LockerClownFilled
+ entities:
+ - uid: 113
components:
- type: Transform
- pos: 1.5,12.5
+ pos: 1.5,8.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1493
- moles:
- - 1.8968438
- - 7.1357465
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 261
- - 206
- - 102
- - 101
- - 100
- - 98
- - 97
- - 94
- - 95
- - 93
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- proto: NitrousOxideCanister
entities:
- uid: 103
@@ -1866,16 +1217,38 @@ entities:
- type: Transform
pos: 1.5,5.5
parent: 2
+- proto: Paper
+ entities:
+ - uid: 12
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.3622794,9.353447
+ parent: 2
+ - uid: 15
+ components:
+ - type: Transform
+ pos: 4.36545,9.509697
+ parent: 2
+ - uid: 17
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.2216544,9.712822
+ parent: 2
- proto: PortableGeneratorPacman
entities:
- uid: 72
components:
- type: Transform
+ anchored: True
pos: 5.5,11.5
parent: 2
- type: MaterialStorage
storage:
- Plasma: 1500
+ Plasma: 3000
+ - type: Physics
+ bodyType: Static
- type: InsertingMaterialStorage
- proto: PosterContrabandClown
entities:
@@ -1886,85 +1259,40 @@ entities:
parent: 2
- proto: Poweredlight
entities:
- - uid: 199
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,9.5
- parent: 2
- - uid: 200
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,9.5
- parent: 2
- - uid: 201
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 3.5,4.5
- parent: 2
- - uid: 202
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 1.5,4.5
- parent: 2
- - uid: 203
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,2.5
- parent: 2
- - uid: 204
+ - uid: 109
components:
- type: MetaData
flags: PvsPriority
- type: Transform
- pos: -0.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,10.5
parent: 2
- - uid: 205
+ - uid: 142
components:
- type: MetaData
flags: PvsPriority
- type: Transform
- pos: 5.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,10.5
parent: 2
- - uid: 207
+ - uid: 203
components:
- type: MetaData
flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,0.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,2.5
parent: 2
- - uid: 208
+- proto: PoweredSmallLight
+ entities:
+ - uid: 150
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
+ rot: -1.5707963267948966 rad
pos: 3.5,0.5
parent: 2
- proto: RevolverCapGun
entities:
- - uid: 149
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 1
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 221
components:
- type: MetaData
@@ -1974,15 +1302,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 239
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 232
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 248
components:
- type: MetaData
@@ -1992,6 +1311,15 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+- proto: SheetPlasma
+ entities:
+ - uid: 148
+ components:
+ - type: Transform
+ pos: 5.5232024,11.547904
+ parent: 2
+ - type: Stack
+ count: 15
- proto: ShuttleWindow
entities:
- uid: 7
@@ -2000,21 +1328,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 5.5,3.5
parent: 2
- - uid: 17
- components:
- - type: Transform
- pos: 5.5,1.5
- parent: 2
- uid: 18
components:
- type: Transform
pos: 5.5,2.5
parent: 2
- - uid: 20
- components:
- - type: Transform
- pos: -0.5,1.5
- parent: 2
- uid: 21
components:
- type: Transform
@@ -2055,41 +1373,34 @@ entities:
rot: 1.5707963267948966 rad
pos: 0.5,13.5
parent: 2
-- proto: SpawnPointClown
- entities:
- - uid: 196
+ - uid: 105
components:
- type: Transform
- pos: 2.5,4.5
+ pos: 2.5,0.5
parent: 2
-- proto: SpawnPointLatejoin
+- proto: SmallGyroscope
entities:
- - uid: 210
+ - uid: 107
components:
- type: Transform
- pos: 1.5,10.5
+ pos: -0.5,12.5
parent: 2
- - uid: 211
+- proto: SpawnPointClown
+ entities:
+ - uid: 116
components:
- type: Transform
- pos: 2.5,10.5
+ pos: 2.5,4.5
parent: 2
- - uid: 212
+- proto: SpawnPointLatejoin
+ entities:
+ - uid: 211
components:
- type: Transform
- pos: 3.5,10.5
+ pos: 2.5,10.5
parent: 2
- proto: SpeedLoaderCap
entities:
- - uid: 215
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 1
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 229
components:
- type: MetaData
@@ -2099,15 +1410,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 242
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 232
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 252
components:
- type: MetaData
@@ -2131,12 +1433,35 @@ entities:
- type: Transform
pos: 6.5,11.5
parent: 2
+- proto: SuitStorageClown
+ entities:
+ - uid: 112
+ components:
+ - type: Transform
+ pos: 3.5,8.5
+ parent: 2
- proto: TableReinforced
entities:
- - uid: 259
+ - uid: 91
components:
- type: Transform
- pos: 0.5,10.5
+ pos: 3.5,12.5
+ parent: 2
+ - uid: 92
+ components:
+ - type: Transform
+ pos: 2.5,12.5
+ parent: 2
+ - uid: 118
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,12.5
+ parent: 2
+ - uid: 143
+ components:
+ - type: Transform
+ pos: 4.5,9.5
parent: 2
- proto: Thruster
entities:
@@ -2165,24 +1490,6 @@ entities:
parent: 2
- proto: ToyHammer
entities:
- - uid: 150
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 1
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 219
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 1
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 226
components:
- type: MetaData
@@ -2201,24 +1508,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 237
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 232
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 243
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 232
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 253
components:
- type: MetaData
@@ -2239,15 +1528,15 @@ entities:
- type: InsideEntityStorage
- proto: ToySpawner
entities:
- - uid: 257
+ - uid: 106
components:
- type: Transform
- pos: 1.5,4.5
+ pos: 2.5,3.5
parent: 2
- - uid: 258
+ - uid: 122
components:
- type: Transform
- pos: 4.5,10.5
+ pos: 1.5,12.5
parent: 2
- proto: VendingMachineTheater
entities:
@@ -2258,13 +1547,6 @@ entities:
parent: 2
- proto: WallShuttle
entities:
- - uid: 3
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 2.5,0.5
- parent: 2
- uid: 4
components:
- type: MetaData
@@ -2427,6 +1709,62 @@ entities:
rot: 1.5707963267948966 rad
pos: 5.5,13.5
parent: 2
+ - uid: 114
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 5.5,1.5
+ parent: 2
+ - uid: 115
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 2
+ - uid: 124
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,4.5
+ parent: 2
+ - uid: 125
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 2
+ - uid: 126
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 5.5,10.5
+ parent: 2
+ - uid: 127
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,8.5
+ parent: 2
+ - uid: 128
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,8.5
+ parent: 2
+ - uid: 129
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -0.5,10.5
+ parent: 2
- proto: WallShuttleDiagonal
entities:
- uid: 8
@@ -2447,12 +1785,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 4.5,5.5
parent: 2
- - uid: 12
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,4.5
- parent: 2
- uid: 13
components:
- type: Transform
@@ -2464,12 +1796,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 0.5,-0.5
parent: 2
- - uid: 15
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,4.5
- parent: 2
- uid: 16
components:
- type: Transform
@@ -2488,23 +1814,12 @@ entities:
rot: 3.141592653589793 rad
pos: 4.5,7.5
parent: 2
- - uid: 32
- components:
- - type: Transform
- pos: 4.5,8.5
- parent: 2
- uid: 34
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 6.5,10.5
parent: 2
- - uid: 35
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,8.5
- parent: 2
- uid: 36
components:
- type: Transform
@@ -2529,17 +1844,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -1.5,10.5
parent: 2
- - uid: 46
- components:
- - type: Transform
- pos: 5.5,10.5
- parent: 2
- - uid: 49
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,10.5
- parent: 2
- uid: 59
components:
- type: Transform
@@ -2563,15 +1867,6 @@ entities:
parent: 2
- proto: WhoopieCushion
entities:
- - uid: 151
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 1
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 222
components:
- type: MetaData
@@ -2581,15 +1876,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 233
- components:
- - type: MetaData
- flags: InContainer
- - type: Transform
- parent: 232
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 251
components:
- type: MetaData
@@ -2599,11 +1885,18 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+- proto: Wirecutter
+ entities:
+ - uid: 57
+ components:
+ - type: Transform
+ pos: 0.3854792,11.534434
+ parent: 2
- proto: Wrench
entities:
- uid: 262
components:
- type: Transform
- pos: 4.7749643,11.325291
+ pos: 5.369727,11.532279
parent: 2
...
diff --git a/Resources/Maps/_NF/Shuttles/investigator.yml b/Resources/Maps/_NF/Shuttles/investigator.yml
new file mode 100644
index 000000000000..79aff7fc29bc
--- /dev/null
+++ b/Resources/Maps/_NF/Shuttles/investigator.yml
@@ -0,0 +1,5298 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 14: FloorBar
+ 20: FloorBrokenWood
+ 30: FloorDark
+ 35: FloorDarkMono
+ 78: FloorReinforced
+ 90: FloorSteel
+ 91: FloorSteelBurnt
+ 97: FloorSteelDirty
+ 101: FloorSteelMono
+ 119: FloorWood
+ 121: Lattice
+ 122: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 2
+ components:
+ - type: MetaData
+ name: grid
+ - type: Transform
+ pos: -2.6107569,3.2554395
+ parent: invalid
+ - type: MapGrid
+ chunks:
+ 0,0:
+ ind: 0,0
+ tiles: egAAAAAAZQAAAAADZQAAAAAAZQAAAAABZQAAAAADZQAAAAABegAAAAAAWgAAAAACYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAABYQAAAAAAWgAAAAAAWgAAAAADegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAACHgAAAAABegAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAADWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAADegAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAACHgAAAAABegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAACegAAAAAAHgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWwAAAAAAWgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAABegAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAABegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAABWgAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAACWgAAAAACWgAAAAACWgAAAAADegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAWgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAACHgAAAAACHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAAAIwAAAAAAHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAADHgAAAAABHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAIwAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAdwAAAAAAdwAAAAACdwAAAAAAdwAAAAACdwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAAAdwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAADDgAAAAABDgAAAAAAdwAAAAAAdwAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAADgAAAAAADgAAAAADDgAAAAABdwAAAAAAdwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAADgAAAAADDgAAAAAADgAAAAAAdwAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAADgAAAAAADgAAAAAADgAAAAABdwAAAAACdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,-1:
+ ind: 1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,0:
+ ind: 1,0
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ - type: Broadphase
+ - type: Physics
+ bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ - type: Fixtures
+ fixtures: {}
+ - type: OccluderTree
+ - type: SpreaderGrid
+ - type: Shuttle
+ - type: GridPathfinding
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ angle: -3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 26: 10.79785,0.81085324
+ 27: 11.17285,0.81085324
+ - node:
+ angle: 3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 11: 2,-2
+ 12: 4,-2
+ 13: 3,-2
+ 53: 4,5
+ 54: 2,5
+ - node:
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 0: 2,-1
+ 1: 3,-1
+ 2: 4,-1
+ 3: 1,0
+ 4: 5,0
+ 34: -5,-5
+ 35: -2,-6
+ 36: 3,0
+ 126: 11,0
+ 127: 11,0
+ 128: 11,0
+ - node:
+ angle: 3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 7: 2,0
+ 8: 4,0
+ - node:
+ color: '#FFFFFFFF'
+ id: BotLeft
+ decals:
+ 90: -4,-7
+ - node:
+ color: '#FFFFFFFF'
+ id: BotRight
+ decals:
+ 89: -5,-7
+ 91: -3,-7
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineE
+ decals:
+ 31: -3,-7
+ 32: -3,-6
+ 33: -3,-5
+ - node:
+ color: '#D4D4D43D'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 103: 7,0
+ - node:
+ color: '#D4D4D40C'
+ id: BrickTileWhiteLineE
+ decals:
+ 39: 2,2
+ 40: 2,5
+ 41: 2,2
+ 42: 2,5
+ - node:
+ cleanable: True
+ color: '#D4D4D40C'
+ id: BrickTileWhiteLineE
+ decals:
+ 55: 2,4
+ 56: 2,4
+ - node:
+ color: '#D4D4D43D'
+ id: BrickTileWhiteLineE
+ decals:
+ 100: 7,-3
+ 101: 7,-2
+ 102: 7,-1
+ - node:
+ color: '#D4D4D40C'
+ id: BrickTileWhiteLineW
+ decals:
+ 37: 4,2
+ 38: 4,5
+ 43: 4,2
+ 44: 4,5
+ 45: 4,4
+ 46: 4,4
+ - node:
+ color: '#D4D4D43D'
+ id: BrickTileWhiteLineW
+ decals:
+ 95: 11,-3
+ 96: 11,-2
+ 97: 11,-1
+ 98: 11,0
+ 99: 11,1
+ - node:
+ color: '#D381C996'
+ id: CheckerNESW
+ decals:
+ 129: 11,2
+ - node:
+ color: '#D4D4D428'
+ id: CheckerNESW
+ decals:
+ 14: 1,-3
+ 15: 2,-3
+ 16: 3,-3
+ 17: 5,-3
+ 18: 4,-3
+ - node:
+ color: '#D4D4D40C'
+ id: CheckerNWSE
+ decals:
+ 47: 3,4
+ 48: 3,4
+ 49: 3,2
+ 50: 3,2
+ 51: 3,5
+ 52: 3,5
+ - node:
+ color: '#D4D4D43D'
+ id: CheckerNWSE
+ decals:
+ 104: 9,-4
+ 105: 8,-4
+ 106: 10,-4
+ 107: 10,-3
+ 108: 9,-3
+ 109: 8,-3
+ 110: 8,-2
+ 111: 9,-2
+ 112: 10,-2
+ 113: 10,-1
+ 114: 9,-1
+ 115: 8,-1
+ 116: 8,0
+ 117: 9,0
+ 118: 10,0
+ 119: 10,1
+ 120: 9,1
+ 124: 8,1
+ 125: 9,2
+ - node:
+ angle: 3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 9: 1,-1
+ 10: 5,-1
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: Dirt
+ decals:
+ 130: 9,-5
+ 131: 8,-2
+ 132: 10,-1
+ 133: 10,0
+ 134: -4,-6
+ 135: 8,-3
+ 136: 8,-1
+ 137: 9,1
+ 138: 9,-1
+ 139: 10,1
+ 140: 11,-2
+ 141: 3,-2
+ 142: 4,-1
+ 143: 4,0
+ 144: 5,-3
+ 145: 0,-2
+ 146: -5,0
+ 147: -4,0
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 63: 5,-2
+ 64: 4,-3
+ 65: 1,-2
+ 66: 2,-3
+ 67: 10,1
+ 68: 7,2
+ 69: -4,-5
+ 70: -2,-5
+ 71: -1,-5
+ 72: -1,-7
+ 73: -3,-7
+ 74: -3,-6
+ 79: 4,5
+ 80: 3,4
+ 81: 2,4
+ 82: 4,2
+ 83: 2,2
+ 84: -4,0
+ 85: -5,1
+ 86: -4,2
+ 87: -4,1
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtHeavyMonotile
+ decals:
+ 75: 5,0
+ 76: 2,-1
+ 77: 2,0
+ 78: 4,-1
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 88: 9,-9
+ - node:
+ angle: 3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: LoadingArea
+ decals:
+ 5: 5,0
+ 6: 1,0
+ - node:
+ color: '#D381C996'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 121: 7,2
+ - node:
+ color: '#D381C996'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 122: 7,1
+ - node:
+ color: '#D381C996'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 123: 8,2
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: WarnLineE
+ decals:
+ 60: 4,2
+ 61: 4,4
+ 62: 4,5
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineN
+ decals:
+ 92: 10,-5
+ 93: 9,-5
+ 94: 8,-5
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: WarnLineS
+ decals:
+ 57: 2,2
+ 58: 2,4
+ 59: 2,5
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineW
+ decals:
+ 25: 8,-7
+ 28: 9,-7
+ 148: 10,-7
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSe
+ decals:
+ 23: -3,-1
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineE
+ decals:
+ 19: -3,0
+ 20: -3,1
+ 21: -3,2
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineN
+ decals:
+ 24: -5,-1
+ 29: -4,-4
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineS
+ decals:
+ 22: -4,-1
+ 30: -4,-4
+ - type: GridAtmosphere
+ version: 2
+ data:
+ tiles:
+ 0,0:
+ 0: 65535
+ 1,0:
+ 0: 65535
+ 0,1:
+ 0: 4095
+ 1,1:
+ 0: 1911
+ 1: 8
+ 2,0:
+ 0: 65535
+ 2,1:
+ 1: 15
+ 3,0:
+ 0: 4369
+ 1: 238
+ 3,1:
+ 1: 1
+ 0,-3:
+ 1: 4096
+ 0,-2:
+ 0: 4369
+ 1: 57344
+ 0,-1:
+ 0: 65535
+ 1,-2:
+ 1: 29764
+ 0: 34952
+ 1,-1:
+ 0: 65535
+ 1,-3:
+ 1: 16384
+ 0: 34816
+ 2,-3:
+ 0: 65280
+ 2,-2:
+ 0: 65535
+ 2,-1:
+ 0: 65535
+ 3,-3:
+ 1: 4352
+ 3,-2:
+ 1: 4369
+ 3,-1:
+ 0: 4369
+ 1: 12000
+ -2,-3:
+ 1: 52224
+ -2,-2:
+ 0: 52428
+ -2,-1:
+ 1: 9008
+ 0: 52428
+ -1,-3:
+ 1: 65280
+ -1,-2:
+ 0: 65535
+ -1,-1:
+ 0: 65535
+ -2,0:
+ 1: 51
+ 0: 52428
+ -2,1:
+ 1: 12
+ -1,0:
+ 0: 65535
+ -1,1:
+ 1: 15
+ -3,-1:
+ 1: 12272
+ -3,0:
+ 1: 255
+ 4,-1:
+ 1: 10096
+ 4,0:
+ 1: 119
+ 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:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+- proto: AirAlarm
+ entities:
+ - uid: 251
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,1.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 294
+ - 280
+ - 274
+ - 309
+ - 167
+ - 198
+ - 76
+ - 119
+ - 275
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 252
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,1.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 284
+ - 289
+ - 237
+ - 308
+ - 307
+ - 304
+ - 298
+ - 296
+ - 273
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 306
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-4.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 237
+ - 284
+ - 289
+ - 307
+ - type: AtmosDevice
+ joinedGrid: 2
+- proto: AirCanister
+ entities:
+ - uid: 191
+ components:
+ - type: Transform
+ pos: -4.5,-4.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+- proto: AirlockCargoGlass
+ entities:
+ - uid: 110
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 2
+- proto: AirlockCommandGlass
+ entities:
+ - uid: 285
+ components:
+ - type: Transform
+ pos: -3.5,-3.5
+ parent: 2
+- proto: AirlockExternalGlass
+ entities:
+ - uid: 692
+ components:
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 2
+ - uid: 693
+ components:
+ - type: Transform
+ pos: 4.5,3.5
+ parent: 2
+- proto: AirlockGlassShuttle
+ entities:
+ - uid: 444
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,6.5
+ parent: 2
+ - uid: 445
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,6.5
+ parent: 2
+- proto: AirlockScienceGlass
+ entities:
+ - uid: 42
+ components:
+ - type: Transform
+ pos: 6.5,-1.5
+ parent: 2
+ - uid: 174
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-5.5
+ parent: 2
+- proto: AirSensor
+ entities:
+ - uid: 119
+ components:
+ - type: Transform
+ pos: 10.5,-4.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 251
+ - uid: 275
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,2.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 251
+ - uid: 284
+ components:
+ - type: Transform
+ pos: -1.5,-6.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 252
+ - uid: 296
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-2.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 252
+- proto: APCBasic
+ entities:
+ - uid: 334
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,2.5
+ parent: 2
+ - uid: 335
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,2.5
+ parent: 2
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 1
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-5.5
+ parent: 2
+ - uid: 227
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-3.5
+ parent: 2
+ - uid: 232
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-3.5
+ parent: 2
+ - uid: 233
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-3.5
+ parent: 2
+ - uid: 457
+ components:
+ - type: Transform
+ pos: 4.5,6.5
+ parent: 2
+ - uid: 458
+ components:
+ - type: MetaData
+ name: Bolt docks button
+ - type: Transform
+ pos: 2.5,6.5
+ parent: 2
+- proto: AtmosFixBlockerMarker
+ entities:
+ - uid: 430
+ components:
+ - type: Transform
+ pos: 13.5,1.5
+ parent: 2
+ - uid: 431
+ components:
+ - type: Transform
+ pos: 7.5,4.5
+ parent: 2
+ - uid: 432
+ components:
+ - type: Transform
+ pos: 8.5,4.5
+ parent: 2
+ - uid: 433
+ components:
+ - type: Transform
+ pos: 9.5,4.5
+ parent: 2
+ - uid: 434
+ components:
+ - type: Transform
+ pos: 10.5,4.5
+ parent: 2
+ - uid: 435
+ components:
+ - type: Transform
+ pos: 11.5,4.5
+ parent: 2
+ - uid: 436
+ components:
+ - type: Transform
+ pos: 12.5,4.5
+ parent: 2
+ - uid: 437
+ components:
+ - type: Transform
+ pos: 13.5,0.5
+ parent: 2
+ - uid: 438
+ components:
+ - type: Transform
+ pos: 13.5,-0.5
+ parent: 2
+ - uid: 439
+ components:
+ - type: Transform
+ pos: 13.5,-1.5
+ parent: 2
+ - uid: 440
+ components:
+ - type: Transform
+ pos: 13.5,-2.5
+ parent: 2
+ - uid: 441
+ components:
+ - type: Transform
+ pos: 14.5,-2.5
+ parent: 2
+ - uid: 442
+ components:
+ - type: Transform
+ pos: 14.5,-1.5
+ parent: 2
+ - uid: 472
+ components:
+ - type: Transform
+ pos: 15.5,-1.5
+ parent: 2
+ - uid: 701
+ components:
+ - type: Transform
+ pos: 15.5,-2.5
+ parent: 2
+ - uid: 706
+ components:
+ - type: Transform
+ pos: 16.5,-2.5
+ parent: 2
+ - uid: 707
+ components:
+ - type: Transform
+ pos: 16.5,-1.5
+ parent: 2
+ - uid: 708
+ components:
+ - type: Transform
+ pos: 17.5,-1.5
+ parent: 2
+ - uid: 709
+ components:
+ - type: Transform
+ pos: 17.5,-2.5
+ parent: 2
+ - uid: 710
+ components:
+ - type: Transform
+ pos: 18.5,-2.5
+ parent: 2
+ - uid: 711
+ components:
+ - type: Transform
+ pos: 18.5,-1.5
+ parent: 2
+ - uid: 712
+ components:
+ - type: Transform
+ pos: 17.5,-0.5
+ parent: 2
+ - uid: 713
+ components:
+ - type: Transform
+ pos: 17.5,0.5
+ parent: 2
+ - uid: 714
+ components:
+ - type: Transform
+ pos: 18.5,0.5
+ parent: 2
+ - uid: 715
+ components:
+ - type: Transform
+ pos: 18.5,1.5
+ parent: 2
+ - uid: 716
+ components:
+ - type: Transform
+ pos: 17.5,1.5
+ parent: 2
+ - uid: 717
+ components:
+ - type: Transform
+ pos: 16.5,1.5
+ parent: 2
+ - uid: 718
+ components:
+ - type: Transform
+ pos: 16.5,0.5
+ parent: 2
+ - uid: 719
+ components:
+ - type: Transform
+ pos: 15.5,0.5
+ parent: 2
+ - uid: 720
+ components:
+ - type: Transform
+ pos: 15.5,1.5
+ parent: 2
+ - uid: 721
+ components:
+ - type: Transform
+ pos: 14.5,1.5
+ parent: 2
+ - uid: 722
+ components:
+ - type: Transform
+ pos: 14.5,0.5
+ parent: 2
+ - uid: 723
+ components:
+ - type: Transform
+ pos: 12.5,-4.5
+ parent: 2
+ - uid: 724
+ components:
+ - type: Transform
+ pos: 12.5,-5.5
+ parent: 2
+ - uid: 725
+ components:
+ - type: Transform
+ pos: 12.5,-6.5
+ parent: 2
+ - uid: 726
+ components:
+ - type: Transform
+ pos: 12.5,-7.5
+ parent: 2
+ - uid: 727
+ components:
+ - type: Transform
+ pos: 12.5,-8.5
+ parent: 2
+ - uid: 728
+ components:
+ - type: Transform
+ pos: 12.5,-9.5
+ parent: 2
+ - uid: 729
+ components:
+ - type: Transform
+ pos: 6.5,-8.5
+ parent: 2
+ - uid: 730
+ components:
+ - type: Transform
+ pos: 6.5,-7.5
+ parent: 2
+ - uid: 731
+ components:
+ - type: Transform
+ pos: 6.5,-6.5
+ parent: 2
+ - uid: 732
+ components:
+ - type: Transform
+ pos: 6.5,-5.5
+ parent: 2
+ - uid: 733
+ components:
+ - type: Transform
+ pos: 6.5,-4.5
+ parent: 2
+ - uid: 734
+ components:
+ - type: Transform
+ pos: 5.5,-4.5
+ parent: 2
+ - uid: 735
+ components:
+ - type: Transform
+ pos: 4.5,-4.5
+ parent: 2
+ - uid: 736
+ components:
+ - type: Transform
+ pos: 3.5,-4.5
+ parent: 2
+ - uid: 737
+ components:
+ - type: Transform
+ pos: 2.5,-4.5
+ parent: 2
+ - uid: 738
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 2
+ - uid: 739
+ components:
+ - type: Transform
+ pos: 0.5,-8.5
+ parent: 2
+ - uid: 740
+ components:
+ - type: Transform
+ pos: -0.5,-8.5
+ parent: 2
+ - uid: 741
+ components:
+ - type: Transform
+ pos: -0.5,-9.5
+ parent: 2
+ - uid: 742
+ components:
+ - type: Transform
+ pos: -1.5,-8.5
+ parent: 2
+ - uid: 743
+ components:
+ - type: Transform
+ pos: -1.5,-9.5
+ parent: 2
+ - uid: 744
+ components:
+ - type: Transform
+ pos: -2.5,-8.5
+ parent: 2
+ - uid: 745
+ components:
+ - type: Transform
+ pos: -2.5,-9.5
+ parent: 2
+ - uid: 746
+ components:
+ - type: Transform
+ pos: -3.5,-8.5
+ parent: 2
+ - uid: 747
+ components:
+ - type: Transform
+ pos: -3.5,-9.5
+ parent: 2
+ - uid: 748
+ components:
+ - type: Transform
+ pos: -4.5,-9.5
+ parent: 2
+ - uid: 749
+ components:
+ - type: Transform
+ pos: -4.5,-8.5
+ parent: 2
+ - uid: 750
+ components:
+ - type: Transform
+ pos: -5.5,-8.5
+ parent: 2
+ - uid: 751
+ components:
+ - type: Transform
+ pos: -5.5,-9.5
+ parent: 2
+ - uid: 752
+ components:
+ - type: Transform
+ pos: -6.5,-2.5
+ parent: 2
+ - uid: 753
+ components:
+ - type: Transform
+ pos: -7.5,-2.5
+ parent: 2
+ - uid: 754
+ components:
+ - type: Transform
+ pos: -8.5,-2.5
+ parent: 2
+ - uid: 755
+ components:
+ - type: Transform
+ pos: -9.5,-2.5
+ parent: 2
+ - uid: 756
+ components:
+ - type: Transform
+ pos: -10.5,-2.5
+ parent: 2
+ - uid: 757
+ components:
+ - type: Transform
+ pos: -11.5,-2.5
+ parent: 2
+ - uid: 758
+ components:
+ - type: Transform
+ pos: -11.5,-1.5
+ parent: 2
+ - uid: 759
+ components:
+ - type: Transform
+ pos: -10.5,-1.5
+ parent: 2
+ - uid: 760
+ components:
+ - type: Transform
+ pos: -8.5,-1.5
+ parent: 2
+ - uid: 761
+ components:
+ - type: Transform
+ pos: -9.5,-1.5
+ parent: 2
+ - uid: 762
+ components:
+ - type: Transform
+ pos: -7.5,-1.5
+ parent: 2
+ - uid: 763
+ components:
+ - type: Transform
+ pos: -6.5,-1.5
+ parent: 2
+ - uid: 764
+ components:
+ - type: Transform
+ pos: -6.5,-0.5
+ parent: 2
+ - uid: 765
+ components:
+ - type: Transform
+ pos: -6.5,0.5
+ parent: 2
+ - uid: 766
+ components:
+ - type: Transform
+ pos: -6.5,1.5
+ parent: 2
+ - uid: 767
+ components:
+ - type: Transform
+ pos: -7.5,1.5
+ parent: 2
+ - uid: 768
+ components:
+ - type: Transform
+ pos: -7.5,0.5
+ parent: 2
+ - uid: 769
+ components:
+ - type: Transform
+ pos: -8.5,0.5
+ parent: 2
+ - uid: 770
+ components:
+ - type: Transform
+ pos: -8.5,1.5
+ parent: 2
+ - uid: 771
+ components:
+ - type: Transform
+ pos: -9.5,1.5
+ parent: 2
+ - uid: 772
+ components:
+ - type: Transform
+ pos: -9.5,0.5
+ parent: 2
+ - uid: 773
+ components:
+ - type: Transform
+ pos: -10.5,0.5
+ parent: 2
+ - uid: 774
+ components:
+ - type: Transform
+ pos: -10.5,1.5
+ parent: 2
+ - uid: 775
+ components:
+ - type: Transform
+ pos: -11.5,1.5
+ parent: 2
+ - uid: 776
+ components:
+ - type: Transform
+ pos: -11.5,0.5
+ parent: 2
+ - uid: 777
+ components:
+ - type: Transform
+ pos: -10.5,-0.5
+ parent: 2
+ - uid: 778
+ components:
+ - type: Transform
+ pos: -5.5,4.5
+ parent: 2
+ - uid: 779
+ components:
+ - type: Transform
+ pos: -4.5,4.5
+ parent: 2
+ - uid: 780
+ components:
+ - type: Transform
+ pos: -3.5,4.5
+ parent: 2
+ - uid: 781
+ components:
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 2
+ - uid: 782
+ components:
+ - type: Transform
+ pos: -1.5,4.5
+ parent: 2
+ - uid: 783
+ components:
+ - type: Transform
+ pos: -0.5,4.5
+ parent: 2
+- proto: Autolathe
+ entities:
+ - uid: 221
+ components:
+ - type: Transform
+ pos: 8.5,2.5
+ parent: 2
+- proto: BarSign
+ entities:
+ - uid: 24
+ components:
+ - type: Transform
+ pos: -4.5,3.5
+ parent: 2
+- proto: BlastDoor
+ entities:
+ - uid: 423
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 7.5,-7.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 702
+ - uid: 687
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 1.5,3.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 479
+ - uid: 688
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 1.5,6.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 479
+ - uid: 689
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 5.5,6.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 479
+ - uid: 690
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 5.5,3.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 479
+- proto: BlastDoorOpen
+ entities:
+ - uid: 88
+ components:
+ - type: Transform
+ pos: 2.5,-3.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 469
+ - uid: 91
+ components:
+ - type: Transform
+ pos: 4.5,-3.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 469
+ - uid: 467
+ components:
+ - type: Transform
+ pos: 3.5,-3.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 469
+- proto: BoozeDispenser
+ entities:
+ - uid: 476
+ components:
+ - type: Transform
+ pos: -4.5,2.5
+ parent: 2
+- proto: CableApcExtension
+ entities:
+ - uid: 7
+ components:
+ - type: Transform
+ pos: 3.5,0.5
+ parent: 2
+ - uid: 17
+ components:
+ - type: Transform
+ pos: 3.5,-0.5
+ parent: 2
+ - uid: 193
+ components:
+ - type: Transform
+ pos: 4.5,-3.5
+ parent: 2
+ - uid: 365
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 2
+ - uid: 366
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 2
+ - uid: 367
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 2
+ - uid: 368
+ components:
+ - type: Transform
+ pos: -3.5,2.5
+ parent: 2
+ - uid: 369
+ components:
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 2
+ - uid: 370
+ components:
+ - type: Transform
+ pos: -4.5,2.5
+ parent: 2
+ - uid: 371
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 2
+ - uid: 372
+ components:
+ - type: Transform
+ pos: -1.5,0.5
+ parent: 2
+ - uid: 373
+ components:
+ - type: Transform
+ pos: -1.5,-0.5
+ parent: 2
+ - uid: 374
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 2
+ - uid: 375
+ components:
+ - type: Transform
+ pos: -1.5,-2.5
+ parent: 2
+ - uid: 376
+ components:
+ - type: Transform
+ pos: -2.5,-2.5
+ parent: 2
+ - uid: 377
+ components:
+ - type: Transform
+ pos: -3.5,-2.5
+ parent: 2
+ - uid: 378
+ components:
+ - type: Transform
+ pos: -4.5,-2.5
+ parent: 2
+ - uid: 379
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 2
+ - uid: 380
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 2
+ - uid: 381
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 2
+ - uid: 382
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 2
+ - uid: 383
+ components:
+ - type: Transform
+ pos: 3.5,1.5
+ parent: 2
+ - uid: 384
+ components:
+ - type: Transform
+ pos: 5.5,-1.5
+ parent: 2
+ - uid: 385
+ components:
+ - type: Transform
+ pos: 3.5,-1.5
+ parent: 2
+ - uid: 386
+ components:
+ - type: Transform
+ pos: 6.5,-1.5
+ parent: 2
+ - uid: 387
+ components:
+ - type: Transform
+ pos: 7.5,-1.5
+ parent: 2
+ - uid: 388
+ components:
+ - type: Transform
+ pos: 7.5,-0.5
+ parent: 2
+ - uid: 389
+ components:
+ - type: Transform
+ pos: 7.5,0.5
+ parent: 2
+ - uid: 390
+ components:
+ - type: Transform
+ pos: 7.5,1.5
+ parent: 2
+ - uid: 391
+ components:
+ - type: Transform
+ pos: 8.5,1.5
+ parent: 2
+ - uid: 392
+ components:
+ - type: Transform
+ pos: 9.5,1.5
+ parent: 2
+ - uid: 393
+ components:
+ - type: Transform
+ pos: 10.5,1.5
+ parent: 2
+ - uid: 394
+ components:
+ - type: Transform
+ pos: 11.5,1.5
+ parent: 2
+ - uid: 395
+ components:
+ - type: Transform
+ pos: 7.5,-2.5
+ parent: 2
+ - uid: 396
+ components:
+ - type: Transform
+ pos: 8.5,-2.5
+ parent: 2
+ - uid: 397
+ components:
+ - type: Transform
+ pos: 9.5,-2.5
+ parent: 2
+ - uid: 398
+ components:
+ - type: Transform
+ pos: 10.5,-2.5
+ parent: 2
+ - uid: 399
+ components:
+ - type: Transform
+ pos: 11.5,-2.5
+ parent: 2
+ - uid: 400
+ components:
+ - type: Transform
+ pos: 9.5,-3.5
+ parent: 2
+ - uid: 401
+ components:
+ - type: Transform
+ pos: 9.5,-4.5
+ parent: 2
+ - uid: 402
+ components:
+ - type: Transform
+ pos: 9.5,-5.5
+ parent: 2
+ - uid: 405
+ components:
+ - type: Transform
+ pos: -3.5,-3.5
+ parent: 2
+ - uid: 406
+ components:
+ - type: Transform
+ pos: -3.5,-4.5
+ parent: 2
+ - uid: 407
+ components:
+ - type: Transform
+ pos: -3.5,-5.5
+ parent: 2
+ - uid: 408
+ components:
+ - type: Transform
+ pos: -3.5,-6.5
+ parent: 2
+ - uid: 409
+ components:
+ - type: Transform
+ pos: -2.5,-5.5
+ parent: 2
+ - uid: 410
+ components:
+ - type: Transform
+ pos: -1.5,-5.5
+ parent: 2
+ - uid: 411
+ components:
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 2
+ - uid: 412
+ components:
+ - type: Transform
+ pos: -3.5,-7.5
+ parent: 2
+ - uid: 413
+ components:
+ - type: Transform
+ pos: -3.5,-8.5
+ parent: 2
+ - uid: 414
+ components:
+ - type: Transform
+ pos: -4.5,-8.5
+ parent: 2
+ - uid: 415
+ components:
+ - type: Transform
+ pos: 2.5,-3.5
+ parent: 2
+ - uid: 416
+ components:
+ - type: Transform
+ pos: 11.5,2.5
+ parent: 2
+ - uid: 417
+ components:
+ - type: Transform
+ pos: 3.5,-2.5
+ parent: 2
+ - uid: 418
+ components:
+ - type: Transform
+ pos: 3.5,-3.5
+ parent: 2
+ - uid: 424
+ components:
+ - type: Transform
+ pos: 10.5,-4.5
+ parent: 2
+ - uid: 425
+ components:
+ - type: Transform
+ pos: 11.5,-4.5
+ parent: 2
+ - uid: 426
+ components:
+ - type: Transform
+ pos: 12.5,-4.5
+ parent: 2
+ - uid: 427
+ components:
+ - type: Transform
+ pos: 12.5,-5.5
+ parent: 2
+ - uid: 428
+ components:
+ - type: Transform
+ pos: 12.5,-6.5
+ parent: 2
+ - uid: 429
+ components:
+ - type: Transform
+ pos: 12.5,-7.5
+ parent: 2
+ - uid: 462
+ components:
+ - type: Transform
+ pos: 4.5,4.5
+ parent: 2
+ - uid: 463
+ components:
+ - type: Transform
+ pos: 3.5,2.5
+ parent: 2
+ - uid: 465
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 2
+ - uid: 466
+ components:
+ - type: Transform
+ pos: 3.5,5.5
+ parent: 2
+ - uid: 488
+ components:
+ - type: Transform
+ pos: 7.5,2.5
+ parent: 2
+ - uid: 490
+ components:
+ - type: Transform
+ pos: 6.5,2.5
+ parent: 2
+ - uid: 677
+ components:
+ - type: Transform
+ pos: -0.5,-4.5
+ parent: 2
+ - uid: 678
+ components:
+ - type: Transform
+ pos: -0.5,-6.5
+ parent: 2
+ - uid: 679
+ components:
+ - type: Transform
+ pos: 4.5,3.5
+ parent: 2
+ - uid: 680
+ components:
+ - type: Transform
+ pos: 4.5,2.5
+ parent: 2
+ - uid: 681
+ components:
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 2
+ - uid: 682
+ components:
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 2
+ - uid: 683
+ components:
+ - type: Transform
+ pos: 2.5,2.5
+ parent: 2
+ - uid: 695
+ components:
+ - type: Transform
+ pos: -4.5,-0.5
+ parent: 2
+ - uid: 696
+ components:
+ - type: Transform
+ pos: -4.5,-1.5
+ parent: 2
+ - uid: 697
+ components:
+ - type: Transform
+ pos: 11.5,-0.5
+ parent: 2
+ - uid: 698
+ components:
+ - type: Transform
+ pos: 11.5,-1.5
+ parent: 2
+- proto: CableHV
+ entities:
+ - uid: 52
+ components:
+ - type: Transform
+ pos: 10.5,-1.5
+ parent: 2
+ - uid: 72
+ components:
+ - type: Transform
+ pos: 11.5,-1.5
+ parent: 2
+ - uid: 74
+ components:
+ - type: Transform
+ pos: 10.5,-4.5
+ parent: 2
+ - uid: 170
+ components:
+ - type: Transform
+ pos: -4.5,-6.5
+ parent: 2
+ - uid: 209
+ components:
+ - type: Transform
+ pos: 10.5,-3.5
+ parent: 2
+ - uid: 224
+ components:
+ - type: Transform
+ pos: 10.5,-2.5
+ parent: 2
+ - uid: 226
+ components:
+ - type: Transform
+ pos: -3.5,-6.5
+ parent: 2
+ - uid: 311
+ components:
+ - type: Transform
+ pos: -4.5,-8.5
+ parent: 2
+ - uid: 312
+ components:
+ - type: Transform
+ pos: -3.5,-8.5
+ parent: 2
+ - uid: 313
+ components:
+ - type: Transform
+ pos: -2.5,-8.5
+ parent: 2
+ - uid: 314
+ components:
+ - type: Transform
+ pos: -1.5,-8.5
+ parent: 2
+ - uid: 315
+ components:
+ - type: Transform
+ pos: -0.5,-8.5
+ parent: 2
+ - uid: 316
+ components:
+ - type: Transform
+ pos: -0.5,-9.5
+ parent: 2
+ - uid: 317
+ components:
+ - type: Transform
+ pos: -1.5,-9.5
+ parent: 2
+ - uid: 318
+ components:
+ - type: Transform
+ pos: -2.5,-9.5
+ parent: 2
+ - uid: 319
+ components:
+ - type: Transform
+ pos: -3.5,-9.5
+ parent: 2
+ - uid: 320
+ components:
+ - type: Transform
+ pos: -4.5,-9.5
+ parent: 2
+ - uid: 321
+ components:
+ - type: Transform
+ pos: 0.5,-8.5
+ parent: 2
+ - uid: 322
+ components:
+ - type: Transform
+ pos: -4.5,-5.5
+ parent: 2
+ - uid: 324
+ components:
+ - type: Transform
+ pos: -3.5,-7.5
+ parent: 2
+ - uid: 491
+ components:
+ - type: Transform
+ pos: -5.5,-0.5
+ parent: 2
+ - uid: 507
+ components:
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 2
+ - uid: 508
+ components:
+ - type: Transform
+ pos: -1.5,4.5
+ parent: 2
+ - uid: 509
+ components:
+ - type: Transform
+ pos: -0.5,4.5
+ parent: 2
+ - uid: 510
+ components:
+ - type: Transform
+ pos: 7.5,4.5
+ parent: 2
+ - uid: 511
+ components:
+ - type: Transform
+ pos: 8.5,4.5
+ parent: 2
+ - uid: 512
+ components:
+ - type: Transform
+ pos: 9.5,4.5
+ parent: 2
+ - uid: 513
+ components:
+ - type: Transform
+ pos: 12.5,-7.5
+ parent: 2
+ - uid: 514
+ components:
+ - type: Transform
+ pos: 12.5,-6.5
+ parent: 2
+ - uid: 515
+ components:
+ - type: Transform
+ pos: 12.5,-5.5
+ parent: 2
+ - uid: 516
+ components:
+ - type: Transform
+ pos: 12.5,-4.5
+ parent: 2
+ - uid: 517
+ components:
+ - type: Transform
+ pos: -2.5,-6.5
+ parent: 2
+ - uid: 518
+ components:
+ - type: Transform
+ pos: -2.5,-5.5
+ parent: 2
+ - uid: 519
+ components:
+ - type: Transform
+ pos: -2.5,-4.5
+ parent: 2
+ - uid: 520
+ components:
+ - type: Transform
+ pos: -3.5,-4.5
+ parent: 2
+ - uid: 521
+ components:
+ - type: Transform
+ pos: -3.5,-3.5
+ parent: 2
+ - uid: 522
+ components:
+ - type: Transform
+ pos: -3.5,-2.5
+ parent: 2
+ - uid: 523
+ components:
+ - type: Transform
+ pos: -3.5,-1.5
+ parent: 2
+ - uid: 524
+ components:
+ - type: Transform
+ pos: -2.5,-1.5
+ parent: 2
+ - uid: 525
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 2
+ - uid: 526
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 2
+ - uid: 527
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 2
+ - uid: 528
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 2
+ - uid: 529
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 2
+ - uid: 530
+ components:
+ - type: Transform
+ pos: 3.5,-1.5
+ parent: 2
+ - uid: 531
+ components:
+ - type: Transform
+ pos: 4.5,-1.5
+ parent: 2
+ - uid: 532
+ components:
+ - type: Transform
+ pos: 5.5,-1.5
+ parent: 2
+ - uid: 533
+ components:
+ - type: Transform
+ pos: 6.5,-1.5
+ parent: 2
+ - uid: 534
+ components:
+ - type: Transform
+ pos: 7.5,-1.5
+ parent: 2
+ - uid: 535
+ components:
+ - type: Transform
+ pos: 8.5,-1.5
+ parent: 2
+ - uid: 536
+ components:
+ - type: Transform
+ pos: 9.5,-1.5
+ parent: 2
+ - uid: 537
+ components:
+ - type: Transform
+ pos: -4.5,-0.5
+ parent: 2
+ - uid: 538
+ components:
+ - type: Transform
+ pos: 12.5,-0.5
+ parent: 2
+ - uid: 539
+ components:
+ - type: Transform
+ pos: 11.5,-0.5
+ parent: 2
+ - uid: 541
+ components:
+ - type: Transform
+ pos: 11.5,-4.5
+ parent: 2
+ - uid: 542
+ components:
+ - type: Transform
+ pos: 7.5,3.5
+ parent: 2
+ - uid: 543
+ components:
+ - type: Transform
+ pos: 7.5,2.5
+ parent: 2
+ - uid: 544
+ components:
+ - type: Transform
+ pos: 7.5,1.5
+ parent: 2
+ - uid: 545
+ components:
+ - type: Transform
+ pos: 7.5,0.5
+ parent: 2
+ - uid: 546
+ components:
+ - type: Transform
+ pos: 7.5,-0.5
+ parent: 2
+ - uid: 547
+ components:
+ - type: Transform
+ pos: -0.5,3.5
+ parent: 2
+ - uid: 548
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 2
+ - uid: 549
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 2
+ - uid: 550
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 2
+ - uid: 551
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 2
+ - uid: 620
+ components:
+ - type: Transform
+ pos: -11.5,-1.5
+ parent: 2
+ - uid: 621
+ components:
+ - type: Transform
+ pos: -11.5,-2.5
+ parent: 2
+ - uid: 622
+ components:
+ - type: Transform
+ pos: -10.5,-1.5
+ parent: 2
+ - uid: 623
+ components:
+ - type: Transform
+ pos: -10.5,-2.5
+ parent: 2
+ - uid: 624
+ components:
+ - type: Transform
+ pos: -9.5,-1.5
+ parent: 2
+ - uid: 625
+ components:
+ - type: Transform
+ pos: -9.5,-2.5
+ parent: 2
+ - uid: 626
+ components:
+ - type: Transform
+ pos: -8.5,-1.5
+ parent: 2
+ - uid: 627
+ components:
+ - type: Transform
+ pos: -8.5,-2.5
+ parent: 2
+ - uid: 628
+ components:
+ - type: Transform
+ pos: -7.5,-1.5
+ parent: 2
+ - uid: 629
+ components:
+ - type: Transform
+ pos: -7.5,-2.5
+ parent: 2
+ - uid: 630
+ components:
+ - type: Transform
+ pos: -6.5,-1.5
+ parent: 2
+ - uid: 631
+ components:
+ - type: Transform
+ pos: -6.5,-2.5
+ parent: 2
+ - uid: 632
+ components:
+ - type: Transform
+ pos: -6.5,1.5
+ parent: 2
+ - uid: 633
+ components:
+ - type: Transform
+ pos: -6.5,0.5
+ parent: 2
+ - uid: 634
+ components:
+ - type: Transform
+ pos: -7.5,1.5
+ parent: 2
+ - uid: 635
+ components:
+ - type: Transform
+ pos: -7.5,0.5
+ parent: 2
+ - uid: 636
+ components:
+ - type: Transform
+ pos: -8.5,1.5
+ parent: 2
+ - uid: 637
+ components:
+ - type: Transform
+ pos: -8.5,0.5
+ parent: 2
+ - uid: 638
+ components:
+ - type: Transform
+ pos: -9.5,1.5
+ parent: 2
+ - uid: 639
+ components:
+ - type: Transform
+ pos: -9.5,0.5
+ parent: 2
+ - uid: 640
+ components:
+ - type: Transform
+ pos: -10.5,1.5
+ parent: 2
+ - uid: 641
+ components:
+ - type: Transform
+ pos: -10.5,0.5
+ parent: 2
+ - uid: 642
+ components:
+ - type: Transform
+ pos: -11.5,1.5
+ parent: 2
+ - uid: 643
+ components:
+ - type: Transform
+ pos: -11.5,0.5
+ parent: 2
+ - uid: 644
+ components:
+ - type: Transform
+ pos: 13.5,1.5
+ parent: 2
+ - uid: 645
+ components:
+ - type: Transform
+ pos: 13.5,0.5
+ parent: 2
+ - uid: 646
+ components:
+ - type: Transform
+ pos: 14.5,1.5
+ parent: 2
+ - uid: 647
+ components:
+ - type: Transform
+ pos: 14.5,0.5
+ parent: 2
+ - uid: 648
+ components:
+ - type: Transform
+ pos: 15.5,1.5
+ parent: 2
+ - uid: 649
+ components:
+ - type: Transform
+ pos: 15.5,0.5
+ parent: 2
+ - uid: 650
+ components:
+ - type: Transform
+ pos: 16.5,1.5
+ parent: 2
+ - uid: 651
+ components:
+ - type: Transform
+ pos: 16.5,0.5
+ parent: 2
+ - uid: 652
+ components:
+ - type: Transform
+ pos: 17.5,1.5
+ parent: 2
+ - uid: 653
+ components:
+ - type: Transform
+ pos: 17.5,0.5
+ parent: 2
+ - uid: 654
+ components:
+ - type: Transform
+ pos: 18.5,1.5
+ parent: 2
+ - uid: 655
+ components:
+ - type: Transform
+ pos: 18.5,0.5
+ parent: 2
+ - uid: 656
+ components:
+ - type: Transform
+ pos: 18.5,-1.5
+ parent: 2
+ - uid: 657
+ components:
+ - type: Transform
+ pos: 18.5,-2.5
+ parent: 2
+ - uid: 658
+ components:
+ - type: Transform
+ pos: 17.5,-1.5
+ parent: 2
+ - uid: 659
+ components:
+ - type: Transform
+ pos: 17.5,-2.5
+ parent: 2
+ - uid: 660
+ components:
+ - type: Transform
+ pos: 16.5,-1.5
+ parent: 2
+ - uid: 661
+ components:
+ - type: Transform
+ pos: 16.5,-2.5
+ parent: 2
+ - uid: 662
+ components:
+ - type: Transform
+ pos: 15.5,-1.5
+ parent: 2
+ - uid: 663
+ components:
+ - type: Transform
+ pos: 15.5,-2.5
+ parent: 2
+ - uid: 664
+ components:
+ - type: Transform
+ pos: 14.5,-1.5
+ parent: 2
+ - uid: 665
+ components:
+ - type: Transform
+ pos: 14.5,-2.5
+ parent: 2
+ - uid: 666
+ components:
+ - type: Transform
+ pos: 13.5,-1.5
+ parent: 2
+ - uid: 667
+ components:
+ - type: Transform
+ pos: 13.5,-2.5
+ parent: 2
+ - uid: 668
+ components:
+ - type: Transform
+ pos: 13.5,-0.5
+ parent: 2
+ - uid: 669
+ components:
+ - type: Transform
+ pos: 17.5,-0.5
+ parent: 2
+ - uid: 672
+ components:
+ - type: Transform
+ pos: -6.5,-0.5
+ parent: 2
+ - uid: 673
+ components:
+ - type: Transform
+ pos: -10.5,-0.5
+ parent: 2
+ - uid: 675
+ components:
+ - type: Transform
+ pos: -4.5,-1.5
+ parent: 2
+ - uid: 676
+ components:
+ - type: Transform
+ pos: -1.5,-6.5
+ parent: 2
+- proto: CableMV
+ entities:
+ - uid: 336
+ components:
+ - type: Transform
+ pos: 6.5,2.5
+ parent: 2
+ - uid: 337
+ components:
+ - type: Transform
+ pos: 7.5,2.5
+ parent: 2
+ - uid: 338
+ components:
+ - type: Transform
+ pos: 8.5,2.5
+ parent: 2
+ - uid: 339
+ components:
+ - type: Transform
+ pos: 8.5,1.5
+ parent: 2
+ - uid: 340
+ components:
+ - type: Transform
+ pos: 8.5,0.5
+ parent: 2
+ - uid: 341
+ components:
+ - type: Transform
+ pos: 8.5,-0.5
+ parent: 2
+ - uid: 342
+ components:
+ - type: Transform
+ pos: 8.5,-1.5
+ parent: 2
+ - uid: 343
+ components:
+ - type: Transform
+ pos: 7.5,-1.5
+ parent: 2
+ - uid: 344
+ components:
+ - type: Transform
+ pos: 6.5,-1.5
+ parent: 2
+ - uid: 345
+ components:
+ - type: Transform
+ pos: 5.5,-1.5
+ parent: 2
+ - uid: 346
+ components:
+ - type: Transform
+ pos: 4.5,-1.5
+ parent: 2
+ - uid: 347
+ components:
+ - type: Transform
+ pos: 3.5,-1.5
+ parent: 2
+ - uid: 348
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 2
+ - uid: 349
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 2
+ - uid: 350
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 2
+ - uid: 351
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 2
+ - uid: 352
+ components:
+ - type: Transform
+ pos: -3.5,-3.5
+ parent: 2
+ - uid: 353
+ components:
+ - type: Transform
+ pos: -3.5,-2.5
+ parent: 2
+ - uid: 354
+ components:
+ - type: Transform
+ pos: -3.5,-1.5
+ parent: 2
+ - uid: 355
+ components:
+ - type: Transform
+ pos: -2.5,-1.5
+ parent: 2
+ - uid: 356
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 2
+ - uid: 357
+ components:
+ - type: Transform
+ pos: -3.5,-4.5
+ parent: 2
+ - uid: 358
+ components:
+ - type: Transform
+ pos: -3.5,-5.5
+ parent: 2
+ - uid: 359
+ components:
+ - type: Transform
+ pos: -4.5,-5.5
+ parent: 2
+ - uid: 360
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 2
+ - uid: 361
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 2
+ - uid: 362
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 2
+ - uid: 363
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 2
+ - uid: 364
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 2
+- proto: CableTerminal
+ entities:
+ - uid: 99
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-6.5
+ parent: 2
+- proto: CarpetBlack
+ entities:
+ - uid: 218
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,0.5
+ parent: 2
+ - uid: 238
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,1.5
+ parent: 2
+ - uid: 303
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-0.5
+ parent: 2
+ - uid: 486
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 2
+- proto: Catwalk
+ entities:
+ - uid: 15
+ components:
+ - type: Transform
+ pos: 4.5,1.5
+ parent: 2
+ - uid: 16
+ components:
+ - type: Transform
+ pos: 3.5,1.5
+ parent: 2
+ - uid: 32
+ components:
+ - type: Transform
+ pos: 2.5,-3.5
+ parent: 2
+ - uid: 33
+ components:
+ - type: Transform
+ pos: 3.5,-3.5
+ parent: 2
+ - uid: 34
+ components:
+ - type: Transform
+ pos: 4.5,-3.5
+ parent: 2
+ - uid: 197
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 2
+ - uid: 208
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-7.5
+ parent: 2
+ - uid: 258
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,4.5
+ parent: 2
+ - uid: 259
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,4.5
+ parent: 2
+ - uid: 260
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,4.5
+ parent: 2
+ - uid: 261
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,4.5
+ parent: 2
+ - uid: 262
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,4.5
+ parent: 2
+ - uid: 263
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,4.5
+ parent: 2
+ - uid: 264
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-8.5
+ parent: 2
+ - uid: 265
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-9.5
+ parent: 2
+ - uid: 266
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-8.5
+ parent: 2
+ - uid: 267
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-9.5
+ parent: 2
+ - uid: 552
+ components:
+ - type: Transform
+ pos: -10.5,1.5
+ parent: 2
+ - uid: 553
+ components:
+ - type: Transform
+ pos: -10.5,0.5
+ parent: 2
+ - uid: 554
+ components:
+ - type: Transform
+ pos: -10.5,-0.5
+ parent: 2
+ - uid: 555
+ components:
+ - type: Transform
+ pos: -10.5,-1.5
+ parent: 2
+ - uid: 556
+ components:
+ - type: Transform
+ pos: -10.5,-2.5
+ parent: 2
+ - uid: 557
+ components:
+ - type: Transform
+ pos: -6.5,1.5
+ parent: 2
+ - uid: 558
+ components:
+ - type: Transform
+ pos: -6.5,0.5
+ parent: 2
+ - uid: 559
+ components:
+ - type: Transform
+ pos: -6.5,-0.5
+ parent: 2
+ - uid: 560
+ components:
+ - type: Transform
+ pos: -6.5,-1.5
+ parent: 2
+ - uid: 561
+ components:
+ - type: Transform
+ pos: -6.5,-2.5
+ parent: 2
+ - uid: 562
+ components:
+ - type: Transform
+ pos: 13.5,1.5
+ parent: 2
+ - uid: 563
+ components:
+ - type: Transform
+ pos: 13.5,0.5
+ parent: 2
+ - uid: 564
+ components:
+ - type: Transform
+ pos: 13.5,-0.5
+ parent: 2
+ - uid: 565
+ components:
+ - type: Transform
+ pos: 13.5,-1.5
+ parent: 2
+ - uid: 566
+ components:
+ - type: Transform
+ pos: 13.5,-2.5
+ parent: 2
+ - uid: 567
+ components:
+ - type: Transform
+ pos: 17.5,1.5
+ parent: 2
+ - uid: 568
+ components:
+ - type: Transform
+ pos: 17.5,0.5
+ parent: 2
+ - uid: 569
+ components:
+ - type: Transform
+ pos: 17.5,-0.5
+ parent: 2
+ - uid: 570
+ components:
+ - type: Transform
+ pos: 17.5,-1.5
+ parent: 2
+ - uid: 571
+ components:
+ - type: Transform
+ pos: 17.5,-2.5
+ parent: 2
+- proto: ChairOfficeLight
+ entities:
+ - uid: 216
+ components:
+ - type: Transform
+ pos: 10.5,-1.5
+ parent: 2
+- proto: ChairPilotSeat
+ entities:
+ - uid: 269
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-5.5
+ parent: 2
+- proto: CircuitImprinter
+ entities:
+ - uid: 277
+ components:
+ - type: Transform
+ pos: 7.5,1.5
+ parent: 2
+- proto: ClothingNeckScarfStripedPurple
+ entities:
+ - uid: 473
+ components:
+ - type: Transform
+ pos: 10.471153,-1.6616642
+ parent: 2
+- proto: ComputerTabletopAnalysisConsole
+ entities:
+ - uid: 283
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-3.5
+ parent: 2
+- proto: ComputerTabletopRadar
+ entities:
+ - uid: 20
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-5.5
+ parent: 2
+- proto: ComputerTabletopResearchAndDevelopment
+ entities:
+ - uid: 219
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-2.5
+ parent: 2
+- proto: ComputerTabletopShuttle
+ entities:
+ - uid: 163
+ components:
+ - type: Transform
+ pos: -1.5,-4.5
+ parent: 2
+- proto: ComputerTabletopSolarControl
+ entities:
+ - uid: 403
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-6.5
+ parent: 2
+- proto: ComputerTabletopStationRecords
+ entities:
+ - uid: 161
+ components:
+ - type: Transform
+ pos: -0.5,-4.5
+ parent: 2
+- proto: ComputerWallmountWithdrawBankATM
+ entities:
+ - uid: 23
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 2
+ - type: Physics
+ canCollide: False
+ - type: ContainerContainer
+ containers:
+ board: !type:Container
+ ents: []
+ bank-ATM-cashSlot: !type:ContainerSlot {}
+ - type: ItemSlots
+- proto: ConveyorBelt
+ entities:
+ - uid: 3
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,1.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 18
+ - uid: 4
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,1.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 18
+ - uid: 5
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,2.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 18
+ - uid: 6
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,2.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 18
+ - uid: 447
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,3.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 18
+ - uid: 448
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,4.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 18
+ - uid: 449
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,5.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 18
+ - uid: 450
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,6.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 18
+ - uid: 451
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,6.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 18
+ - uid: 452
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,5.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 18
+ - uid: 453
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,4.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 18
+ - uid: 454
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,3.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 18
+- proto: CrateArtifactContainer
+ entities:
+ - uid: 98
+ components:
+ - type: Transform
+ pos: 5.5,-0.5
+ parent: 2
+ - uid: 671
+ components:
+ - type: Transform
+ pos: 11.5,0.5
+ parent: 2
+- proto: CrateMaterialPlasma
+ entities:
+ - uid: 325
+ components:
+ - type: Transform
+ pos: 2.5,-0.5
+ parent: 2
+- proto: Crowbar
+ entities:
+ - uid: 286
+ components:
+ - type: Transform
+ pos: 10.5,-2.5
+ parent: 2
+- proto: DefibrillatorCabinetFilled
+ entities:
+ - uid: 495
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-1.5
+ parent: 2
+- proto: DonkpocketBoxSpawner
+ entities:
+ - uid: 282
+ components:
+ - type: Transform
+ pos: 7.5,-2.5
+ parent: 2
+- proto: DrinkGlass
+ entities:
+ - uid: 107
+ components:
+ - type: Transform
+ pos: -2.845461,2.488087
+ parent: 2
+ - uid: 108
+ components:
+ - type: Transform
+ pos: -2.720461,2.331837
+ parent: 2
+- proto: ExtinguisherCabinetFilled
+ entities:
+ - uid: 496
+ components:
+ - type: Transform
+ pos: 12.5,-1.5
+ parent: 2
+- proto: FaxMachineShip
+ entities:
+ - uid: 703
+ components:
+ - type: Transform
+ pos: -2.5,-4.5
+ parent: 2
+- proto: Firelock
+ entities:
+ - uid: 307
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-3.5
+ parent: 2
+ - uid: 308
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-1.5
+ parent: 2
+ - uid: 309
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-1.5
+ parent: 2
+- proto: FirelockEdge
+ entities:
+ - uid: 76
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-4.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 251
+ - uid: 167
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,-4.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 251
+ - uid: 198
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-4.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 251
+- proto: FolderSpawner
+ entities:
+ - uid: 230
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.1202755,-3.003404
+ parent: 2
+- proto: GasPassiveVent
+ entities:
+ - uid: 178
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-4.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 492
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-6.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+- proto: GasPipeBend
+ entities:
+ - uid: 41
+ components:
+ - type: Transform
+ pos: -1.5,0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 250
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 288
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 326
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+- proto: GasPipeStraight
+ entities:
+ - uid: 8
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 9
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 124
+ components:
+ - type: Transform
+ pos: 8.5,-5.5
+ parent: 2
+ - uid: 228
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 229
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 236
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 239
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 240
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 241
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 242
+ components:
+ - type: Transform
+ pos: -2.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 243
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 244
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 245
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 247
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 248
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 249
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 254
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 272
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 290
+ components:
+ - type: Transform
+ pos: -1.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 291
+ components:
+ - type: Transform
+ pos: -1.5,-3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 292
+ components:
+ - type: Transform
+ pos: -1.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 293
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 295
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 299
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 300
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 301
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 302
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 464
+ components:
+ - type: Transform
+ pos: 4.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 493
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+- proto: GasPipeTJunction
+ entities:
+ - uid: 234
+ components:
+ - type: Transform
+ pos: 3.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 235
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 246
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 253
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 281
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 297
+ components:
+ - type: Transform
+ pos: 4.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+- proto: GasPort
+ entities:
+ - uid: 278
+ components:
+ - type: Transform
+ pos: 8.5,-3.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 494
+ components:
+ - type: Transform
+ pos: -4.5,-4.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+- proto: GasPressurePump
+ entities:
+ - uid: 111
+ components:
+ - type: MetaData
+ name: distro pump
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-5.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 279
+ components:
+ - type: Transform
+ pos: 8.5,-4.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+- proto: GasVentPump
+ entities:
+ - uid: 274
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-2.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 251
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 289
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-6.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 252
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 294
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-0.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 251
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 298
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,0.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 252
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+- proto: GasVentScrubber
+ entities:
+ - uid: 237
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-6.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 252
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 273
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-2.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 252
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 280
+ components:
+ - type: Transform
+ pos: 7.5,0.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 251
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 304
+ components:
+ - type: Transform
+ pos: -2.5,-0.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 252
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+- proto: GravityGeneratorMini
+ entities:
+ - uid: 471
+ components:
+ - type: Transform
+ pos: -0.5,-6.5
+ parent: 2
+- proto: Grille
+ entities:
+ - uid: 86
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,3.5
+ parent: 2
+ - uid: 87
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,3.5
+ parent: 2
+ - uid: 89
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,3.5
+ parent: 2
+ - uid: 92
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,3.5
+ parent: 2
+ - uid: 93
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,3.5
+ parent: 2
+ - uid: 94
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,3.5
+ parent: 2
+ - uid: 112
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 2
+ - uid: 113
+ components:
+ - type: Transform
+ pos: 6.5,-0.5
+ parent: 2
+ - uid: 122
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-9.5
+ parent: 2
+ - uid: 150
+ components:
+ - type: Transform
+ pos: -5.5,-6.5
+ parent: 2
+ - uid: 151
+ components:
+ - type: Transform
+ pos: -5.5,-5.5
+ parent: 2
+ - uid: 152
+ components:
+ - type: Transform
+ pos: 0.5,-6.5
+ parent: 2
+ - uid: 153
+ components:
+ - type: Transform
+ pos: 0.5,-5.5
+ parent: 2
+ - uid: 154
+ components:
+ - type: Transform
+ pos: -1.5,-7.5
+ parent: 2
+ - uid: 155
+ components:
+ - type: Transform
+ pos: -2.5,-7.5
+ parent: 2
+ - uid: 156
+ components:
+ - type: Transform
+ pos: -3.5,-7.5
+ parent: 2
+ - uid: 162
+ components:
+ - type: Transform
+ pos: 7.5,-4.5
+ parent: 2
+ - uid: 164
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-5.5
+ parent: 2
+ - uid: 165
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-5.5
+ parent: 2
+ - uid: 166
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-7.5
+ parent: 2
+ - uid: 169
+ components:
+ - type: Transform
+ pos: 11.5,-4.5
+ parent: 2
+ - uid: 176
+ components:
+ - type: Transform
+ pos: 0.5,5.5
+ parent: 2
+ - uid: 310
+ components:
+ - type: Transform
+ pos: 12.5,-0.5
+ parent: 2
+ - uid: 329
+ components:
+ - type: Transform
+ pos: -5.5,-0.5
+ parent: 2
+ - uid: 420
+ components:
+ - type: Transform
+ pos: -2.5,-3.5
+ parent: 2
+ - uid: 459
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 2
+ - uid: 460
+ components:
+ - type: Transform
+ pos: 6.5,5.5
+ parent: 2
+ - uid: 461
+ components:
+ - type: Transform
+ pos: 6.5,4.5
+ parent: 2
+ - uid: 670
+ components:
+ - type: Transform
+ pos: -1.5,-3.5
+ parent: 2
+ - uid: 691
+ components:
+ - type: Transform
+ pos: 3.5,3.5
+ parent: 2
+- proto: Gyroscope
+ entities:
+ - uid: 207
+ components:
+ - type: Transform
+ pos: 6.5,-4.5
+ parent: 2
+- proto: IntercomScience
+ entities:
+ - uid: 43
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,0.5
+ parent: 2
+- proto: KitchenMicrowave
+ entities:
+ - uid: 222
+ components:
+ - type: Transform
+ pos: 9.5,2.5
+ parent: 2
+- proto: Lamp
+ entities:
+ - uid: 105
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.3664355,-0.08267355
+ parent: 2
+- proto: LockerResearchDirectorFilled
+ entities:
+ - uid: 422
+ components:
+ - type: Transform
+ pos: 7.5,-0.5
+ parent: 2
+- proto: LockerSalvageSpecialistFilled
+ entities:
+ - uid: 210
+ components:
+ - type: Transform
+ pos: -1.5,-2.5
+ parent: 2
+- proto: MachineArtifactAnalyzer
+ entities:
+ - uid: 125
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-7.5
+ parent: 2
+- proto: Multitool
+ entities:
+ - uid: 172
+ components:
+ - type: Transform
+ pos: 10.5,-2.5
+ parent: 2
+- proto: OreProcessor
+ entities:
+ - uid: 470
+ components:
+ - type: Transform
+ pos: 1.5,-2.5
+ parent: 2
+- proto: PaperOffice
+ entities:
+ - uid: 704
+ components:
+ - type: Transform
+ pos: -2.514917,-4.8300157
+ parent: 2
+- proto: PlasticFlapsAirtightClear
+ entities:
+ - uid: 455
+ components:
+ - type: Transform
+ pos: 1.5,6.5
+ parent: 2
+ - uid: 456
+ components:
+ - type: Transform
+ pos: 5.5,6.5
+ parent: 2
+ - uid: 684
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,3.5
+ parent: 2
+ - uid: 685
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,3.5
+ parent: 2
+- proto: PortableGeneratorPacmanShuttle
+ entities:
+ - uid: 323
+ components:
+ - type: Transform
+ pos: -2.5,-6.5
+ parent: 2
+ - type: FuelGenerator
+ on: False
+ - type: Physics
+ bodyType: Static
+ - uid: 331
+ components:
+ - type: Transform
+ pos: -3.5,-6.5
+ parent: 2
+ - type: FuelGenerator
+ on: False
+ - type: Physics
+ bodyType: Static
+- proto: PowerCellRecharger
+ entities:
+ - uid: 104
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,2.5
+ parent: 2
+- proto: Poweredlight
+ entities:
+ - uid: 14
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,5.5
+ parent: 2
+ - uid: 47
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -1.5,-4.5
+ parent: 2
+ - uid: 53
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,0.5
+ parent: 2
+ - uid: 90
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,0.5
+ parent: 2
+ - uid: 173
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-8.5
+ parent: 2
+- proto: PoweredSmallLight
+ entities:
+ - uid: 22
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-2.5
+ parent: 2
+ - uid: 26
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-2.5
+ parent: 2
+ - uid: 215
+ components:
+ - type: Transform
+ pos: 11.5,2.5
+ parent: 2
+ - uid: 699
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-0.5
+ parent: 2
+ - uid: 700
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-0.5
+ parent: 2
+- proto: Protolathe
+ entities:
+ - uid: 220
+ components:
+ - type: Transform
+ pos: 7.5,2.5
+ parent: 2
+- proto: Railing
+ entities:
+ - uid: 85
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-4.5
+ parent: 2
+ - uid: 468
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-4.5
+ parent: 2
+- proto: RandomDrinkGlass
+ entities:
+ - uid: 19
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 2
+- proto: RandomPosterLegit
+ entities:
+ - uid: 474
+ components:
+ - type: Transform
+ pos: -5.5,0.5
+ parent: 2
+ - uid: 475
+ components:
+ - type: Transform
+ pos: -5.5,1.5
+ parent: 2
+ - uid: 477
+ components:
+ - type: Transform
+ pos: 12.5,0.5
+ parent: 2
+ - uid: 478
+ components:
+ - type: Transform
+ pos: 12.5,1.5
+ parent: 2
+- proto: ReinforcedPlasmaWindow
+ entities:
+ - uid: 255
+ components:
+ - type: Transform
+ pos: 8.5,-5.5
+ parent: 2
+ - uid: 268
+ components:
+ - type: Transform
+ pos: 10.5,-5.5
+ parent: 2
+ - uid: 271
+ components:
+ - type: Transform
+ pos: 11.5,-7.5
+ parent: 2
+ - uid: 276
+ components:
+ - type: Transform
+ pos: 9.5,-9.5
+ parent: 2
+- proto: ReinforcedWindow
+ entities:
+ - uid: 10
+ components:
+ - type: Transform
+ pos: 0.5,5.5
+ parent: 2
+ - uid: 11
+ components:
+ - type: Transform
+ pos: 6.5,5.5
+ parent: 2
+ - uid: 12
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 2
+ - uid: 21
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 2
+ - uid: 25
+ components:
+ - type: Transform
+ pos: 6.5,-0.5
+ parent: 2
+ - uid: 63
+ components:
+ - type: Transform
+ pos: -2.5,3.5
+ parent: 2
+ - uid: 64
+ components:
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 2
+ - uid: 65
+ components:
+ - type: Transform
+ pos: -0.5,3.5
+ parent: 2
+ - uid: 66
+ components:
+ - type: Transform
+ pos: 7.5,3.5
+ parent: 2
+ - uid: 67
+ components:
+ - type: Transform
+ pos: 8.5,3.5
+ parent: 2
+ - uid: 68
+ components:
+ - type: Transform
+ pos: 9.5,3.5
+ parent: 2
+ - uid: 75
+ components:
+ - type: Transform
+ pos: 7.5,-4.5
+ parent: 2
+ - uid: 127
+ components:
+ - type: Transform
+ pos: -5.5,-6.5
+ parent: 2
+ - uid: 128
+ components:
+ - type: Transform
+ pos: -5.5,-5.5
+ parent: 2
+ - uid: 131
+ components:
+ - type: Transform
+ pos: -3.5,-7.5
+ parent: 2
+ - uid: 132
+ components:
+ - type: Transform
+ pos: -2.5,-7.5
+ parent: 2
+ - uid: 133
+ components:
+ - type: Transform
+ pos: -1.5,-7.5
+ parent: 2
+ - uid: 136
+ components:
+ - type: Transform
+ pos: 0.5,-5.5
+ parent: 2
+ - uid: 137
+ components:
+ - type: Transform
+ pos: 0.5,-6.5
+ parent: 2
+ - uid: 171
+ components:
+ - type: Transform
+ pos: 11.5,-4.5
+ parent: 2
+ - uid: 177
+ components:
+ - type: Transform
+ pos: 6.5,4.5
+ parent: 2
+ - uid: 192
+ components:
+ - type: Transform
+ pos: -1.5,-3.5
+ parent: 2
+ - uid: 487
+ components:
+ - type: Transform
+ pos: 12.5,-0.5
+ parent: 2
+ - uid: 489
+ components:
+ - type: Transform
+ pos: -5.5,-0.5
+ parent: 2
+ - uid: 686
+ components:
+ - type: Transform
+ pos: 3.5,3.5
+ parent: 2
+ - uid: 784
+ components:
+ - type: Transform
+ pos: -2.5,-3.5
+ parent: 2
+- proto: ResearchAndDevelopmentServer
+ entities:
+ - uid: 211
+ components:
+ - type: Transform
+ pos: 11.5,2.5
+ parent: 2
+- proto: ShuttersNormalOpen
+ entities:
+ - uid: 200
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-6.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 199
+ - uid: 201
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-5.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 199
+ - uid: 202
+ components:
+ - type: Transform
+ pos: -3.5,-7.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 199
+ - uid: 203
+ components:
+ - type: Transform
+ pos: -2.5,-7.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 199
+ - uid: 204
+ components:
+ - type: Transform
+ pos: -1.5,-7.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 199
+ - uid: 205
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-6.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 199
+ - uid: 206
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-5.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 199
+- proto: SignalButton
+ entities:
+ - uid: 199
+ components:
+ - type: MetaData
+ name: shutters button
+ - type: Transform
+ pos: -4.5,-3.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 201:
+ - Pressed: Toggle
+ 200:
+ - Pressed: Toggle
+ 202:
+ - Pressed: Toggle
+ 203:
+ - Pressed: Toggle
+ 204:
+ - Pressed: Toggle
+ 205:
+ - Pressed: Toggle
+ 206:
+ - Pressed: Toggle
+ - uid: 702
+ components:
+ - type: MetaData
+ name: blast door button
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-3.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 423:
+ - Pressed: Toggle
+- proto: SignalButtonDirectional
+ entities:
+ - uid: 469
+ components:
+ - type: MetaData
+ name: blast doors button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-3.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 91:
+ - Pressed: Toggle
+ 467:
+ - Pressed: Toggle
+ 88:
+ - Pressed: Toggle
+ - uid: 479
+ components:
+ - type: MetaData
+ name: conveyor doors button
+ - type: Transform
+ pos: 3.5,6.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 689:
+ - Pressed: Toggle
+ 688:
+ - Pressed: Toggle
+ 687:
+ - Pressed: Toggle
+ 690:
+ - Pressed: Toggle
+- proto: SignBar
+ entities:
+ - uid: 257
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-2.5
+ parent: 2
+- proto: SignMinerDock
+ entities:
+ - uid: 480
+ components:
+ - type: Transform
+ pos: 1.5,-3.5
+ parent: 2
+- proto: SignRND
+ entities:
+ - uid: 256
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-2.5
+ parent: 2
+- proto: SignShipDock
+ entities:
+ - uid: 481
+ components:
+ - type: Transform
+ pos: 0.5,6.5
+ parent: 2
+ - uid: 482
+ components:
+ - type: Transform
+ pos: 6.5,6.5
+ parent: 2
+- proto: Sink
+ entities:
+ - uid: 106
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,1.5
+ parent: 2
+- proto: SMESBasic
+ entities:
+ - uid: 287
+ components:
+ - type: Transform
+ pos: -4.5,-6.5
+ parent: 2
+- proto: SolarPanel
+ entities:
+ - uid: 139
+ components:
+ - type: Transform
+ pos: -4.5,-8.5
+ parent: 2
+ - uid: 140
+ components:
+ - type: Transform
+ pos: -3.5,-8.5
+ parent: 2
+ - uid: 141
+ components:
+ - type: Transform
+ pos: -1.5,-8.5
+ parent: 2
+ - uid: 142
+ components:
+ - type: Transform
+ pos: -2.5,-8.5
+ parent: 2
+ - uid: 143
+ components:
+ - type: Transform
+ pos: -0.5,-8.5
+ parent: 2
+ - uid: 144
+ components:
+ - type: Transform
+ pos: -0.5,-9.5
+ parent: 2
+ - uid: 145
+ components:
+ - type: Transform
+ pos: -1.5,-9.5
+ parent: 2
+ - uid: 146
+ components:
+ - type: Transform
+ pos: -2.5,-9.5
+ parent: 2
+ - uid: 147
+ components:
+ - type: Transform
+ pos: -3.5,-9.5
+ parent: 2
+ - uid: 148
+ components:
+ - type: Transform
+ pos: -4.5,-9.5
+ parent: 2
+ - uid: 497
+ components:
+ - type: Transform
+ pos: 12.5,-7.5
+ parent: 2
+ - uid: 498
+ components:
+ - type: Transform
+ pos: 12.5,-6.5
+ parent: 2
+ - uid: 499
+ components:
+ - type: Transform
+ pos: 12.5,-5.5
+ parent: 2
+ - uid: 500
+ components:
+ - type: Transform
+ pos: 12.5,-4.5
+ parent: 2
+ - uid: 501
+ components:
+ - type: Transform
+ pos: 9.5,4.5
+ parent: 2
+ - uid: 502
+ components:
+ - type: Transform
+ pos: 8.5,4.5
+ parent: 2
+ - uid: 503
+ components:
+ - type: Transform
+ pos: 7.5,4.5
+ parent: 2
+ - uid: 504
+ components:
+ - type: Transform
+ pos: -0.5,4.5
+ parent: 2
+ - uid: 505
+ components:
+ - type: Transform
+ pos: -1.5,4.5
+ parent: 2
+ - uid: 506
+ components:
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 2
+ - uid: 572
+ components:
+ - type: Transform
+ pos: 13.5,1.5
+ parent: 2
+ - uid: 573
+ components:
+ - type: Transform
+ pos: 13.5,0.5
+ parent: 2
+ - uid: 574
+ components:
+ - type: Transform
+ pos: 14.5,1.5
+ parent: 2
+ - uid: 575
+ components:
+ - type: Transform
+ pos: 14.5,0.5
+ parent: 2
+ - uid: 576
+ components:
+ - type: Transform
+ pos: 15.5,1.5
+ parent: 2
+ - uid: 577
+ components:
+ - type: Transform
+ pos: 15.5,0.5
+ parent: 2
+ - uid: 578
+ components:
+ - type: Transform
+ pos: 16.5,1.5
+ parent: 2
+ - uid: 579
+ components:
+ - type: Transform
+ pos: 16.5,0.5
+ parent: 2
+ - uid: 580
+ components:
+ - type: Transform
+ pos: 17.5,1.5
+ parent: 2
+ - uid: 581
+ components:
+ - type: Transform
+ pos: 17.5,0.5
+ parent: 2
+ - uid: 582
+ components:
+ - type: Transform
+ pos: 18.5,1.5
+ parent: 2
+ - uid: 583
+ components:
+ - type: Transform
+ pos: 18.5,0.5
+ parent: 2
+ - uid: 584
+ components:
+ - type: Transform
+ pos: 18.5,-1.5
+ parent: 2
+ - uid: 585
+ components:
+ - type: Transform
+ pos: 18.5,-2.5
+ parent: 2
+ - uid: 586
+ components:
+ - type: Transform
+ pos: 17.5,-1.5
+ parent: 2
+ - uid: 587
+ components:
+ - type: Transform
+ pos: 17.5,-2.5
+ parent: 2
+ - uid: 588
+ components:
+ - type: Transform
+ pos: 16.5,-1.5
+ parent: 2
+ - uid: 589
+ components:
+ - type: Transform
+ pos: 16.5,-2.5
+ parent: 2
+ - uid: 590
+ components:
+ - type: Transform
+ pos: 15.5,-1.5
+ parent: 2
+ - uid: 591
+ components:
+ - type: Transform
+ pos: 15.5,-2.5
+ parent: 2
+ - uid: 592
+ components:
+ - type: Transform
+ pos: 14.5,-1.5
+ parent: 2
+ - uid: 593
+ components:
+ - type: Transform
+ pos: 14.5,-2.5
+ parent: 2
+ - uid: 594
+ components:
+ - type: Transform
+ pos: 13.5,-1.5
+ parent: 2
+ - uid: 595
+ components:
+ - type: Transform
+ pos: 13.5,-2.5
+ parent: 2
+ - uid: 596
+ components:
+ - type: Transform
+ pos: -6.5,-1.5
+ parent: 2
+ - uid: 597
+ components:
+ - type: Transform
+ pos: -6.5,-2.5
+ parent: 2
+ - uid: 598
+ components:
+ - type: Transform
+ pos: -7.5,-1.5
+ parent: 2
+ - uid: 599
+ components:
+ - type: Transform
+ pos: -7.5,-2.5
+ parent: 2
+ - uid: 600
+ components:
+ - type: Transform
+ pos: -8.5,-1.5
+ parent: 2
+ - uid: 601
+ components:
+ - type: Transform
+ pos: -8.5,-2.5
+ parent: 2
+ - uid: 602
+ components:
+ - type: Transform
+ pos: -9.5,-1.5
+ parent: 2
+ - uid: 603
+ components:
+ - type: Transform
+ pos: -9.5,-2.5
+ parent: 2
+ - uid: 604
+ components:
+ - type: Transform
+ pos: -10.5,-1.5
+ parent: 2
+ - uid: 605
+ components:
+ - type: Transform
+ pos: -10.5,-2.5
+ parent: 2
+ - uid: 606
+ components:
+ - type: Transform
+ pos: -11.5,-1.5
+ parent: 2
+ - uid: 607
+ components:
+ - type: Transform
+ pos: -11.5,-2.5
+ parent: 2
+ - uid: 608
+ components:
+ - type: Transform
+ pos: -11.5,1.5
+ parent: 2
+ - uid: 609
+ components:
+ - type: Transform
+ pos: -11.5,0.5
+ parent: 2
+ - uid: 610
+ components:
+ - type: Transform
+ pos: -10.5,1.5
+ parent: 2
+ - uid: 611
+ components:
+ - type: Transform
+ pos: -9.5,1.5
+ parent: 2
+ - uid: 612
+ components:
+ - type: Transform
+ pos: -10.5,0.5
+ parent: 2
+ - uid: 613
+ components:
+ - type: Transform
+ pos: -9.5,0.5
+ parent: 2
+ - uid: 614
+ components:
+ - type: Transform
+ pos: -8.5,1.5
+ parent: 2
+ - uid: 615
+ components:
+ - type: Transform
+ pos: -8.5,0.5
+ parent: 2
+ - uid: 616
+ components:
+ - type: Transform
+ pos: -7.5,1.5
+ parent: 2
+ - uid: 617
+ components:
+ - type: Transform
+ pos: -7.5,0.5
+ parent: 2
+ - uid: 618
+ components:
+ - type: Transform
+ pos: -6.5,1.5
+ parent: 2
+ - uid: 619
+ components:
+ - type: Transform
+ pos: -6.5,0.5
+ parent: 2
+- proto: SolarTracker
+ entities:
+ - uid: 149
+ components:
+ - type: Transform
+ pos: 0.5,-8.5
+ parent: 2
+- proto: SpawnPointBartender
+ entities:
+ - uid: 109
+ components:
+ - type: Transform
+ pos: -3.5,1.5
+ parent: 2
+- proto: SpawnPointLatejoin
+ entities:
+ - uid: 694
+ components:
+ - type: Transform
+ pos: 3.5,-2.5
+ parent: 2
+- proto: SpawnPointSalvageSpecialist
+ entities:
+ - uid: 194
+ components:
+ - type: Transform
+ pos: 2.5,-2.5
+ parent: 2
+ - uid: 195
+ components:
+ - type: Transform
+ pos: 4.5,-2.5
+ parent: 2
+- proto: SpawnPointScientist
+ entities:
+ - uid: 332
+ components:
+ - type: Transform
+ pos: 8.5,0.5
+ parent: 2
+- proto: StoolBar
+ entities:
+ - uid: 100
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-0.5
+ parent: 2
+ - uid: 101
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,0.5
+ parent: 2
+ - uid: 102
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,1.5
+ parent: 2
+ - uid: 103
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,2.5
+ parent: 2
+- proto: SubstationBasic
+ entities:
+ - uid: 270
+ components:
+ - type: Transform
+ pos: -4.5,-5.5
+ parent: 2
+- proto: SuitStorageRD
+ entities:
+ - uid: 305
+ components:
+ - type: Transform
+ pos: 7.5,0.5
+ parent: 2
+- proto: SuitStorageSalv
+ entities:
+ - uid: 421
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 2
+- proto: Table
+ entities:
+ - uid: 223
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,2.5
+ parent: 2
+- proto: TableReinforced
+ entities:
+ - uid: 27
+ components:
+ - type: Transform
+ pos: -0.5,-4.5
+ parent: 2
+ - uid: 28
+ components:
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 2
+ - uid: 29
+ components:
+ - type: Transform
+ pos: -2.5,-4.5
+ parent: 2
+ - uid: 37
+ components:
+ - type: Transform
+ pos: -1.5,-4.5
+ parent: 2
+ - uid: 114
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-3.5
+ parent: 2
+ - uid: 168
+ components:
+ - type: Transform
+ pos: 10.5,-2.5
+ parent: 2
+ - uid: 175
+ components:
+ - type: Transform
+ pos: 11.5,-2.5
+ parent: 2
+ - uid: 327
+ components:
+ - type: Transform
+ pos: -1.5,-6.5
+ parent: 2
+ - uid: 330
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-2.5
+ parent: 2
+- proto: TableWoodReinforced
+ entities:
+ - uid: 38
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-0.5
+ parent: 2
+ - uid: 39
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,1.5
+ parent: 2
+ - uid: 40
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,0.5
+ parent: 2
+ - uid: 54
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,2.5
+ parent: 2
+ - uid: 443
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-0.5
+ parent: 2
+ - uid: 483
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,2.5
+ parent: 2
+- proto: Thruster
+ entities:
+ - uid: 179
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-4.5
+ parent: 2
+ - uid: 180
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-4.5
+ parent: 2
+ - uid: 181
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-8.5
+ parent: 2
+ - uid: 182
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-9.5
+ parent: 2
+ - uid: 183
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-8.5
+ parent: 2
+ - uid: 184
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-9.5
+ parent: 2
+ - uid: 185
+ components:
+ - type: Transform
+ pos: 11.5,4.5
+ parent: 2
+ - uid: 186
+ components:
+ - type: Transform
+ pos: -3.5,4.5
+ parent: 2
+ - uid: 187
+ components:
+ - type: Transform
+ pos: 10.5,4.5
+ parent: 2
+ - uid: 188
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,4.5
+ parent: 2
+ - uid: 189
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,4.5
+ parent: 2
+ - uid: 190
+ components:
+ - type: Transform
+ pos: -4.5,4.5
+ parent: 2
+- proto: TwoWayLever
+ entities:
+ - uid: 18
+ components:
+ - type: MetaData
+ name: conveyor lever
+ - type: Transform
+ pos: 3.5,0.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 3:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 6:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 4:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 5:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 447:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 448:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 449:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 454:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 453:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 452:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 451:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 450:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+- proto: VendingMachineBooze
+ entities:
+ - uid: 705
+ components:
+ - type: Transform
+ pos: -3.5,2.5
+ parent: 2
+- proto: VendingMachineCargoDrobe
+ entities:
+ - uid: 196
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 2
+- proto: VendingMachineSalvage
+ entities:
+ - uid: 419
+ components:
+ - type: Transform
+ pos: -4.5,-2.5
+ parent: 2
+- proto: WallReinforced
+ entities:
+ - uid: 13
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 6.5,6.5
+ parent: 2
+ - uid: 30
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 2
+ - uid: 31
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 1.5,-3.5
+ parent: 2
+ - uid: 35
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 5.5,-3.5
+ parent: 2
+ - uid: 36
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 6.5,-3.5
+ parent: 2
+ - uid: 49
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-3.5
+ parent: 2
+ - uid: 50
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-2.5
+ parent: 2
+ - uid: 51
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-1.5
+ parent: 2
+ - uid: 57
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,3.5
+ parent: 2
+ - uid: 58
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,3.5
+ parent: 2
+ - uid: 59
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -4.5,3.5
+ parent: 2
+ - uid: 60
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -5.5,3.5
+ parent: 2
+ - uid: 61
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -5.5,2.5
+ parent: 2
+ - uid: 62
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -5.5,1.5
+ parent: 2
+ - uid: 69
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 6.5,3.5
+ parent: 2
+ - uid: 70
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 10.5,3.5
+ parent: 2
+ - uid: 71
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 11.5,3.5
+ parent: 2
+ - uid: 73
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 11.5,-3.5
+ parent: 2
+ - uid: 77
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 12.5,-3.5
+ parent: 2
+ - uid: 78
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 12.5,-2.5
+ parent: 2
+ - uid: 79
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 12.5,-1.5
+ parent: 2
+ - uid: 81
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 12.5,0.5
+ parent: 2
+ - uid: 82
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 12.5,1.5
+ parent: 2
+ - uid: 83
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 12.5,2.5
+ parent: 2
+ - uid: 84
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 12.5,3.5
+ parent: 2
+ - uid: 95
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,0.5
+ parent: 2
+ - uid: 116
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 7.5,-5.5
+ parent: 2
+ - uid: 117
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 11.5,-5.5
+ parent: 2
+ - uid: 118
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 11.5,-6.5
+ parent: 2
+ - uid: 120
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 11.5,-8.5
+ parent: 2
+ - uid: 121
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 7.5,-6.5
+ parent: 2
+ - uid: 123
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 7.5,-8.5
+ parent: 2
+ - uid: 126
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -5.5,-4.5
+ parent: 2
+ - uid: 129
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -5.5,-7.5
+ parent: 2
+ - uid: 130
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -4.5,-7.5
+ parent: 2
+ - uid: 134
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -0.5,-7.5
+ parent: 2
+ - uid: 135
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,-7.5
+ parent: 2
+ - uid: 138
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,-4.5
+ parent: 2
+ - uid: 157
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-9.5
+ parent: 2
+ - uid: 158
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-9.5
+ parent: 2
+ - uid: 159
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-9.5
+ parent: 2
+ - uid: 160
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-9.5
+ parent: 2
+ - uid: 225
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 7.5,-3.5
+ parent: 2
+ - uid: 231
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,6.5
+ parent: 2
+ - uid: 446
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,6.5
+ parent: 2
+- proto: WallSolid
+ entities:
+ - uid: 44
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 2
+ - uid: 45
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 2
+ - uid: 46
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 6.5,1.5
+ parent: 2
+ - uid: 48
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 6.5,0.5
+ parent: 2
+ - uid: 55
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 6.5,2.5
+ parent: 2
+ - uid: 56
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 2
+ - uid: 80
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 2
+ - uid: 115
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 6.5,-2.5
+ parent: 2
+ - uid: 212
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 2
+ - uid: 217
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -4.5,-3.5
+ parent: 2
+ - uid: 540
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,2.5
+ parent: 2
+- proto: WarpPointShip
+ entities:
+ - uid: 328
+ components:
+ - type: Transform
+ pos: 3.5,-0.5
+ parent: 2
+- proto: WindoorSecure
+ entities:
+ - uid: 96
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-0.5
+ parent: 2
+ - uid: 214
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,1.5
+ parent: 2
+- proto: WindowReinforcedDirectional
+ entities:
+ - uid: 97
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-0.5
+ parent: 2
+ - uid: 213
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,1.5
+ parent: 2
+- proto: Wrench
+ entities:
+ - uid: 333
+ components:
+ - type: Transform
+ pos: 10.5,-2.5
+ parent: 2
+...
diff --git a/Resources/Maps/_NF/Shuttles/legman.yml b/Resources/Maps/_NF/Shuttles/legman.yml
index fea9c83195d6..b54c7c92fb61 100644
--- a/Resources/Maps/_NF/Shuttles/legman.yml
+++ b/Resources/Maps/_NF/Shuttles/legman.yml
@@ -3,57 +3,58 @@ meta:
postmapinit: false
tilemap:
0: Space
- 85: FloorSteel
- 93: FloorSteelMono
- 97: FloorTechMaint
- 111: FloorWood
- 113: Lattice
- 114: Plating
+ 90: FloorSteel
+ 101: FloorSteelMono
+ 105: FloorTechMaint
+ 119: FloorWood
+ 121: Lattice
+ 122: Plating
entities:
- proto: ""
entities:
- uid: 1
components:
- - name: grid
- type: MetaData
- - pos: -0.53545,-0.53547734
+ - type: MetaData
+ name: grid
+ - type: Transform
+ pos: -0.53545,-0.53547734
parent: invalid
- type: Transform
- - chunks:
+ - type: MapGrid
+ chunks:
0,0:
ind: 0,0
- tiles: XQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: ZQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZQAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAXQAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAZQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-1:
ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAVQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAWgAAAAAA
version: 6
- type: MapGrid
- type: Broadphase
- - bodyStatus: InAir
+ - type: Physics
+ bodyStatus: InAir
angularDamping: 0.05
linearDamping: 0.05
fixedRotation: False
bodyType: Dynamic
- type: Physics
- - fixtures: {}
- type: Fixtures
+ - type: Fixtures
+ fixtures: {}
- type: OccluderTree
- type: SpreaderGrid
- type: Shuttle
- type: GridPathfinding
- - gravityShakeSound: !type:SoundPathSpecifier
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
path: /Audio/Effects/alert.ogg
- type: Gravity
- - chunkCollection:
+ - type: DecalGrid
+ chunkCollection:
version: 2
nodes:
- node:
@@ -147,8 +148,8 @@ entities:
1: 1,-1
2: 1,0
24: 1,2
- type: DecalGrid
- - version: 2
+ - type: GridAtmosphere
+ version: 2
data:
tiles:
0,0:
@@ -201,139 +202,135 @@ entities:
- 0
- 0
chunkSize: 4
- type: GridAtmosphere
- type: GasTileOverlay
- type: RadiationGridResistance
- - id: legman
- type: BecomesStation
+ - type: BecomesStation
+ id: legman
- proto: AirAlarm
entities:
- uid: 77
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 4.5,-1.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 121
- - 122
- - 114
- type: DeviceNetwork
- - devices:
+ - type: DeviceList
+ devices:
- 122
- 114
- 121
- type: DeviceList
+ - type: AtmosDevice
+ joinedGrid: 1
- proto: AirCanister
entities:
- uid: 148
components:
- - anchored: True
+ - type: Transform
+ anchored: True
pos: -1.5,0.5
parent: 1
- type: Transform
- - bodyType: Static
- type: Physics
+ - type: Physics
+ bodyType: Static
+ - type: AtmosDevice
+ joinedGrid: 1
- proto: AirlockGlassShuttle
entities:
- uid: 61
components:
- - pos: 1.5,-3.5
+ - type: Transform
+ pos: 1.5,-3.5
parent: 1
- type: Transform
- uid: 62
components:
- - pos: -0.5,-3.5
+ - type: Transform
+ pos: -0.5,-3.5
parent: 1
- type: Transform
- proto: AirSensor
entities:
- uid: 122
components:
- - pos: -0.5,1.5
+ - type: Transform
+ pos: -0.5,1.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 77
- type: DeviceNetwork
- proto: APCBasic
entities:
- uid: 45
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 2.5,-2.5
parent: 1
- type: Transform
- proto: AtmosDeviceFanTiny
entities:
- uid: 32
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,-3.5
parent: 1
- type: Transform
- uid: 33
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,-3.5
parent: 1
- type: Transform
- proto: AtmosFixBlockerMarker
entities:
- uid: 10
components:
- - pos: 4.5,2.5
+ - type: Transform
+ pos: 4.5,2.5
parent: 1
- type: Transform
- uid: 12
components:
- - pos: 3.5,-3.5
+ - type: Transform
+ pos: 3.5,-3.5
parent: 1
- type: Transform
- uid: 42
components:
- - pos: -2.5,3.5
+ - type: Transform
+ pos: -2.5,3.5
parent: 1
- type: Transform
- uid: 55
components:
- - pos: -2.5,-3.5
+ - type: Transform
+ pos: -2.5,-3.5
parent: 1
- type: Transform
- uid: 128
components:
- - pos: 3.5,3.5
+ - type: Transform
+ pos: 3.5,3.5
parent: 1
- type: Transform
- uid: 157
components:
- - pos: -2.5,-2.5
+ - type: Transform
+ pos: -2.5,-2.5
parent: 1
- type: Transform
- uid: 158
components:
- - pos: 4.5,3.5
+ - type: Transform
+ pos: 4.5,3.5
parent: 1
- type: Transform
- uid: 160
components:
- - pos: 4.5,-2.5
+ - type: Transform
+ pos: 4.5,-2.5
parent: 1
- type: Transform
- uid: 161
components:
- - pos: -2.5,-1.5
+ - type: Transform
+ pos: -2.5,-1.5
parent: 1
- type: Transform
- proto: BoxFolderClipboard
entities:
- uid: 74
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 2.4677913,0.485714
parent: 1
- type: Transform
- - containers:
+ - type: ContainerContainer
+ containers:
storagebase: !type:Container
showEnts: False
occludes: True
@@ -345,552 +342,555 @@ entities:
showEnts: False
occludes: True
ent: null
- type: ContainerContainer
- - storageUsed: 3
- type: Storage
- proto: CableApcExtension
entities:
- uid: 50
components:
- - pos: 1.5,-0.5
+ - type: Transform
+ pos: 1.5,-0.5
parent: 1
- type: Transform
- uid: 51
components:
- - pos: -0.5,-0.5
+ - type: Transform
+ pos: -0.5,-0.5
parent: 1
- type: Transform
- uid: 66
components:
- - pos: 3.5,-0.5
+ - type: Transform
+ pos: 3.5,-0.5
parent: 1
- type: Transform
- uid: 67
components:
- - pos: -0.5,-0.5
+ - type: Transform
+ pos: -0.5,-0.5
parent: 1
- type: Transform
- uid: 79
components:
- - pos: -1.5,-0.5
+ - type: Transform
+ pos: -1.5,-0.5
parent: 1
- type: Transform
- uid: 84
components:
- - pos: -0.5,-2.5
+ - type: Transform
+ pos: -0.5,-2.5
parent: 1
- type: Transform
- uid: 86
components:
- - pos: 0.5,-3.5
+ - type: Transform
+ pos: 0.5,-3.5
parent: 1
- type: Transform
- uid: 89
components:
- - pos: 2.5,-0.5
+ - type: Transform
+ pos: 2.5,-0.5
parent: 1
- type: Transform
- uid: 90
components:
- - pos: 0.5,-0.5
+ - type: Transform
+ pos: 0.5,-0.5
parent: 1
- type: Transform
- uid: 91
components:
- - pos: 0.5,0.5
+ - type: Transform
+ pos: 0.5,0.5
parent: 1
- type: Transform
- uid: 92
components:
- - pos: 0.5,1.5
+ - type: Transform
+ pos: 0.5,1.5
parent: 1
- type: Transform
- uid: 93
components:
- - pos: 0.5,2.5
+ - type: Transform
+ pos: 0.5,2.5
parent: 1
- type: Transform
- uid: 94
components:
- - pos: 2.5,2.5
+ - type: Transform
+ pos: 2.5,2.5
parent: 1
- type: Transform
- uid: 95
components:
- - pos: 1.5,2.5
+ - type: Transform
+ pos: 1.5,2.5
parent: 1
- type: Transform
- uid: 96
components:
- - pos: 3.5,2.5
+ - type: Transform
+ pos: 3.5,2.5
parent: 1
- type: Transform
- uid: 97
components:
- - pos: 4.5,2.5
+ - type: Transform
+ pos: 4.5,2.5
parent: 1
- type: Transform
- uid: 99
components:
- - pos: -2.5,-0.5
+ - type: Transform
+ pos: -2.5,-0.5
parent: 1
- type: Transform
- uid: 109
components:
- - pos: -0.5,-1.5
+ - type: Transform
+ pos: -0.5,-1.5
parent: 1
- type: Transform
- uid: 124
components:
- - pos: 0.5,-2.5
+ - type: Transform
+ pos: 0.5,-2.5
parent: 1
- type: Transform
- uid: 125
components:
- - pos: 1.5,-2.5
+ - type: Transform
+ pos: 1.5,-2.5
parent: 1
- type: Transform
- uid: 126
components:
- - pos: 2.5,-2.5
+ - type: Transform
+ pos: 2.5,-2.5
parent: 1
- type: Transform
- proto: CableHV
entities:
- uid: 80
components:
- - pos: -2.5,-0.5
+ - type: Transform
+ pos: -2.5,-0.5
parent: 1
- type: Transform
- uid: 110
components:
- - pos: -1.5,-0.5
+ - type: Transform
+ pos: -1.5,-0.5
parent: 1
- type: Transform
- proto: CableMV
entities:
- uid: 100
components:
- - pos: 2.5,-2.5
+ - type: Transform
+ pos: 2.5,-2.5
parent: 1
- type: Transform
- uid: 101
components:
- - pos: 1.5,-2.5
+ - type: Transform
+ pos: 1.5,-2.5
parent: 1
- type: Transform
- uid: 102
components:
- - pos: 0.5,-2.5
+ - type: Transform
+ pos: 0.5,-2.5
parent: 1
- type: Transform
- uid: 103
components:
- - pos: -0.5,-2.5
+ - type: Transform
+ pos: -0.5,-2.5
parent: 1
- type: Transform
- uid: 104
components:
- - pos: -0.5,-2.5
+ - type: Transform
+ pos: -0.5,-2.5
parent: 1
- type: Transform
- uid: 105
components:
- - pos: -0.5,-1.5
+ - type: Transform
+ pos: -0.5,-1.5
parent: 1
- type: Transform
- uid: 106
components:
- - pos: -0.5,-0.5
+ - type: Transform
+ pos: -0.5,-0.5
parent: 1
- type: Transform
- uid: 107
components:
- - pos: -1.5,-0.5
+ - type: Transform
+ pos: -1.5,-0.5
parent: 1
- type: Transform
- uid: 108
components:
- - pos: -2.5,-0.5
+ - type: Transform
+ pos: -2.5,-0.5
parent: 1
- type: Transform
- proto: Carpet
entities:
- uid: 11
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 2.5,0.5
parent: 1
- type: Transform
- uid: 15
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,0.5
parent: 1
- type: Transform
- uid: 19
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,-0.5
parent: 1
- type: Transform
- uid: 59
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 2.5,1.5
parent: 1
- type: Transform
- uid: 72
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,1.5
parent: 1
- type: Transform
- uid: 85
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 2.5,-0.5
parent: 1
- type: Transform
- proto: ChairFoldingSpawnFolded
entities:
- uid: 138
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.7001897,2.9845455
parent: 1
- type: Transform
- uid: 139
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.828066,2.6859672
parent: 1
- type: Transform
- proto: ChairOfficeDark
entities:
- uid: 53
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,0.5
parent: 1
- type: Transform
- proto: ChairPilotSeat
entities:
- uid: 63
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -1.5,1.5
parent: 1
- type: Transform
- proto: ComputerShuttle
entities:
- uid: 34
components:
- - pos: -1.5,2.5
+ - type: Transform
+ pos: -1.5,2.5
parent: 1
- type: Transform
- proto: ComputerTabletopMassMedia
entities:
- uid: 127
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 2.5,-0.5
parent: 1
- type: Transform
- proto: ComputerTabletopStationRecords
entities:
- uid: 130
components:
- - pos: 3.5,1.5
+ - type: Transform
+ pos: 3.5,1.5
parent: 1
- type: Transform
- proto: DefibrillatorCabinetFilled
entities:
- uid: 145
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 0.5,-3.5
parent: 1
- type: Transform
- proto: DrinkMugMetal
entities:
- uid: 75
components:
- - pos: 2.7803764,1.0117805
+ - type: Transform
+ pos: 2.7803764,1.0117805
parent: 1
- type: Transform
- - solutions:
+ - type: SolutionContainerManager
+ solutions:
drink:
temperature: 293.15
canMix: True
canReact: True
maxVol: 20
+ name: null
reagents:
- data: null
ReagentId: IrishCoffee
Quantity: 20
- type: SolutionContainerManager
- proto: DrinkWhiskeyBottleFull
entities:
- uid: 14
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 2.4033623,0.2552591
parent: 1
- type: Transform
- proto: EmergencyLight
entities:
- uid: 140
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,-2.5
parent: 1
- type: Transform
- proto: ExtinguisherCabinetFilled
entities:
- uid: 43
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -2.5,0.5
parent: 1
- type: Transform
- proto: FaxMachineShip
entities:
- uid: 73
components:
- - pos: 2.5,1.5
+ - type: Transform
+ pos: 2.5,1.5
parent: 1
- type: Transform
- proto: filingCabinet
entities:
- uid: 70
components:
- - pos: 2.5,2.5
+ - type: Transform
+ pos: 2.5,2.5
parent: 1
- type: Transform
- proto: GasPassiveVent
entities:
- uid: 117
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -2.5,-2.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPipeBend
entities:
- uid: 119
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,-2.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 120
components:
- - pos: 0.5,0.5
+ - type: Transform
+ pos: 0.5,0.5
parent: 1
- type: Transform
- - color: '#0000CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0000CCFF'
- proto: GasPipeStraight
entities:
- uid: 118
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -1.5,-2.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPort
entities:
- uid: 131
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -1.5,0.5
parent: 1
- type: Transform
- - color: '#0000CCFF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0000CCFF'
- proto: GasPressurePump
entities:
- uid: 115
components:
- - name: distribution loop pump
- type: MetaData
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ name: distribution loop pump
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,0.5
parent: 1
- type: Transform
- - color: '#0000CCFF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0000CCFF'
- uid: 133
components:
- - name: waste loop pump
- type: MetaData
- - pos: -0.5,-1.5
+ - type: MetaData
+ name: waste loop pump
+ - type: Transform
+ pos: -0.5,-1.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasVentPump
entities:
- uid: 121
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 0.5,-0.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 77
- type: DeviceNetwork
- - color: '#0000CCFF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0000CCFF'
- proto: GasVentScrubber
entities:
- uid: 114
components:
- - pos: -0.5,-0.5
+ - type: Transform
+ pos: -0.5,-0.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 77
- type: DeviceNetwork
+ - type: AtmosDevice
+ joinedGrid: 1
- proto: GravityGeneratorMini
entities:
- uid: 78
components:
- - pos: 0.5,2.5
+ - type: Transform
+ pos: 0.5,2.5
parent: 1
- type: Transform
- proto: Grille
entities:
- uid: 35
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -2.5,1.5
parent: 1
- type: Transform
- uid: 36
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -2.5,2.5
parent: 1
- type: Transform
- uid: 37
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -1.5,3.5
parent: 1
- type: Transform
- uid: 38
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,3.5
parent: 1
- type: Transform
- uid: 39
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 4.5,0.5
parent: 1
- type: Transform
- uid: 40
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 4.5,-0.5
parent: 1
- type: Transform
- uid: 44
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 3.5,-2.5
parent: 1
- type: Transform
- uid: 48
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 0.5,3.5
parent: 1
- type: Transform
- uid: 49
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 4.5,1.5
parent: 1
- type: Transform
-- proto: Gyroscope
- entities:
- - uid: 56
- components:
- - pos: -0.5,2.5
- parent: 1
- type: Transform
- proto: HandHeldMassScanner
entities:
- uid: 141
components:
- - pos: 2.513356,0.66553426
+ - type: Transform
+ pos: 2.513356,0.66553426
parent: 1
- type: Transform
- proto: Lamp
entities:
- uid: 60
components:
- - pos: 2.3825405,1.4098848
+ - type: Transform
+ pos: 2.3825405,1.4098848
+ parent: 1
+- proto: NFAshtray
+ entities:
+ - uid: 163
+ components:
+ - type: Transform
+ pos: 2.911514,1.3323524
parent: 1
- type: Transform
- proto: NoticeBoardNF
entities:
- uid: 132
components:
- - pos: 3.5,2.5
+ - type: Transform
+ pos: 3.5,2.5
parent: 1
- type: Transform
- - storageUsed: 1
- type: Storage
- - containers:
+ - type: ContainerContainer
+ containers:
storagebase: !type:Container
showEnts: False
occludes: True
ents:
- 134
- type: ContainerContainer
- proto: Paper
entities:
- uid: 57
components:
- - flags: InContainer
- type: MetaData
- - parent: 74
- type: Transform
- - canCollide: False
- type: Physics
+ - type: MetaData
+ flags: InContainer
+ - type: Transform
+ parent: 74
+ - type: Physics
+ canCollide: False
- uid: 71
components:
- - flags: InContainer
- type: MetaData
- - parent: 74
- type: Transform
- - canCollide: False
- type: Physics
+ - type: MetaData
+ flags: InContainer
+ - type: Transform
+ parent: 74
+ - type: Physics
+ canCollide: False
- uid: 88
components:
- - flags: InContainer
- type: MetaData
- - parent: 74
- type: Transform
- - canCollide: False
- type: Physics
+ - type: MetaData
+ flags: InContainer
+ - type: Transform
+ parent: 74
+ - type: Physics
+ canCollide: False
- uid: 159
components:
- - pos: -0.90263844,-0.4524182
+ - type: Transform
+ pos: -0.90263844,-0.4524182
parent: 1
- type: Transform
- - stampState: paper_stamp-ce
+ - type: Paper
+ stampState: paper_stamp-ce
stampedBy:
- stampedBorderless: False
stampedColor: '#C69B17FF'
@@ -977,35 +977,33 @@ entities:
[bold]*[/bold] - Legman-class service ships are equipped with a single APC unit that can be used to appraise the ship's total power consumption. One can check the ship's total power consumption against the P.A.C.M.A.N. generator unit Target Power output: to keep substation and APC fully charged, P.A.C.M.A.N. generator unit Target Power output should exceed APC's Load. Remember to check APC Load and adjust the generator unit Target Power after connecting new power-consuming machines.
[bold]**[/bold] - Legman-class service ships have low power demand meaning that standard P.A.C.M.A.N. generator unit's Target Power value can be lowered as low as 10 kW. Please note, that recommended Target Power value to avoid blackouts during Gravity Generator charging sequence is 11 kW.
- type: Paper
- proto: PaperWrittenAMEScribbles
entities:
- uid: 134
components:
- - flags: InContainer
- type: MetaData
- - parent: 132
- type: Transform
- - canCollide: False
- type: Physics
+ - type: MetaData
+ flags: InContainer
+ - type: Transform
+ parent: 132
+ - type: Physics
+ canCollide: False
- proto: Pen
entities:
- uid: 87
components:
- - pos: 2.5246253,0.7558562
+ - type: Transform
+ pos: 2.5246253,0.7558562
parent: 1
- type: Transform
- proto: PillCanister
entities:
- uid: 149
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 2.7114336,-0.04008609
parent: 1
- type: Transform
- - storageUsed: 7
- type: Storage
- - containers:
+ - type: ContainerContainer
+ containers:
storagebase: !type:Container
showEnts: False
occludes: True
@@ -1017,424 +1015,460 @@ entities:
- 154
- 155
- 156
- type: ContainerContainer
- proto: PillTricordrazine
entities:
- uid: 150
components:
- - flags: InContainer
+ - type: MetaData
+ flags: InContainer
name: heart medication
- type: MetaData
- - parent: 149
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ parent: 149
+ - type: Physics
+ canCollide: False
- uid: 151
components:
- - flags: InContainer
+ - type: MetaData
+ flags: InContainer
name: heart medication
- type: MetaData
- - parent: 149
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ parent: 149
+ - type: Physics
+ canCollide: False
- uid: 152
components:
- - flags: InContainer
+ - type: MetaData
+ flags: InContainer
name: heart medication
- type: MetaData
- - parent: 149
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ parent: 149
+ - type: Physics
+ canCollide: False
- uid: 153
components:
- - flags: InContainer
+ - type: MetaData
+ flags: InContainer
name: heart medication
- type: MetaData
- - parent: 149
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ parent: 149
+ - type: Physics
+ canCollide: False
- uid: 154
components:
- - flags: InContainer
+ - type: MetaData
+ flags: InContainer
name: heart medication
- type: MetaData
- - parent: 149
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ parent: 149
+ - type: Physics
+ canCollide: False
- uid: 156
components:
- - flags: InContainer
+ - type: MetaData
+ flags: InContainer
name: heart medication
- type: MetaData
- - parent: 149
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ parent: 149
+ - type: Physics
+ canCollide: False
- proto: PortableGeneratorPacman
entities:
- uid: 3
components:
- - anchored: True
+ - type: Transform
+ anchored: True
pos: -1.5,-0.5
parent: 1
- type: Transform
- - storage:
+ - type: MaterialStorage
+ storage:
Plasma: 1500
- type: MaterialStorage
- - bodyType: Static
- type: Physics
+ - type: Physics
+ bodyType: Static
- type: InsertingMaterialStorage
- proto: PottedPlantRandom
entities:
- uid: 162
components:
- - pos: 3.5,-1.5
+ - type: Transform
+ pos: 3.5,-1.5
parent: 1
- type: Transform
- proto: PoweredlightLED
entities:
- uid: 81
components:
- - rot: 3.141592653589793 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 2.5,-1.5
parent: 1
- type: Transform
- uid: 82
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -1.5,0.5
parent: 1
- type: Transform
- proto: SheetPlasma
entities:
- uid: 113
components:
- - pos: -0.675385,-0.84057385
+ - type: Transform
+ pos: -0.675385,-0.84057385
parent: 1
- type: Transform
- - count: 15
- type: Stack
- - size: 15
- type: Item
+ - type: Stack
+ count: 15
+ - type: Item
+ size: 15
- proto: ShuttleWindow
entities:
- uid: 6
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 4.5,0.5
parent: 1
- type: Transform
- uid: 7
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 4.5,-0.5
parent: 1
- type: Transform
- uid: 8
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 3.5,-2.5
parent: 1
- type: Transform
- uid: 20
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -2.5,2.5
parent: 1
- type: Transform
- uid: 21
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,3.5
parent: 1
- type: Transform
- uid: 22
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 0.5,3.5
parent: 1
- type: Transform
- uid: 23
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 4.5,1.5
parent: 1
- type: Transform
- uid: 30
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,3.5
parent: 1
- type: Transform
- uid: 31
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -2.5,1.5
parent: 1
- type: Transform
- proto: SignConspiracyBoard
entities:
- uid: 47
components:
- - pos: 1.5,3.5
+ - type: Transform
+ pos: 1.5,3.5
+ parent: 1
+- proto: SmallGyroscope
+ entities:
+ - uid: 56
+ components:
+ - type: Transform
+ pos: -0.5,2.5
parent: 1
- type: Transform
- proto: SpawnPointLatejoin
entities:
- uid: 142
components:
- - pos: 1.5,0.5
+ - type: Transform
+ pos: 1.5,0.5
parent: 1
- type: Transform
- proto: SpawnPointPilot
entities:
- uid: 144
components:
- - pos: -1.5,1.5
+ - type: Transform
+ pos: -1.5,1.5
parent: 1
- type: Transform
- proto: SpawnPointReporter
entities:
- uid: 135
components:
- - pos: 3.5,0.5
+ - type: Transform
+ pos: 3.5,0.5
parent: 1
- type: Transform
- proto: StrangePill
entities:
- uid: 155
components:
- - flags: InContainer
+ - type: MetaData
+ flags: InContainer
name: heart medication
- type: MetaData
- - parent: 149
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ parent: 149
+ - type: Physics
+ canCollide: False
- proto: SubstationWallBasic
entities:
- uid: 41
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -2.5,-0.5
parent: 1
- type: Transform
- proto: SuitStorageWallmountEVAAlternate
entities:
- uid: 64
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -1.5,-1.5
parent: 1
- type: Transform
+ - type: Physics
+ canCollide: False
- proto: SurveillanceWirelessCameraMovableEntertainment
entities:
- uid: 116
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 0.5,0.5
parent: 1
- type: Transform
- proto: TableWood
entities:
- uid: 52
components:
- - pos: 2.5,-0.5
+ - type: Transform
+ pos: 2.5,-0.5
parent: 1
- type: Transform
- uid: 54
components:
- - pos: 2.5,0.5
+ - type: Transform
+ pos: 2.5,0.5
parent: 1
- type: Transform
- uid: 58
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 2.5,1.5
parent: 1
- type: Transform
- uid: 65
components:
- - pos: 3.5,1.5
+ - type: Transform
+ pos: 3.5,1.5
parent: 1
- type: Transform
- proto: Thruster
entities:
- uid: 26
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -2.5,-2.5
parent: 1
- type: Transform
- uid: 27
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,-3.5
parent: 1
- type: Transform
- uid: 28
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,-3.5
parent: 1
- type: Transform
- uid: 29
components:
- - pos: 4.5,3.5
+ - type: Transform
+ pos: 4.5,3.5
parent: 1
- type: Transform
- proto: WallShuttle
entities:
- uid: 2
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,-3.5
parent: 1
- type: Transform
- uid: 13
components:
- - pos: 2.5,-3.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 2.5,-3.5
parent: 1
- type: Transform
- uid: 18
components:
- - pos: 1.5,3.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 1.5,3.5
parent: 1
- type: Transform
- uid: 46
components:
- - pos: 2.5,3.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 2.5,3.5
parent: 1
- type: Transform
- uid: 68
components:
- - rot: 3.141592653589793 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,-0.5
parent: 1
- type: Transform
- uid: 69
components:
- - pos: 4.5,-1.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,-1.5
parent: 1
- type: Transform
- uid: 76
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -2.5,0.5
parent: 1
- type: Transform
- uid: 83
components:
- - rot: 3.141592653589793 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 0.5,-3.5
parent: 1
- type: Transform
- uid: 112
components:
- - pos: 2.5,-2.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 2.5,-2.5
parent: 1
- type: Transform
- uid: 129
components:
- - pos: -1.5,-2.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -1.5,-2.5
parent: 1
- type: Transform
- uid: 146
components:
- - pos: -1.5,-1.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -1.5,-1.5
parent: 1
- type: Transform
- uid: 147
components:
- - pos: 3.5,2.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,2.5
parent: 1
- type: Transform
- proto: WallShuttleDiagonal
entities:
- uid: 4
components:
- - pos: -2.5,3.5
+ - type: Transform
+ pos: -2.5,3.5
parent: 1
- type: Transform
- uid: 5
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 4.5,-2.5
parent: 1
- type: Transform
- uid: 9
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 4.5,2.5
parent: 1
- type: Transform
- uid: 16
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -2.5,-1.5
parent: 1
- type: Transform
- uid: 25
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,3.5
parent: 1
- type: Transform
- proto: WarpPointShip
entities:
- uid: 143
components:
- - pos: 0.5,0.5
+ - type: Transform
+ pos: 0.5,0.5
parent: 1
- type: Transform
- proto: WindoorSecure
entities:
- uid: 24
components:
- - pos: 1.5,-1.5
+ - type: Transform
+ pos: 1.5,-1.5
parent: 1
- type: Transform
- uid: 123
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,-0.5
parent: 1
- type: Transform
- uid: 137
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,1.5
parent: 1
- type: Transform
- proto: WindowReinforcedDirectional
entities:
- uid: 17
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,2.5
parent: 1
- type: Transform
- uid: 111
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,0.5
parent: 1
- type: Transform
- uid: 136
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,-1.5
parent: 1
- type: Transform
- proto: Wrench
entities:
- uid: 98
components:
- - pos: -0.8786495,-0.24205363
+ - type: Transform
+ pos: -0.8786495,-0.24205363
parent: 1
- type: Transform
...
diff --git a/Resources/Maps/_NF/Shuttles/loader.yml b/Resources/Maps/_NF/Shuttles/loader.yml
index a9a091904533..52ba95c342f4 100644
--- a/Resources/Maps/_NF/Shuttles/loader.yml
+++ b/Resources/Maps/_NF/Shuttles/loader.yml
@@ -3,56 +3,57 @@ meta:
postmapinit: false
tilemap:
0: Space
- 85: FloorSteel
- 93: FloorSteelMono
- 97: FloorTechMaint
- 113: Lattice
- 114: Plating
+ 90: FloorSteel
+ 101: FloorSteelMono
+ 105: FloorTechMaint
+ 121: Lattice
+ 122: Plating
entities:
- proto: ""
entities:
- uid: 1
components:
- - name: grid
- type: MetaData
- - pos: -0.48958334,-0.53125
+ - type: MetaData
+ name: grid
+ - type: Transform
+ pos: -0.48958334,-0.53125
parent: invalid
- type: Transform
- - chunks:
+ - type: MapGrid
+ chunks:
0,0:
ind: 0,0
- tiles: VQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXQAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: WgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-1:
ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- type: MapGrid
- type: Broadphase
- - bodyStatus: InAir
+ - type: Physics
+ bodyStatus: InAir
angularDamping: 0.05
linearDamping: 0.05
fixedRotation: False
bodyType: Dynamic
- type: Physics
- - fixtures: {}
- type: Fixtures
+ - type: Fixtures
+ fixtures: {}
- type: OccluderTree
- type: SpreaderGrid
- type: Shuttle
- type: GridPathfinding
- - gravityShakeSound: !type:SoundPathSpecifier
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
path: /Audio/Effects/alert.ogg
- type: Gravity
- - chunkCollection:
+ - type: DecalGrid
+ chunkCollection:
version: 2
nodes:
- node:
@@ -176,8 +177,8 @@ entities:
4: -3,-2
5: 1,-1
6: 1,4
- type: DecalGrid
- - version: 2
+ - type: GridAtmosphere
+ version: 2
data:
tiles:
0,0:
@@ -240,1466 +241,1538 @@ entities:
- 0
- 0
chunkSize: 4
- type: GridAtmosphere
- type: GasTileOverlay
- type: RadiationGridResistance
+- proto: AirAlarm
+ entities:
+ - uid: 253
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-2.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 161
+ - 143
+ - 159
+ - 228
+ - 234
+ - 122
+ - 215
+ - 163
+ - type: AtmosDevice
+ joinedGrid: 1
- proto: AirCanister
entities:
- uid: 173
components:
- - anchored: True
+ - type: Transform
+ anchored: True
pos: -0.5,-0.5
parent: 1
- type: Transform
- - bodyType: Static
- type: Physics
+ - type: Physics
+ bodyType: Static
+ - type: AtmosDevice
+ joinedGrid: 1
- proto: Airlock
entities:
- uid: 138
components:
- - rot: 3.141592653589793 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,-0.5
parent: 1
- type: Transform
- proto: AirlockCargo
entities:
- uid: 139
components:
- - rot: 3.141592653589793 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,-1.5
parent: 1
- type: Transform
- proto: AirlockCommand
entities:
- uid: 137
components:
- - rot: 3.141592653589793 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,4.5
parent: 1
- type: Transform
- proto: AirlockGlassShuttle
entities:
- uid: 76
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -3.5,2.5
parent: 1
- type: Transform
- uid: 77
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -3.5,0.5
parent: 1
- type: Transform
- proto: APCBasic
entities:
- uid: 185
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -1.5,-1.5
parent: 1
- type: Transform
- proto: AtmosDeviceFanTiny
entities:
- uid: 239
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -3.5,0.5
parent: 1
- type: Transform
- uid: 240
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -3.5,2.5
parent: 1
- type: Transform
- uid: 241
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -3.5,3.5
parent: 1
- type: Transform
- proto: AtmosFixBlockerMarker
entities:
- uid: 82
components:
- - pos: -3.5,-4.5
+ - type: Transform
+ pos: -3.5,-4.5
parent: 1
- type: Transform
- uid: 83
components:
- - pos: -3.5,-5.5
+ - type: Transform
+ pos: -3.5,-5.5
parent: 1
- type: Transform
- uid: 84
components:
- - pos: -2.5,-5.5
+ - type: Transform
+ pos: -2.5,-5.5
parent: 1
- type: Transform
- uid: 85
components:
- - pos: 3.5,-5.5
+ - type: Transform
+ pos: 3.5,-5.5
parent: 1
- type: Transform
- uid: 86
components:
- - pos: 4.5,-5.5
+ - type: Transform
+ pos: 4.5,-5.5
parent: 1
- type: Transform
- uid: 87
components:
- - pos: 4.5,-4.5
+ - type: Transform
+ pos: 4.5,-4.5
parent: 1
- type: Transform
- uid: 88
components:
- - pos: 4.5,4.5
+ - type: Transform
+ pos: 4.5,4.5
parent: 1
- type: Transform
- uid: 89
components:
- - pos: 4.5,5.5
+ - type: Transform
+ pos: 4.5,5.5
parent: 1
- type: Transform
- uid: 90
components:
- - pos: 3.5,5.5
+ - type: Transform
+ pos: 3.5,5.5
parent: 1
- type: Transform
- uid: 91
components:
- - pos: -2.5,5.5
+ - type: Transform
+ pos: -2.5,5.5
parent: 1
- type: Transform
- uid: 92
components:
- - pos: -3.5,5.5
+ - type: Transform
+ pos: -3.5,5.5
parent: 1
- type: Transform
- uid: 93
components:
- - pos: -3.5,4.5
+ - type: Transform
+ pos: -3.5,4.5
parent: 1
- type: Transform
- uid: 94
components:
- - pos: -1.5,7.5
+ - type: Transform
+ pos: -1.5,7.5
parent: 1
- type: Transform
- uid: 95
components:
- - pos: 2.5,7.5
+ - type: Transform
+ pos: 2.5,7.5
+ parent: 1
+- proto: BlastDoor
+ entities:
+ - uid: 219
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,3.5
parent: 1
- type: Transform
+ - type: DeviceLinkSink
+ links:
+ - 206
- proto: BlockGameArcade
entities:
- uid: 114
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,-4.5
parent: 1
- type: Transform
- proto: CableApcExtension
entities:
- - uid: 187
+ - uid: 59
components:
- - pos: -1.5,-1.5
+ - type: Transform
+ pos: -1.5,-1.5
parent: 1
- type: Transform
- uid: 192
components:
- - pos: -1.5,-0.5
+ - type: Transform
+ pos: -1.5,-0.5
parent: 1
- type: Transform
- uid: 193
components:
- - pos: -1.5,0.5
+ - type: Transform
+ pos: -1.5,0.5
parent: 1
- type: Transform
- uid: 194
components:
- - pos: -1.5,1.5
+ - type: Transform
+ pos: -1.5,1.5
parent: 1
- type: Transform
- uid: 195
components:
- - pos: -0.5,1.5
+ - type: Transform
+ pos: -0.5,1.5
parent: 1
- type: Transform
- uid: 196
components:
- - pos: 0.5,1.5
+ - type: Transform
+ pos: 0.5,1.5
parent: 1
- type: Transform
- uid: 197
components:
- - pos: 1.5,1.5
+ - type: Transform
+ pos: 1.5,1.5
parent: 1
- type: Transform
- uid: 198
components:
- - pos: 1.5,2.5
+ - type: Transform
+ pos: 1.5,2.5
parent: 1
- type: Transform
- uid: 199
components:
- - pos: 1.5,3.5
+ - type: Transform
+ pos: 1.5,3.5
parent: 1
- type: Transform
- uid: 200
components:
- - pos: 1.5,4.5
+ - type: Transform
+ pos: 1.5,4.5
parent: 1
- type: Transform
- uid: 201
components:
- - pos: 1.5,5.5
+ - type: Transform
+ pos: 1.5,5.5
parent: 1
- type: Transform
- uid: 202
components:
- - pos: 2.5,5.5
+ - type: Transform
+ pos: 2.5,5.5
parent: 1
- type: Transform
- uid: 203
components:
- - pos: 0.5,5.5
+ - type: Transform
+ pos: 0.5,5.5
parent: 1
- type: Transform
- uid: 204
components:
- - pos: -0.5,5.5
+ - type: Transform
+ pos: -0.5,5.5
parent: 1
- type: Transform
- uid: 205
components:
- - pos: -1.5,5.5
- parent: 1
- type: Transform
- - uid: 206
- components:
- - pos: -1.5,6.5
- parent: 1
- type: Transform
- - uid: 207
- components:
- - pos: 2.5,6.5
+ - type: Transform
+ pos: -1.5,5.5
parent: 1
- type: Transform
- uid: 208
components:
- - pos: 1.5,0.5
+ - type: Transform
+ pos: 1.5,0.5
parent: 1
- type: Transform
- uid: 209
components:
- - pos: 1.5,-0.5
+ - type: Transform
+ pos: 1.5,-0.5
parent: 1
- type: Transform
- uid: 210
components:
- - pos: 1.5,-1.5
+ - type: Transform
+ pos: 1.5,-1.5
parent: 1
- type: Transform
- uid: 211
components:
- - pos: 1.5,-2.5
+ - type: Transform
+ pos: 1.5,-2.5
parent: 1
- type: Transform
- uid: 212
components:
- - pos: 1.5,-3.5
+ - type: Transform
+ pos: 1.5,-3.5
parent: 1
- type: Transform
- uid: 213
components:
- - pos: 2.5,-3.5
+ - type: Transform
+ pos: 2.5,-3.5
parent: 1
- type: Transform
- uid: 214
components:
- - pos: 3.5,-3.5
- parent: 1
- type: Transform
- - uid: 215
- components:
- - pos: 3.5,-4.5
+ - type: Transform
+ pos: 3.5,-3.5
parent: 1
- type: Transform
- uid: 216
components:
- - pos: -1.5,-2.5
+ - type: Transform
+ pos: -1.5,-2.5
parent: 1
- type: Transform
- uid: 217
components:
- - pos: -1.5,-3.5
+ - type: Transform
+ pos: -1.5,-3.5
parent: 1
- type: Transform
- uid: 218
components:
- - pos: -2.5,-3.5
- parent: 1
- type: Transform
- - uid: 219
- components:
- - pos: -2.5,-4.5
+ - type: Transform
+ pos: -2.5,-3.5
parent: 1
- type: Transform
- proto: CableHV
entities:
- uid: 176
components:
- - pos: -1.5,-4.5
+ - type: Transform
+ pos: -1.5,-4.5
parent: 1
- type: Transform
- uid: 180
components:
- - pos: -1.5,-2.5
+ - type: Transform
+ pos: -1.5,-2.5
parent: 1
- type: Transform
- uid: 182
components:
- - pos: -0.5,-4.5
+ - type: Transform
+ pos: -0.5,-4.5
parent: 1
- type: Transform
- uid: 250
components:
- - pos: -0.5,-2.5
+ - type: Transform
+ pos: -0.5,-2.5
parent: 1
- type: Transform
- uid: 251
components:
- - pos: -0.5,-3.5
+ - type: Transform
+ pos: -0.5,-3.5
parent: 1
- type: Transform
- proto: CableMV
entities:
- uid: 174
components:
- - pos: -1.5,-4.5
+ - type: Transform
+ pos: -1.5,-4.5
parent: 1
- type: Transform
- uid: 181
components:
- - pos: -1.5,-3.5
+ - type: Transform
+ pos: -1.5,-3.5
parent: 1
- type: Transform
- uid: 183
components:
- - pos: -0.5,-1.5
+ - type: Transform
+ pos: -0.5,-1.5
parent: 1
- type: Transform
- uid: 184
components:
- - pos: -1.5,-1.5
+ - type: Transform
+ pos: -1.5,-1.5
parent: 1
- type: Transform
- uid: 249
components:
- - pos: -1.5,-2.5
+ - type: Transform
+ pos: -1.5,-2.5
parent: 1
- type: Transform
- proto: CableTerminal
entities:
- uid: 178
components:
- - pos: -0.5,-3.5
+ - type: Transform
+ pos: -0.5,-3.5
parent: 1
- type: Transform
- proto: CarpetOrange
entities:
- uid: 111
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 2.5,-4.5
parent: 1
- type: Transform
- uid: 121
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,-4.5
parent: 1
- type: Transform
- uid: 226
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,-3.5
parent: 1
- type: Transform
- uid: 227
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,-2.5
parent: 1
- type: Transform
- uid: 230
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,-1.5
parent: 1
- type: Transform
- uid: 243
components:
- - pos: 2.5,-3.5
+ - type: Transform
+ pos: 2.5,-3.5
parent: 1
- type: Transform
- uid: 244
components:
- - pos: 1.5,-3.5
+ - type: Transform
+ pos: 1.5,-3.5
parent: 1
- type: Transform
- uid: 245
components:
- - pos: 1.5,-2.5
+ - type: Transform
+ pos: 1.5,-2.5
parent: 1
- type: Transform
- uid: 246
components:
- - pos: 2.5,-2.5
+ - type: Transform
+ pos: 2.5,-2.5
parent: 1
- type: Transform
- uid: 247
components:
- - pos: 2.5,-1.5
+ - type: Transform
+ pos: 2.5,-1.5
parent: 1
- type: Transform
- uid: 248
components:
- - pos: 1.5,-1.5
+ - type: Transform
+ pos: 1.5,-1.5
parent: 1
- type: Transform
- proto: Catwalk
entities:
- uid: 98
components:
- - pos: 2.5,3.5
+ - type: Transform
+ pos: 2.5,3.5
parent: 1
- type: Transform
- uid: 99
components:
- - pos: 3.5,3.5
+ - type: Transform
+ pos: 3.5,3.5
parent: 1
- type: Transform
- uid: 100
components:
- - pos: 3.5,2.5
+ - type: Transform
+ pos: 3.5,2.5
parent: 1
- type: Transform
- uid: 101
components:
- - pos: 2.5,2.5
+ - type: Transform
+ pos: 2.5,2.5
parent: 1
- type: Transform
- uid: 102
components:
- - pos: 2.5,1.5
+ - type: Transform
+ pos: 2.5,1.5
parent: 1
- type: Transform
- uid: 103
components:
- - pos: 3.5,1.5
+ - type: Transform
+ pos: 3.5,1.5
parent: 1
- type: Transform
- uid: 104
components:
- - pos: 3.5,0.5
+ - type: Transform
+ pos: 3.5,0.5
parent: 1
- type: Transform
- uid: 105
components:
- - pos: 2.5,0.5
+ - type: Transform
+ pos: 2.5,0.5
parent: 1
- type: Transform
- proto: Chair
entities:
- uid: 118
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 2.5,-2.5
parent: 1
- type: Transform
- proto: ChairPilotSeat
entities:
- - uid: 123
+ - uid: 252
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 0.5,5.5
parent: 1
- type: Transform
- proto: ClosetWall
entities:
- uid: 221
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,-4.5
parent: 1
- type: Transform
- - containers:
+ - type: ContainerContainer
+ containers:
entity_storage: !type:Container
showEnts: False
occludes: True
ents:
- 222
- type: ContainerContainer
- proto: ClosetWallEmergencyFilledRandom
entities:
- uid: 106
components:
- - pos: -0.5,4.5
+ - type: Transform
+ pos: -0.5,4.5
parent: 1
- type: Transform
-- proto: ClothingBeltUtilityEngineering
+- proto: ComputerTabletopShuttle
entities:
- - uid: 186
- components:
- - pos: 3.5060241,-2.408408
- parent: 1
- type: Transform
-- proto: ComputerShuttle
- entities:
- - uid: 124
+ - uid: 73
components:
- - pos: 0.5,6.5
+ - type: Transform
+ pos: 0.5,6.5
parent: 1
- type: Transform
-- proto: ComputerStationRecords
+- proto: ComputerTabletopStationRecords
entities:
- - uid: 125
+ - uid: 232
components:
- - pos: 1.5,6.5
+ - type: Transform
+ pos: 1.5,6.5
parent: 1
- type: Transform
- proto: ConveyorBelt
entities:
- uid: 78
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -3.5,3.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 81
- type: DeviceLinkSink
- uid: 79
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -2.5,3.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 81
- type: DeviceLinkSink
- uid: 80
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,3.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 81
- type: DeviceLinkSink
- proto: DefibrillatorCabinetFilled
entities:
- uid: 109
components:
- - pos: 2.5,-0.5
+ - type: Transform
+ pos: 2.5,-0.5
parent: 1
- type: Transform
- proto: EmergencyLight
entities:
- - uid: 133
+ - uid: 127
components:
- - rot: 3.141592653589793 rad
- pos: -0.5,-0.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,5.5
parent: 1
- type: Transform
- uid: 134
components:
- - rot: 1.5707963267948966 rad
- pos: -2.5,-2.5
+ - type: Transform
+ pos: 2.5,-1.5
parent: 1
- type: Transform
- uid: 135
components:
- - rot: 1.5707963267948966 rad
- pos: 1.5,-2.5
+ - type: Transform
+ pos: -0.5,3.5
parent: 1
- type: Transform
- - uid: 136
+ - uid: 162
components:
- - rot: 3.141592653589793 rad
- pos: 0.5,5.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-3.5
parent: 1
- type: Transform
- proto: ExtinguisherCabinetFilled
entities:
- uid: 108
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 0.5,4.5
parent: 1
- type: Transform
- proto: FaxMachineShip
entities:
- uid: 188
components:
- - pos: -0.5,6.5
+ - type: Transform
+ pos: -0.5,6.5
parent: 1
- type: Transform
- proto: FireAlarm
entities:
- uid: 107
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 0.5,-0.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 159
- - 75
- - 74
- - 190
- - 189
- - 191
- type: DeviceNetwork
- - devices:
+ - type: DeviceList
+ devices:
- 159
- 75
- 74
- 190
- 189
- 191
- type: DeviceList
+ - type: AtmosDevice
+ joinedGrid: 1
- proto: FirelockGlass
entities:
- uid: 74
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -3.5,2.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 107
- type: DeviceNetwork
- uid: 75
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -3.5,0.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 107
- type: DeviceNetwork
- uid: 189
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,4.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 107
- type: DeviceNetwork
- uid: 190
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,-1.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 107
- type: DeviceNetwork
- uid: 191
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,-0.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 107
- type: DeviceNetwork
-- proto: GasDualPortVentPump
- entities:
- - uid: 162
- components:
- - pos: -0.5,3.5
- parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- proto: GasPassiveVent
entities:
- uid: 147
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -3.5,-5.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPipeBend
entities:
- uid: 145
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -3.5,-3.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 167
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -2.5,2.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 225
components:
- - pos: 1.5,6.5
+ - type: Transform
+ pos: 1.5,6.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 235
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,-2.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 242
components:
- - pos: 3.5,2.5
+ - type: Transform
+ pos: 3.5,2.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- proto: GasPipeStraight
entities:
- uid: 120
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 3.5,-0.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 128
+ components:
+ - type: Transform
+ pos: -0.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 146
components:
- - pos: -3.5,-4.5
+ - type: Transform
+ pos: -3.5,-4.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 148
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,-3.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 149
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 0.5,-3.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 151
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 3.5,1.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 152
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,-2.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 153
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,-1.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 154
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,-0.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 155
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,0.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 156
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,1.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 157
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,2.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 160
components:
- - pos: 1.5,4.5
+ - type: Transform
+ pos: 1.5,4.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 164
components:
- - pos: -0.5,4.5
+ - type: Transform
+ pos: -0.5,4.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 166
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,2.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 168
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 3.5,-1.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 169
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,-1.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 170
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,0.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 171
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -2.5,1.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 207
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 223
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 3.5,0.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 229
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 0.5,6.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 231
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -1.5,-2.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
- - uid: 232
- components:
- - rot: -1.5707963267948966 rad
- pos: 0.5,2.5
- parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 233
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,2.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 236
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 2.5,2.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 237
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 2.5,-3.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 238
components:
- - pos: 1.5,5.5
+ - type: Transform
+ pos: 1.5,5.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPipeTJunction
entities:
+ - uid: 129
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 142
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -1.5,-3.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 150
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,-3.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 158
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,3.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 165
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -0.5,2.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 172
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -2.5,-0.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- proto: GasPort
entities:
- uid: 140
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,-0.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- proto: GasPressurePump
entities:
- uid: 141
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,-0.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 144
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -2.5,-3.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasVentPump
entities:
- uid: 122
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 3.5,-2.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: DeviceNetwork
+ deviceLists:
+ - 253
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 163
components:
- - pos: -0.5,5.5
+ - type: Transform
+ pos: -0.5,5.5
parent: 1
- type: Transform
+ - type: DeviceNetwork
+ deviceLists:
+ - 253
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 215
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,0.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 253
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 234
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,-2.5
parent: 1
- type: Transform
- - color: '#0055CCFF'
- type: AtmosPipeColor
+ - type: DeviceNetwork
+ deviceLists:
+ - 253
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- proto: GasVentScrubber
entities:
- uid: 143
components:
- - pos: -1.5,-2.5
+ - type: Transform
+ pos: -1.5,-2.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: DeviceNetwork
+ deviceLists:
+ - 253
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 159
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 0.5,3.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 107
- type: DeviceNetwork
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: DeviceNetwork
+ deviceLists:
+ - 253
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 161
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,-3.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: DeviceNetwork
+ deviceLists:
+ - 253
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 228
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,6.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: DeviceNetwork
+ deviceLists:
+ - 253
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GravityGeneratorMini
entities:
- uid: 175
components:
- - pos: -0.5,-3.5
+ - type: Transform
+ pos: -0.5,-3.5
parent: 1
- type: Transform
- proto: Grille
entities:
- uid: 12
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 4.5,-1.5
parent: 1
- type: Transform
- uid: 46
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -1.5,-5.5
parent: 1
- type: Transform
- uid: 47
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -0.5,-5.5
parent: 1
- type: Transform
- uid: 48
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 4.5,-3.5
parent: 1
- type: Transform
- uid: 49
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 4.5,-2.5
parent: 1
- type: Transform
- uid: 50
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 4.5,2.5
parent: 1
- type: Transform
- uid: 51
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 4.5,1.5
parent: 1
- type: Transform
- uid: 52
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 2.5,6.5
parent: 1
- type: Transform
- uid: 53
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 2.5,5.5
parent: 1
- type: Transform
- uid: 54
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,7.5
parent: 1
- type: Transform
- uid: 55
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 0.5,7.5
parent: 1
- type: Transform
- uid: 56
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -0.5,7.5
parent: 1
- type: Transform
- uid: 57
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -1.5,6.5
parent: 1
- type: Transform
- uid: 58
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -1.5,5.5
parent: 1
- type: Transform
- - uid: 59
- components:
- - rot: 3.141592653589793 rad
- pos: -3.5,1.5
- parent: 1
- type: Transform
-- proto: Gyroscope
- entities:
- - uid: 252
- components:
- - pos: -0.5,-2.5
- parent: 1
- type: Transform
-- proto: LockerCaptainFilled
+- proto: LockerQuarterMasterFilled
entities:
- - uid: 116
+ - uid: 132
components:
- - pos: -0.5,5.5
+ - type: Transform
+ pos: -0.5,5.5
parent: 1
- type: Transform
- proto: PaperBin10
entities:
- uid: 224
components:
- - pos: 3.5,-1.5
+ - type: Transform
+ pos: 3.5,-1.5
parent: 1
- type: Transform
- proto: PenCap
entities:
- uid: 220
components:
- - pos: 3.5458195,-1.807816
+ - type: Transform
+ pos: 3.5458195,-1.807816
parent: 1
- type: Transform
-- proto: PlasticFlapsAirtightClear
+- proto: PlasticFlapsClear
entities:
- - uid: 132
+ - uid: 133
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
pos: -3.5,3.5
parent: 1
- type: Transform
- proto: PortableGeneratorPacman
entities:
- uid: 177
components:
- - anchored: True
+ - type: Transform
+ anchored: True
pos: -1.5,-2.5
parent: 1
- type: Transform
- - storage:
+ - type: MaterialStorage
+ storage:
Plasma: 3000
- type: MaterialStorage
- - bodyType: Static
- type: Physics
+ - type: Physics
+ bodyType: Static
- type: InsertingMaterialStorage
-
- proto: Poweredlight
entities:
- uid: 126
components:
- - pos: 2.5,-1.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,1.5
parent: 1
- type: Transform
- - uid: 127
+ - uid: 136
components:
- - rot: 3.141592653589793 rad
- pos: -1.5,-0.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 2.5,3.5
parent: 1
- type: Transform
- - uid: 128
+ - uid: 187
components:
- - pos: -1.5,3.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-2.5
parent: 1
- type: Transform
- - uid: 129
+- proto: PoweredSmallLight
+ entities:
+ - uid: 124
components:
- - rot: 3.141592653589793 rad
- pos: 3.5,0.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,5.5
parent: 1
- type: Transform
- - uid: 130
+ - uid: 125
components:
- - rot: 1.5707963267948966 rad
- pos: -2.5,-3.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-2.5
parent: 1
- type: Transform
- - uid: 131
+- proto: RandomSnacks
+ entities:
+ - uid: 186
components:
- - rot: 3.141592653589793 rad
- pos: -0.5,5.5
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-2.5
parent: 1
- type: Transform
- proto: SheetPlasma1
entities:
- uid: 222
components:
- - flags: InContainer
- type: MetaData
- - parent: 221
- type: Transform
- - count: 15
- type: Stack
- - size: 15
- type: Item
- - canCollide: False
- type: Physics
+ - type: MetaData
+ flags: InContainer
+ - type: Transform
+ parent: 221
+ - type: Stack
+ count: 15
+ - type: Item
+ size: 15
+ - type: Physics
+ canCollide: False
- type: InsideEntityStorage
- proto: ShuttleWindow
entities:
- uid: 15
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -1.5,5.5
parent: 1
- type: Transform
- uid: 60
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -1.5,6.5
parent: 1
- type: Transform
- uid: 61
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -0.5,7.5
parent: 1
- type: Transform
- uid: 62
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 0.5,7.5
parent: 1
- type: Transform
- uid: 63
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,7.5
parent: 1
- type: Transform
- uid: 64
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 2.5,6.5
parent: 1
- type: Transform
- uid: 65
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 2.5,5.5
parent: 1
- type: Transform
- uid: 66
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 4.5,2.5
parent: 1
- type: Transform
- uid: 67
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 4.5,1.5
parent: 1
- type: Transform
- uid: 68
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 4.5,-1.5
parent: 1
- type: Transform
- uid: 69
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 4.5,-2.5
parent: 1
- type: Transform
- uid: 70
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 4.5,-3.5
parent: 1
- type: Transform
- uid: 71
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -0.5,-5.5
parent: 1
- type: Transform
- uid: 72
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -1.5,-5.5
parent: 1
- type: Transform
- - uid: 73
+- proto: SignalButton
+ entities:
+ - uid: 206
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -3.5,1.5
parent: 1
- type: Transform
+ - type: DeviceLinkSource
+ linkedPorts:
+ 219:
+ - Pressed: Toggle
+- proto: SmallGyroscope
+ entities:
+ - uid: 131
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 1
- proto: SMESBasic
entities:
- uid: 179
components:
- - pos: -0.5,-4.5
+ - type: Transform
+ pos: -0.5,-4.5
parent: 1
- type: Transform
- proto: SpawnPointCargoTechnician
entities:
- uid: 97
components:
- - pos: 1.5,0.5
+ - type: Transform
+ pos: 1.5,0.5
parent: 1
- type: Transform
- proto: SpawnPointLatejoin
entities:
- uid: 96
components:
- - pos: -0.5,0.5
+ - type: Transform
+ pos: -0.5,0.5
parent: 1
- type: Transform
- proto: SubstationBasic
entities:
- uid: 119
components:
- - pos: -1.5,-4.5
+ - type: Transform
+ pos: -1.5,-4.5
parent: 1
- type: Transform
- proto: Table
entities:
- uid: 110
components:
- - pos: 3.5,-1.5
+ - type: Transform
+ pos: 3.5,-1.5
parent: 1
- type: Transform
- uid: 112
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 3.5,-2.5
parent: 1
- type: Transform
- uid: 115
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,6.5
parent: 1
- type: Transform
+ - uid: 116
+ components:
+ - type: Transform
+ pos: 1.5,6.5
+ parent: 1
- uid: 117
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 3.5,-3.5
parent: 1
- type: Transform
+ - uid: 123
+ components:
+ - type: Transform
+ pos: 0.5,6.5
+ parent: 1
- proto: Thruster
entities:
- uid: 40
components:
- - pos: 3.5,5.5
+ - type: Transform
+ pos: 3.5,5.5
parent: 1
- type: Transform
- uid: 41
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 4.5,5.5
parent: 1
- type: Transform
- uid: 42
components:
- - pos: -2.5,5.5
+ - type: Transform
+ pos: -2.5,5.5
parent: 1
- type: Transform
- uid: 43
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -3.5,5.5
parent: 1
- type: Transform
- uid: 44
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 4.5,-5.5
parent: 1
- type: Transform
- uid: 45
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -3.5,-5.5
parent: 1
- type: Transform
- proto: TwoWayLever
entities:
- uid: 81
components:
- - pos: -1.5,2.5
+ - type: Transform
+ pos: -1.5,2.5
parent: 1
- type: Transform
- - linkedPorts:
+ - type: DeviceLinkSource
+ linkedPorts:
78:
- Left: Forward
- Right: Reverse
@@ -1712,204 +1785,265 @@ entities:
- Left: Forward
- Right: Reverse
- Middle: Off
- type: DeviceLinkSource
- proto: VendingMachineSovietSoda
entities:
- uid: 113
components:
- - pos: 2.5,-4.5
+ - type: Transform
+ pos: 2.5,-4.5
parent: 1
- type: Transform
- proto: WallShuttle
entities:
- uid: 3
components:
- - pos: -2.5,4.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -2.5,4.5
parent: 1
- type: Transform
- uid: 4
components:
- - pos: -1.5,4.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -1.5,4.5
parent: 1
- type: Transform
- uid: 5
components:
- - pos: -0.5,4.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -0.5,4.5
parent: 1
- type: Transform
- uid: 6
components:
- - pos: 0.5,4.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,4.5
parent: 1
- type: Transform
- uid: 7
components:
- - pos: 2.5,4.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 2.5,4.5
parent: 1
- type: Transform
- uid: 8
components:
- - pos: 3.5,4.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,4.5
parent: 1
- type: Transform
- uid: 9
components:
- - pos: 4.5,3.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,3.5
parent: 1
- type: Transform
- uid: 10
components:
- - pos: 4.5,0.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,0.5
parent: 1
- type: Transform
- uid: 11
components:
- - pos: 4.5,-0.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,-0.5
parent: 1
- type: Transform
- uid: 13
components:
- - pos: 3.5,-0.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,-0.5
parent: 1
- type: Transform
- uid: 14
components:
- - pos: 2.5,-0.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 2.5,-0.5
parent: 1
- type: Transform
- uid: 16
components:
- - pos: 0.5,-0.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,-0.5
parent: 1
- type: Transform
- uid: 17
components:
- - pos: 0.5,-1.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,-1.5
parent: 1
- type: Transform
- uid: 18
components:
- - pos: -0.5,-1.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -0.5,-1.5
parent: 1
- type: Transform
- uid: 19
components:
- - pos: -1.5,-1.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -1.5,-1.5
parent: 1
- type: Transform
- uid: 20
components:
- - pos: -3.5,-1.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,-1.5
parent: 1
- type: Transform
- uid: 21
components:
- - pos: -3.5,-0.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,-0.5
parent: 1
- type: Transform
- uid: 22
components:
- - pos: -3.5,-2.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,-2.5
parent: 1
- type: Transform
- uid: 23
components:
- - pos: -3.5,-3.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,-3.5
parent: 1
- type: Transform
- uid: 25
components:
- - pos: -2.5,-4.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -2.5,-4.5
parent: 1
- type: Transform
- uid: 26
components:
- - pos: 0.5,-5.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,-5.5
parent: 1
- type: Transform
- uid: 27
components:
- - pos: 0.5,-4.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,-4.5
parent: 1
- type: Transform
- uid: 28
components:
- - pos: 0.5,-3.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,-3.5
parent: 1
- type: Transform
- uid: 29
components:
- - pos: 0.5,-2.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 0.5,-2.5
parent: 1
- type: Transform
- uid: 30
components:
- - pos: 1.5,-5.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 1.5,-5.5
parent: 1
- type: Transform
- uid: 31
components:
- - pos: 2.5,-5.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 2.5,-5.5
parent: 1
- type: Transform
- uid: 32
components:
- - pos: 3.5,-4.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,-4.5
+ parent: 1
+ - uid: 130
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,1.5
parent: 1
- type: Transform
- proto: WallShuttleDiagonal
entities:
- uid: 24
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -3.5,-4.5
parent: 1
- type: Transform
- uid: 33
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -2.5,-5.5
parent: 1
- type: Transform
- uid: 34
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 3.5,-5.5
parent: 1
- type: Transform
- uid: 35
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 4.5,-4.5
parent: 1
- type: Transform
- uid: 36
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 4.5,4.5
parent: 1
- type: Transform
- uid: 37
components:
- - pos: -3.5,4.5
+ - type: Transform
+ pos: -3.5,4.5
parent: 1
- type: Transform
- uid: 38
components:
- - pos: -1.5,7.5
+ - type: Transform
+ pos: -1.5,7.5
parent: 1
- type: Transform
- uid: 39
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 2.5,7.5
parent: 1
- type: Transform
- proto: WarpPointShip
entities:
- uid: 2
components:
- - pos: 0.5,0.5
+ - type: Transform
+ pos: 0.5,0.5
parent: 1
- type: Transform
...
diff --git a/Resources/Maps/_NF/Shuttles/mayflower.yml b/Resources/Maps/_NF/Shuttles/mayflower.yml
index ffb248fea26c..e1618dbac163 100644
--- a/Resources/Maps/_NF/Shuttles/mayflower.yml
+++ b/Resources/Maps/_NF/Shuttles/mayflower.yml
@@ -35,19 +35,19 @@ entities:
version: 6
-1,-1:
ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAIgAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAawAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAZAAAAAAAXgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAXgAAAAAAXgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXgAAAAAAZAAAAAAAXgAAAAAAZAAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAIgAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAawAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAZAAAAAAAXgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAXgAAAAAAXgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: cgAAAAAAYQAAAAAAZAAAAAAAXgAAAAAAZAAAAAAAXgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAZAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAcgAAAAAASAAAAAAASAAAAAAASAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAcgAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAawAAAAAASAAAAAAAcgAAAAAAcgAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAIgAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAcgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAcgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAZAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: cgAAAAAAYQAAAAAAXgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAXgAAAAAAZAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAcgAAAAAASAAAAAAASAAAAAAASAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAcgAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAawAAAAAASAAAAAAAcgAAAAAAcgAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAIgAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAcgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAcgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAZAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,-2:
ind: 0,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAXgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAZAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAXgAAAAAAZAAAAAAAXgAAAAAAXgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAXgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAZAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-2:
ind: -1,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAZAAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAZAAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAZAAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAA
version: 6
type: MapGrid
- type: Broadphase
@@ -108,199 +108,215 @@ entities:
30: 3,-8
31: 3,-7
32: 2,-7
- 33: 1,-7
- 34: 1,-7
- 35: 0,-7
- 36: 0,-8
- 37: 1,-8
- 38: -1,-6
- 39: -2,-6
- 40: -2,-7
- 41: -1,-7
- 42: -1,-8
- 43: -2,-8
- 44: -2,-5
- 45: -1,-5
- 46: -1,-4
- 47: -2,-4
- 48: -4,-4
+ 33: 0,-7
+ 34: 0,-8
+ 35: 1,-8
+ 36: -1,-6
+ 37: -2,-6
+ 38: -2,-7
+ 39: -1,-7
+ 40: -1,-8
+ 41: -2,-8
+ 42: -2,-5
+ 43: -1,-5
+ 44: -1,-4
+ 45: -2,-4
+ 46: -4,-4
+ 47: -4,-4
+ 48: -5,-4
49: -4,-4
- 50: -5,-4
+ 50: -4,-4
51: -4,-4
52: -4,-4
53: -4,-4
- 54: -4,-4
- 55: -4,-4
- 56: -2,-2
- 57: -2,-3
+ 54: -2,-2
+ 55: -2,-3
+ 56: -1,-2
+ 57: -1,-3
58: -1,-2
- 59: -1,-3
- 60: -1,-2
- 61: -1,-1
- 62: -2,-1
- 63: -2,0
- 64: -1,0
- 65: 0,0
- 66: -1,1
- 67: -2,1
- 68: -3,1
- 69: -3,0
- 70: 0,1
- 71: 1,-4
- 72: 2,-4
- 73: 2,-5
- 74: 3,-4
- 75: 3,-5
- 76: 4,-5
- 77: 5,-5
- 78: 5,-6
- 79: 6,-6
- 80: 6,-7
- 81: 5,-7
- 82: 5,-8
- 83: 6,-8
- 84: 7,-8
- 85: 7,-7
- 86: 7,-6
- 87: -5,-3
- 88: -1,-11
- 89: -2,-11
- 90: -2,-10
- 91: -1,-10
- 92: -3,-12
- 93: -3,-13
- 94: -2,-13
- 95: 0,-13
- 96: -1,-13
- 97: 0,-14
- 98: -3,-14
- 99: -4,-15
- 100: -3,-15
- 101: -2,-15
- 102: 0,-15
- 103: 0,-15
- 104: 1,-15
- 105: 1,-14
- 106: 1,-15
- 107: 1,-16
- 108: 1,-17
- 109: 1,-18
- 110: 2,-18
- 111: 3,-18
- 112: 4,-18
- 113: 5,-18
- 114: 5,-17
- 115: 4,-17
- 116: 3,-17
- 117: 2,-17
- 118: 2,-16
- 119: 3,-16
- 120: 3,-15
- 121: 2,-15
- 122: 4,-16
- 123: 5,-16
- 124: 5,-15
- 125: 4,-15
- 126: -5,-15
- 127: -6,-15
- 128: -7,-15
- 129: -8,-15
- 130: -8,-16
- 131: -7,-16
- 132: -5,-16
- 133: -6,-16
- 134: -5,-17
- 135: -6,-17
- 136: -7,-17
- 137: -8,-17
- 138: -8,-18
- 139: -7,-18
- 140: -6,-18
- 141: -5,-18
- 142: -5,-19
- 143: -4,-18
- 144: -4,-17
- 145: -4,-19
- 146: -4,-20
+ 59: -1,-1
+ 60: -2,-1
+ 61: -2,0
+ 62: -1,0
+ 63: 0,0
+ 64: -1,1
+ 65: -2,1
+ 66: -3,1
+ 67: -3,0
+ 68: 0,1
+ 69: 1,-4
+ 70: 2,-4
+ 71: 2,-5
+ 72: 3,-4
+ 73: 3,-5
+ 74: 4,-5
+ 75: 5,-5
+ 76: 5,-6
+ 77: 6,-6
+ 78: 6,-7
+ 79: 5,-7
+ 80: 5,-8
+ 81: 6,-8
+ 82: 7,-8
+ 83: 7,-7
+ 84: 7,-6
+ 85: -5,-3
+ 86: -1,-11
+ 87: -2,-10
+ 88: -1,-10
+ 89: -3,-12
+ 90: -3,-13
+ 91: -2,-13
+ 92: 0,-13
+ 93: -1,-13
+ 94: 0,-14
+ 95: -3,-14
+ 96: -4,-15
+ 97: -3,-15
+ 98: -2,-15
+ 99: 0,-15
+ 100: 0,-15
+ 101: 1,-15
+ 102: 1,-14
+ 103: 1,-15
+ 104: 1,-16
+ 105: 1,-17
+ 106: 1,-18
+ 107: 2,-18
+ 108: 3,-18
+ 109: 4,-18
+ 110: 5,-18
+ 111: 5,-17
+ 112: 4,-17
+ 113: 3,-17
+ 114: 2,-17
+ 115: 2,-16
+ 116: 3,-16
+ 117: 3,-15
+ 118: 2,-15
+ 119: 4,-16
+ 120: 5,-16
+ 121: 5,-15
+ 122: 4,-15
+ 123: -5,-15
+ 124: -6,-15
+ 125: -7,-15
+ 126: -8,-15
+ 127: -8,-16
+ 128: -7,-16
+ 129: -5,-16
+ 130: -6,-16
+ 131: -5,-17
+ 132: -6,-17
+ 133: -7,-17
+ 134: -8,-17
+ 135: -8,-18
+ 136: -7,-18
+ 137: -6,-18
+ 138: -5,-18
+ 139: -5,-19
+ 140: -4,-18
+ 141: -4,-17
+ 142: -4,-19
+ 143: -4,-20
+ 144: -4,-20
+ 145: -3,-20
+ 146: -5,-20
147: -4,-20
- 148: -3,-20
- 149: -5,-20
- 150: -4,-20
- 151: -4,-20
- 152: -4,-20
+ 148: -4,-20
+ 149: -4,-20
+ 150: -2,-20
+ 151: -2,-20
+ 152: -2,-20
153: -2,-20
154: -2,-20
- 155: -2,-20
- 156: -2,-20
- 157: -2,-20
- 158: -1,-20
- 159: -1,-20
- 160: 0,-20
+ 155: -1,-20
+ 156: -1,-20
+ 157: 0,-20
+ 158: 1,-20
+ 159: 1,-19
+ 160: 0,-19
161: 1,-20
- 162: 1,-19
- 163: 0,-19
- 164: 1,-20
- 165: 2,-20
- 166: 2,-19
- 167: 2,-18
- 168: 1,-18
- 169: -1,-22
- 170: -2,-22
- 171: -1,-21
- 172: -2,-21
- 173: -1,-9
- 174: -1,-9
- 175: -2,-7
- 176: -2,-7
- 177: -2,-7
+ 162: 2,-20
+ 163: 2,-19
+ 164: 2,-18
+ 165: 1,-18
+ 166: -1,-22
+ 167: -2,-22
+ 168: -1,-21
+ 169: -2,-21
+ 170: -1,-9
+ 171: -1,-9
+ 172: -2,-7
+ 173: -2,-7
+ 174: -2,-7
+ 175: -2,1
+ 176: -2,1
+ 177: -2,1
178: -2,1
179: -2,1
- 180: -2,1
- 181: -2,1
- 182: -2,1
+ 180: -2,-4
+ 181: -2,-4
+ 182: -2,-4
183: -2,-4
184: -2,-4
185: -2,-4
- 186: -2,-4
- 187: -2,-4
- 188: -2,-4
+ 186: 5,-5
+ 187: 5,-5
+ 188: 5,-5
189: 5,-5
- 190: 5,-5
- 191: 5,-5
- 192: 5,-5
- 193: -5,-11
- 194: -4,-11
- 195: -5,-12
- 196: -6,-12
- 197: -6,-13
- 198: -7,-13
- 199: -6,-13
- 200: -5,-13
- 201: 2,-13
- 202: 2,-12
- 203: 2,-11
- 204: 3,-12
- 205: 4,-13
- 206: 4,-13
- 207: 4,-13
- 208: 3,-12
- 209: 2,-12
- 210: 2,-13
- 211: 1,-12
- 212: 2,-2
- 213: 1,-2
- 214: -5,-2
- 215: -6,-2
- 216: -4,-2
+ 190: -5,-11
+ 191: -4,-11
+ 192: -5,-12
+ 193: -6,-12
+ 194: -6,-13
+ 195: -7,-13
+ 196: -6,-13
+ 197: -5,-13
+ 198: 2,-13
+ 199: 2,-12
+ 200: 2,-11
+ 201: 3,-12
+ 202: 4,-13
+ 203: 4,-13
+ 204: 4,-13
+ 205: 3,-12
+ 206: 2,-12
+ 207: 2,-13
+ 208: 1,-12
+ 209: 2,-2
+ 210: 1,-2
+ 211: -5,-2
+ 212: -6,-2
+ 213: -4,-2
+ 214: 4,-12
+ 215: 4,-12
+ 216: 4,-12
217: 4,-12
- 218: 4,-12
- 219: 4,-12
- 220: 4,-12
- 221: -1,-12
- 222: -2,-12
- 223: 3,-13
- 224: -2,-14
- 225: -1,-15
+ 218: -1,-12
+ 219: -2,-12
+ 220: 3,-13
+ 221: -2,-14
+ 222: -1,-15
+ - node:
+ cleanable: True
+ color: '#4D0000FF'
+ id: a
+ decals:
+ 224: -7.104003,-13.216866
+ 225: -3.1560862,-11.048694
+ - node:
+ cleanable: True
+ color: '#4D0000FF'
+ id: m
+ decals:
+ 226: 3.9688463,-13.17517
+ - node:
+ cleanable: True
+ color: '#4D0000FF'
+ id: s
+ decals:
+ 223: 1.9992087,-9.260017
type: DecalGrid
- version: 2
data:
@@ -1796,6 +1812,27 @@ entities:
- pos: -1.5,1.5
parent: 1
type: Transform
+- proto: CrateChemistryD
+ entities:
+ - uid: 378
+ components:
+ - pos: -5.5,-17.5
+ parent: 1
+ type: Transform
+- proto: CrateChemistryP
+ entities:
+ - uid: 379
+ components:
+ - pos: -5.5,-14.5
+ parent: 1
+ type: Transform
+- proto: CrateChemistryS
+ entities:
+ - uid: 380
+ components:
+ - pos: -7.5,-14.5
+ parent: 1
+ type: Transform
- proto: CrowbarRed
entities:
- uid: 425
@@ -1905,6 +1942,53 @@ entities:
- pos: -2.6394038,1.270113
parent: 1
type: Transform
+- proto: Eggshells
+ entities:
+ - uid: 341
+ components:
+ - pos: 1.239249,-15.080102
+ parent: 1
+ type: Transform
+ - uid: 351
+ components:
+ - pos: 2.30122,-15.863964
+ parent: 1
+ type: Transform
+ - uid: 354
+ components:
+ - pos: 2.715496,-18.09944
+ parent: 1
+ type: Transform
+ - uid: 355
+ components:
+ - pos: 0.040803254,-18.866049
+ parent: 1
+ type: Transform
+ - uid: 363
+ components:
+ - pos: 1.0616367,-19.105799
+ parent: 1
+ type: Transform
+ - uid: 370
+ components:
+ - pos: 1.2866013,-18.318907
+ parent: 1
+ type: Transform
+ - uid: 451
+ components:
+ - pos: 3.7988815,-15.246962
+ parent: 1
+ type: Transform
+ - uid: 496
+ components:
+ - pos: 2.621189,-16.868666
+ parent: 1
+ type: Transform
+ - uid: 513
+ components:
+ - pos: -0.4859361,-14.443678
+ parent: 1
+ type: Transform
- proto: EmergencyLight
entities:
- uid: 301
@@ -2162,6 +2246,43 @@ entities:
- ShutdownSubscribers:
- 466
type: DeviceNetwork
+- proto: FoodEgg
+ entities:
+ - uid: 47
+ components:
+ - name: Spider egg
+ type: MetaData
+ - pos: 3.9900136,-16.748203
+ parent: 1
+ type: Transform
+ - uid: 360
+ components:
+ - name: Spider egg
+ type: MetaData
+ - pos: 4.104988,-16.852442
+ parent: 1
+ type: Transform
+ - uid: 375
+ components:
+ - name: Spider egg
+ type: MetaData
+ - pos: 4.2191806,-16.748203
+ parent: 1
+ type: Transform
+ - uid: 444
+ components:
+ - name: Spider egg
+ type: MetaData
+ - pos: 3.9691806,-16.92541
+ parent: 1
+ type: Transform
+ - uid: 514
+ components:
+ - name: Spider egg
+ type: MetaData
+ - pos: 4.1926556,-17.002691
+ parent: 1
+ type: Transform
- proto: FoodPlateSmallTrash
entities:
- uid: 486
@@ -2992,14 +3113,6 @@ entities:
type: Transform
- canCollide: False
type: Physics
- - uid: 609
- components:
- - flags: InContainer
- type: MetaData
- - parent: 84
- type: Transform
- - canCollide: False
- type: Physics
- uid: 617
components:
- flags: InContainer
@@ -3328,15 +3441,17 @@ entities:
pos: -0.5,-0.5
parent: 1
type: Transform
- - enabled: False
+ - softness: 0.5
+ energy: 4
+ color: '#FFAF38FF'
type: PointLight
- containers:
light_bulb: !type:ContainerSlot
showEnts: False
occludes: True
- ent: 609
+ ent: 280
type: ContainerContainer
- - powerLoad: 0
+ - powerLoad: 100
type: ApcPowerReceiver
- uid: 613
components:
@@ -3877,7 +3992,7 @@ entities:
68:
- Pressed: Toggle
type: DeviceLinkSource
-
+ - type: ItemCooldown
- proto: SignArmory
entities:
- uid: 686
@@ -3924,6 +4039,16 @@ entities:
- pos: 0.5,-15.5
parent: 1
type: Transform
+- proto: SodiumLightTube
+ entities:
+ - uid: 280
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 84
+ type: Transform
+ - canCollide: False
+ type: Physics
- proto: SpawnPointLatejoin
entities:
- uid: 627
@@ -3950,8 +4075,7 @@ entities:
entities:
- uid: 14
components:
- - rot: 3.141592653589793 rad
- pos: 0.5,-15.5
+ - pos: -2.5,-18.5
parent: 1
type: Transform
- uid: 33
@@ -3959,15 +4083,9 @@ entities:
- pos: -8.5,-7.5
parent: 1
type: Transform
- - uid: 47
- components:
- - rot: -1.5707963267948966 rad
- pos: -4.5,-19.5
- parent: 1
- type: Transform
- uid: 59
components:
- - pos: -0.5,-19.5
+ - pos: -2.5,-15.5
parent: 1
type: Transform
- uid: 131
@@ -3978,8 +4096,7 @@ entities:
type: Transform
- uid: 133
components:
- - rot: 3.141592653589793 rad
- pos: -5.5,-4.5
+ - pos: 0.5,-13.5
parent: 1
type: Transform
- uid: 144
@@ -3989,8 +4106,7 @@ entities:
type: Transform
- uid: 212
components:
- - rot: 3.141592653589793 rad
- pos: -0.5,-8.5
+ - pos: 4.5,-17.5
parent: 1
type: Transform
- uid: 279
@@ -4001,14 +4117,12 @@ entities:
type: Transform
- uid: 299
components:
- - rot: -1.5707963267948966 rad
- pos: -7.5,-17.5
+ - pos: -1.5,-7.5
parent: 1
type: Transform
- uid: 337
components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,-16.5
+ - pos: -6.5,-16.5
parent: 1
type: Transform
- uid: 342
@@ -4017,183 +4131,172 @@ entities:
pos: -8.5,-16.5
parent: 1
type: Transform
- - uid: 447
+ - uid: 381
components:
- - pos: 3.5,-6.5
+ - pos: 0.5,-17.5
parent: 1
type: Transform
- - uid: 610
+ - uid: 382
components:
- - rot: -1.5707963267948966 rad
- pos: -8.5,-7.5
+ - pos: -5.5,-17.5
parent: 1
type: Transform
- - uid: 611
+ - uid: 384
components:
- - pos: -1.5,-20.5
+ - pos: -7.5,-17.5
parent: 1
type: Transform
- - uid: 621
+ - uid: 401
components:
- - rot: -1.5707963267948966 rad
- pos: -2.5,-15.5
+ - pos: -2.5,-17.5
parent: 1
type: Transform
- - uid: 624
+ - uid: 447
components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,-15.5
+ - pos: -1.5,-10.5
parent: 1
type: Transform
- - uid: 639
+ - uid: 449
components:
- - rot: -1.5707963267948966 rad
- pos: -2.5,-17.5
+ - pos: -3.5,-19.5
parent: 1
type: Transform
- - uid: 681
+ - uid: 457
components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,-2.5
+ - pos: -4.5,-19.5
parent: 1
type: Transform
- - uid: 683
+ - uid: 472
components:
- - pos: -5.5,-15.5
+ - pos: 0.5,-16.5
parent: 1
type: Transform
- - uid: 695
+ - uid: 473
components:
- - pos: -6.5,-16.5
+ - pos: -2.5,-6.5
parent: 1
type: Transform
- - uid: 696
+ - uid: 474
components:
- - pos: -4.5,-16.5
+ - pos: -7.5,-4.5
parent: 1
type: Transform
- - uid: 699
+ - uid: 475
components:
- - rot: -1.5707963267948966 rad
- pos: 1.5,-19.5
+ - pos: -0.5,-5.5
parent: 1
type: Transform
- - uid: 700
+ - uid: 476
components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,-9.5
+ - pos: -2.5,-3.5
parent: 1
type: Transform
- - uid: 701
+ - uid: 490
components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,-5.5
+ - pos: 3.5,-4.5
parent: 1
type: Transform
- - uid: 702
+ - uid: 491
components:
- - rot: -1.5707963267948966 rad
- pos: -2.5,-7.5
+ - pos: 3.5,-16.5
parent: 1
type: Transform
- - uid: 703
+ - uid: 492
components:
- - rot: -1.5707963267948966 rad
- pos: 3.5,-10.5
+ - pos: 3.5,-17.5
parent: 1
type: Transform
- - uid: 705
+ - uid: 493
components:
- - rot: -1.5707963267948966 rad
- pos: -2.5,0.5
+ - pos: 2.5,-17.5
parent: 1
type: Transform
- - uid: 706
+ - uid: 494
components:
- - rot: -1.5707963267948966 rad
- pos: -2.5,-4.5
+ - pos: -5.5,-4.5
parent: 1
type: Transform
- - uid: 708
+ - uid: 495
components:
- - pos: -5.5,-3.5
+ - pos: 4.5,-16.5
parent: 1
type: Transform
- - uid: 709
+ - uid: 497
components:
- - pos: -6.5,-10.5
+ - pos: -4.5,-18.5
parent: 1
type: Transform
- - uid: 711
+ - uid: 498
components:
- - rot: 1.5707963267948966 rad
- pos: 0.5,-8.5
+ - pos: -2.5,0.5
parent: 1
type: Transform
- - uid: 713
+ - uid: 499
components:
- - pos: 1.5,-6.5
+ - pos: -0.5,-15.5
parent: 1
type: Transform
- - uid: 715
+ - uid: 507
components:
- - pos: 5.5,-15.5
+ - pos: -5.5,-15.5
parent: 1
type: Transform
- - uid: 775
+ - uid: 510
components:
- - pos: -0.5,-21.5
+ - pos: -5.5,-16.5
parent: 1
type: Transform
- - uid: 790
+ - uid: 515
components:
- - rot: -1.5707963267948966 rad
- pos: -9.5,-5.5
+ - pos: 0.5,-19.5
parent: 1
type: Transform
- - uid: 832
+ - uid: 516
components:
- - pos: -6.5,-16.5
+ - pos: -7.5,-5.5
parent: 1
type: Transform
- - uid: 856
+ - uid: 517
components:
- - pos: -6.5,-15.5
+ - pos: 1.5,-3.5
parent: 1
type: Transform
- - uid: 857
+ - uid: 518
components:
- - pos: -5.5,-16.5
+ - pos: 4.5,-4.5
parent: 1
type: Transform
- - uid: 860
+ - uid: 519
components:
- - pos: -4.5,-17.5
+ - pos: 4.5,-15.5
parent: 1
type: Transform
- - uid: 869
+ - uid: 520
components:
- - pos: -7.5,-15.5
+ - pos: 5.5,-16.5
parent: 1
type: Transform
- - uid: 870
+ - uid: 610
components:
- - pos: -6.5,-14.5
+ - rot: -1.5707963267948966 rad
+ pos: -8.5,-7.5
parent: 1
type: Transform
- - uid: 871
+ - uid: 611
components:
- - pos: 5.5,-17.5
+ - pos: -1.5,-20.5
parent: 1
type: Transform
- - uid: 874
+ - uid: 681
components:
- - pos: 1.5,-14.5
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-2.5
parent: 1
type: Transform
- - uid: 875
+ - uid: 700
components:
- - pos: -2.5,-13.5
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-9.5
parent: 1
type: Transform
- uid: 877
@@ -4201,31 +4304,6 @@ entities:
- pos: 2.5,-2.5
parent: 1
type: Transform
- - uid: 881
- components:
- - pos: 5.5,-5.5
- parent: 1
- type: Transform
- - uid: 882
- components:
- - pos: 6.5,-4.5
- parent: 1
- type: Transform
- - uid: 883
- components:
- - pos: 5.5,-4.5
- parent: 1
- type: Transform
- - uid: 885
- components:
- - pos: -7.5,-5.5
- parent: 1
- type: Transform
- - uid: 886
- components:
- - pos: -7.5,-4.5
- parent: 1
- type: Transform
- proto: Stairs
entities:
- uid: 716
@@ -5253,33 +5331,26 @@ entities:
type: Transform
- id: Mayflower
type: BecomesStation
-- proto: WeaponRackWallmountedMercenary
- entities:
- - uid: 280
- components:
- - pos: -3.5,-0.5
- parent: 1
- type: Transform
- proto: WebNest
entities:
- - uid: 697
+ - uid: 343
components:
- - pos: -6.5,-15.5
+ - pos: 4.5,-16.5
parent: 1
type: Transform
- - uid: 714
+ - uid: 350
components:
- - pos: -5.5,-16.5
+ - pos: 4.5,-17.5
parent: 1
type: Transform
- - uid: 732
+ - uid: 361
components:
- - pos: -6.5,-16.5
+ - pos: 3.5,-16.5
parent: 1
type: Transform
- - uid: 759
+ - uid: 362
components:
- - pos: -5.5,-15.5
+ - pos: 3.5,-17.5
parent: 1
type: Transform
- proto: WindoorSecure
diff --git a/Resources/Maps/_NF/Shuttles/menace.yml b/Resources/Maps/_NF/Shuttles/menace.yml
new file mode 100644
index 000000000000..6336075c1064
--- /dev/null
+++ b/Resources/Maps/_NF/Shuttles/menace.yml
@@ -0,0 +1,1147 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 33: FloorDarkMono
+ 37: FloorDarkPlastic
+ 44: FloorGlass
+ 97: FloorTechMaint
+ 113: Lattice
+ 114: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 103
+ components:
+ - type: MetaData
+ - pos: 0.015568733,-0.010050297
+ parent: invalid
+ type: Transform
+ - chunks:
+ 0,0:
+ ind: 0,0
+ tiles: JQAAAAAAYQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAIQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAIQAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAIQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ type: MapGrid
+ - type: Broadphase
+ - bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ type: Physics
+ - fixtures: {}
+ type: Fixtures
+ - type: OccluderTree
+ - type: Shuttle
+ - type: GridPathfinding
+ - gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ type: Gravity
+ - chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ angle: -1.5707963267948966 rad
+ color: '#95E5FFFF'
+ id: ArrowsGreyscale
+ decals:
+ 1: -2,1
+ - node:
+ color: '#95E5FFB2'
+ id: BotGreyscale
+ decals:
+ 0: -2,1
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteLineE
+ decals:
+ 5: 1,1
+ 6: 1,2
+ 7: 1,3
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerNE
+ decals:
+ 4: -1,0
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerNW
+ decals:
+ 3: 1,0
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineW
+ decals:
+ 2: -2,0
+ type: DecalGrid
+ - version: 2
+ data:
+ tiles:
+ 0,0:
+ 0: 30583
+ 1: 34952
+ 0,-1:
+ 0: 30579
+ 1: 4
+ -1,-1:
+ 1: 36
+ 0: 61128
+ -1,0:
+ 0: 52974
+ 1: 8192
+ 0,1:
+ 0: 3
+ 1: 12
+ -1,1:
+ 1: 6
+ 0: 8
+ 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:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ type: GridAtmosphere
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+ - id: mailhunter
+ type: BecomesStation
+ - type: SpreaderGrid
+- proto: ActionToggleInternals
+ entities:
+ - uid: 53
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 5
+ type: Transform
+ - container: 5
+ type: InstantAction
+ - uid: 131
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 18
+ type: Transform
+ - container: 18
+ type: InstantAction
+- proto: AirAlarm
+ entities:
+ - uid: 125
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,3.5
+ parent: 103
+ type: Transform
+ - ShutdownSubscribers:
+ - 82
+ - 40
+ type: DeviceNetwork
+ - devices:
+ - 82
+ - 40
+ type: DeviceList
+- proto: AirCanister
+ entities:
+ - uid: 2
+ components:
+ - anchored: True
+ pos: -0.5,0.5
+ parent: 103
+ type: Transform
+ - bodyType: Static
+ type: Physics
+- proto: AirlockShuttle
+ entities:
+ - uid: 13
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,1.5
+ parent: 103
+ type: Transform
+- proto: AmeController
+ entities:
+ - uid: 87
+ components:
+ - pos: 1.5,0.5
+ parent: 103
+ type: Transform
+ - injecting: True
+ type: AmeController
+ - containers:
+ AmeFuel: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 88
+ type: ContainerContainer
+- proto: AmeJar
+ entities:
+ - uid: 88
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 87
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: AmeShielding
+ entities:
+ - uid: 3
+ components:
+ - pos: -0.5,-2.5
+ parent: 103
+ type: Transform
+ - uid: 6
+ components:
+ - pos: -0.5,-1.5
+ parent: 103
+ type: Transform
+ - uid: 8
+ components:
+ - pos: -0.5,-0.5
+ parent: 103
+ type: Transform
+ - uid: 9
+ components:
+ - pos: 0.5,-2.5
+ parent: 103
+ type: Transform
+ - uid: 15
+ components:
+ - pos: 0.5,-1.5
+ parent: 103
+ type: Transform
+ - radius: 2
+ enabled: True
+ type: PointLight
+ - uid: 17
+ components:
+ - pos: 0.5,-0.5
+ parent: 103
+ type: Transform
+ - uid: 110
+ components:
+ - pos: 1.5,-0.5
+ parent: 103
+ type: Transform
+ - uid: 111
+ components:
+ - pos: 1.5,-1.5
+ parent: 103
+ type: Transform
+ - uid: 112
+ components:
+ - pos: 1.5,-2.5
+ parent: 103
+ type: Transform
+- proto: APCBasic
+ entities:
+ - uid: 84
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,1.5
+ parent: 103
+ type: Transform
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 45
+ components:
+ - pos: -2.5,1.5
+ parent: 103
+ type: Transform
+ - uid: 86
+ components:
+ - pos: 2.5,2.5
+ parent: 103
+ type: Transform
+- proto: AtmosFixBlockerMarker
+ entities:
+ - uid: 57
+ components:
+ - pos: 3.5,0.5
+ parent: 103
+ type: Transform
+ - uid: 77
+ components:
+ - pos: -2.5,3.5
+ parent: 103
+ type: Transform
+ - uid: 78
+ components:
+ - pos: 3.5,2.5
+ parent: 103
+ type: Transform
+ - uid: 89
+ components:
+ - pos: 3.5,1.5
+ parent: 103
+ type: Transform
+ - uid: 92
+ components:
+ - pos: 3.5,3.5
+ parent: 103
+ type: Transform
+ - uid: 98
+ components:
+ - pos: -2.5,4.5
+ parent: 103
+ type: Transform
+ - uid: 99
+ components:
+ - pos: -1.5,4.5
+ parent: 103
+ type: Transform
+ - uid: 107
+ components:
+ - pos: 2.5,-3.5
+ parent: 103
+ type: Transform
+ - uid: 108
+ components:
+ - pos: -1.5,-3.5
+ parent: 103
+ type: Transform
+ - uid: 109
+ components:
+ - pos: -2.5,-2.5
+ parent: 103
+ type: Transform
+ - uid: 121
+ components:
+ - pos: 3.5,4.5
+ parent: 103
+ type: Transform
+ - uid: 122
+ components:
+ - pos: 2.5,4.5
+ parent: 103
+ type: Transform
+- proto: BlastDoor
+ entities:
+ - uid: 81
+ components:
+ - pos: 2.5,2.5
+ parent: 103
+ type: Transform
+ - links:
+ - 61
+ type: DeviceLinkSink
+- proto: CableApcExtension
+ entities:
+ - uid: 19
+ components:
+ - pos: 2.5,1.5
+ parent: 103
+ type: Transform
+ - uid: 23
+ components:
+ - pos: 0.5,-1.5
+ parent: 103
+ type: Transform
+ - uid: 24
+ components:
+ - pos: 0.5,-2.5
+ parent: 103
+ type: Transform
+ - uid: 27
+ components:
+ - pos: 1.5,2.5
+ parent: 103
+ type: Transform
+ - uid: 31
+ components:
+ - pos: 1.5,3.5
+ parent: 103
+ type: Transform
+ - uid: 51
+ components:
+ - pos: 1.5,1.5
+ parent: 103
+ type: Transform
+ - uid: 68
+ components:
+ - pos: 0.5,-0.5
+ parent: 103
+ type: Transform
+ - uid: 73
+ components:
+ - pos: 0.5,0.5
+ parent: 103
+ type: Transform
+ - uid: 74
+ components:
+ - pos: 0.5,1.5
+ parent: 103
+ type: Transform
+ - uid: 79
+ components:
+ - pos: -0.5,1.5
+ parent: 103
+ type: Transform
+ - uid: 80
+ components:
+ - pos: -1.5,1.5
+ parent: 103
+ type: Transform
+ - uid: 113
+ components:
+ - pos: -0.5,-2.5
+ parent: 103
+ type: Transform
+ - uid: 120
+ components:
+ - pos: -1.5,2.5
+ parent: 103
+ type: Transform
+- proto: CableHV
+ entities:
+ - uid: 43
+ components:
+ - pos: 2.5,0.5
+ parent: 103
+ type: Transform
+ - uid: 104
+ components:
+ - pos: 1.5,0.5
+ parent: 103
+ type: Transform
+- proto: CableMV
+ entities:
+ - uid: 33
+ components:
+ - pos: 2.5,1.5
+ parent: 103
+ type: Transform
+ - uid: 67
+ components:
+ - pos: 2.5,0.5
+ parent: 103
+ type: Transform
+- proto: Catwalk
+ entities:
+ - uid: 4
+ components:
+ - pos: 0.5,-1.5
+ parent: 103
+ type: Transform
+ - uid: 7
+ components:
+ - pos: 0.5,-0.5
+ parent: 103
+ type: Transform
+ - uid: 14
+ components:
+ - pos: 0.5,-2.5
+ parent: 103
+ type: Transform
+ - uid: 47
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,4.5
+ parent: 103
+ type: Transform
+ - uid: 48
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 3.5,0.5
+ parent: 103
+ type: Transform
+ - uid: 49
+ components:
+ - pos: -2.5,-2.5
+ parent: 103
+ type: Transform
+ - uid: 50
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,2.5
+ parent: 103
+ type: Transform
+ - uid: 56
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,4.5
+ parent: 103
+ type: Transform
+ - uid: 94
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,4.5
+ parent: 103
+ type: Transform
+ - uid: 101
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,3.5
+ parent: 103
+ type: Transform
+ - uid: 102
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,1.5
+ parent: 103
+ type: Transform
+ - uid: 105
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,4.5
+ parent: 103
+ type: Transform
+ - uid: 118
+ components:
+ - pos: -2.5,3.5
+ parent: 103
+ type: Transform
+- proto: ChairWood
+ entities:
+ - uid: 55
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 0.5,2.5
+ parent: 103
+ type: Transform
+- proto: ComputerTabletopIFF
+ entities:
+ - uid: 63
+ components:
+ - pos: 1.5,3.5
+ parent: 103
+ type: Transform
+- proto: ComputerTabletopShuttle
+ entities:
+ - uid: 95
+ components:
+ - pos: 0.5,3.5
+ parent: 103
+ type: Transform
+- proto: ComputerTabletopStationRecords
+ entities:
+ - uid: 96
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,2.5
+ parent: 103
+ type: Transform
+- proto: DefibrillatorCabinetFilled
+ entities:
+ - uid: 117
+ components:
+ - pos: -1.5,3.5
+ parent: 103
+ type: Transform
+- proto: EmergencyLight
+ entities:
+ - uid: 128
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,1.5
+ parent: 103
+ type: Transform
+- proto: ExtinguisherCabinetFilled
+ entities:
+ - uid: 124
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,2.5
+ parent: 103
+ type: Transform
+- proto: FaxMachineSyndie
+ entities:
+ - uid: 22
+ components:
+ - pos: -0.5,3.5
+ parent: 103
+ type: Transform
+- proto: GasPassiveVent
+ entities:
+ - uid: 114
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,2.5
+ parent: 103
+ type: Transform
+ - color: '#990000FF'
+ type: AtmosPipeColor
+- proto: GasPipeStraight
+ entities:
+ - uid: 41
+ components:
+ - pos: -0.5,2.5
+ parent: 103
+ type: Transform
+ - color: '#0000CCFF'
+ type: AtmosPipeColor
+ - uid: 62
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,2.5
+ parent: 103
+ type: Transform
+ - color: '#990000FF'
+ type: AtmosPipeColor
+ - uid: 115
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,2.5
+ parent: 103
+ type: Transform
+ - color: '#990000FF'
+ type: AtmosPipeColor
+- proto: GasPort
+ entities:
+ - uid: 39
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,0.5
+ parent: 103
+ type: Transform
+ - color: '#0000CCFF'
+ type: AtmosPipeColor
+- proto: GasPressurePump
+ entities:
+ - uid: 37
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,1.5
+ parent: 103
+ type: Transform
+ - color: '#0000CCFF'
+ type: AtmosPipeColor
+ - uid: 69
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,2.5
+ parent: 103
+ type: Transform
+ - color: '#990000FF'
+ type: AtmosPipeColor
+- proto: GasVentPump
+ entities:
+ - uid: 40
+ components:
+ - pos: -0.5,3.5
+ parent: 103
+ type: Transform
+ - ShutdownSubscribers:
+ - 125
+ type: DeviceNetwork
+ - color: '#0000CCFF'
+ type: AtmosPipeColor
+- proto: GasVentScrubber
+ entities:
+ - uid: 82
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,2.5
+ parent: 103
+ type: Transform
+ - ShutdownSubscribers:
+ - 125
+ type: DeviceNetwork
+ - color: '#990000FF'
+ type: AtmosPipeColor
+- proto: GravityGeneratorMini
+ entities:
+ - uid: 1
+ components:
+ - pos: -1.5,-0.5
+ parent: 103
+ type: Transform
+- proto: Grille
+ entities:
+ - uid: 26
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,4.5
+ parent: 103
+ type: Transform
+ - uid: 35
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,0.5
+ parent: 103
+ type: Transform
+ - uid: 36
+ components:
+ - pos: -2.5,-0.5
+ parent: 103
+ type: Transform
+ - uid: 52
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,4.5
+ parent: 103
+ type: Transform
+ - uid: 100
+ components:
+ - pos: 1.5,4.5
+ parent: 103
+ type: Transform
+- proto: GunSafeShuttleT3Spawner
+ entities:
+ - uid: 34
+ components:
+ - pos: -1.5,2.5
+ parent: 103
+ type: Transform
+- proto: Gyroscope
+ entities:
+ - uid: 119
+ components:
+ - pos: -1.5,0.5
+ parent: 103
+ type: Transform
+- proto: NitrousOxideTankFilled
+ entities:
+ - uid: 5
+ components:
+ - pos: -0.48881638,3.010011
+ parent: 103
+ type: Transform
+ - toggleActionEntity: 53
+ type: GasTank
+ - type: ActionsContainer
+ - containers:
+ actions: !type:Container
+ ents:
+ - 53
+ type: ContainerContainer
+ - uid: 18
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 10
+ type: Transform
+ - toggleActionEntity: 131
+ type: GasTank
+ - canCollide: False
+ type: Physics
+ - type: ActionsContainer
+ - containers:
+ actions: !type:Container
+ ents:
+ - 131
+ type: ContainerContainer
+- proto: PoweredlightColoredBlack
+ entities:
+ - uid: 127
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,0.5
+ parent: 103
+ type: Transform
+- proto: ReinforcedPlasmaWindow
+ entities:
+ - uid: 75
+ components:
+ - pos: 1.5,4.5
+ parent: 103
+ type: Transform
+ - uid: 83
+ components:
+ - pos: -2.5,0.5
+ parent: 103
+ type: Transform
+ - uid: 126
+ components:
+ - pos: -0.5,4.5
+ parent: 103
+ type: Transform
+ - uid: 129
+ components:
+ - pos: -2.5,-0.5
+ parent: 103
+ type: Transform
+ - uid: 130
+ components:
+ - pos: 0.5,4.5
+ parent: 103
+ type: Transform
+- proto: ShuttersRadiationOpen
+ entities:
+ - uid: 137
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,0.5
+ parent: 103
+ type: Transform
+ - links:
+ - 143
+ type: DeviceLinkSink
+ - uid: 138
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-0.5
+ parent: 103
+ type: Transform
+ - links:
+ - 143
+ type: DeviceLinkSink
+ - uid: 139
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,4.5
+ parent: 103
+ type: Transform
+ - links:
+ - 143
+ type: DeviceLinkSink
+ - uid: 140
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 0.5,4.5
+ parent: 103
+ type: Transform
+ - links:
+ - 143
+ type: DeviceLinkSink
+ - uid: 141
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 1.5,4.5
+ parent: 103
+ type: Transform
+ - links:
+ - 143
+ type: DeviceLinkSink
+ - uid: 142
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,1.5
+ parent: 103
+ type: Transform
+ - links:
+ - 143
+ type: DeviceLinkSink
+- proto: SignalButton
+ entities:
+ - uid: 61
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,3.5
+ parent: 103
+ type: Transform
+ - linkedPorts:
+ 81:
+ - Pressed: Toggle
+ type: DeviceLinkSource
+ - uid: 143
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5008554,3.2410142
+ parent: 103
+ type: Transform
+ - linkedPorts:
+ 141:
+ - Pressed: Toggle
+ 140:
+ - Pressed: Toggle
+ 139:
+ - Pressed: Toggle
+ 142:
+ - Pressed: Toggle
+ 137:
+ - Pressed: Toggle
+ 138:
+ - Pressed: Toggle
+ type: DeviceLinkSource
+- proto: SignMail
+ entities:
+ - uid: 136
+ components:
+ - pos: -2.5,-1.5
+ parent: 103
+ type: Transform
+- proto: SpawnPointLatejoin
+ entities:
+ - uid: 60
+ components:
+ - pos: 0.5,1.5
+ parent: 103
+ type: Transform
+- proto: SpawnPointMailCarrier
+ entities:
+ - uid: 135
+ components:
+ - pos: -0.5,1.5
+ parent: 103
+ type: Transform
+- proto: SpawnPointMercenary
+ entities:
+ - uid: 132
+ components:
+ - pos: 1.5,1.5
+ parent: 103
+ type: Transform
+- proto: SpawnPointPilot
+ entities:
+ - uid: 133
+ components:
+ - pos: 0.5,2.5
+ parent: 103
+ type: Transform
+- proto: SubstationWallBasic
+ entities:
+ - uid: 72
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,0.5
+ parent: 103
+ type: Transform
+- proto: SuitStorageEVAPirate
+ entities:
+ - uid: 123
+ components:
+ - pos: 0.5,0.5
+ parent: 103
+ type: Transform
+- proto: TableCarpet
+ entities:
+ - uid: 32
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,2.5
+ parent: 103
+ type: Transform
+- proto: TableWoodReinforced
+ entities:
+ - uid: 11
+ components:
+ - pos: -0.5,2.5
+ parent: 103
+ type: Transform
+ - uid: 21
+ components:
+ - pos: -0.5,3.5
+ parent: 103
+ type: Transform
+ - uid: 54
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 0.5,3.5
+ parent: 103
+ type: Transform
+ - uid: 58
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 1.5,3.5
+ parent: 103
+ type: Transform
+- proto: Thruster
+ entities:
+ - uid: 65
+ components:
+ - pos: -2.5,4.5
+ parent: 103
+ type: Transform
+ - uid: 76
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,-2.5
+ parent: 103
+ type: Transform
+ - uid: 97
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 3.5,0.5
+ parent: 103
+ type: Transform
+ - uid: 116
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,4.5
+ parent: 103
+ type: Transform
+- proto: WallMining
+ entities:
+ - uid: 12
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-1.5
+ parent: 103
+ type: Transform
+ - uid: 16
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-1.5
+ parent: 103
+ type: Transform
+ - uid: 20
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,3.5
+ parent: 103
+ type: Transform
+ - uid: 25
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-2.5
+ parent: 103
+ type: Transform
+ - uid: 28
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-0.5
+ parent: 103
+ type: Transform
+ - uid: 30
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 0.5,-3.5
+ parent: 103
+ type: Transform
+ - uid: 38
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,2.5
+ parent: 103
+ type: Transform
+ - uid: 42
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,-3.5
+ parent: 103
+ type: Transform
+ - uid: 44
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-2.5
+ parent: 103
+ type: Transform
+ - uid: 59
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,1.5
+ parent: 103
+ type: Transform
+ - uid: 66
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,3.5
+ parent: 103
+ type: Transform
+ - uid: 71
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-3.5
+ parent: 103
+ type: Transform
+ - uid: 91
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-1.5
+ parent: 103
+ type: Transform
+ - uid: 106
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,0.5
+ parent: 103
+ type: Transform
+- proto: WallMiningDiagonal
+ entities:
+ - uid: 29
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-3.5
+ parent: 103
+ type: Transform
+ - uid: 46
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 3.5,1.5
+ parent: 103
+ type: Transform
+ - uid: 64
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-3.5
+ parent: 103
+ type: Transform
+ - uid: 70
+ components:
+ - pos: -2.5,3.5
+ parent: 103
+ type: Transform
+ - uid: 85
+ components:
+ - pos: -1.5,4.5
+ parent: 103
+ type: Transform
+ - uid: 90
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,3.5
+ parent: 103
+ type: Transform
+ - uid: 93
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,4.5
+ parent: 103
+ type: Transform
+- proto: WarpPointShip
+ entities:
+ - uid: 134
+ components:
+ - pos: 1.5,2.5
+ parent: 103
+ type: Transform
+- proto: WeaponImprovisedPneumaticCannon
+ entities:
+ - uid: 10
+ components:
+ - pos: -0.3918358,2.7159653
+ parent: 103
+ type: Transform
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ gas_tank: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 18
+ type: ContainerContainer
+...
diff --git a/Resources/Maps/_NF/Shuttles/pheonix.yml b/Resources/Maps/_NF/Shuttles/phoenix.yml
similarity index 79%
rename from Resources/Maps/_NF/Shuttles/pheonix.yml
rename to Resources/Maps/_NF/Shuttles/phoenix.yml
index 6230ee3e8667..073d9a143300 100644
--- a/Resources/Maps/_NF/Shuttles/pheonix.yml
+++ b/Resources/Maps/_NF/Shuttles/phoenix.yml
@@ -30,19 +30,19 @@ entities:
chunks:
0,0:
ind: 0,0
- tiles: aQAAAAAAHgAAAAAAIgAAAAABIgAAAAADIgAAAAAAHgAAAAACHgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAABIgAAAAACIgAAAAACIgAAAAADHgAAAAADHgAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAABaQAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAADbQAAAAADbQAAAAADbQAAAAACbQAAAAACbQAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACbQAAAAABIgAAAAACIgAAAAADIgAAAAAAbQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAABbQAAAAAAIgAAAAACIgAAAAADIgAAAAABbQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAABcgAAAAADcgAAAAAAcgAAAAABbQAAAAACbQAAAAAAbQAAAAADbQAAAAADcQAAAAACcQAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAABbQAAAAABegAAAAAAegAAAAAAbQAAAAACbQAAAAABbQAAAAAAbQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADegAAAAAAegAAAAAAeQAAAAAAegAAAAAAZQAAAAABPwAAAAAAPwAAAAAAPwAAAAAAaQAAAAAAHgAAAAACHgAAAAACegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAZQAAAAADPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAABegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAZQAAAAADPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAADegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAZQAAAAADPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAABHgAAAAADHgAAAAABegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: aQAAAAAAHgAAAAAAIgAAAAADIgAAAAADIgAAAAABHgAAAAAAHgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAABIgAAAAAAIgAAAAADIgAAAAAAHgAAAAADHgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAADbQAAAAABbQAAAAACbQAAAAACbQAAAAACbQAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAABbQAAAAACIgAAAAACIgAAAAABIgAAAAADbQAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACbQAAAAADIgAAAAABIgAAAAABIgAAAAABbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAADcgAAAAAAcgAAAAABcgAAAAAAbQAAAAABbQAAAAABbQAAAAAAbQAAAAABcQAAAAADcQAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAABbQAAAAACegAAAAAAegAAAAAAbQAAAAAAbQAAAAABbQAAAAADbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACegAAAAAAegAAAAAAeQAAAAAAegAAAAAAZQAAAAACPwAAAAAAPwAAAAAAPwAAAAAAaQAAAAAAHgAAAAADHgAAAAABegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAZQAAAAABPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAACHgAAAAACHgAAAAACegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAZQAAAAABPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAADegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAZQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAACHgAAAAADHgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAADHgAAAAABIgAAAAADIgAAAAADIgAAAAABHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAAAHgAAAAAAIgAAAAAAIgAAAAACIgAAAAACHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAAAHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAACegAAAAAAbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAADHgAAAAADHgAAAAABaQAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAACegAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAYQAAAAAAYQAAAAAAegAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAADegAAAAAAcgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAaQAAAAAAHgAAAAABHgAAAAADHgAAAAADegAAAAAAegAAAAAAbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAWgAAAAACZQAAAAADegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAWgAAAAAAZQAAAAABegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAYQAAAAAAYQAAAAAAWgAAAAADZQAAAAABegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAAAHgAAAAAAIgAAAAADIgAAAAAAIgAAAAADHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAAAHgAAAAAAIgAAAAAAIgAAAAADIgAAAAACHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAABHgAAAAAAHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAABHgAAAAABHgAAAAADegAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAADaQAAAAAAbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAADHgAAAAACegAAAAAAbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAYQAAAAAAYQAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAADegAAAAAAcgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAaQAAAAAAHgAAAAADHgAAAAACHgAAAAADegAAAAAAegAAAAAAbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAWgAAAAACZQAAAAACegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAWgAAAAACZQAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAYQAAAAAAYQAAAAAAWgAAAAADZQAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-1:
ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAACZQAAAAAAWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAADWgAAAAACZQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAADZQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAABZQAAAAABZQAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAABIwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAACHgAAAAADHgAAAAADQQAAAAAAQQAAAAAAHgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAACZQAAAAAAWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAABWgAAAAAAZQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAABZQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAABZQAAAAABZQAAAAAAZQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAACIwAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAABQQAAAAAAQQAAAAAAHgAAAAAB
version: 6
0,-1:
ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAADWgAAAAABegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADWgAAAAABZQAAAAADWgAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABZQAAAAADWgAAAAAAWgAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAABWgAAAAACWgAAAAACWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADZQAAAAABWgAAAAAAWgAAAAACWgAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAHgAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAABWgAAAAADegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADWgAAAAAAZQAAAAADWgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAACZQAAAAACWgAAAAABWgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAACZQAAAAABWgAAAAADWgAAAAACWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAACZQAAAAAAWgAAAAACWgAAAAADWgAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- type: Broadphase
- type: Physics
@@ -87,18 +87,18 @@ entities:
color: '#D381C996'
id: BotGreyscale
decals:
- 144: 2,7
- 145: 3,7
- 146: 2,7
- 147: 3,7
- 148: 5,11
- 149: 5,10
- 150: 5,9
- 151: 5,11
- 152: 5,10
- 153: 5,9
+ 143: 2,7
+ 144: 3,7
+ 145: 2,7
+ 146: 3,7
+ 147: 5,11
+ 148: 5,10
+ 149: 5,9
+ 150: 5,11
+ 151: 5,10
+ 152: 5,9
+ 153: 5,12
154: 5,12
- 155: 5,12
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerNe
@@ -260,485 +260,485 @@ entities:
color: '#D381C996'
id: DeliveryGreyscale
decals:
- 162: -3,-2
- 163: -2,-2
+ 161: -3,-2
+ 162: -2,-2
- node:
cleanable: True
color: '#A4610696'
id: Dirt
decals:
- 164: 2,-3
- 165: 3,-3
- 166: 2,-4
- 167: 3,-4
- 168: 4,-3
- 169: 4,-4
- 170: 3,-5
- 171: 3,-6
- 172: 2,-6
- 173: 1,-6
- 174: 1,-5
- 175: 0,-6
- 176: -1,-5
- 177: -1,-4
- 178: 1,-3
- 179: -1,-3
- 180: -2,-4
- 181: -3,-6
- 182: -3,-7
- 183: -2,-7
- 184: -2,-6
- 185: -1,-7
- 186: 1,-7
- 187: -1,-6
- 188: -3,-4
- 189: -3,-3
- 190: -4,-3
- 191: -2,-3
+ 163: 2,-3
+ 164: 3,-3
+ 165: 2,-4
+ 166: 3,-4
+ 167: 4,-3
+ 168: 4,-4
+ 169: 3,-5
+ 170: 3,-6
+ 171: 2,-6
+ 172: 1,-6
+ 173: 1,-5
+ 174: 0,-6
+ 175: -1,-5
+ 176: -1,-4
+ 177: 1,-3
+ 178: -1,-3
+ 179: -2,-4
+ 180: -3,-6
+ 181: -3,-7
+ 182: -2,-7
+ 183: -2,-6
+ 184: -1,-7
+ 185: 1,-7
+ 186: -1,-6
+ 187: -3,-4
+ 188: -3,-3
+ 189: -4,-3
+ 190: -2,-3
+ 191: -3,-1
192: -3,-1
- 193: -3,-1
- 194: -1,0
- 195: -2,-2
- 196: -3,-2
- 197: -2,-2
- 198: -1,-1
- 199: -2,-3
+ 193: -1,0
+ 194: -2,-2
+ 195: -3,-2
+ 196: -2,-2
+ 197: -1,-1
+ 198: -2,-3
+ 199: -3,-2
200: -3,-2
- 201: -3,-2
+ 201: -2,0
202: -2,0
- 203: -2,0
+ 203: -1,2
204: -1,2
- 205: -1,2
- 206: -3,0
- 207: -4,0
- 208: -4,-1
- 209: -5,-1
- 210: -5,1
+ 205: -3,0
+ 206: -4,0
+ 207: -4,-1
+ 208: -5,-1
+ 209: -5,1
+ 210: -5,0
211: -5,0
- 212: -5,0
- 213: -1,2
+ 212: -1,2
+ 213: -1,4
214: -1,4
- 215: -1,4
- 216: -5,2
- 217: -1,5
- 218: 0,7
- 219: 1,7
- 220: 0,8
- 221: -1,7
- 222: 0,6
- 223: 1,5
- 224: -1,5
- 225: 1,4
- 226: 3,4
- 227: 3,5
- 228: 3,6
- 229: 2,6
- 230: 6,8
- 231: 4,6
- 232: 3,6
- 233: 5,8
- 234: 6,8
- 235: 7,8
- 236: 6,7
- 237: 4,7
- 238: 8,8
- 239: 8,9
- 240: 7,9
- 241: 6,10
- 242: 6,11
- 243: 5,10
- 244: 5,9
- 245: 5,11
- 246: 5,12
- 247: -5,10
+ 215: -5,2
+ 216: -1,5
+ 217: 0,7
+ 218: 1,7
+ 219: 0,8
+ 220: -1,7
+ 221: 0,6
+ 222: 1,5
+ 223: -1,5
+ 224: 1,4
+ 225: 3,4
+ 226: 3,5
+ 227: 3,6
+ 228: 2,6
+ 229: 6,8
+ 230: 4,6
+ 231: 3,6
+ 232: 5,8
+ 233: 6,8
+ 234: 7,8
+ 235: 6,7
+ 236: 4,7
+ 237: 8,8
+ 238: 8,9
+ 239: 7,9
+ 240: 6,10
+ 241: 6,11
+ 242: 5,10
+ 243: 5,9
+ 244: 5,11
+ 245: 5,12
+ 246: -5,10
+ 247: -5,12
248: -5,12
- 249: -5,12
+ 249: -5,10
250: -5,10
- 251: -5,10
- 252: -5,11
- 253: -6,10
- 254: -6,11
+ 251: -5,11
+ 252: -6,10
+ 253: -6,11
+ 254: -6,12
255: -6,12
- 256: -6,12
- 257: -6,11
- 258: -6,10
- 259: -6,8
- 260: -6,7
- 261: -5,7
- 262: -4,6
+ 256: -6,11
+ 257: -6,10
+ 258: -6,8
+ 259: -6,7
+ 260: -5,7
+ 261: -4,6
+ 262: -4,5
263: -4,5
- 264: -4,5
- 265: -3,5
- 266: -3,4
- 267: -4,4
- 268: -3,4
- 269: -5,4
- 270: -5,5
- 271: -5,7
- 272: -6,8
- 273: -5,9
- 274: -4,7
+ 264: -3,5
+ 265: -3,4
+ 266: -4,4
+ 267: -3,4
+ 268: -5,4
+ 269: -5,5
+ 270: -5,7
+ 271: -6,8
+ 272: -5,9
+ 273: -4,7
+ 274: -3,5
275: -3,5
- 276: -3,5
- 277: -5,10
- 278: -6,12
- 279: -8,10
- 280: -9,8
- 281: -10,9
+ 276: -5,10
+ 277: -6,12
+ 278: -8,10
+ 279: -9,8
+ 280: -10,9
+ 281: -11,11
282: -11,11
- 283: -11,11
- 284: -12,11
- 285: -11,10
- 286: -9,9
- 287: -10,11
- 288: -6,8
- 289: -7,8
- 290: -9,9
- 291: -9,10
- 292: -8,10
- 293: -7,12
- 294: -8,12
- 295: -8,11
- 296: -9,11
- 297: -7,10
- 298: -9,9
- 299: -8,8
- 300: -9,9
- 301: -5,12
+ 283: -12,11
+ 284: -11,10
+ 285: -9,9
+ 286: -10,11
+ 287: -6,8
+ 288: -7,8
+ 289: -9,9
+ 290: -9,10
+ 291: -8,10
+ 292: -7,12
+ 293: -8,12
+ 294: -8,11
+ 295: -9,11
+ 296: -7,10
+ 297: -9,9
+ 298: -8,8
+ 299: -9,9
+ 300: -5,12
+ 301: -5,10
302: -5,10
- 303: -5,10
- 304: -5,11
- 305: -5,10
- 306: -10,11
+ 303: -5,11
+ 304: -5,10
+ 305: -10,11
+ 306: -9,12
307: -9,12
308: -9,12
- 309: -9,12
- 310: -11,12
- 311: -12,12
- 312: -12,13
+ 309: -11,12
+ 310: -12,12
+ 311: -12,13
+ 312: -9,13
313: -9,13
- 314: -9,13
+ 314: -11,12
315: -11,12
- 316: -11,12
- 317: -9,13
- 318: -11,12
- 319: -11,13
- 320: -9,9
+ 316: -9,13
+ 317: -11,12
+ 318: -11,13
+ 319: -9,9
+ 320: -9,8
321: -9,8
- 322: -9,8
- 323: -11,10
- 324: -12,11
+ 322: -11,10
+ 323: -12,11
+ 324: -10,12
325: -10,12
- 326: -10,12
+ 326: -9,10
327: -9,10
- 328: -9,10
- 329: -8,9
- 330: -8,8
- 331: -10,9
+ 328: -8,9
+ 329: -8,8
+ 330: -10,9
+ 331: -8,11
332: -8,11
- 333: -8,11
- 334: -5,8
- 335: -5,7
- 336: -5,6
- 337: -5,5
- 338: -4,7
- 339: -5,8
- 340: -5,6
- 341: 0,8
- 342: -1,11
- 343: 0,11
- 344: 0,12
- 345: -1,12
- 346: 1,12
- 347: 0,13
- 348: -1,13
- 349: 0,13
- 350: 1,13
- 351: 0,11
- 352: -1,11
- 353: 0,10
- 354: 1,10
- 355: 1,12
- 356: 1,11
- 357: -1,10
- 358: 0,12
- 359: 1,10
- 360: 0,10
+ 333: -5,8
+ 334: -5,7
+ 335: -5,6
+ 336: -5,5
+ 337: -4,7
+ 338: -5,8
+ 339: -5,6
+ 340: 0,8
+ 341: -1,11
+ 342: 0,11
+ 343: 0,12
+ 344: -1,12
+ 345: 1,12
+ 346: 0,13
+ 347: -1,13
+ 348: 0,13
+ 349: 1,13
+ 350: 0,11
+ 351: -1,11
+ 352: 0,10
+ 353: 1,10
+ 354: 1,12
+ 355: 1,11
+ 356: -1,10
+ 357: 0,12
+ 358: 1,10
+ 359: 0,10
+ 360: -1,12
361: -1,12
- 362: -1,12
- 363: -1,7
- 364: 0,5
- 365: 1,5
- 366: 2,5
- 367: 3,6
- 368: 2,6
- 369: 4,7
- 370: 4,8
- 371: 3,7
- 372: 2,7
- 373: 3,7
- 374: 2,7
- 375: 3,7
- 376: 5,7
- 377: 4,4
- 378: 2,-1
- 379: 2,-3
- 380: 2,-2
- 381: 2,-1
- 382: 1,-1
- 383: 1,0
- 384: 2,1
+ 362: -1,7
+ 363: 0,5
+ 364: 1,5
+ 365: 2,5
+ 366: 3,6
+ 367: 2,6
+ 368: 4,7
+ 369: 4,8
+ 370: 3,7
+ 371: 2,7
+ 372: 3,7
+ 373: 2,7
+ 374: 3,7
+ 375: 5,7
+ 376: 4,4
+ 377: 2,-1
+ 378: 2,-3
+ 379: 2,-2
+ 380: 2,-1
+ 381: 1,-1
+ 382: 1,0
+ 383: 2,1
+ 384: 3,2
385: 3,2
- 386: 3,2
- 387: 4,0
- 388: 3,-1
- 389: 4,0
- 390: 5,0
- 391: 5,2
- 392: 5,0
- 393: 3,-1
- 394: 4,-1
- 395: 5,-1
- 396: 4,0
- 397: 3,1
- 398: 1,1
- 399: 1,0
- 400: 2,1
- 401: 3,2
- 402: 4,2
- 403: 3,3
- 404: 4,4
- 405: 2,4
- 406: 3,4
- 407: 5,7
- 408: 9,9
- 409: 10,9
- 410: 10,10
- 411: 10,11
- 412: 11,11
- 413: 11,10
- 414: 10,9
- 415: 10,11
- 416: 11,11
- 417: 11,10
- 418: 10,9
- 419: 9,9
- 420: 7,9
- 421: 6,10
- 422: 6,11
- 423: 6,12
- 424: 5,10
- 425: 5,9
- 426: 6,10
- 427: 6,12
- 428: 5,11
- 429: 5,9
+ 386: 4,0
+ 387: 3,-1
+ 388: 4,0
+ 389: 5,0
+ 390: 5,2
+ 391: 5,0
+ 392: 3,-1
+ 393: 4,-1
+ 394: 5,-1
+ 395: 4,0
+ 396: 3,1
+ 397: 1,1
+ 398: 1,0
+ 399: 2,1
+ 400: 3,2
+ 401: 4,2
+ 402: 3,3
+ 403: 4,4
+ 404: 2,4
+ 405: 3,4
+ 406: 5,7
+ 407: 9,9
+ 408: 10,9
+ 409: 10,10
+ 410: 10,11
+ 411: 11,11
+ 412: 11,10
+ 413: 10,9
+ 414: 10,11
+ 415: 11,11
+ 416: 11,10
+ 417: 10,9
+ 418: 9,9
+ 419: 7,9
+ 420: 6,10
+ 421: 6,11
+ 422: 6,12
+ 423: 5,10
+ 424: 5,9
+ 425: 6,10
+ 426: 6,12
+ 427: 5,11
+ 428: 5,9
- node:
cleanable: True
color: '#A4610696'
id: DirtHeavy
decals:
- 430: -1,1
- 431: -1,0
- 446: -4,0
- 447: -3,1
- 448: -2,1
- 449: -3,0
- 463: -3,-5
- 464: -4,-4
- 465: -2,-6
- 466: -2,-5
- 467: 0,-6
- 468: -1,-7
+ 429: -1,1
+ 430: -1,0
+ 445: -4,0
+ 446: -3,1
+ 447: -2,1
+ 448: -3,0
+ 462: -3,-5
+ 463: -4,-4
+ 464: -2,-6
+ 465: -2,-5
+ 466: 0,-6
+ 467: -1,-7
+ 468: 0,-7
469: 0,-7
- 470: 0,-7
- 471: 2,-5
- 472: 3,-4
- 473: 4,0
- 474: 3,1
- 475: 3,0
- 476: 4,0
- 477: 2,1
- 478: 3,1
- 479: 4,1
- 480: 3,6
+ 470: 2,-5
+ 471: 3,-4
+ 472: 4,0
+ 473: 3,1
+ 474: 3,0
+ 475: 4,0
+ 476: 2,1
+ 477: 3,1
+ 478: 4,1
+ 479: 3,6
+ 480: 2,5
481: 2,5
- 482: 2,5
- 483: 4,6
- 484: 0,7
- 485: 5,8
- 486: 6,7
- 487: 7,7
- 488: 7,8
- 489: -9,10
- 490: -12,11
- 491: -8,11
- 492: -7,12
- 493: -7,11
- 494: -7,10
- 495: -9,9
+ 482: 4,6
+ 483: 0,7
+ 484: 5,8
+ 485: 6,7
+ 486: 7,7
+ 487: 7,8
+ 488: -9,10
+ 489: -12,11
+ 490: -8,11
+ 491: -7,12
+ 492: -7,11
+ 493: -7,10
+ 494: -9,9
+ 495: -8,8
496: -8,8
- 497: -8,8
- 498: -6,11
- 499: -5,12
- 500: -7,12
- 501: -8,12
- 502: -8,10
- 503: -10,9
- 538: -11,10
- 539: -12,10
- 540: -11,9
+ 497: -6,11
+ 498: -5,12
+ 499: -7,12
+ 500: -8,12
+ 501: -8,10
+ 502: -10,9
+ 537: -11,10
+ 538: -12,10
+ 539: -11,9
+ 540: -10,10
541: -10,10
542: -10,10
- 543: -10,10
- 544: -1,6
- 545: 0,7
- 546: 3,7
- 547: 7,8
- 548: 5,8
- 549: 7,8
- 550: 6,6
- 551: 11,9
- 552: 10,10
- 553: 10,11
- 554: 11,10
- 555: 10,10
- 556: 10,9
- 557: 12,10
- 558: 10,12
- 588: -2,0
- 589: -2,1
- 590: -1,2
- 591: 3,1
- 592: 4,0
- 593: 4,1
- 594: 2,-1
- 595: -3,-3
- 596: -3,-5
- 597: -2,-5
- 598: -2,-3
- 599: -4,-4
- 600: -2,-5
- 601: -1,-6
- 602: 1,-6
- 603: 2,-4
- 604: 3,-4
- 605: 3,-5
- 606: 3,-6
- 607: 0,-6
+ 543: -1,6
+ 544: 0,7
+ 545: 3,7
+ 546: 7,8
+ 547: 5,8
+ 548: 7,8
+ 549: 6,6
+ 550: 11,9
+ 551: 10,10
+ 552: 10,11
+ 553: 11,10
+ 554: 10,10
+ 555: 10,9
+ 556: 12,10
+ 557: 10,12
+ 587: -2,0
+ 588: -2,1
+ 589: -1,2
+ 590: 3,1
+ 591: 4,0
+ 592: 4,1
+ 593: 2,-1
+ 594: -3,-3
+ 595: -3,-5
+ 596: -2,-5
+ 597: -2,-3
+ 598: -4,-4
+ 599: -2,-5
+ 600: -1,-6
+ 601: 1,-6
+ 602: 2,-4
+ 603: 3,-4
+ 604: 3,-5
+ 605: 3,-6
+ 606: 0,-6
- node:
cleanable: True
color: '#A4610696'
id: DirtLight
decals:
- 450: -4,0
- 451: -3,-4
- 452: -3,-6
- 453: -3,-5
- 454: -2,-5
- 455: 3,-5
- 456: 3,-4
+ 449: -4,0
+ 450: -3,-4
+ 451: -3,-6
+ 452: -3,-5
+ 453: -2,-5
+ 454: 3,-5
+ 455: 3,-4
+ 456: 2,-5
457: 2,-5
- 458: 2,-5
- 459: 3,-3
- 460: 1,-6
- 461: -1,-6
- 462: -3,-5
- 504: -10,9
- 505: -11,11
- 506: -9,11
- 507: -8,11
- 508: -8,9
- 509: -8,8
- 510: -6,8
+ 458: 3,-3
+ 459: 1,-6
+ 460: -1,-6
+ 461: -3,-5
+ 503: -10,9
+ 504: -11,11
+ 505: -9,11
+ 506: -8,11
+ 507: -8,9
+ 508: -8,8
+ 509: -6,8
+ 510: -5,8
511: -5,8
- 512: -5,8
- 513: -6,7
- 514: -5,7
- 515: -5,5
- 516: -4,6
- 517: -4,8
- 518: -4,6
+ 512: -6,7
+ 513: -5,7
+ 514: -5,5
+ 515: -4,6
+ 516: -4,8
+ 517: -4,6
+ 518: -5,5
519: -5,5
- 520: -5,5
- 521: -3,5
- 522: -4,6
+ 520: -3,5
+ 521: -4,6
- node:
cleanable: True
color: '#A4610696'
id: DirtMedium
decals:
- 432: -1,1
- 433: -1,0
- 434: -5,-1
- 435: -5,1
- 436: 2,0
- 437: 2,1
- 438: 2,0
- 439: 3,0
+ 431: -1,1
+ 432: -1,0
+ 433: -5,-1
+ 434: -5,1
+ 435: 2,0
+ 436: 2,1
+ 437: 2,0
+ 438: 3,0
+ 439: 4,1
440: 4,1
- 441: 4,1
- 442: 3,1
- 443: -3,1
- 444: -4,1
- 445: -4,0
- 523: -7,9
- 524: -8,9
- 525: -9,11
- 526: -7,11
- 527: -6,10
- 528: -6,11
- 529: -5,12
- 530: -5,10
- 531: -11,11
- 532: -12,10
+ 441: 3,1
+ 442: -3,1
+ 443: -4,1
+ 444: -4,0
+ 522: -7,9
+ 523: -8,9
+ 524: -9,11
+ 525: -7,11
+ 526: -6,10
+ 527: -6,11
+ 528: -5,12
+ 529: -5,10
+ 530: -11,11
+ 531: -12,10
+ 532: -11,9
533: -11,9
- 534: -11,9
- 535: -11,10
- 536: -12,10
- 537: -10,8
- 559: 9,10
+ 534: -11,10
+ 535: -12,10
+ 536: -10,8
+ 558: 9,10
+ 559: 10,11
560: 10,11
- 561: 10,11
- 562: 10,10
- 563: 10,9
- 564: 11,10
- 565: 11,11
+ 561: 10,10
+ 562: 10,9
+ 563: 11,10
+ 564: 11,11
+ 565: 12,10
566: 12,10
- 567: 12,10
- 568: 11,12
- 569: 12,10
- 570: 6,8
- 571: 6,7
- 572: 7,7
- 573: 5,7
- 574: 4,5
- 575: 2,5
- 576: 3,2
- 577: 2,0
- 578: 1,0
- 579: 4,0
- 580: 5,1
- 581: 5,0
- 582: 3,-1
- 583: -3,1
- 584: -4,0
- 585: -5,-1
- 586: -5,1
- 587: -3,2
+ 567: 11,12
+ 568: 12,10
+ 569: 6,8
+ 570: 6,7
+ 571: 7,7
+ 572: 5,7
+ 573: 4,5
+ 574: 2,5
+ 575: 3,2
+ 576: 2,0
+ 577: 1,0
+ 578: 4,0
+ 579: 5,1
+ 580: 5,0
+ 581: 3,-1
+ 582: -3,1
+ 583: -4,0
+ 584: -5,-1
+ 585: -5,1
+ 586: -3,2
- node:
color: '#FFFFFFFF'
id: LoadingArea
decals:
- 142: -3,-3
- 143: -2,-3
+ 141: -3,-3
+ 142: -2,-3
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
id: LoadingArea
decals:
- 140: -2,-6
- 141: 2,-6
+ 139: -2,-6
+ 140: 2,-6
- node:
color: '#D381C996'
id: MiniTileCheckerAOverlay
@@ -769,13 +769,13 @@ entities:
color: '#FFFFFFFF'
id: StandClear
decals:
- 133: 1,13
- 134: 0,13
- 135: -1,13
- 136: -9,13
- 137: -10,13
- 138: -11,13
- 139: -12,13
+ 132: 1,13
+ 133: 0,13
+ 134: -1,13
+ 135: -9,13
+ 136: -10,13
+ 137: -11,13
+ 138: -12,13
- node:
color: '#FFFFFFFF'
id: WarnCornerSE
@@ -790,7 +790,7 @@ entities:
color: '#FF0000FF'
id: WarnFullGreyscale
decals:
- 132: 2,2
+ 609: 1,-1
- node:
color: '#FFFFFFFF'
id: WarnLineE
@@ -851,32 +851,32 @@ entities:
color: '#FFDFF5FF'
id: WoodTrimThinCornerSw
decals:
- 156: 6,9
+ 155: 6,9
- node:
color: '#FFDFF5FF'
id: WoodTrimThinLineS
decals:
- 160: 7,9
- 161: 8,9
+ 159: 7,9
+ 160: 8,9
- node:
color: '#FFDFF5FF'
id: WoodTrimThinLineW
decals:
- 157: 6,10
- 158: 6,11
- 159: 6,12
+ 156: 6,10
+ 157: 6,11
+ 158: 6,12
- node:
cleanable: True
color: '#95171050'
id: splatter
decals:
- 608: -5.1562376,-0.8983073
+ 607: -5.1562376,-0.8983073
- node:
cleanable: True
color: '#C017106F'
id: splatter
decals:
- 609: -4.885404,-1.0545573
+ 608: -4.885404,-1.0545573
- type: GridAtmosphere
version: 2
data:
@@ -890,71 +890,91 @@ entities:
0,1:
0: 65535
0,2:
- 0: 30719
+ 0: 17535
+ 1: 13184
0,3:
- 0: 4087
+ 1: 4019
+ 0: 68
1,0:
- 0: 65535
+ 0: 32767
+ 1: 32768
1,1:
- 0: 65535
+ 0: 65399
+ 1: 136
1,2:
- 0: 56799
- 1: 8736
+ 0: 65535
1,3:
0: 255
2,1:
- 0: 65280
+ 0: 30464
+ 1: 34816
2,2:
0: 65535
2,3:
- 0: 3839
+ 0: 255
+ 1: 3584
3,2:
- 0: 30257
- 2: 256
+ 1: 17409
+ 0: 13104
3,3:
- 0: 1911
+ 0: 51
+ 1: 1860
-4,2:
- 0: 52352
+ 1: 17408
+ 0: 34944
-4,3:
- 0: 3276
+ 1: 3140
+ 0: 136
-3,2:
- 0: 65535
+ 1: 1
+ 0: 65534
-3,3:
- 0: 4095
+ 0: 255
+ 1: 3840
-3,1:
- 0: 60416
+ 1: 8192
+ 0: 52224
-2,1:
- 0: 65518
+ 0: 65484
+ 1: 34
-2,2:
0: 65535
-2,3:
- 0: 511
+ 0: 255
+ 1: 256
-2,0:
- 0: 61439
+ 1: 8465
+ 0: 52974
-1,1:
0: 65535
-1,2:
- 0: 56831
+ 0: 21983
+ 1: 34848
-1,3:
- 0: 3837
+ 0: 85
+ 1: 3752
-2,-1:
- 0: 65224
+ 1: 4672
+ 0: 60552
-2,-2:
- 0: 34944
+ 1: 34944
-1,-2:
- 0: 65535
+ 1: 1
+ 0: 65534
0,-2:
0: 65535
0,-1:
0: 65535
1,-2:
- 0: 13105
+ 1: 8737
+ 0: 4368
1,-1:
- 0: 65395
+ 0: 63283
+ 1: 2112
2,0:
- 0: 273
+ 1: 273
2,-1:
- 0: 4096
+ 1: 4096
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -972,26 +992,11 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 293.14996
+ temperature: 293.15
moles:
- - 20.078888
- - 75.53487
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- 0
- 0
- 0
- - volume: 2500
- temperature: 293.14993
- moles:
- - 19.950384
- - 75.051445
- - 0
- 0
- 0
- 0
@@ -1005,7 +1010,45 @@ entities:
- type: GasTileOverlay
- type: RadiationGridResistance
- type: BecomesStation
- id: Pheonix
+ id: phoenix
+- proto: AirAlarm
+ entities:
+ - uid: 879
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-0.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 848
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 880
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,8.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 874
+ - 376
+ - 505
+ - 877
+ - 503
+ - 280
+ - 507
+ - 846
+ - 845
+ - 803
+ - 802
+ - 844
+ - 797
+ - 515
+ - 813
+ - type: AtmosDevice
+ joinedGrid: 1
- proto: AirCanister
entities:
- uid: 247
@@ -1015,6 +1058,16 @@ entities:
parent: 1
- type: AtmosDevice
joinedGrid: 1
+ - uid: 272
+ components:
+ - type: Transform
+ anchored: True
+ pos: 6.5,1.5
+ parent: 1
+ - type: Physics
+ bodyType: Static
+ - type: AtmosDevice
+ joinedGrid: 1
- proto: AirlockCargo
entities:
- uid: 633
@@ -1181,1658 +1234,1585 @@ entities:
- type: Transform
pos: -1.5,-7.5
parent: 1
-- proto: Autolathe
+- proto: AtmosFixBlockerMarker
entities:
- - uid: 314
+ - uid: 39
components:
- type: Transform
- pos: 5.5,6.5
+ pos: 1.5,14.5
parent: 1
-- proto: BlastDoor
- entities:
- - uid: 329
+ - uid: 140
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 2.5,-7.5
+ pos: -13.5,11.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 640
- - uid: 333
+ - uid: 227
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -1.5,-7.5
+ pos: 3.5,14.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 640
-- proto: BlastDoorOpen
- entities:
- - uid: 49
+ - uid: 232
components:
- type: Transform
- pos: -10.5,13.5
+ pos: 3.5,13.5
parent: 1
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 637
- - uid: 50
+ - uid: 258
components:
- type: Transform
- pos: -9.5,13.5
+ pos: -6.5,4.5
parent: 1
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 637
- - uid: 53
+ - uid: 263
components:
- type: Transform
- pos: -8.5,13.5
+ pos: 1.5,12.5
parent: 1
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 637
- - uid: 64
+ - uid: 382
components:
- type: Transform
- pos: -11.5,13.5
+ pos: -2.5,9.5
parent: 1
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 637
- - uid: 67
+ - uid: 389
components:
- type: Transform
- pos: 1.5,13.5
+ pos: 4.5,-7.5
parent: 1
- - type: DeviceLinkSink
- invokeCounter: 1
- links:
- - 638
- - uid: 149
+ - uid: 408
components:
- type: Transform
- pos: -0.5,13.5
+ pos: -7.5,1.5
parent: 1
- - type: DeviceLinkSink
- invokeCounter: 1
- links:
- - 638
- - uid: 150
+ - uid: 414
components:
- type: Transform
- pos: 0.5,13.5
+ pos: 0.5,12.5
parent: 1
- - type: DeviceLinkSink
- invokeCounter: 1
- links:
- - 638
-- proto: CableApcExtension
- entities:
- - uid: 389
+ - uid: 415
components:
- type: Transform
- pos: 3.5,8.5
+ pos: 0.5,13.5
parent: 1
- - uid: 390
+ - uid: 416
components:
- type: Transform
- pos: 3.5,7.5
+ pos: -0.5,10.5
parent: 1
- - uid: 391
+ - uid: 417
components:
- type: Transform
- pos: 2.5,7.5
+ pos: -0.5,11.5
parent: 1
- - uid: 392
+ - uid: 425
components:
- type: Transform
- pos: 1.5,7.5
+ pos: -7.5,-0.5
parent: 1
- - uid: 393
+ - uid: 426
components:
- type: Transform
- pos: 0.5,7.5
+ pos: -6.5,-1.5
parent: 1
- - uid: 394
+ - uid: 427
components:
- type: Transform
- pos: 0.5,8.5
+ pos: -4.5,-4.5
parent: 1
- - uid: 395
+ - uid: 430
components:
- type: Transform
- pos: 0.5,9.5
+ pos: 11.5,7.5
parent: 1
- - uid: 396
+ - uid: 431
components:
- type: Transform
- pos: 0.5,10.5
+ pos: 12.5,8.5
parent: 1
- - uid: 397
+ - uid: 432
components:
- type: Transform
- pos: 4.5,7.5
+ pos: 7.5,4.5
parent: 1
- - uid: 398
+ - uid: 433
components:
- type: Transform
- pos: 5.5,7.5
+ pos: 8.5,2.5
parent: 1
- - uid: 399
+ - uid: 434
components:
- type: Transform
- pos: 5.5,6.5
+ pos: 8.5,0.5
parent: 1
- - uid: 400
+ - uid: 435
components:
- type: Transform
- pos: 5.5,5.5
+ pos: 7.5,-1.5
parent: 1
- - uid: 401
+ - uid: 436
components:
- type: Transform
- pos: 5.5,4.5
+ pos: 5.5,-5.5
parent: 1
- - uid: 402
+ - uid: 461
components:
- type: Transform
- pos: 4.5,4.5
+ pos: 6.5,-2.5
parent: 1
- - uid: 403
+ - uid: 476
components:
- type: Transform
- pos: 3.5,4.5
+ pos: 5.5,-4.5
parent: 1
- - uid: 404
+ - uid: 477
components:
- type: Transform
- pos: 2.5,4.5
+ pos: 8.5,-0.5
parent: 1
- - uid: 405
+ - uid: 479
components:
- type: Transform
- pos: 1.5,4.5
+ pos: 8.5,1.5
parent: 1
- - uid: 406
+ - uid: 480
components:
- type: Transform
- pos: 0.5,4.5
+ pos: 7.5,3.5
parent: 1
- - uid: 407
+ - uid: 481
components:
- type: Transform
- pos: -0.5,4.5
+ pos: 7.5,5.5
parent: 1
- - uid: 408
+ - uid: 482
components:
- type: Transform
- pos: -0.5,5.5
+ pos: 11.5,6.5
parent: 1
- - uid: 409
+ - uid: 483
components:
- type: Transform
- pos: -0.5,6.5
+ pos: 14.5,10.5
parent: 1
- - uid: 410
+ - uid: 484
components:
- type: Transform
- pos: -0.5,7.5
+ pos: 14.5,11.5
parent: 1
- - uid: 411
+ - uid: 499
components:
- type: Transform
- pos: -2.5,8.5
+ pos: 3.5,9.5
parent: 1
- - uid: 412
+ - uid: 520
components:
- type: Transform
- pos: -2.5,7.5
+ pos: 1.5,10.5
parent: 1
- - uid: 413
+ - uid: 521
components:
- type: Transform
- pos: -2.5,6.5
+ pos: 0.5,10.5
parent: 1
- - uid: 414
+ - uid: 525
components:
- type: Transform
- pos: -2.5,5.5
+ pos: -0.5,12.5
parent: 1
- - uid: 415
+ - uid: 526
components:
- type: Transform
- pos: -2.5,4.5
+ pos: -0.5,13.5
parent: 1
- - uid: 416
+ - uid: 584
components:
- type: Transform
- pos: -3.5,4.5
+ pos: -6.5,3.5
parent: 1
- - uid: 417
+ - uid: 585
components:
- type: Transform
- pos: -4.5,4.5
+ pos: 9.5,14.5
parent: 1
- - uid: 418
+ - uid: 586
components:
- type: Transform
- pos: -4.5,5.5
+ pos: -3.5,-7.5
parent: 1
- - uid: 419
+ - uid: 587
components:
- type: Transform
- pos: -4.5,6.5
+ pos: -5.5,-2.5
parent: 1
- - uid: 420
+ - uid: 588
components:
- type: Transform
- pos: -4.5,7.5
+ pos: -7.5,0.5
parent: 1
- - uid: 421
+ - uid: 591
components:
- type: Transform
- pos: -5.5,7.5
+ pos: -7.5,2.5
parent: 1
- - uid: 422
+ - uid: 592
components:
- type: Transform
- pos: -5.5,8.5
+ pos: 14.5,13.5
parent: 1
- - uid: 423
+ - uid: 600
components:
- type: Transform
- pos: -6.5,8.5
+ pos: 14.5,12.5
parent: 1
- - uid: 424
+ - uid: 601
components:
- type: Transform
- pos: -7.5,8.5
+ pos: -10.5,7.5
parent: 1
- - uid: 425
+ - uid: 602
components:
- type: Transform
- pos: -7.5,9.5
+ pos: -11.5,8.5
parent: 1
- - uid: 426
+ - uid: 603
components:
- type: Transform
- pos: -7.5,10.5
+ pos: -13.5,10.5
parent: 1
- - uid: 427
+ - uid: 604
components:
- type: Transform
- pos: -7.5,11.5
+ pos: 2.5,14.5
parent: 1
- - uid: 428
+ - uid: 616
components:
- type: Transform
- pos: -7.5,12.5
+ pos: 1.5,13.5
parent: 1
- - uid: 429
+ - uid: 683
components:
- type: Transform
- pos: -6.5,12.5
+ pos: 11.5,14.5
parent: 1
- - uid: 430
+ - uid: 699
components:
- type: Transform
- pos: -5.5,12.5
+ pos: -13.5,14.5
parent: 1
- - uid: 431
+ - uid: 700
components:
- type: Transform
- pos: -4.5,12.5
+ pos: -11.5,14.5
parent: 1
- - uid: 432
+ - uid: 707
components:
- type: Transform
- pos: -4.5,11.5
+ pos: -9.5,14.5
parent: 1
- - uid: 433
+ - uid: 709
components:
- type: Transform
- pos: -4.5,10.5
+ pos: -7.5,14.5
parent: 1
- - uid: 434
+ - uid: 711
components:
- type: Transform
- pos: -5.5,10.5
+ pos: -2.5,14.5
parent: 1
- - uid: 435
+ - uid: 721
components:
- type: Transform
- pos: -6.5,10.5
+ pos: -12.5,14.5
parent: 1
- - uid: 436
+ - uid: 722
components:
- type: Transform
- pos: -8.5,10.5
+ pos: -10.5,14.5
parent: 1
- - uid: 437
+ - uid: 723
components:
- type: Transform
- pos: -9.5,10.5
+ pos: -0.5,14.5
parent: 1
- - uid: 438
+ - uid: 724
components:
- type: Transform
- pos: -10.5,10.5
+ pos: 0.5,14.5
parent: 1
- - uid: 439
+ - uid: 791
components:
- type: Transform
- pos: -11.5,10.5
+ pos: 14.5,14.5
parent: 1
- - uid: 440
+ - uid: 792
components:
- type: Transform
- pos: -8.5,8.5
+ pos: -4.5,-5.5
parent: 1
- - uid: 441
+ - uid: 793
components:
- type: Transform
- pos: -11.5,11.5
+ pos: -4.5,-6.5
parent: 1
- - uid: 442
+ - uid: 794
components:
- type: Transform
- pos: -11.5,12.5
+ pos: -6.5,5.5
parent: 1
- - uid: 443
+ - uid: 806
components:
- type: Transform
- pos: -11.5,13.5
+ pos: -13.5,12.5
parent: 1
- - uid: 444
+ - uid: 807
components:
- type: Transform
- pos: -10.5,13.5
+ pos: -2.5,13.5
parent: 1
- - uid: 445
+ - uid: 808
components:
- type: Transform
- pos: -9.5,13.5
+ pos: -1.5,14.5
parent: 1
- - uid: 446
+ - uid: 809
components:
- type: Transform
- pos: -8.5,13.5
+ pos: 1.5,11.5
parent: 1
- - uid: 447
+ - uid: 811
components:
- type: Transform
- pos: -8.5,12.5
+ pos: 13.5,14.5
parent: 1
- - uid: 448
+ - uid: 812
components:
- type: Transform
- pos: 0.5,11.5
+ pos: 12.5,14.5
parent: 1
- - uid: 449
+ - uid: 815
components:
- type: Transform
- pos: 0.5,12.5
+ pos: 10.5,14.5
parent: 1
- - uid: 458
+ - uid: 818
components:
- type: Transform
- pos: 9.5,12.5
+ pos: -13.5,13.5
parent: 1
- - uid: 459
+ - uid: 819
components:
- type: Transform
- pos: 10.5,12.5
+ pos: -8.5,14.5
parent: 1
- - uid: 460
+ - uid: 822
components:
- type: Transform
- pos: 11.5,12.5
+ pos: 0.5,11.5
parent: 1
- - uid: 461
+ - uid: 823
components:
- type: Transform
- pos: 12.5,12.5
+ pos: 5.5,-6.5
parent: 1
- - uid: 462
+- proto: Autolathe
+ entities:
+ - uid: 314
components:
- type: Transform
- pos: 12.5,11.5
+ pos: 5.5,6.5
parent: 1
- - uid: 463
+- proto: BlastDoor
+ entities:
+ - uid: 329
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 12.5,10.5
+ pos: 2.5,-7.5
parent: 1
- - uid: 464
+ - type: DeviceLinkSink
+ links:
+ - 640
+ - uid: 333
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 8.5,12.5
+ pos: -1.5,-7.5
parent: 1
- - uid: 465
+ - type: DeviceLinkSink
+ links:
+ - 640
+- proto: BlastDoorOpen
+ entities:
+ - uid: 49
components:
- type: Transform
- pos: 7.5,12.5
+ pos: -10.5,13.5
parent: 1
- - uid: 466
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 637
+ - uid: 50
components:
- type: Transform
- pos: 6.5,12.5
+ pos: -9.5,13.5
parent: 1
- - uid: 467
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 637
+ - uid: 53
components:
- type: Transform
- pos: 5.5,12.5
+ pos: -8.5,13.5
parent: 1
- - uid: 468
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 637
+ - uid: 64
components:
- type: Transform
- pos: 5.5,11.5
+ pos: -11.5,13.5
parent: 1
- - uid: 469
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 637
+ - uid: 67
components:
- type: Transform
- pos: 5.5,10.5
+ pos: 1.5,13.5
parent: 1
- - uid: 470
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ links:
+ - 638
+ - uid: 149
components:
- type: Transform
- pos: 5.5,9.5
+ pos: -0.5,13.5
parent: 1
- - uid: 471
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ links:
+ - 638
+ - uid: 150
components:
- type: Transform
- pos: 6.5,9.5
+ pos: 0.5,13.5
parent: 1
- - uid: 472
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ links:
+ - 638
+- proto: CableApcExtension
+ entities:
+ - uid: 418
components:
- type: Transform
- pos: 7.5,9.5
+ pos: 10.5,12.5
parent: 1
- - uid: 473
+ - uid: 419
components:
- type: Transform
- pos: 8.5,9.5
+ pos: 0.5,12.5
parent: 1
- - uid: 474
+ - uid: 420
components:
- type: Transform
- pos: 9.5,9.5
+ pos: 0.5,11.5
parent: 1
- - uid: 475
+ - uid: 421
components:
- type: Transform
- pos: 10.5,9.5
+ pos: 0.5,9.5
parent: 1
- - uid: 476
+ - uid: 422
components:
- type: Transform
- pos: 10.5,10.5
+ pos: 0.5,8.5
parent: 1
- - uid: 477
+ - uid: 423
components:
- type: Transform
- pos: 11.5,10.5
+ pos: -0.5,4.5
parent: 1
- - uid: 480
+ - uid: 424
components:
- type: Transform
- pos: 0.5,2.5
+ pos: -0.5,0.5
parent: 1
- - uid: 481
+ - uid: 440
components:
- type: Transform
- pos: -0.5,2.5
+ pos: -9.5,12.5
parent: 1
- - uid: 482
+ - uid: 441
components:
- type: Transform
- pos: -1.5,2.5
+ pos: 0.5,-6.5
parent: 1
- - uid: 483
+ - uid: 442
components:
- type: Transform
- pos: -2.5,2.5
+ pos: -3.5,0.5
parent: 1
- - uid: 484
+ - uid: 443
components:
- type: Transform
- pos: -3.5,2.5
+ pos: -2.5,0.5
parent: 1
- - uid: 485
+ - uid: 444
components:
- type: Transform
- pos: -4.5,2.5
+ pos: -1.5,0.5
parent: 1
- - uid: 486
+ - uid: 445
components:
- type: Transform
- pos: -4.5,1.5
+ pos: -0.5,1.5
parent: 1
- - uid: 487
+ - uid: 446
components:
- type: Transform
- pos: -5.5,1.5
+ pos: -0.5,2.5
parent: 1
- - uid: 488
+ - uid: 447
components:
- type: Transform
- pos: -5.5,0.5
+ pos: 0.5,2.5
parent: 1
- - uid: 489
+ - uid: 448
components:
- type: Transform
- pos: -4.5,0.5
+ pos: -2.5,8.5
parent: 1
- - uid: 490
+ - uid: 449
components:
- type: Transform
- pos: -4.5,-0.5
+ pos: -2.5,7.5
parent: 1
- - uid: 491
+ - uid: 450
components:
- type: Transform
- pos: -3.5,-0.5
+ pos: 3.5,6.5
parent: 1
- - uid: 492
+ - uid: 451
components:
- type: Transform
- pos: -2.5,-0.5
+ pos: 0.5,-5.5
parent: 1
- - uid: 493
+ - uid: 452
components:
- type: Transform
- pos: -1.5,-0.5
+ pos: -3.5,7.5
parent: 1
- - uid: 494
+ - uid: 453
components:
- type: Transform
- pos: -0.5,-0.5
+ pos: -4.5,8.5
parent: 1
- - uid: 495
+ - uid: 458
components:
- type: Transform
- pos: -0.5,0.5
+ pos: -6.5,8.5
parent: 1
- - uid: 496
+ - uid: 459
components:
- type: Transform
- pos: -0.5,1.5
+ pos: -8.5,8.5
parent: 1
- - uid: 497
+ - uid: 460
components:
- type: Transform
- pos: 1.5,2.5
+ pos: -8.5,10.5
parent: 1
- - uid: 498
+ - uid: 462
components:
- type: Transform
- pos: 2.5,2.5
+ pos: 9.5,12.5
parent: 1
- - uid: 499
+ - uid: 463
components:
- type: Transform
- pos: 3.5,2.5
+ pos: 0.5,-4.5
parent: 1
- - uid: 500
+ - uid: 464
components:
- type: Transform
- pos: 4.5,2.5
+ pos: 0.5,-3.5
parent: 1
- - uid: 501
+ - uid: 465
components:
- type: Transform
- pos: 5.5,2.5
+ pos: 0.5,-1.5
parent: 1
- - uid: 502
+ - uid: 466
components:
- type: Transform
- pos: 1.5,1.5
+ pos: -3.5,-3.5
parent: 1
- - uid: 503
+ - uid: 467
components:
- type: Transform
- pos: 1.5,0.5
+ pos: 4.5,-3.5
parent: 1
- - uid: 504
+ - uid: 469
components:
- type: Transform
- pos: 1.5,-0.5
+ pos: -8.5,12.5
parent: 1
- - uid: 505
+ - uid: 486
components:
- type: Transform
- pos: 2.5,-0.5
+ pos: -0.5,3.5
parent: 1
- - uid: 506
+ - uid: 487
components:
- type: Transform
- pos: 3.5,-0.5
+ pos: 0.5,0.5
parent: 1
- - uid: 507
+ - uid: 488
components:
- type: Transform
- pos: 4.5,-0.5
+ pos: 3.5,0.5
parent: 1
- - uid: 508
+ - uid: 501
components:
- type: Transform
- pos: 5.5,-0.5
+ pos: 10.5,10.5
parent: 1
- - uid: 509
+ - uid: 502
components:
- type: Transform
- pos: 5.5,0.5
+ pos: 10.5,11.5
parent: 1
- - uid: 510
+ - uid: 523
components:
- type: Transform
- pos: 6.5,0.5
+ pos: 8.5,12.5
parent: 1
- - uid: 511
+ - uid: 524
components:
- type: Transform
- pos: 6.5,1.5
+ pos: 7.5,12.5
parent: 1
- - uid: 522
+ - uid: 532
components:
- type: Transform
- pos: 0.5,-1.5
+ pos: -4.5,7.5
parent: 1
- - uid: 523
+ - uid: 533
components:
- type: Transform
- pos: 0.5,-2.5
+ pos: -5.5,8.5
parent: 1
- - uid: 524
+ - uid: 534
components:
- type: Transform
- pos: 0.5,-3.5
+ pos: -7.5,8.5
parent: 1
- - uid: 525
+ - uid: 535
components:
- type: Transform
- pos: 0.5,-4.5
+ pos: -8.5,9.5
parent: 1
- - uid: 526
+ - uid: 536
components:
- type: Transform
- pos: 0.5,-5.5
+ pos: -2.5,-3.5
parent: 1
- - uid: 527
+ - uid: 537
components:
- type: Transform
- pos: 0.5,-6.5
+ pos: 4.5,0.5
parent: 1
- - uid: 528
+ - uid: 538
components:
- type: Transform
- pos: 1.5,-6.5
+ pos: 3.5,5.5
parent: 1
- - uid: 529
+ - uid: 539
components:
- type: Transform
- pos: 2.5,-6.5
+ pos: 3.5,7.5
parent: 1
- - uid: 530
+ - uid: 540
components:
- type: Transform
- pos: -0.5,-6.5
+ pos: 3.5,8.5
parent: 1
- - uid: 531
+ - uid: 574
components:
- type: Transform
- pos: -1.5,-6.5
+ pos: 10.5,9.5
parent: 1
- - uid: 532
+ - uid: 594
components:
- type: Transform
- pos: -1.5,-5.5
+ pos: -1.5,-3.5
parent: 1
- - uid: 533
+ - uid: 595
components:
- type: Transform
- pos: -2.5,-5.5
+ pos: 0.5,-2.5
parent: 1
- - uid: 534
+ - uid: 596
components:
- type: Transform
- pos: 2.5,-5.5
+ pos: -8.5,11.5
parent: 1
- - uid: 535
+ - uid: 597
components:
- type: Transform
- pos: 3.5,-5.5
+ pos: -10.5,12.5
parent: 1
- - uid: 536
+ - uid: 598
components:
- type: Transform
- pos: 3.5,-4.5
+ pos: -4.5,5.5
parent: 1
- - uid: 537
+ - uid: 599
components:
- type: Transform
- pos: 3.5,-3.5
+ pos: -4.5,6.5
parent: 1
- - uid: 538
+ - uid: 627
components:
- type: Transform
- pos: 3.5,-2.5
+ pos: 11.5,12.5
parent: 1
- - uid: 539
+ - uid: 713
components:
- type: Transform
- pos: 5.5,-1.5
+ pos: -0.5,5.5
parent: 1
- - uid: 540
+ - uid: 727
components:
- type: Transform
- pos: -4.5,-1.5
+ pos: 2.5,0.5
parent: 1
- - uid: 541
+ - uid: 729
components:
- type: Transform
- pos: -2.5,-4.5
+ pos: 0.5,10.5
parent: 1
- - uid: 542
+ - uid: 730
components:
- type: Transform
- pos: -2.5,-3.5
+ pos: 0.5,7.5
parent: 1
- - uid: 543
+ - uid: 731
components:
- type: Transform
- pos: -2.5,-2.5
+ pos: 0.5,6.5
parent: 1
- - uid: 544
+ - uid: 732
components:
- type: Transform
- pos: -1.5,-2.5
+ pos: 1.5,-3.5
parent: 1
- - uid: 545
+ - uid: 733
components:
- type: Transform
- pos: -0.5,-2.5
+ pos: 2.5,-3.5
parent: 1
- - uid: 546
+ - uid: 734
components:
- type: Transform
- pos: 1.5,-2.5
+ pos: 3.5,-3.5
parent: 1
- - uid: 547
+ - uid: 736
components:
- type: Transform
- pos: 2.5,-2.5
+ pos: 5.5,5.5
parent: 1
-- proto: CableHV
- entities:
- - uid: 249
+ - uid: 789
components:
- type: Transform
- pos: 4.5,2.5
+ pos: 4.5,5.5
parent: 1
- - uid: 250
+ - uid: 790
components:
- type: Transform
- pos: 5.5,2.5
+ pos: 6.5,12.5
parent: 1
- - uid: 251
+ - uid: 810
components:
- type: Transform
- pos: 5.5,1.5
+ pos: 1.5,0.5
parent: 1
- - uid: 253
+ - uid: 820
components:
- type: Transform
- pos: 6.5,1.5
+ pos: 0.5,5.5
parent: 1
- - uid: 254
+ - uid: 821
components:
- type: Transform
- pos: 6.5,0.5
+ pos: -0.5,-3.5
parent: 1
- - uid: 255
+- proto: CableHV
+ entities:
+ - uid: 252
components:
- type: Transform
- pos: 6.5,-0.5
+ pos: -4.5,8.5
parent: 1
- - uid: 256
+ - uid: 253
components:
- type: Transform
- pos: 5.5,-0.5
+ pos: -6.5,8.5
parent: 1
- - uid: 257
+ - uid: 254
components:
- type: Transform
- pos: 4.5,-0.5
+ pos: -4.5,7.5
parent: 1
- - uid: 258
+ - uid: 255
components:
- type: Transform
- pos: 3.5,-0.5
+ pos: 10.5,13.5
parent: 1
- - uid: 259
+ - uid: 256
components:
- type: Transform
- pos: 2.5,-0.5
+ pos: 10.5,11.5
parent: 1
- - uid: 260
+ - uid: 257
components:
- type: Transform
- pos: 1.5,-0.5
+ pos: 10.5,9.5
parent: 1
- - uid: 261
+ - uid: 383
components:
- type: Transform
- pos: 1.5,0.5
+ pos: 7.5,0.5
parent: 1
- - uid: 262
+ - uid: 390
components:
- type: Transform
- pos: 1.5,1.5
+ pos: 1.5,-5.5
parent: 1
- - uid: 263
+ - uid: 391
components:
- type: Transform
- pos: 1.5,2.5
+ pos: 0.5,-5.5
parent: 1
- - uid: 357
+ - uid: 392
components:
- type: Transform
- pos: 0.5,0.5
+ pos: -0.5,-5.5
parent: 1
- - uid: 358
+ - uid: 393
components:
- type: Transform
- pos: -0.5,0.5
+ pos: -1.5,-5.5
parent: 1
- - uid: 359
+ - uid: 395
components:
- type: Transform
pos: -0.5,1.5
parent: 1
- - uid: 360
+ - uid: 396
components:
- type: Transform
pos: -0.5,2.5
parent: 1
- - uid: 361
+ - uid: 397
components:
- type: Transform
pos: -0.5,3.5
parent: 1
- - uid: 362
+ - uid: 398
components:
- type: Transform
pos: -0.5,4.5
parent: 1
- - uid: 363
- components:
- - type: Transform
- pos: 0.5,4.5
- parent: 1
- - uid: 364
+ - uid: 399
components:
- type: Transform
- pos: 0.5,5.5
+ pos: -0.5,5.5
parent: 1
- - uid: 365
+ - uid: 400
components:
- type: Transform
- pos: 0.5,6.5
+ pos: -1.5,5.5
parent: 1
- - uid: 366
+ - uid: 401
components:
- type: Transform
- pos: 0.5,7.5
+ pos: -4.5,5.5
parent: 1
- - uid: 367
+ - uid: 402
components:
- type: Transform
- pos: 0.5,8.5
+ pos: -11.5,11.5
parent: 1
- - uid: 368
+ - uid: 403
components:
- type: Transform
- pos: 0.5,9.5
+ pos: 4.5,2.5
parent: 1
- - uid: 369
+ - uid: 404
components:
- type: Transform
- pos: 0.5,10.5
+ pos: 1.5,0.5
parent: 1
- - uid: 452
+ - uid: 405
components:
- type: Transform
- pos: 0.5,11.5
+ pos: -3.5,0.5
parent: 1
- - uid: 453
+ - uid: 406
components:
- type: Transform
- pos: 0.5,12.5
+ pos: -3.5,-5.5
parent: 1
- - uid: 709
+ - uid: 407
components:
- type: Transform
- pos: 5.5,3.5
+ pos: -2.5,-5.5
parent: 1
- - uid: 710
+ - uid: 428
components:
- type: Transform
- pos: 8.5,1.5
+ pos: 8.5,9.5
parent: 1
- - uid: 761
+ - uid: 429
components:
- type: Transform
- pos: -4.5,-6.5
+ pos: 6.5,9.5
parent: 1
- - uid: 762
+ - uid: 437
components:
- type: Transform
- pos: -4.5,-5.5
+ pos: 0.5,5.5
parent: 1
- - uid: 763
+ - uid: 438
components:
- type: Transform
- pos: 5.5,-6.5
+ pos: 3.5,5.5
parent: 1
- - uid: 764
+ - uid: 439
components:
- type: Transform
- pos: 5.5,-5.5
+ pos: 5.5,5.5
parent: 1
- - uid: 765
+ - uid: 470
components:
- type: Transform
- pos: -7.5,-0.5
+ pos: 7.5,9.5
parent: 1
- - uid: 766
+ - uid: 471
components:
- type: Transform
- pos: -7.5,0.5
+ pos: 5.5,9.5
parent: 1
- - uid: 767
+ - uid: 472
components:
- type: Transform
- pos: -7.5,1.5
+ pos: 5.5,8.5
parent: 1
- - uid: 768
+ - uid: 473
components:
- type: Transform
- pos: -7.5,2.5
+ pos: 4.5,5.5
parent: 1
- - uid: 769
+ - uid: 474
components:
- type: Transform
- pos: 8.5,0.5
+ pos: 2.5,5.5
parent: 1
- - uid: 770
+ - uid: 475
components:
- type: Transform
- pos: 8.5,-0.5
+ pos: 1.5,5.5
parent: 1
- - uid: 771
+ - uid: 527
components:
- type: Transform
- pos: 8.5,2.5
+ pos: 2.5,-1.5
parent: 1
- - uid: 772
+ - uid: 528
components:
- type: Transform
- pos: 9.5,14.5
+ pos: 2.5,-3.5
parent: 1
- - uid: 773
+ - uid: 529
components:
- type: Transform
- pos: 10.5,14.5
+ pos: 5.5,6.5
parent: 1
- - uid: 774
+ - uid: 531
components:
- type: Transform
- pos: 11.5,14.5
+ pos: 2.5,-4.5
parent: 1
- - uid: 775
+ - uid: 544
components:
- type: Transform
- pos: 12.5,14.5
+ pos: 10.5,10.5
parent: 1
- - uid: 776
+ - uid: 545
components:
- type: Transform
- pos: 13.5,14.5
+ pos: 10.5,12.5
parent: 1
- - uid: 785
+ - uid: 546
components:
- type: Transform
- pos: -13.5,13.5
+ pos: -4.5,6.5
parent: 1
- - uid: 786
+ - uid: 547
components:
- type: Transform
- pos: -13.5,12.5
+ pos: -7.5,9.5
parent: 1
- - uid: 787
+ - uid: 551
components:
- type: Transform
- pos: -13.5,11.5
+ pos: -3.5,5.5
parent: 1
- - uid: 788
+ - uid: 558
components:
- type: Transform
- pos: -13.5,10.5
+ pos: -2.5,5.5
parent: 1
- - uid: 789
+ - uid: 559
components:
- type: Transform
- pos: -12.5,12.5
+ pos: -12.5,11.5
parent: 1
- - uid: 790
+ - uid: 560
components:
- type: Transform
- pos: -12.5,11.5
+ pos: -10.5,11.5
parent: 1
- - uid: 791
+ - uid: 561
components:
- type: Transform
- pos: -11.5,11.5
+ pos: 2.5,2.5
parent: 1
- - uid: 792
+ - uid: 562
components:
- type: Transform
- pos: -10.5,11.5
+ pos: 2.5,0.5
parent: 1
- - uid: 793
+ - uid: 563
components:
- type: Transform
- pos: -9.5,11.5
+ pos: -2.5,0.5
parent: 1
- - uid: 794
+ - uid: 564
components:
- type: Transform
- pos: -8.5,11.5
+ pos: -5.5,0.5
parent: 1
- - uid: 795
+ - uid: 565
components:
- type: Transform
- pos: -7.5,11.5
+ pos: 3.5,-5.5
parent: 1
- - uid: 796
+ - uid: 566
components:
- type: Transform
- pos: -7.5,10.5
+ pos: 4.5,-5.5
parent: 1
- - uid: 797
+ - uid: 605
components:
- type: Transform
- pos: -7.5,9.5
+ pos: -5.5,8.5
parent: 1
- - uid: 798
+ - uid: 606
components:
- type: Transform
pos: -7.5,8.5
parent: 1
- - uid: 799
+ - uid: 607
components:
- type: Transform
- pos: -6.5,8.5
+ pos: -7.5,10.5
parent: 1
- - uid: 800
+ - uid: 608
components:
- type: Transform
- pos: -5.5,8.5
+ pos: -7.5,11.5
parent: 1
- - uid: 801
+ - uid: 609
components:
- type: Transform
- pos: -4.5,8.5
+ pos: -8.5,11.5
parent: 1
- - uid: 802
+ - uid: 610
components:
- type: Transform
- pos: -4.5,7.5
+ pos: -9.5,11.5
parent: 1
- - uid: 803
+ - uid: 611
components:
- type: Transform
- pos: -4.5,6.5
+ pos: 5.5,2.5
parent: 1
- - uid: 804
+ - uid: 612
components:
- type: Transform
- pos: -4.5,5.5
+ pos: 5.5,1.5
parent: 1
- - uid: 805
+ - uid: 613
components:
- type: Transform
- pos: -3.5,5.5
+ pos: 2.5,1.5
parent: 1
- - uid: 806
+ - uid: 614
components:
- type: Transform
- pos: -2.5,5.5
+ pos: 5.5,0.5
parent: 1
- - uid: 807
+ - uid: 615
components:
- type: Transform
- pos: -1.5,5.5
+ pos: 5.5,-0.5
parent: 1
- - uid: 808
+ - uid: 624
components:
- type: Transform
- pos: -0.5,5.5
+ pos: 5.5,7.5
parent: 1
- - uid: 809
+ - uid: 626
components:
- type: Transform
- pos: -6.5,1.5
+ pos: 2.5,-5.5
parent: 1
- - uid: 810
+ - uid: 675
components:
- type: Transform
- pos: -6.5,0.5
+ pos: 3.5,-0.5
parent: 1
- - uid: 811
+ - uid: 694
components:
- type: Transform
- pos: -5.5,0.5
+ pos: 4.5,-0.5
parent: 1
- - uid: 812
+ - uid: 698
components:
- type: Transform
pos: -4.5,0.5
parent: 1
- - uid: 813
+ - uid: 710
components:
- type: Transform
- pos: -3.5,0.5
+ pos: 8.5,1.5
parent: 1
- - uid: 814
+ - uid: 714
components:
- type: Transform
- pos: -2.5,0.5
+ pos: 2.5,-2.5
parent: 1
- - uid: 815
+ - uid: 718
components:
- type: Transform
pos: -1.5,0.5
parent: 1
- - uid: 816
+ - uid: 719
components:
- type: Transform
- pos: 7.5,0.5
+ pos: 6.5,0.5
parent: 1
- - uid: 817
+ - uid: 720
components:
- type: Transform
- pos: 7.5,1.5
+ pos: 1.5,2.5
parent: 1
- - uid: 818
+ - uid: 761
components:
- type: Transform
- pos: 4.5,-5.5
+ pos: -4.5,-6.5
parent: 1
- - uid: 819
+ - uid: 762
components:
- type: Transform
- pos: 3.5,-5.5
+ pos: -4.5,-5.5
parent: 1
- - uid: 820
+ - uid: 763
components:
- type: Transform
- pos: 3.5,-4.5
+ pos: 5.5,-6.5
parent: 1
- - uid: 821
+ - uid: 764
components:
- type: Transform
- pos: 3.5,-3.5
+ pos: 5.5,-5.5
parent: 1
- - uid: 822
+ - uid: 765
components:
- type: Transform
- pos: 3.5,-2.5
+ pos: -7.5,-0.5
parent: 1
- - uid: 823
+ - uid: 766
components:
- type: Transform
- pos: 3.5,-1.5
+ pos: -7.5,0.5
parent: 1
- - uid: 824
+ - uid: 767
components:
- type: Transform
- pos: -3.5,-5.5
+ pos: -7.5,1.5
parent: 1
- - uid: 825
+ - uid: 768
components:
- type: Transform
- pos: -2.5,-5.5
+ pos: -7.5,2.5
parent: 1
- - uid: 826
+ - uid: 769
components:
- type: Transform
- pos: -1.5,-5.5
+ pos: 8.5,0.5
parent: 1
- - uid: 827
+ - uid: 770
components:
- type: Transform
- pos: -0.5,-5.5
+ pos: 8.5,-0.5
parent: 1
- - uid: 828
+ - uid: 771
components:
- type: Transform
- pos: 0.5,-5.5
+ pos: 8.5,2.5
parent: 1
- - uid: 829
+ - uid: 772
components:
- type: Transform
- pos: 1.5,-5.5
+ pos: 9.5,14.5
parent: 1
- - uid: 830
+ - uid: 773
components:
- type: Transform
- pos: 2.5,-5.5
+ pos: 10.5,14.5
parent: 1
- - uid: 831
+ - uid: 774
components:
- type: Transform
- pos: 5.5,4.5
+ pos: 11.5,14.5
parent: 1
- - uid: 832
+ - uid: 775
components:
- type: Transform
- pos: 5.5,5.5
+ pos: 12.5,14.5
parent: 1
- - uid: 833
+ - uid: 776
components:
- type: Transform
- pos: 5.5,6.5
+ pos: 13.5,14.5
parent: 1
- - uid: 834
+ - uid: 785
components:
- type: Transform
- pos: 5.5,7.5
+ pos: -13.5,13.5
parent: 1
- - uid: 835
+ - uid: 786
components:
- type: Transform
- pos: 5.5,8.5
+ pos: -13.5,12.5
parent: 1
- - uid: 836
+ - uid: 787
components:
- type: Transform
- pos: 5.5,9.5
+ pos: -13.5,11.5
parent: 1
- - uid: 837
+ - uid: 788
components:
- type: Transform
- pos: 6.5,9.5
+ pos: -13.5,10.5
parent: 1
- - uid: 838
+ - uid: 804
components:
- type: Transform
- pos: 7.5,9.5
+ pos: 0.5,0.5
parent: 1
- - uid: 839
+ - uid: 805
components:
- type: Transform
- pos: 8.5,9.5
+ pos: 2.5,-0.5
parent: 1
- - uid: 840
+ - uid: 816
components:
- type: Transform
- pos: 9.5,9.5
+ pos: -6.5,0.5
parent: 1
- - uid: 841
+ - uid: 817
components:
- type: Transform
- pos: 10.5,9.5
+ pos: -0.5,0.5
parent: 1
- - uid: 842
+ - uid: 831
components:
- type: Transform
- pos: 10.5,10.5
+ pos: 9.5,9.5
parent: 1
- - uid: 843
+ - uid: 854
components:
- type: Transform
- pos: 10.5,11.5
+ pos: 13.5,14.5
parent: 1
- - uid: 844
+ - uid: 855
components:
- type: Transform
- pos: 10.5,12.5
+ pos: 14.5,14.5
parent: 1
- - uid: 845
+ - uid: 857
components:
- type: Transform
- pos: 10.5,13.5
+ pos: 14.5,13.5
parent: 1
- - uid: 846
+ - uid: 858
components:
- type: Transform
- pos: 11.5,13.5
+ pos: 14.5,12.5
parent: 1
- - uid: 847
+ - uid: 859
components:
- type: Transform
- pos: 12.5,13.5
+ pos: 14.5,11.5
parent: 1
- - uid: 848
+ - uid: 860
components:
- type: Transform
- pos: 12.5,12.5
+ pos: 14.5,10.5
parent: 1
- - uid: 849
+- proto: CableMV
+ entities:
+ - uid: 233
components:
- type: Transform
- pos: 13.5,12.5
+ pos: 3.5,2.5
parent: 1
- - uid: 850
+ - uid: 249
components:
- type: Transform
- pos: 13.5,11.5
+ pos: 0.5,-1.5
parent: 1
- - uid: 851
+ - uid: 250
components:
- type: Transform
- pos: 12.5,11.5
+ pos: 2.5,-2.5
parent: 1
- - uid: 852
+ - uid: 251
components:
- type: Transform
- pos: 11.5,11.5
+ pos: 1.5,-0.5
parent: 1
- - uid: 854
+ - uid: 259
components:
- type: Transform
- pos: 13.5,14.5
+ pos: 6.5,7.5
parent: 1
- - uid: 855
+ - uid: 260
components:
- type: Transform
- pos: 14.5,14.5
+ pos: 7.5,9.5
parent: 1
- - uid: 857
+ - uid: 261
components:
- type: Transform
- pos: 14.5,13.5
+ pos: 8.5,9.5
parent: 1
- - uid: 858
+ - uid: 262
components:
- type: Transform
- pos: 14.5,12.5
+ pos: 10.5,10.5
parent: 1
- - uid: 859
+ - uid: 265
components:
- type: Transform
- pos: 14.5,11.5
+ pos: 3.5,3.5
parent: 1
- - uid: 860
+ - uid: 381
components:
- type: Transform
- pos: 14.5,10.5
+ pos: 1.5,2.5
parent: 1
-- proto: CableMV
- entities:
- - uid: 370
+ - uid: 409
components:
- type: Transform
- pos: 0.5,10.5
+ pos: -1.5,5.5
parent: 1
- - uid: 371
+ - uid: 410
components:
- type: Transform
- pos: 0.5,9.5
+ pos: -0.5,5.5
parent: 1
- - uid: 372
+ - uid: 411
components:
- type: Transform
- pos: 0.5,8.5
+ pos: 0.5,5.5
parent: 1
- - uid: 373
+ - uid: 412
components:
- type: Transform
- pos: 0.5,7.5
+ pos: 1.5,5.5
parent: 1
- - uid: 374
+ - uid: 413
components:
- type: Transform
- pos: 0.5,6.5
+ pos: 2.5,5.5
parent: 1
- - uid: 375
+ - uid: 468
components:
- type: Transform
- pos: 0.5,5.5
+ pos: 0.5,7.5
parent: 1
- - uid: 376
+ - uid: 485
components:
- type: Transform
- pos: 0.5,4.5
+ pos: -2.5,6.5
parent: 1
- - uid: 377
+ - uid: 489
components:
- type: Transform
- pos: 1.5,4.5
+ pos: 9.5,12.5
parent: 1
- - uid: 378
+ - uid: 490
components:
- type: Transform
- pos: 2.5,4.5
+ pos: 10.5,11.5
parent: 1
- - uid: 379
+ - uid: 491
components:
- type: Transform
- pos: 3.5,4.5
+ pos: 9.5,9.5
parent: 1
- - uid: 380
+ - uid: 492
components:
- type: Transform
- pos: 3.5,3.5
+ pos: 3.5,8.5
parent: 1
- - uid: 381
+ - uid: 493
components:
- type: Transform
- pos: 3.5,2.5
+ pos: 3.5,6.5
parent: 1
- - uid: 382
+ - uid: 494
components:
- type: Transform
- pos: 2.5,2.5
+ pos: 3.5,4.5
parent: 1
- - uid: 383
+ - uid: 495
components:
- type: Transform
- pos: 1.5,2.5
+ pos: 0.5,2.5
parent: 1
- - uid: 450
+ - uid: 496
components:
- type: Transform
- pos: 0.5,11.5
+ pos: 1.5,-2.5
parent: 1
- - uid: 451
+ - uid: 497
components:
- type: Transform
- pos: 0.5,12.5
+ pos: 2.5,-0.5
parent: 1
- - uid: 479
+ - uid: 498
components:
- type: Transform
- pos: 0.5,2.5
+ pos: 1.5,1.5
parent: 1
- - uid: 514
+ - uid: 541
components:
- type: Transform
- pos: 3.5,0.5
+ pos: 0.5,9.5
parent: 1
- - uid: 515
+ - uid: 542
components:
- type: Transform
- pos: 3.5,-0.5
+ pos: 0.5,8.5
parent: 1
- - uid: 516
+ - uid: 543
components:
- type: Transform
- pos: 2.5,-0.5
+ pos: 0.5,6.5
parent: 1
- - uid: 517
+ - uid: 575
components:
- type: Transform
pos: 2.5,-1.5
parent: 1
- - uid: 518
+ - uid: 576
components:
- type: Transform
- pos: 2.5,-2.5
+ pos: 0.5,-2.5
parent: 1
- - uid: 519
- components:
- - type: Transform
- pos: 1.5,-2.5
- parent: 1
- - uid: 520
- components:
- - type: Transform
- pos: 0.5,-2.5
- parent: 1
- - uid: 521
- components:
- - type: Transform
- pos: 0.5,-1.5
- parent: 1
- - uid: 628
+ - uid: 577
components:
- type: Transform
- pos: 3.5,1.5
+ pos: 2.5,2.5
parent: 1
- - uid: 711
+ - uid: 578
components:
- type: Transform
pos: 3.5,5.5
parent: 1
- - uid: 712
- components:
- - type: Transform
- pos: 3.5,6.5
- parent: 1
- - uid: 713
+ - uid: 579
components:
- type: Transform
pos: 3.5,7.5
parent: 1
- - uid: 714
- components:
- - type: Transform
- pos: 3.5,8.5
- parent: 1
- - uid: 715
+ - uid: 580
components:
- type: Transform
pos: 4.5,7.5
parent: 1
- - uid: 716
- components:
- - type: Transform
- pos: 5.5,7.5
- parent: 1
- - uid: 717
- components:
- - type: Transform
- pos: 6.5,7.5
- parent: 1
- - uid: 718
+ - uid: 581
components:
- type: Transform
- pos: 7.5,7.5
+ pos: 10.5,9.5
parent: 1
- - uid: 719
+ - uid: 582
components:
- type: Transform
pos: 7.5,8.5
parent: 1
- - uid: 720
- components:
- - type: Transform
- pos: 7.5,9.5
- parent: 1
- - uid: 721
+ - uid: 583
components:
- type: Transform
- pos: 8.5,9.5
+ pos: 7.5,7.5
parent: 1
- - uid: 722
+ - uid: 589
components:
- type: Transform
- pos: 8.5,10.5
+ pos: 1.5,0.5
parent: 1
- - uid: 723
+ - uid: 593
components:
- type: Transform
- pos: 8.5,11.5
+ pos: -2.5,8.5
parent: 1
- - uid: 724
+ - uid: 712
components:
- type: Transform
- pos: 8.5,12.5
+ pos: -2.5,7.5
parent: 1
- uid: 725
components:
- type: Transform
- pos: 9.5,12.5
+ pos: 5.5,7.5
parent: 1
- uid: 726
components:
- type: Transform
- pos: -0.5,5.5
- parent: 1
- - uid: 727
- components:
- - type: Transform
- pos: -1.5,5.5
+ pos: 10.5,12.5
parent: 1
- uid: 728
components:
- type: Transform
pos: -2.5,5.5
parent: 1
- - uid: 729
- components:
- - type: Transform
- pos: -3.5,5.5
- parent: 1
- - uid: 730
- components:
- - type: Transform
- pos: -4.5,5.5
- parent: 1
- - uid: 731
- components:
- - type: Transform
- pos: -2.5,6.5
- parent: 1
- - uid: 732
- components:
- - type: Transform
- pos: -2.5,7.5
- parent: 1
- - uid: 733
- components:
- - type: Transform
- pos: -2.5,8.5
- parent: 1
- proto: CableTerminal
entities:
- - uid: 252
+ - uid: 394
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,1.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,1.5
parent: 1
- proto: Catwalk
entities:
@@ -2892,11 +2872,10 @@ entities:
parent: 1
- proto: Chair
entities:
- - uid: 736
+ - uid: 617
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-0.5
+ pos: 4.5,0.5
parent: 1
- proto: ChairFolding
entities:
@@ -2961,7 +2940,7 @@ entities:
parent: 1
- proto: ChairPilotSeat
entities:
- - uid: 734
+ - uid: 567
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -2973,20 +2952,6 @@ entities:
rot: 3.141592653589793 rad
pos: 11.5,11.5
parent: 1
-- proto: ClothingHeadHatBeretRND
- entities:
- - uid: 674
- components:
- - type: Transform
- pos: 1.5022159,4.620707
- parent: 1
-- proto: ClothingHeadsetRobotics
- entities:
- - uid: 700
- components:
- - type: Transform
- pos: -4.5573745,2.6247761
- parent: 1
- proto: ClothingNeckTieSci
entities:
- uid: 676
@@ -3001,20 +2966,6 @@ entities:
- type: Transform
pos: -2.366565,2.5972736
parent: 1
-- proto: ClothingUniformJumpskirtRoboticist
- entities:
- - uid: 698
- components:
- - type: Transform
- pos: -2.999206,2.618107
- parent: 1
-- proto: ClothingUniformJumpsuitRoboticist
- entities:
- - uid: 699
- components:
- - type: Transform
- pos: -3.3657832,2.586857
- parent: 1
- proto: ComputerAnalysisConsole
entities:
- uid: 238
@@ -3037,13 +2988,6 @@ entities:
- type: Transform
pos: 1.5,8.5
parent: 1
-- proto: ComputerShuttle
- entities:
- - uid: 264
- components:
- - type: Transform
- pos: 11.5,12.5
- parent: 1
- proto: ComputerSolarControl
entities:
- uid: 454
@@ -3052,9 +2996,16 @@ entities:
rot: 3.141592653589793 rad
pos: 3.5,-0.5
parent: 1
-- proto: ComputerStationRecords
+- proto: ComputerTabletopShuttle
entities:
- - uid: 265
+ - uid: 625
+ components:
+ - type: Transform
+ pos: 11.5,12.5
+ parent: 1
+- proto: ComputerTabletopStationRecords
+ entities:
+ - uid: 795
components:
- type: Transform
pos: 10.5,12.5
@@ -3264,6 +3215,16 @@ entities:
parent: 1
- proto: GasPassiveVent
entities:
+ - uid: 270
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,0.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 355
components:
- type: Transform
@@ -3278,514 +3239,1083 @@ entities:
parent: 1
- type: AtmosDevice
joinedGrid: 1
- - uid: 559
+- proto: GasPipeBend
+ entities:
+ - uid: 277
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,0.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 361
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 11.5,6.5
+ pos: 2.5,5.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
-- proto: GasPipeBend
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 366
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 367
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 379
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 509
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 511
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 518
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 621
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 651
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 800
+ components:
+ - type: Transform
+ pos: -4.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 814
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 873
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeFourway
entities:
- - uid: 513
+ - uid: 571
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeStraight
+ entities:
+ - uid: 264
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 273
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 2.5,1.5
+ pos: 3.5,-0.5
parent: 1
- - uid: 560
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 275
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,0.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 276
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,0.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 278
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 279
+ components:
+ - type: Transform
+ pos: -0.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 287
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 335
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 340
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 10.5,6.5
+ pos: -0.5,8.5
parent: 1
- - uid: 564
+ - uid: 341
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,9.5
+ parent: 1
+ - uid: 342
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,8.5
+ parent: 1
+ - uid: 343
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,9.5
+ parent: 1
+ - uid: 357
+ components:
+ - type: Transform
+ pos: -4.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 358
components:
- type: Transform
rot: 1.5707963267948966 rad
+ pos: -5.5,7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 359
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 360
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 362
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 364
+ components:
+ - type: Transform
+ pos: 8.5,10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 365
+ components:
+ - type: Transform
+ pos: 8.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 368
+ components:
+ - type: Transform
+ pos: 5.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 369
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 370
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 371
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 372
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 374
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 375
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 377
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 378
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 10.5,10.5
parent: 1
- - uid: 570
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 380
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 504
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 506
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 508
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 510
+ components:
+ - type: Transform
+ pos: -4.5,7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 519
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 522
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,9.5
+ pos: 2.5,-0.5
parent: 1
- - uid: 572
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 530
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,7.5
+ pos: 2.5,0.5
parent: 1
- - uid: 575
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 568
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,7.5
+ pos: 3.5,3.5
parent: 1
- - uid: 577
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 569
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,6.5
+ pos: 3.5,2.5
parent: 1
- - uid: 579
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 618
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 4.5,5.5
+ pos: 4.5,1.5
parent: 1
- - uid: 590
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 620
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 2.5,0.5
parent: 1
- - uid: 591
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 628
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,0.5
+ pos: 2.5,-1.5
parent: 1
- - uid: 592
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 715
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -1.5,0.5
+ pos: 0.5,0.5
parent: 1
- - uid: 614
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 716
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -4.5,5.5
+ pos: 3.5,5.5
parent: 1
- - uid: 617
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 717
components:
- type: Transform
- pos: -4.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,8.5
parent: 1
- - uid: 620
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 796
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -7.5,8.5
+ pos: 3.5,-2.5
parent: 1
-- proto: GasPipeStraight
- entities:
- - uid: 340
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 801
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,8.5
parent: 1
- - uid: 341
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 824
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,8.5
parent: 1
- - uid: 342
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 825
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,7.5
parent: 1
- - uid: 343
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 826
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,9.5
+ pos: -0.5,4.5
parent: 1
- - uid: 562
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 836
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-2.5
parent: 1
- - uid: 567
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 837
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 9.5,9.5
+ pos: -0.5,-2.5
parent: 1
- - uid: 568
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 838
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 8.5,9.5
+ pos: 0.5,-2.5
parent: 1
- - uid: 573
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 839
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-2.5
parent: 1
- - uid: 574
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 840
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,7.5
+ pos: -2.5,-1.5
parent: 1
- - uid: 582
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 841
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,5.5
+ pos: -2.5,-0.5
parent: 1
- - uid: 583
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 842
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,5.5
+ pos: -2.5,0.5
parent: 1
- - uid: 584
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 843
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,5.5
+ pos: -2.5,1.5
parent: 1
- - uid: 585
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 847
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -0.5,4.5
+ pos: 4.5,1.5
parent: 1
- - uid: 586
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 849
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,2.5
+ pos: 2.5,6.5
parent: 1
- - uid: 587
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 850
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,4.5
parent: 1
- - uid: 593
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 851
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 852
components:
- type: Transform
- pos: -1.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,7.5
parent: 1
- - uid: 594
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 861
components:
- type: Transform
- pos: -1.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,7.5
parent: 1
- - uid: 595
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 864
components:
- type: Transform
- pos: -1.5,-2.5
+ pos: 7.5,8.5
parent: 1
- - uid: 598
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 865
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-2.5
+ pos: 5.5,9.5
parent: 1
- - uid: 599
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 866
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 2.5,-1.5
+ pos: 12.5,11.5
parent: 1
- - uid: 600
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 867
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,10.5
parent: 1
- - uid: 601
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 868
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -1.5,1.5
+ pos: 8.5,10.5
parent: 1
- - uid: 602
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 869
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -2.5,1.5
+ pos: 9.5,10.5
parent: 1
- - uid: 603
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 870
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -3.5,1.5
+ pos: 10.5,10.5
parent: 1
- - uid: 606
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 871
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 872
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 4.5,0.5
+ pos: 6.5,10.5
parent: 1
- - uid: 608
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 876
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,2.5
+ pos: 5.5,11.5
parent: 1
- - uid: 609
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeTJunction
+ entities:
+ - uid: 363
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,3.5
+ pos: 2.5,1.5
parent: 1
- - uid: 610
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 373
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,4.5
+ pos: -3.5,7.5
parent: 1
- - uid: 611
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 513
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,5.5
+ pos: -0.5,5.5
parent: 1
- - uid: 612
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 516
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,2.5
parent: 1
- - uid: 613
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 517
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,5.5
+ pos: 1.5,0.5
parent: 1
- - uid: 616
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 570
components:
- type: Transform
- pos: -4.5,7.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,1.5
parent: 1
- - uid: 618
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 573
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,0.5
parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 619
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,8.5
+ pos: 3.5,0.5
parent: 1
- - uid: 621
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 798
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,9.5
+ pos: 0.5,5.5
parent: 1
- - uid: 625
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 799
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,10.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,5.5
parent: 1
- - uid: 627
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 835
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -9.5,10.5
+ pos: -2.5,-2.5
parent: 1
-- proto: GasPipeTJunction
- entities:
- - uid: 561
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 862
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,7.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,7.5
parent: 1
- - uid: 563
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 863
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,9.5
parent: 1
- - uid: 569
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 875
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,10.5
parent: 1
- - uid: 576
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPort
+ entities:
+ - uid: 336
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,6.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,6.5
parent: 1
- - uid: 580
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 337
components:
- type: Transform
- pos: 3.5,5.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,6.5
parent: 1
- - uid: 581
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 622
components:
- type: Transform
- pos: -0.5,5.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,-0.5
parent: 1
- - uid: 588
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 830
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -0.5,1.5
+ pos: 6.5,1.5
parent: 1
- - uid: 589
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPressurePump
+ entities:
+ - uid: 271
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,1.5
parent: 1
- - uid: 607
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 338
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,1.5
+ pos: 1.5,7.5
parent: 1
- - uid: 615
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 339
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,6.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,7.5
parent: 1
- - uid: 622
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 828
components:
- type: Transform
- pos: -7.5,10.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,0.5
parent: 1
-- proto: GasPort
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasVentPump
entities:
- - uid: 335
+ - uid: 280
components:
- type: Transform
- pos: 2.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,4.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 880
- type: AtmosDevice
joinedGrid: 1
- - uid: 336
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 515
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -0.5,6.5
+ pos: -2.5,-3.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 880
- type: AtmosDevice
joinedGrid: 1
- - uid: 337
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 572
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,1.5
parent: 1
- type: AtmosDevice
joinedGrid: 1
-- proto: GasPressurePump
- entities:
- - uid: 338
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 803
components:
- type: Transform
- pos: 1.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: -7.5,7.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 880
- type: AtmosDevice
joinedGrid: 1
- - uid: 339
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 844
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,7.5
+ pos: -2.5,2.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 880
- type: AtmosDevice
joinedGrid: 1
-- proto: GasVentScrubber
- entities:
- - uid: 565
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 845
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 11.5,10.5
+ pos: -2.5,7.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 880
- type: AtmosDevice
joinedGrid: 1
- - uid: 566
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 874
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,7.5
+ pos: 12.5,12.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 880
- type: AtmosDevice
joinedGrid: 1
- - uid: 571
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 877
components:
- type: Transform
- pos: 7.5,10.5
+ pos: 5.5,12.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 880
- type: AtmosDevice
joinedGrid: 1
- - uid: 578
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasVentScrubber
+ entities:
+ - uid: 376
components:
- type: Transform
- pos: 3.5,7.5
+ pos: 10.5,12.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 880
- type: AtmosDevice
joinedGrid: 1
- - uid: 596
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 503
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,7.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 880
- type: AtmosDevice
joinedGrid: 1
- - uid: 597
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 505
+ components:
+ - type: Transform
+ pos: 8.5,12.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 880
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 507
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 2.5,-3.5
+ pos: 0.5,4.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 880
- type: AtmosDevice
joinedGrid: 1
- - uid: 604
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 797
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -4.5,1.5
+ pos: -1.5,2.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 880
- type: AtmosDevice
joinedGrid: 1
- - uid: 605
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 802
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,0.5
+ rot: 3.141592653589793 rad
+ pos: -8.5,7.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 880
- type: AtmosDevice
joinedGrid: 1
- - uid: 623
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 813
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,10.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,-3.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 880
- type: AtmosDevice
joinedGrid: 1
- - uid: 624
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 846
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,10.5
+ pos: -2.5,6.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 880
- type: AtmosDevice
joinedGrid: 1
- - uid: 626
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 848
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,6.5
+ pos: 4.5,2.5
parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 879
- type: AtmosDevice
joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GravityGeneratorMini
entities:
- uid: 228
@@ -4062,13 +4592,6 @@ entities:
rot: 3.141592653589793 rad
pos: -4.5,-1.5
parent: 1
-- proto: JetpackMini
- entities:
- - uid: 287
- components:
- - type: Transform
- pos: -8.56627,7.4857006
- parent: 1
- proto: KitchenMicrowave
entities:
- uid: 317
@@ -4236,10 +4759,10 @@ entities:
bodyType: Static
- proto: PortableScrubber
entities:
- - uid: 707
+ - uid: 623
components:
- type: Transform
- pos: 2.5,2.5
+ pos: 1.5,-0.5
parent: 1
- proto: PosterLegitStateLaws
entities:
@@ -4258,6 +4781,13 @@ entities:
parent: 1
- proto: Poweredlight
entities:
+ - uid: 274
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -7.5,12.5
+ parent: 1
- uid: 548
components:
- type: MetaData
@@ -4279,14 +4809,6 @@ entities:
- type: Transform
pos: 4.5,2.5
parent: 1
- - uid: 551
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,8.5
- parent: 1
- uid: 552
components:
- type: MetaData
@@ -4327,13 +4849,13 @@ entities:
rot: -1.5707963267948966 rad
pos: -7.5,9.5
parent: 1
- - uid: 558
+ - uid: 829
components:
- type: MetaData
flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,10.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,6.5
parent: 1
- proto: PoweredlightSodium
entities:
@@ -4383,13 +4905,6 @@ entities:
- type: Transform
pos: 5.5,5.5
parent: 1
-- proto: RadioHandheld
- entities:
- - uid: 683
- components:
- - type: Transform
- pos: 12.66739,11.984867
- parent: 1
- proto: Railing
entities:
- uid: 46
@@ -4567,7 +5082,7 @@ entities:
- uid: 659
components:
- type: Transform
- pos: -4.050154,2.5082512
+ pos: -3.0998697,2.5172694
parent: 1
- proto: ScalpelLaser
entities:
@@ -4581,8 +5096,19 @@ entities:
- uid: 708
components:
- type: Transform
- pos: 1.4674377,-0.4878614
+ pos: 5.516776,2.4901547
+ parent: 1
+ - type: Stack
+ count: 15
+- proto: SheetPlasma1
+ entities:
+ - uid: 590
+ components:
+ - type: Transform
+ pos: 4.469901,2.5682797
parent: 1
+ - type: Stack
+ count: 15
- proto: ShuttersNormalOpen
entities:
- uid: 78
@@ -4945,10 +5471,10 @@ entities:
parent: 1
- proto: SMESBasic
entities:
- - uid: 227
+ - uid: 827
components:
- type: Transform
- pos: 6.5,1.5
+ pos: 2.5,2.5
parent: 1
- proto: SolarPanel
entities:
@@ -5128,6 +5654,13 @@ entities:
- type: Transform
pos: 8.5,11.5
parent: 1
+- proto: SpawnPointPilot
+ entities:
+ - uid: 878
+ components:
+ - type: Transform
+ pos: 10.5,11.5
+ parent: 1
- proto: SpawnPointResearchDirector
entities:
- uid: 703
@@ -5178,8 +5711,8 @@ entities:
immutable: False
temperature: 293.14923
moles:
- - 1.7459903
- - 6.568249
+ - 1.8856695
+ - 7.0937095
- 0
- 0
- 0
@@ -5286,6 +5819,16 @@ entities:
- type: Transform
pos: -7.5,7.5
parent: 1
+ - uid: 673
+ components:
+ - type: Transform
+ pos: 11.5,12.5
+ parent: 1
+ - uid: 674
+ components:
+ - type: Transform
+ pos: 10.5,12.5
+ parent: 1
- proto: TableReinforcedGlass
entities:
- uid: 315
@@ -5354,20 +5897,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 9.5,7.5
parent: 1
-- proto: ToyFigurineSalvage
- entities:
- - uid: 673
- components:
- - type: Transform
- pos: -8.575909,7.808207
- parent: 1
-- proto: ToyFigurineScientist
- entities:
- - uid: 675
- components:
- - type: Transform
- pos: 7.7964363,12.717527
- parent: 1
- proto: TwoWayLever
entities:
- uid: 334
@@ -5672,13 +6201,6 @@ entities:
- type: Transform
pos: -6.5,2.5
parent: 1
- - uid: 39
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 5.5,3.5
- parent: 1
- uid: 40
components:
- type: MetaData
@@ -6072,6 +6594,14 @@ entities:
rot: 1.5707963267948966 rad
pos: 0.5,1.5
parent: 1
+ - uid: 500
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,3.5
+ parent: 1
- proto: WallShuttleDiagonal
entities:
- uid: 14
@@ -6156,23 +6686,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -3.5,8.5
parent: 1
- - uid: 140
- components:
- - type: Transform
- pos: 11.5,9.5
- parent: 1
- - uid: 232
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,8.5
- parent: 1
- - uid: 233
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,9.5
- parent: 1
- uid: 306
components:
- type: Transform
@@ -6209,6 +6722,23 @@ entities:
rot: 1.5707963267948966 rad
pos: -11.5,8.5
parent: 1
+ - uid: 832
+ components:
+ - type: Transform
+ pos: 11.5,9.5
+ parent: 1
+ - uid: 833
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,9.5
+ parent: 1
+ - uid: 834
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,8.5
+ parent: 1
- proto: WarpPointShip
entities:
- uid: 679
@@ -6252,6 +6782,6 @@ entities:
- uid: 856
components:
- type: Transform
- pos: 1.4504192,-0.41631866
+ pos: 4.9158363,2.6521707
parent: 1
...
diff --git a/Resources/Maps/_NF/Shuttles/pioneer.yml b/Resources/Maps/_NF/Shuttles/pioneer.yml
index 58b98990a6cf..4dd9fb30fd22 100644
--- a/Resources/Maps/_NF/Shuttles/pioneer.yml
+++ b/Resources/Maps/_NF/Shuttles/pioneer.yml
@@ -3,57 +3,57 @@ meta:
postmapinit: false
tilemap:
0: Space
- 28: FloorDark
- 33: FloorDarkMono
- 44: FloorGlass
- 97: FloorTechMaint
- 113: Lattice
- 114: Plating
+ 30: FloorDark
+ 35: FloorDarkMono
+ 105: FloorTechMaint
+ 121: Lattice
+ 122: Plating
entities:
- proto: ""
entities:
- uid: 1
components:
- - name: grid
- type: MetaData
- - pos: -0.51420784,-0.5497939
+ - type: MetaData
+ name: grid
+ - type: Transform
+ pos: -0.51420784,-0.5497939
parent: invalid
- type: Transform
- - chunks:
+ - type: MapGrid
+ chunks:
0,0:
ind: 0,0
- tiles: HAAAAAAAIQAAAAAAIQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAIQAAAAAAIQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: HgAAAAAAIwAAAAAAIwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-1:
ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAAA
version: 6
- type: MapGrid
- type: Broadphase
- - bodyStatus: InAir
+ - type: Physics
+ bodyStatus: InAir
angularDamping: 0.05
linearDamping: 0.05
fixedRotation: False
bodyType: Dynamic
- type: Physics
- - fixtures: {}
- type: Fixtures
+ - type: Fixtures
+ fixtures: {}
- type: OccluderTree
- type: SpreaderGrid
- type: Shuttle
- type: GridPathfinding
- - gravityShakeSound: !type:SoundPathSpecifier
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
path: /Audio/Effects/alert.ogg
- type: Gravity
- - chunkCollection:
+ - type: DecalGrid
+ chunkCollection:
version: 2
nodes:
- node:
@@ -154,8 +154,8 @@ entities:
9: 1,3
10: 2,3
11: 0,-4
- type: DecalGrid
- - version: 2
+ - type: GridAtmosphere
+ version: 2
data:
tiles:
0,0:
@@ -209,607 +209,606 @@ entities:
- 0
- 0
chunkSize: 4
- type: GridAtmosphere
- type: GasTileOverlay
- type: RadiationGridResistance
- - id: pioneer
- type: BecomesStation
+ - type: BecomesStation
+ id: pioneer
- proto: AirAlarm
entities:
- uid: 111
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,2.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
+ - type: DeviceList
+ devices:
- 58
- 133
- type: DeviceNetwork
- - devices:
- - 58
- - 133
- type: DeviceList
- - enabled: False
- type: AccessReader
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AccessReader
+ enabled: False
- type: Emagged
- proto: AirCanister
entities:
- uid: 27
components:
- - anchored: True
+ - type: Transform
+ anchored: True
pos: -0.5,-0.5
parent: 1
- type: Transform
- - bodyType: Static
- type: Physics
+ - type: Physics
+ bodyType: Static
+ - type: AtmosDevice
+ joinedGrid: 1
- proto: AirlockGlassShuttle
entities:
- uid: 121
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 3.5,-0.5
parent: 1
- type: Transform
- uid: 122
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 3.5,-1.5
parent: 1
- type: Transform
- proto: AirSensor
entities:
- uid: 133
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 0.5,-1.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 111
- type: DeviceNetwork
- proto: APCBasic
entities:
- uid: 21
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -1.5,2.5
parent: 1
- type: Transform
- proto: AtmosDeviceFanTiny
entities:
- uid: 30
components:
- - pos: 1.5,3.5
+ - type: Transform
+ pos: 1.5,3.5
parent: 1
- type: Transform
- uid: 34
components:
- - pos: 0.5,-3.5
+ - type: Transform
+ pos: 0.5,-3.5
parent: 1
- type: Transform
- uid: 53
components:
- - pos: 2.5,3.5
+ - type: Transform
+ pos: 2.5,3.5
parent: 1
- type: Transform
- uid: 74
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 3.5,-1.5
parent: 1
- type: Transform
- uid: 91
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 3.5,-0.5
parent: 1
- type: Transform
- uid: 115
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,0.5
parent: 1
- type: Transform
- proto: AtmosFixBlockerMarker
entities:
- uid: 37
components:
- - pos: 1.5,-4.5
+ - type: Transform
+ pos: 1.5,-4.5
parent: 1
- type: Transform
- uid: 63
components:
- - pos: -0.5,-4.5
+ - type: Transform
+ pos: -0.5,-4.5
parent: 1
- type: Transform
- uid: 128
components:
- - pos: 0.5,-4.5
+ - type: Transform
+ pos: 0.5,-4.5
parent: 1
- type: Transform
- uid: 130
components:
- - pos: -1.5,-3.5
+ - type: Transform
+ pos: -1.5,-3.5
parent: 1
- type: Transform
- uid: 131
components:
- - pos: 2.5,4.5
+ - type: Transform
+ pos: 2.5,4.5
parent: 1
- type: Transform
- uid: 132
components:
- - pos: 1.5,4.5
+ - type: Transform
+ pos: 1.5,4.5
parent: 1
- type: Transform
- uid: 136
components:
- - pos: 3.5,4.5
+ - type: Transform
+ pos: 3.5,4.5
parent: 1
- type: Transform
- uid: 137
components:
- - pos: 3.5,-3.5
+ - type: Transform
+ pos: 3.5,-3.5
parent: 1
- type: Transform
- proto: BoxFolderRed
entities:
- uid: 56
components:
- - pos: -0.61567664,2.7058928
+ - type: Transform
+ pos: -0.61567664,2.7058928
parent: 1
- type: Transform
- proto: CableApcExtension
entities:
- uid: 13
components:
- - pos: -1.5,2.5
+ - type: Transform
+ pos: -1.5,2.5
parent: 1
- type: Transform
- uid: 14
components:
- - pos: 1.5,-1.5
+ - type: Transform
+ pos: 1.5,-1.5
parent: 1
- type: Transform
- uid: 15
components:
- - pos: 1.5,2.5
+ - type: Transform
+ pos: 1.5,2.5
parent: 1
- type: Transform
- uid: 17
components:
- - pos: 0.5,1.5
+ - type: Transform
+ pos: 0.5,1.5
parent: 1
- type: Transform
- uid: 19
components:
- - pos: 0.5,2.5
+ - type: Transform
+ pos: 0.5,2.5
parent: 1
- type: Transform
- uid: 22
components:
- - pos: 0.5,-2.5
+ - type: Transform
+ pos: 0.5,-2.5
parent: 1
- type: Transform
- uid: 24
components:
- - pos: 0.5,-3.5
+ - type: Transform
+ pos: 0.5,-3.5
parent: 1
- type: Transform
- uid: 62
components:
- - pos: -0.5,2.5
+ - type: Transform
+ pos: -0.5,2.5
parent: 1
- type: Transform
- uid: 72
components:
- - pos: 2.5,3.5
+ - type: Transform
+ pos: 2.5,3.5
parent: 1
- type: Transform
- uid: 76
components:
- - pos: 0.5,0.5
+ - type: Transform
+ pos: 0.5,0.5
parent: 1
- type: Transform
- uid: 77
components:
- - pos: 0.5,-1.5
+ - type: Transform
+ pos: 0.5,-1.5
parent: 1
- type: Transform
- uid: 79
components:
- - pos: 0.5,-0.5
+ - type: Transform
+ pos: 0.5,-0.5
parent: 1
- type: Transform
- uid: 84
components:
- - pos: 2.5,-1.5
+ - type: Transform
+ pos: 2.5,-1.5
parent: 1
- type: Transform
- uid: 88
components:
- - pos: 2.5,2.5
+ - type: Transform
+ pos: 2.5,2.5
parent: 1
- type: Transform
- proto: CableHV
entities:
- uid: 16
components:
- - pos: -0.5,-1.5
+ - type: Transform
+ pos: -0.5,-1.5
parent: 1
- type: Transform
- uid: 20
components:
- - pos: -0.5,-2.5
+ - type: Transform
+ pos: -0.5,-2.5
parent: 1
- type: Transform
- proto: CableMV
entities:
- uid: 12
components:
- - pos: -1.5,2.5
+ - type: Transform
+ pos: -1.5,2.5
parent: 1
- type: Transform
- uid: 18
components:
- - pos: -0.5,-1.5
+ - type: Transform
+ pos: -0.5,-1.5
parent: 1
- type: Transform
- uid: 71
components:
- - pos: -0.5,-0.5
+ - type: Transform
+ pos: -0.5,-0.5
parent: 1
- type: Transform
- uid: 82
components:
- - pos: -0.5,0.5
+ - type: Transform
+ pos: -0.5,0.5
parent: 1
- type: Transform
- uid: 83
components:
- - pos: -0.5,2.5
+ - type: Transform
+ pos: -0.5,2.5
parent: 1
- type: Transform
- uid: 94
components:
- - pos: -0.5,1.5
+ - type: Transform
+ pos: -0.5,1.5
parent: 1
- type: Transform
- proto: Catwalk
entities:
- uid: 8
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 2.5,4.5
parent: 1
- type: Transform
- uid: 28
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -0.5,-4.5
parent: 1
- type: Transform
- uid: 54
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,-4.5
parent: 1
- type: Transform
- uid: 65
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 3.5,4.5
parent: 1
- type: Transform
- uid: 66
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 0.5,-4.5
parent: 1
- type: Transform
- uid: 87
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,4.5
parent: 1
- type: Transform
- proto: ChairPilotSeat
entities:
- uid: 89
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 0.5,2.5
parent: 1
- type: Transform
- proto: ComputerTabletopShuttle
entities:
- uid: 46
components:
- - pos: 0.5,3.5
+ - type: Transform
+ pos: 0.5,3.5
parent: 1
- type: Transform
- proto: ComputerTabletopStationRecords
entities:
- uid: 61
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,2.5
parent: 1
- type: Transform
- proto: ConveyorBelt
entities:
- uid: 98
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,0.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 125
- type: DeviceLinkSink
- uid: 127
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 2.5,0.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 125
- type: DeviceLinkSink
- proto: DefibrillatorCabinetFilled
entities:
- uid: 140
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,1.5
parent: 1
- type: Transform
- proto: DrinkMugMetal
entities:
- uid: 110
components:
- - pos: 0.26354554,3.9037092
+ - type: Transform
+ pos: 0.26354554,3.9037092
parent: 1
- type: Transform
- - solutions:
+ - type: SolutionContainerManager
+ solutions:
drink:
temperature: 293.15
canMix: True
canReact: True
maxVol: 20
+ name: null
reagents:
- data: null
ReagentId: Coffee
Quantity: 20
- type: SolutionContainerManager
- proto: DrinkVacuumFlask
entities:
- uid: 103
components:
- - pos: 0.7635455,3.5480905
+ - type: Transform
+ pos: 0.7635455,3.5480905
parent: 1
- type: Transform
- - solutions:
+ - type: SolutionContainerManager
+ solutions:
drink:
temperature: 293.15
canMix: False
canReact: True
maxVol: 30
+ name: null
reagents:
- data: null
ReagentId: Coffee
Quantity: 30
- type: SolutionContainerManager
- proto: EmergencyLight
entities:
- uid: 95
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,0.5
parent: 1
- type: Transform
- proto: ExteriorLightTube
entities:
- uid: 135
components:
- - flags: InContainer
- type: MetaData
- - parent: 129
- type: Transform
- - canCollide: False
- type: Physics
+ - type: MetaData
+ flags: InContainer
+ - type: Transform
+ parent: 129
+ - type: Physics
+ canCollide: False
- proto: ExtinguisherCabinetFilled
entities:
- uid: 139
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -1.5,-0.5
parent: 1
- type: Transform
- proto: FaxMachineShip
entities:
- uid: 45
components:
- - pos: -0.5,3.5
+ - type: Transform
+ pos: -0.5,3.5
parent: 1
- type: Transform
- proto: FoodSnackMREBrownie
entities:
- uid: 104
components:
- - pos: -0.31457946,2.7162092
+ - type: Transform
+ pos: -0.31457946,2.7162092
parent: 1
- type: Transform
- uid: 108
components:
- - pos: 0.25513285,3.4821296
+ - type: Transform
+ pos: 0.25513285,3.4821296
parent: 1
- type: Transform
- proto: FoodTinMRE
entities:
- uid: 109
components:
- - pos: -0.30215788,2.4988184
+ - type: Transform
+ pos: -0.30215788,2.4988184
parent: 1
- type: Transform
- proto: GasPassiveVent
entities:
- uid: 96
components:
- - pos: 1.5,4.5
+ - type: Transform
+ pos: 1.5,4.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPipeBend
entities:
- uid: 35
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,1.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPipeStraight
entities:
- uid: 10
components:
- - pos: 1.5,3.5
+ - type: Transform
+ pos: 1.5,3.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPort
entities:
- uid: 7
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,-0.5
parent: 1
- type: Transform
- - color: '#0000CCFF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0000CCFF'
- proto: GasPressurePump
entities:
- uid: 59
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,2.5
parent: 1
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasVentPump
entities:
- uid: 48
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 0.5,-0.5
parent: 1
- type: Transform
- - color: '#0000CCFF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0000CCFF'
- proto: GasVentScrubber
entities:
- uid: 58
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 0.5,1.5
parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 111
- type: DeviceNetwork
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GravityGeneratorMini
entities:
- uid: 92
components:
- - pos: 1.5,-2.5
+ - type: Transform
+ pos: 1.5,-2.5
parent: 1
- type: Transform
- proto: Grille
entities:
- uid: 50
components:
- - pos: -0.5,4.5
+ - type: Transform
+ pos: -0.5,4.5
parent: 1
- type: Transform
- uid: 52
components:
- - pos: 0.5,4.5
+ - type: Transform
+ pos: 0.5,4.5
parent: 1
- type: Transform
- uid: 67
components:
- - pos: -1.5,3.5
+ - type: Transform
+ pos: -1.5,3.5
parent: 1
- type: Transform
- uid: 80
components:
- - pos: -1.5,4.5
+ - type: Transform
+ pos: -1.5,4.5
parent: 1
- type: Transform
- proto: GrilleBroken
entities:
- uid: 40
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,3.5
parent: 1
- type: Transform
- uid: 43
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,4.5
parent: 1
- type: Transform
- uid: 51
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 0.5,4.5
parent: 1
- type: Transform
-- proto: Gyroscope
- entities:
- - uid: 93
- components:
- - pos: 2.5,-2.5
- parent: 1
- type: Transform
- proto: LockerSalvageSpecialistFilled
entities:
- uid: 102
components:
- - pos: -0.5,1.5
+ - type: Transform
+ pos: -0.5,1.5
parent: 1
- type: Transform
- proto: OreBox
entities:
- uid: 124
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,1.5
parent: 1
- type: Transform
- uid: 134
components:
- - pos: 2.5,1.5
+ - type: Transform
+ pos: 2.5,1.5
parent: 1
- type: Transform
- proto: Paper
entities:
- uid: 44
components:
- - name: preflight checklist
- type: MetaData
- - pos: -0.21699798,-2.269284
+ - type: MetaData
+ name: preflight checklist
+ - type: Transform
+ pos: -0.21699798,-2.269284
parent: 1
- type: Transform
- - stampState: paper_stamp-ce
+ - type: Paper
+ stampState: paper_stamp-ce
stampedBy:
- stampedBorderless: False
stampedColor: '#C69B17FF'
@@ -892,291 +891,303 @@ entities:
[bold]**[/bold] - While the ship is not equipped with Ore Processing unit the power generation is sustainable due to the the ability of P.A.C.M.A.N. generator units accept [bold]raw plasma ore[/bold] as a fuel. Do note however that 1 unit of raw plasma ore equals to 5 solid plasma sheets, so in order to fully fill generator's fuel tank you only need 6 units of raw plasma ore.
[bold]***[/bold] - Pioneer-class salvage ships have low power demand meaning that standard P.A.C.M.A.N. generator unit's Target Power value can be lowered as low as 10 kW. Please note, that recommended Target Power value to avoid blackouts during Gravity Generator charging sequence is 11 kW.
- type: Paper
- proto: PlasticFlapsAirtightClear
entities:
- uid: 126
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 3.5,0.5
parent: 1
- type: Transform
- proto: PortableGeneratorPacman
entities:
- uid: 47
components:
- - anchored: True
+ - type: Transform
+ anchored: True
pos: -0.5,-2.5
parent: 1
- type: Transform
- - storage:
+ - type: MaterialStorage
+ storage:
Plasma: 1500
- type: MaterialStorage
- - bodyType: Static
- type: Physics
+ - type: Physics
+ bodyType: Static
- type: InsertingMaterialStorage
- proto: PoweredlightEmpty
entities:
- uid: 129
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 3.5,4.5
parent: 1
- type: Transform
- - containers:
+ - type: ContainerContainer
+ containers:
light_bulb: !type:ContainerSlot
showEnts: False
occludes: True
ent: 135
- type: ContainerContainer
- - powerLoad: 100
- type: ApcPowerReceiver
+ - type: ApcPowerReceiver
+ powerLoad: 100
- proto: PoweredlightLED
entities:
- uid: 107
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 2.5,1.5
parent: 1
- type: Transform
- proto: Railing
entities:
- uid: 39
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 2.5,4.5
parent: 1
- type: Transform
- proto: RandomPosterAny
entities:
- uid: 116
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -1.5,1.5
parent: 1
- type: Transform
- proto: ReinforcedWindow
entities:
- uid: 4
components:
- - pos: -0.5,4.5
+ - type: Transform
+ pos: -0.5,4.5
parent: 1
- type: Transform
- uid: 11
components:
- - pos: -1.5,3.5
+ - type: Transform
+ pos: -1.5,3.5
parent: 1
- type: Transform
- uid: 26
components:
- - pos: -1.5,4.5
+ - type: Transform
+ pos: -1.5,4.5
parent: 1
- type: Transform
- uid: 42
components:
- - pos: 0.5,4.5
+ - type: Transform
+ pos: 0.5,4.5
parent: 1
- type: Transform
- proto: SheetPlasma
entities:
- uid: 101
components:
- - pos: -0.69359195,-2.4392602
+ - type: Transform
+ pos: -0.69359195,-2.4392602
parent: 1
- type: Transform
- - count: 15
- type: Stack
- - size: 15
- type: Item
+ - type: Stack
+ count: 15
+ - type: Item
+ size: 15
- proto: ShuttersWindow
entities:
- uid: 5
components:
- - pos: 1.5,3.5
+ - type: Transform
+ pos: 1.5,3.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 123
- type: DeviceLinkSink
- uid: 29
components:
- - pos: 2.5,3.5
+ - type: Transform
+ pos: 2.5,3.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 123
- type: DeviceLinkSink
- uid: 97
components:
- - pos: 0.5,-3.5
+ - type: Transform
+ pos: 0.5,-3.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 99
- type: DeviceLinkSink
- uid: 120
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 3.5,0.5
parent: 1
- type: Transform
- - links:
+ - type: DeviceLinkSink
+ links:
- 113
- type: DeviceLinkSink
- proto: SignalButtonDirectional
entities:
- uid: 99
components:
- - name: stern shutters switch
- type: MetaData
- - rot: 3.141592653589793 rad
+ - type: MetaData
+ name: stern shutters switch
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -0.5,-3.5
parent: 1
- type: Transform
- - linkedPorts:
+ - type: DeviceLinkSource
+ linkedPorts:
97:
- Pressed: Toggle
- type: DeviceLinkSource
- uid: 113
components:
- - name: starboard shutters switch
- type: MetaData
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ name: starboard shutters switch
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5003784,2.2201123
parent: 1
- type: Transform
- - linkedPorts:
+ - type: DeviceLinkSource
+ linkedPorts:
120:
- Pressed: Toggle
- type: DeviceLinkSource
- uid: 123
components:
- - name: bow shutters switch
- type: MetaData
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ name: bow shutters switch
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,2.5
parent: 1
- type: Transform
- - linkedPorts:
+ - type: DeviceLinkSource
+ linkedPorts:
5:
- Pressed: Toggle
29:
- Pressed: Toggle
- type: DeviceLinkSource
- proto: SignElectricalMed
entities:
- uid: 118
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -1.5,-1.5
parent: 1
- type: Transform
- proto: SignGravity
entities:
- uid: 117
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 1.5,-3.5
parent: 1
- type: Transform
- proto: SignSpace
entities:
- uid: 119
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 3.5,3.5
parent: 1
- type: Transform
+- proto: SmallGyroscope
+ entities:
+ - uid: 93
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-2.5
+ parent: 1
- proto: SpawnPointLatejoin
entities:
- uid: 57
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,0.5
parent: 1
- type: Transform
- proto: SpawnPointPilot
entities:
- uid: 85
components:
- - pos: 0.5,0.5
+ - type: Transform
+ pos: 0.5,0.5
parent: 1
- type: Transform
- proto: SpawnPointSalvageSpecialist
entities:
- uid: 112
components:
- - pos: 1.5,0.5
+ - type: Transform
+ pos: 1.5,0.5
parent: 1
- type: Transform
- proto: SubstationBasic
entities:
- uid: 86
components:
- - pos: -0.5,-1.5
+ - type: Transform
+ pos: -0.5,-1.5
parent: 1
- type: Transform
- proto: SuitStorageWallmountSalv
entities:
- uid: 106
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -1.5,0.5
parent: 1
- type: Transform
+ - type: Physics
+ canCollide: False
- proto: Table
entities:
- uid: 41
components:
- - pos: -0.5,2.5
+ - type: Transform
+ pos: -0.5,2.5
parent: 1
- type: Transform
- uid: 55
components:
- - pos: -0.5,3.5
+ - type: Transform
+ pos: -0.5,3.5
parent: 1
- type: Transform
- uid: 60
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 0.5,3.5
parent: 1
- type: Transform
- proto: Thruster
entities:
- uid: 38
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 0.5,-4.5
parent: 1
- type: Transform
- uid: 64
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,-4.5
parent: 1
- type: Transform
- uid: 78
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,-4.5
parent: 1
- type: Transform
- uid: 90
components:
- - pos: 3.5,4.5
+ - type: Transform
+ pos: 3.5,4.5
parent: 1
- type: Transform
- proto: TwoWayLever
entities:
- uid: 125
components:
- - name: conveyor belt lever
- type: MetaData
- - pos: 1.0009614,2.6627383
+ - type: MetaData
+ name: conveyor belt lever
+ - type: Transform
+ pos: 1.0009614,2.6627383
parent: 1
- type: Transform
- - linkedPorts:
+ - type: DeviceLinkSource
+ linkedPorts:
98:
- Left: Forward
- Right: Reverse
@@ -1185,127 +1196,152 @@ entities:
- Left: Forward
- Right: Reverse
- Middle: Off
- type: DeviceLinkSource
- proto: WallSolid
entities:
- uid: 2
components:
- - pos: -1.5,2.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -1.5,2.5
parent: 1
- type: Transform
- uid: 23
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -0.5,-3.5
parent: 1
- type: Transform
- uid: 25
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 1.5,-3.5
parent: 1
- type: Transform
- uid: 33
components:
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 2.5,-3.5
parent: 1
- type: Transform
- uid: 36
components:
- - pos: -1.5,-2.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -1.5,-2.5
parent: 1
- type: Transform
- uid: 49
components:
- - pos: 3.5,-2.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,-2.5
parent: 1
- type: Transform
- uid: 68
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 3.5,3.5
parent: 1
- type: Transform
- uid: 69
components:
- - pos: 3.5,2.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,2.5
parent: 1
- type: Transform
- uid: 70
components:
- - pos: 3.5,1.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,1.5
parent: 1
- type: Transform
- uid: 73
components:
- - pos: -1.5,0.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -1.5,0.5
parent: 1
- type: Transform
- uid: 75
components:
- - pos: -1.5,1.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -1.5,1.5
parent: 1
- type: Transform
- uid: 81
components:
- - pos: -1.5,-1.5
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -1.5,-1.5
parent: 1
- type: Transform
- uid: 138
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -1.5,-0.5
parent: 1
- type: Transform
- proto: WallSolidDiagonal
entities:
- uid: 31
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 3.5,-3.5
parent: 1
- type: Transform
- uid: 32
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -1.5,-3.5
parent: 1
- type: Transform
- proto: WarpPointShip
entities:
- uid: 3
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,0.5
parent: 1
- type: Transform
- proto: WeaponGrapplingGun
entities:
- uid: 105
components:
- - pos: -0.16255164,3.2996428
+ - type: Transform
+ pos: -0.16255164,3.2996428
parent: 1
- type: Transform
- proto: WindowReinforcedDirectional
entities:
- uid: 6
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,3.5
parent: 1
- type: Transform
- uid: 9
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,4.5
parent: 1
- type: Transform
- proto: Wrench
entities:
- uid: 100
components:
- - pos: -0.44359192,-2.4705102
+ - type: Transform
+ pos: -0.44359192,-2.4705102
parent: 1
- type: Transform
...
diff --git a/Resources/Maps/_NF/Dungeon/ruined_dwellings.yml b/Resources/Maps/_NF/Shuttles/placebo.yml
similarity index 52%
rename from Resources/Maps/_NF/Dungeon/ruined_dwellings.yml
rename to Resources/Maps/_NF/Shuttles/placebo.yml
index 94a1e10ec9f6..80a4fdd6f02e 100644
--- a/Resources/Maps/_NF/Dungeon/ruined_dwellings.yml
+++ b/Resources/Maps/_NF/Shuttles/placebo.yml
@@ -3,14 +3,12 @@ meta:
postmapinit: false
tilemap:
0: Space
- 7: FloorAsteroidSand
- 8: FloorAsteroidSandDug
- 20: FloorBrokenWood
- 39: FloorDarkPlastic
- 43: FloorElevatorShaft
- 62: FloorLaundry
+ 30: FloorDark
+ 46: FloorGlass
+ 90: FloorSteel
105: FloorTechMaint
119: FloorWood
+ 121: Lattice
122: Plating
entities:
- proto: ""
@@ -18,44 +16,38 @@ entities:
- uid: 1
components:
- type: MetaData
+ name: grid
- type: Transform
- - type: Map
- - type: PhysicsMap
- - type: Broadphase
- - type: OccluderTree
+ pos: -0.4843776,-0.5312512
+ parent: invalid
- type: MapGrid
chunks:
0,0:
ind: 0,0
- tiles: KwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAFAAAAAAEdwAAAAADdwAAAAACKwAAAAAAdwAAAAADFAAAAAAFdwAAAAABdwAAAAAAdwAAAAAAKwAAAAAAdwAAAAACdwAAAAABdwAAAAAAFAAAAAAGdwAAAAACKwAAAAAAdwAAAAAAdwAAAAAAdwAAAAACKwAAAAAAdwAAAAAAdwAAAAABdwAAAAADdwAAAAABdwAAAAADKwAAAAAAdwAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKwAAAAAAdwAAAAACdwAAAAAAFAAAAAABKwAAAAAAdwAAAAABdwAAAAACdwAAAAAAFAAAAAAGdwAAAAABKwAAAAAAdwAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAdwAAAAAAFAAAAAAFdwAAAAABdwAAAAACdwAAAAAAKwAAAAAAdwAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKwAAAAAAdwAAAAAAdwAAAAACdwAAAAADKwAAAAAAFAAAAAAGdwAAAAAAdwAAAAABdwAAAAADFAAAAAAAKwAAAAAAdwAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKwAAAAAAdwAAAAACdwAAAAABFAAAAAADKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAdwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKwAAAAAAdwAAAAACFAAAAAAEdwAAAAABKwAAAAAAdwAAAAAAdwAAAAABFAAAAAABdwAAAAACdwAAAAACKwAAAAAAdwAAAAADFAAAAAACdwAAAAABdwAAAAABFAAAAAAFKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAdwAAAAAAdwAAAAAAdwAAAAACdwAAAAABFAAAAAAFKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAdwAAAAACFAAAAAAAdwAAAAABKwAAAAAAdwAAAAADFAAAAAAEdwAAAAADdwAAAAACdwAAAAABKwAAAAAAdwAAAAACFAAAAAACdwAAAAACdwAAAAADdwAAAAAAKwAAAAAAdwAAAAADdwAAAAACdwAAAAACKwAAAAAAdwAAAAABdwAAAAABdwAAAAADdwAAAAACdwAAAAADKwAAAAAAdwAAAAABJwAAAAADJwAAAAABJwAAAAABJwAAAAADKwAAAAAAdwAAAAABdwAAAAADFAAAAAADKwAAAAAAFAAAAAADdwAAAAACdwAAAAAAFAAAAAACdwAAAAAAKwAAAAAAdwAAAAABJwAAAAAAJwAAAAAAJwAAAAABJwAAAAACKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAdwAAAAACJwAAAAACJwAAAAAAJwAAAAADJwAAAAADKwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKwAAAAAAdwAAAAADdwAAAAAAdwAAAAAAFAAAAAABdwAAAAABKwAAAAAAdwAAAAABJwAAAAACJwAAAAAAJwAAAAABJwAAAAAAKwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKwAAAAAAdwAAAAAAFAAAAAACdwAAAAAAdwAAAAADdwAAAAADKwAAAAAAFAAAAAAEJwAAAAABJwAAAAAAJwAAAAAAJwAAAAABKwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKwAAAAAAFAAAAAABdwAAAAABdwAAAAAAdwAAAAABdwAAAAABKwAAAAAAdwAAAAADdwAAAAACFAAAAAACdwAAAAAAdwAAAAAD
- version: 6
- 1,0:
- ind: 1,0
- tiles: KwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAABKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAdwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAdwAAAAACKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAdwAAAAADKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAdwAAAAACKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAdwAAAAABKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAACKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACFAAAAAABKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAACdwAAAAADKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAABdwAAAAACKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAdwAAAAACKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAADdwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAADdwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAFAAAAAACKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 0,1:
- ind: 0,1
- tiles: KwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAdwAAAAACdwAAAAACdwAAAAABdwAAAAAAFAAAAAACKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAdwAAAAACdwAAAAADFAAAAAABKwAAAAAAdwAAAAACdwAAAAAAFAAAAAABdwAAAAABdwAAAAAAKwAAAAAAFAAAAAABdwAAAAABdwAAAAABFAAAAAAGdwAAAAADKwAAAAAAFAAAAAAGdwAAAAADdwAAAAABKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAdwAAAAAAdwAAAAACFAAAAAAEdwAAAAACegAAAAAAKwAAAAAAdwAAAAADdwAAAAACdwAAAAADKwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAKwAAAAAAFAAAAAAGegAAAAAAegAAAAAABwAAAAAABwAAAAAAKwAAAAAAdwAAAAACdwAAAAACdwAAAAACKwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAKwAAAAAAdwAAAAABegAAAAAABwAAAAACCAAAAAAABwAAAAACKwAAAAAAdwAAAAACFAAAAAACdwAAAAADKwAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAKwAAAAAAdwAAAAACFAAAAAADBwAAAAABBwAAAAACegAAAAAAKwAAAAAAdwAAAAADdwAAAAAAdwAAAAACKwAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAKwAAAAAAdwAAAAADdwAAAAAAegAAAAAAdwAAAAACFAAAAAACKwAAAAAAFAAAAAAEdwAAAAABdwAAAAADKwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAKwAAAAAAFAAAAAAAdwAAAAADdwAAAAADdwAAAAACdwAAAAACKwAAAAAAdwAAAAAAdwAAAAACFAAAAAAGKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAdwAAAAADdwAAAAACdwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAdwAAAAAAdwAAAAABFAAAAAADKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAFAAAAAAEdwAAAAAAdwAAAAABKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAdwAAAAABdwAAAAABdwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAdwAAAAAAFAAAAAAGdwAAAAADKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAFAAAAAAAdwAAAAAAFAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA
+ tiles: WgAAAAADWgAAAAACegAAAAAAeQAAAAAAeQAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAABegAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAADaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAADWgAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAACWgAAAAABaQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAABWgAAAAADeQAAAAAAeQAAAAAALgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAADHgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAADHgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- 1,1:
- ind: 1,1
- tiles: KwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAEdwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAABdwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAFAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAABKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAFAAAAAAGKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAACWgAAAAAAWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAACWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAADdwAAAAABdwAAAAACdwAAAAAAHgAAAAAAHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAADdwAAAAAAdwAAAAADdwAAAAAAHgAAAAADHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAABdwAAAAACdwAAAAADdwAAAAADHgAAAAADHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAAAdwAAAAADdwAAAAAAdwAAAAADHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- 0,2:
- ind: 0,2
- tiles: KwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAAC
version: 6
- 1,2:
- ind: 1,2
- tiles: KwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
+ - type: Broadphase
- type: Physics
bodyStatus: InAir
angularDamping: 0.05
linearDamping: 0.05
fixedRotation: False
- canCollide: False
bodyType: Dynamic
+ - type: Fixtures
+ fixtures: {}
+ - type: OccluderTree
- type: SpreaderGrid
- type: Shuttle
- type: GridPathfinding
@@ -67,299 +59,82 @@ entities:
version: 2
nodes:
- node:
- cleanable: True
- color: '#9D9D97FF'
- id: Damaged
- decals:
- 40: 12,13
- 41: 12,5
- 42: 16,3
- 102: 2,14
- - node:
- color: '#9D9D97FF'
- id: Dirt
- decals:
- 110: 1,25
- 111: 1,26
- 112: 1,24
- 113: 2,25
- 114: 2,26
- 115: 3,23
- 116: 3,22
- 117: 2,22
- 118: 2,17
- 119: 2,18
- 120: 1,19
- 121: 1,20
- 122: 2,19
- 123: 3,29
- 124: 1,29
- - node:
- cleanable: True
- color: '#9D9D97FF'
- id: Dirt
- decals:
- 43: 16,5
- 44: 14,6
- 45: 14,2
- 46: 7,1
- 47: 8,1
- 48: 6,5
- 49: 9,3
- 50: 5,3
- 51: 3,2
- 52: 1,3
- 53: 1,5
- 54: 1,6
- 55: 3,9
- 56: 2,11
- 57: 1,10
- 58: 5,9
- 59: 5,10
- 60: 9,9
- 61: 8,7
- 62: 9,11
- 63: 7,13
- 64: 7,16
- 65: 6,16
- 66: 6,17
- 67: 5,14
- 68: 9,17
- 69: 12,19
- 70: 13,19
- 71: 15,18
- 72: 16,20
- 73: 16,21
- 74: 15,21
- 75: 15,19
- 76: 13,21
- 77: 13,22
- 78: 12,22
- 79: 14,22
- 80: 14,21
- 81: 13,20
- 82: 14,19
- 83: 15,20
- 84: 17,18
- 85: 14,10
- 86: 13,11
- 87: 14,11
- 88: 14,12
- 89: 14,13
- 90: 15,13
- 91: 13,14
- 92: 12,10
- - node:
- cleanable: True
- color: '#9D9D97FF'
- id: DirtHeavy
- decals:
- 100: 2,15
- 101: 1,13
- - node:
- cleanable: True
- color: '#9D9D97FF'
- id: DirtLight
+ color: '#FFFF00FF'
+ id: 1
decals:
- 96: 13,13
- 97: 16,10
- 98: 14,3
- 99: 2,14
- 103: 16,12
- 104: 12,12
- 105: 14,4
+ 2: -2.2682161,3.2151551
- node:
- cleanable: True
- color: '#9D9D97FF'
- id: DirtMedium
+ color: '#FFFF00FF'
+ id: 2
decals:
- 93: 14,5
- 94: 13,10
- 95: 14,14
+ 3: -1.2450678,3.266081
- node:
color: '#FFFFFFFF'
- id: WarnEndN
+ id: BotLeft
decals:
- 108: 6,22
- 109: 8,22
+ 0: -2,3
+ 1: -1,3
- node:
- color: '#FFFFFFFF'
- id: WarnEndS
- decals:
- 106: 6,21
- 107: 8,21
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinInnerNe
- decals:
- 17: 11,9
- 36: 11,1
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinInnerNw
- decals:
- 37: 17,1
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinInnerSe
- decals:
- 18: 11,15
- 39: 11,7
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinInnerSw
+ color: '#47E8FFFF'
+ id: HalfTileOverlayGreyscale90
decals:
- 19: 17,15
- 38: 17,7
+ 7: -4,3
- node:
- color: '#FFFFFFFF'
- id: WoodTrimThinLineE
+ color: '#FFE84AFF'
+ id: HalfTileOverlayGreyscale90
decals:
- 13: 11,10
- 14: 11,11
- 15: 11,12
- 16: 11,13
- 28: 11,2
- 29: 11,3
- 30: 11,4
- 31: 11,5
- 32: 11,6
+ 8: 1,2
- node:
- color: '#FFFFFFFF'
- id: WoodTrimThinLineN
+ color: '#47E8FFFF'
+ id: ThreeQuarterTileOverlayGreyscale
decals:
- 9: 16,9
- 10: 15,9
- 11: 14,9
- 12: 13,9
- 33: 12,1
- 34: 13,1
- 35: 15,1
+ 5: 0,7
- node:
- color: '#FFFFFFFF'
- id: WoodTrimThinLineS
+ color: '#47E8FFFF'
+ id: ThreeQuarterTileOverlayGreyscale180
decals:
- 5: 16,15
- 6: 15,15
- 7: 14,15
- 8: 12,15
- 20: 13,7
- 21: 14,7
- 22: 16,7
+ 6: -4,2
- node:
- color: '#FFFFFFFF'
- id: WoodTrimThinLineW
+ color: '#47E844FF'
+ id: ThreeQuarterTileOverlayGreyscale90
decals:
- 0: 17,11
- 1: 17,10
- 2: 17,12
- 3: 17,13
- 4: 17,14
- 23: 17,6
- 24: 17,5
- 25: 17,4
- 26: 17,3
- 27: 17,2
+ 4: 1,7
- type: GridAtmosphere
version: 2
data:
tiles:
0,0:
0: 65535
- 0,1:
+ -1,0:
0: 65535
- 0,2:
+ -1,-1:
+ 0: 57344
+ 0,-1:
+ 0: 28672
+ 0,1:
0: 65535
1,0:
- 0: 65535
+ 0: 13107
1,1:
+ 0: 307
+ -2,0:
+ 0: 61152
+ -2,1:
+ 0: 61166
+ -2,2:
+ 0: 3822
+ -1,1:
0: 65535
- 1,2:
- 0: 65535
- 2,0:
- 0: 65535
- 2,1:
- 0: 65535
- 2,2:
- 0: 65535
- 0,3:
- 0: 65535
- 1,3:
- 0: 65535
- 2,3:
- 0: 65535
- 3,0:
- 0: 65535
- 3,1:
- 0: 65535
- 3,2:
- 0: 65535
- 3,3:
- 0: 65535
- 4,0:
- 0: 30583
- 4,1:
- 0: 30583
- 4,2:
- 0: 30583
- 4,3:
- 0: 30583
- 0,4:
- 0: 65535
- 0,5:
- 0: 65535
- 0,6:
- 0: 65535
- 0,7:
- 0: 65535
- 1,4:
- 0: 65535
- 1,5:
- 0: 65535
- 1,6:
- 0: 65535
- 1,7:
- 0: 65535
- 2,4:
- 0: 65535
- 2,5:
- 0: 65535
- 2,6:
- 0: 65535
- 2,7:
- 0: 65535
- 3,4:
- 0: 65535
- 3,5:
- 0: 65535
- 3,6:
- 0: 65535
- 3,7:
- 0: 65535
- 4,4:
- 0: 30583
- 4,5:
- 0: 30583
- 4,6:
- 0: 30583
- 4,7:
- 0: 30583
- 0,8:
- 0: 15
- 1,8:
- 0: 15
- 2,8:
- 0: 15
- 3,8:
- 0: 15
- 4,8:
- 0: 7
+ -1,2:
+ 0: 4095
+ 0,2:
+ 0: 1911
uniqueMixes:
- volume: 2500
temperature: 293.15
moles:
- - 0
- - 0
+ - 21.824879
+ - 82.10312
- 0
- 0
- 0
@@ -372,1836 +147,2044 @@ entities:
- 0
chunkSize: 4
- type: GasTileOverlay
- - type: LoadedMap
- type: RadiationGridResistance
- - type: GridTree
- - type: MovedGrids
- - type: Fixtures
- fixtures: {}
-- proto: APCBasic
+ - type: BecomesStation
+ id: Placebo
+- proto: AirAlarm
entities:
- - uid: 160
+ - uid: 234
components:
- type: Transform
- pos: 7.5,20.5
- parent: 1
-- proto: Bed
+ pos: -0.5,5.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 245
+ - 190
+ - 189
+ - 241
+ - 239
+ - 238
+ - 237
+ - 240
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 235
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,5.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 242
+ - 240
+ - 243
+ - 244
+ - 173
+ - 174
+ - type: AtmosDevice
+ joinedGrid: 1
+- proto: AirCanister
entities:
- - uid: 13
+ - uid: 257
components:
- type: Transform
- pos: 7.5,2.5
+ anchored: True
+ pos: 4.5,2.5
parent: 1
- - uid: 17
+ - type: Physics
+ bodyType: Static
+ - type: AtmosDevice
+ joinedGrid: 1
+- proto: AirlockCommand
+ entities:
+ - uid: 109
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 2.5,2.5
+ pos: -1.5,6.5
parent: 1
- - uid: 128
+ - type: Door
+ secondsUntilStateChange: -938.6825
+ state: Opening
+- proto: AirlockEngineering
+ entities:
+ - uid: 18
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 8.5,16.5
+ pos: 2.5,2.5
parent: 1
-- proto: BedsheetSpawner
+- proto: AirlockExternalGlass
entities:
- - uid: 15
+ - uid: 10
components:
- type: Transform
- pos: 7.5,2.5
+ pos: -0.5,1.5
parent: 1
- - uid: 18
+ - type: Door
+ secondsUntilStateChange: -1248.5479
+ state: Opening
+ - uid: 12
components:
- type: Transform
- pos: 2.5,2.5
+ pos: 0.5,1.5
parent: 1
- - uid: 126
+ - uid: 13
components:
- type: Transform
- pos: 8.5,16.5
+ pos: 1.5,1.5
parent: 1
-- proto: CableApcExtension
+- proto: AirlockGlassShuttle
entities:
- - uid: 24
+ - uid: 9
components:
- type: Transform
- pos: 9.5,1.5
+ pos: 1.5,-0.5
parent: 1
- - uid: 25
+ - uid: 11
components:
- type: Transform
- pos: 8.5,1.5
+ pos: -0.5,-0.5
parent: 1
- - uid: 26
+- proto: AirlockMedical
+ entities:
+ - uid: 54
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 7.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,5.5
parent: 1
- - uid: 27
+ - type: DeviceLinkSink
+ links:
+ - 138
+- proto: AirSensor
+ entities:
+ - uid: 243
components:
- type: Transform
- pos: 6.5,1.5
- parent: 1
- - uid: 28
+ rot: 3.141592653589793 rad
+ pos: -3.5,7.5
+ parent: 1
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ deviceLists:
+ - 196
+ - 235
+ - uid: 244
components:
- type: Transform
- pos: 5.5,1.5
- parent: 1
- - uid: 29
+ rot: 3.141592653589793 rad
+ pos: -0.5,7.5
+ parent: 1
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ deviceLists:
+ - 196
+ - 235
+ - uid: 245
components:
- type: Transform
- pos: 5.5,2.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,4.5
parent: 1
- - uid: 30
+ - type: DeviceNetwork
+ deviceLists:
+ - 234
+ - 196
+- proto: APCBasic
+ entities:
+ - uid: 197
components:
- type: Transform
- pos: 5.5,3.5
+ pos: -3.5,5.5
parent: 1
- - uid: 31
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 258
components:
- type: Transform
- pos: 5.5,4.5
+ pos: -0.5,-0.5
parent: 1
- - uid: 32
+ - uid: 259
components:
- type: Transform
- pos: 5.5,5.5
+ pos: 1.5,-0.5
parent: 1
- - uid: 33
+- proto: BookshelfFilled
+ entities:
+ - uid: 80
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 6.5,5.5
+ pos: -0.5,4.5
parent: 1
- - uid: 34
+ - uid: 131
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 7.5,5.5
+ pos: -4.5,9.5
parent: 1
- - uid: 35
+- proto: CableApcExtension
+ entities:
+ - uid: 208
components:
- type: Transform
- pos: 8.5,5.5
+ pos: -3.5,5.5
parent: 1
- - uid: 36
+ - uid: 209
components:
- type: Transform
- pos: 9.5,5.5
+ pos: -3.5,6.5
parent: 1
- - uid: 37
+ - uid: 210
components:
- type: Transform
- pos: 9.5,4.5
+ pos: -3.5,7.5
parent: 1
- - uid: 38
+ - uid: 211
components:
- type: Transform
- pos: 9.5,3.5
+ pos: -3.5,8.5
parent: 1
- - uid: 39
+ - uid: 212
components:
- type: Transform
- pos: 9.5,2.5
+ pos: -2.5,6.5
parent: 1
- - uid: 40
+ - uid: 213
components:
- type: Transform
- pos: 3.5,1.5
+ pos: -1.5,6.5
parent: 1
- - uid: 41
+ - uid: 214
components:
- type: Transform
- pos: 3.5,2.5
+ pos: -0.5,6.5
parent: 1
- - uid: 42
+ - uid: 215
components:
- type: Transform
- pos: 3.5,3.5
+ pos: 0.5,6.5
parent: 1
- - uid: 43
+ - uid: 216
components:
- type: Transform
- pos: 2.5,3.5
+ pos: -3.5,5.5
parent: 1
- - uid: 44
+ - uid: 217
components:
- type: Transform
- pos: 1.5,3.5
+ pos: -3.5,4.5
parent: 1
- - uid: 45
+ - uid: 218
components:
- type: Transform
- pos: 1.5,2.5
+ pos: -3.5,3.5
parent: 1
- - uid: 46
+ - uid: 219
components:
- type: Transform
- pos: 1.5,1.5
+ pos: -3.5,2.5
parent: 1
- - uid: 47
+ - uid: 220
components:
- type: Transform
- pos: 2.5,1.5
+ pos: -2.5,2.5
parent: 1
- - uid: 48
+ - uid: 221
components:
- type: Transform
- pos: 3.5,5.5
+ pos: -1.5,2.5
parent: 1
- - uid: 49
+ - uid: 222
components:
- type: Transform
- pos: 2.5,5.5
+ pos: -0.5,2.5
parent: 1
- - uid: 50
+ - uid: 223
components:
- type: Transform
- pos: 1.5,5.5
+ pos: 0.5,2.5
parent: 1
- - uid: 51
+ - uid: 224
components:
- type: Transform
- pos: 1.5,6.5
+ pos: 0.5,1.5
parent: 1
- - uid: 52
+ - uid: 225
components:
- type: Transform
- pos: 1.5,7.5
+ pos: 0.5,0.5
parent: 1
- - uid: 53
+ - uid: 226
components:
- type: Transform
- pos: 2.5,7.5
+ pos: -2.5,1.5
parent: 1
- - uid: 54
+ - uid: 227
components:
- type: Transform
- pos: 3.5,7.5
+ pos: -2.5,0.5
parent: 1
- - uid: 55
+ - uid: 228
components:
- type: Transform
- pos: 3.5,6.5
+ pos: 1.5,6.5
parent: 1
- - uid: 56
+ - uid: 229
components:
- type: Transform
- pos: 8.5,7.5
+ pos: 2.5,6.5
parent: 1
- - uid: 57
+ - uid: 230
components:
- type: Transform
- pos: 9.5,7.5
+ pos: 3.5,6.5
parent: 1
- - uid: 58
+ - uid: 231
components:
- type: Transform
- pos: 9.5,8.5
+ pos: 1.5,2.5
parent: 1
- - uid: 59
+ - uid: 232
components:
- type: Transform
- pos: 9.5,9.5
+ pos: 2.5,2.5
parent: 1
- - uid: 60
+ - uid: 233
components:
- type: Transform
- pos: 9.5,10.5
+ pos: 3.5,2.5
parent: 1
- - uid: 61
+- proto: CableHV
+ entities:
+ - uid: 265
components:
- type: Transform
- pos: 9.5,11.5
+ pos: 4.5,2.5
parent: 1
- - uid: 62
+ - uid: 266
components:
- type: Transform
- pos: 8.5,11.5
+ pos: 4.5,1.5
parent: 1
- - uid: 63
+ - uid: 267
components:
- type: Transform
- pos: 7.5,11.5
+ pos: 4.5,3.5
parent: 1
- - uid: 64
+ - uid: 268
components:
- type: Transform
- pos: 6.5,11.5
+ pos: 4.5,4.5
parent: 1
- - uid: 65
+ - uid: 269
components:
- type: Transform
- pos: 5.5,11.5
+ pos: 3.5,1.5
parent: 1
- - uid: 66
+- proto: CableMV
+ entities:
+ - uid: 198
components:
- type: Transform
- pos: 5.5,10.5
+ pos: 4.5,4.5
parent: 1
- - uid: 67
+ - uid: 199
components:
- type: Transform
- pos: 5.5,9.5
+ pos: 3.5,4.5
parent: 1
- - uid: 68
+ - uid: 200
components:
- type: Transform
- pos: 5.5,8.5
+ pos: 2.5,4.5
parent: 1
- - uid: 69
+ - uid: 201
components:
- type: Transform
- pos: 5.5,7.5
+ pos: 1.5,4.5
parent: 1
- - uid: 70
+ - uid: 202
components:
- type: Transform
- pos: 7.5,7.5
+ pos: 0.5,4.5
parent: 1
- - uid: 71
+ - uid: 203
components:
- type: Transform
- pos: 6.5,7.5
+ pos: -0.5,4.5
parent: 1
- - uid: 72
+ - uid: 204
components:
- type: Transform
- pos: 1.5,9.5
+ pos: -1.5,4.5
parent: 1
- - uid: 73
+ - uid: 205
components:
- type: Transform
- pos: 2.5,9.5
+ pos: -2.5,4.5
parent: 1
- - uid: 74
+ - uid: 206
components:
- type: Transform
- pos: 3.5,9.5
+ pos: -3.5,4.5
parent: 1
- - uid: 75
+ - uid: 207
components:
- type: Transform
- pos: 3.5,10.5
+ pos: -3.5,5.5
parent: 1
- - uid: 76
+- proto: CableTerminal
+ entities:
+ - uid: 270
components:
- type: Transform
- pos: 3.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,1.5
parent: 1
- - uid: 77
+- proto: CarpetBlack
+ entities:
+ - uid: 17
components:
- type: Transform
- pos: 2.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,8.5
parent: 1
- - uid: 78
+ - uid: 39
components:
- type: Transform
- pos: 1.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,7.5
parent: 1
- - uid: 79
+ - uid: 45
components:
- type: Transform
- pos: 1.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,6.5
parent: 1
- - uid: 109
+ - uid: 46
components:
- type: Transform
- pos: 9.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,8.5
parent: 1
- - uid: 110
+ - uid: 47
components:
- type: Transform
- pos: 9.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,7.5
parent: 1
- - uid: 111
+ - uid: 90
components:
- type: Transform
- pos: 9.5,15.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,6.5
parent: 1
- - uid: 112
+ - uid: 91
components:
- type: Transform
- pos: 9.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,7.5
parent: 1
- - uid: 113
+ - uid: 92
components:
- type: Transform
- pos: 9.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,8.5
parent: 1
- - uid: 114
+ - uid: 260
components:
- type: Transform
- pos: 8.5,17.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,6.5
parent: 1
- - uid: 115
+- proto: ChairGreyscale
+ entities:
+ - uid: 57
components:
- type: Transform
- pos: 7.5,17.5
+ pos: 0.5,4.5
parent: 1
- - uid: 116
+ - uid: 58
components:
- type: Transform
- pos: 6.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,3.5
parent: 1
- - uid: 117
+- proto: ChairOfficeLight
+ entities:
+ - uid: 49
components:
- type: Transform
- pos: 5.5,17.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,2.5
parent: 1
- - uid: 118
+ - uid: 128
components:
- type: Transform
- pos: 5.5,16.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,8.5
parent: 1
- - uid: 119
+- proto: ChairPilotSeat
+ entities:
+ - uid: 118
components:
- type: Transform
- pos: 5.5,15.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,7.5
parent: 1
- uid: 120
components:
- type: Transform
- pos: 5.5,14.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,7.5
parent: 1
- - uid: 121
+- proto: ComfyChair
+ entities:
+ - uid: 97
components:
- type: Transform
- pos: 5.5,13.5
+ pos: -3.5,9.5
parent: 1
- - uid: 122
+- proto: ComputerTabletopShuttle
+ entities:
+ - uid: 121
components:
- type: Transform
- pos: 6.5,13.5
+ pos: 0.5,8.5
parent: 1
- - uid: 123
+- proto: ComputerTabletopStationRecords
+ entities:
+ - uid: 119
components:
- type: Transform
- pos: 7.5,13.5
+ pos: 1.5,8.5
parent: 1
- - uid: 124
+- proto: CrateNPCEmotionalSupportSafe
+ entities:
+ - uid: 255
components:
- type: Transform
- pos: 8.5,13.5
+ pos: -2.5,7.5
parent: 1
- - uid: 157
+- proto: CrateServiceBureaucracy
+ entities:
+ - uid: 85
components:
- type: Transform
- pos: 7.5,20.5
+ pos: -5.5,3.5
parent: 1
- - uid: 159
+- proto: DefibrillatorCabinetFilled
+ entities:
+ - uid: 248
components:
- type: Transform
- pos: 7.5,19.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,4.5
parent: 1
- - uid: 161
+- proto: DeskBell
+ entities:
+ - uid: 86
components:
- type: Transform
- pos: 6.5,19.5
+ pos: -2.4097068,2.5932934
parent: 1
- - uid: 162
+- proto: EmergencyLight
+ entities:
+ - uid: 44
components:
- type: Transform
- pos: 5.5,19.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,6.5
parent: 1
- - uid: 163
+ - uid: 236
components:
- type: Transform
- pos: 8.5,19.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,2.5
parent: 1
- - uid: 164
+ - uid: 261
components:
- type: Transform
- pos: 9.5,19.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,6.5
parent: 1
- - uid: 166
+ - uid: 262
components:
- type: Transform
- pos: 5.5,20.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,1.5
parent: 1
- - uid: 167
+- proto: ExtinguisherCabinetFilled
+ entities:
+ - uid: 129
components:
- type: Transform
- pos: 5.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,3.5
parent: 1
- - uid: 168
+- proto: FaxMachineShip
+ entities:
+ - uid: 117
components:
- type: Transform
- pos: 5.5,22.5
+ pos: -0.5,8.5
parent: 1
- - uid: 169
+- proto: filingCabinetDrawerRandom
+ entities:
+ - uid: 79
components:
- type: Transform
- pos: 5.5,23.5
+ pos: -5.5,2.5
parent: 1
- - uid: 170
+- proto: FireAlarm
+ entities:
+ - uid: 196
components:
- type: Transform
- pos: 6.5,23.5
- parent: 1
- - uid: 171
+ pos: 0.5,5.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 245
+ - 241
+ - 239
+ - 238
+ - 237
+ - 240
+ - 244
+ - 243
+ - type: AtmosDevice
+ joinedGrid: 1
+- proto: FirelockGlass
+ entities:
+ - uid: 237
components:
- type: Transform
- pos: 7.5,23.5
- parent: 1
- - uid: 172
+ rot: 3.141592653589793 rad
+ pos: -2.5,4.5
+ parent: 1
+ - type: Door
+ secondsUntilStateChange: -234.06322
+ state: Closing
+ - type: DeviceNetwork
+ deviceLists:
+ - 234
+ - 196
+ - uid: 238
components:
- type: Transform
- pos: 9.5,23.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,3.5
parent: 1
- - uid: 173
+ - type: DeviceNetwork
+ deviceLists:
+ - 234
+ - 196
+ - uid: 239
components:
- type: Transform
- pos: 8.5,23.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,2.5
parent: 1
- - uid: 174
+ - type: DeviceNetwork
+ deviceLists:
+ - 234
+ - 196
+ - uid: 240
components:
- type: Transform
- pos: 9.5,22.5
- parent: 1
- - uid: 175
+ rot: 3.141592653589793 rad
+ pos: -5.5,5.5
+ parent: 1
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ deviceLists:
+ - 234
+ - 196
+ - 235
+ - uid: 241
components:
- type: Transform
- pos: 9.5,21.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,2.5
parent: 1
- - uid: 176
+ - type: DeviceNetwork
+ deviceLists:
+ - 234
+ - 196
+ - uid: 242
components:
- type: Transform
- pos: 9.5,20.5
- parent: 1
- - uid: 205
+ rot: 3.141592653589793 rad
+ pos: -1.5,6.5
+ parent: 1
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ deviceLists:
+ - 235
+- proto: FolderSpawner
+ entities:
+ - uid: 130
components:
- type: Transform
- pos: 11.5,15.5
+ pos: -5.5596576,9.586355
parent: 1
- - uid: 206
+- proto: GasPassiveVent
+ entities:
+ - uid: 160
components:
- type: Transform
- pos: 12.5,15.5
+ pos: 3.5,6.5
parent: 1
- - uid: 207
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPipeBend
+ entities:
+ - uid: 144
components:
- type: Transform
- pos: 13.5,15.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,5.5
parent: 1
- - uid: 208
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 148
components:
- type: Transform
- pos: 14.5,15.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,3.5
parent: 1
- - uid: 209
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 152
components:
- type: Transform
- pos: 15.5,15.5
+ pos: 4.5,5.5
parent: 1
- - uid: 210
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 161
components:
- type: Transform
- pos: 16.5,15.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,3.5
parent: 1
- - uid: 211
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 162
components:
- type: Transform
- pos: 17.5,14.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,2.5
parent: 1
- - uid: 212
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 181
components:
- type: Transform
- pos: 17.5,15.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,6.5
parent: 1
- - uid: 213
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPipeStraight
+ entities:
+ - uid: 27
components:
- type: Transform
- pos: 17.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,3.5
parent: 1
- - uid: 214
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 146
components:
- type: Transform
- pos: 17.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,2.5
parent: 1
- - uid: 215
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 147
components:
- type: Transform
- pos: 17.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,2.5
parent: 1
- - uid: 216
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 149
components:
- type: Transform
- pos: 17.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,2.5
parent: 1
- - uid: 217
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 156
components:
- type: Transform
- pos: 17.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,2.5
parent: 1
- - uid: 218
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 157
components:
- type: Transform
- pos: 16.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,2.5
parent: 1
- - uid: 219
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 158
components:
- type: Transform
- pos: 15.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,2.5
parent: 1
- - uid: 220
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 159
components:
- type: Transform
- pos: 14.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,2.5
parent: 1
- - uid: 221
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 163
components:
- type: Transform
- pos: 13.5,9.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,3.5
parent: 1
- - uid: 222
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 164
components:
- type: Transform
- pos: 12.5,9.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,4.5
parent: 1
- - uid: 223
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 165
components:
- type: Transform
- pos: 11.5,9.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,4.5
parent: 1
- - uid: 224
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 166
components:
- type: Transform
- pos: 11.5,10.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,5.5
parent: 1
- - uid: 225
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 167
components:
- type: Transform
- pos: 11.5,11.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,5.5
parent: 1
- - uid: 226
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 168
components:
- type: Transform
- pos: 11.5,12.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,6.5
parent: 1
- - uid: 227
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 171
components:
- type: Transform
- pos: 11.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,7.5
parent: 1
- - uid: 228
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 172
components:
- type: Transform
- pos: 11.5,14.5
+ pos: -4.5,7.5
parent: 1
- - uid: 229
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 175
components:
- type: Transform
- pos: 11.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,7.5
parent: 1
- - uid: 230
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 176
components:
- type: Transform
- pos: 12.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,7.5
parent: 1
- - uid: 231
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 177
components:
- type: Transform
- pos: 13.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,7.5
parent: 1
- - uid: 232
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 178
components:
- type: Transform
- pos: 14.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,7.5
parent: 1
- - uid: 233
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 182
components:
- type: Transform
- pos: 15.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,6.5
parent: 1
- - uid: 234
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 183
components:
- type: Transform
- pos: 16.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,6.5
parent: 1
- - uid: 235
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 184
components:
- type: Transform
- pos: 17.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,6.5
parent: 1
- - uid: 236
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 185
components:
- type: Transform
- pos: 17.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,6.5
parent: 1
- - uid: 237
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 186
components:
- type: Transform
- pos: 17.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,6.5
parent: 1
- - uid: 238
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 187
components:
- type: Transform
- pos: 17.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,3.5
parent: 1
- - uid: 239
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 191
components:
- type: Transform
- pos: 17.5,3.5
+ pos: -0.5,3.5
parent: 1
- - uid: 240
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 192
components:
- type: Transform
- pos: 17.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,3.5
parent: 1
- - uid: 241
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 193
components:
- type: Transform
- pos: 17.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,3.5
parent: 1
- - uid: 242
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 194
components:
- type: Transform
- pos: 16.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,3.5
parent: 1
- - uid: 243
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 195
components:
- type: Transform
- pos: 15.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,3.5
parent: 1
- - uid: 244
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPipeTJunction
+ entities:
+ - uid: 150
components:
- type: Transform
- pos: 14.5,1.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,2.5
parent: 1
- - uid: 245
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 151
components:
- type: Transform
- pos: 12.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,4.5
parent: 1
- - uid: 246
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 169
components:
- type: Transform
- pos: 11.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,6.5
parent: 1
- - uid: 247
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 170
components:
- type: Transform
- pos: 13.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,7.5
parent: 1
- - uid: 248
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 188
components:
- type: Transform
- pos: 11.5,2.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,3.5
parent: 1
- - uid: 249
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPort
+ entities:
+ - uid: 179
components:
- type: Transform
- pos: 11.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,2.5
parent: 1
- - uid: 250
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPressurePump
+ entities:
+ - uid: 145
components:
- type: Transform
- pos: 11.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,2.5
parent: 1
- - uid: 251
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 154
components:
- type: Transform
- pos: 11.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,3.5
parent: 1
- - uid: 252
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasVentPump
+ entities:
+ - uid: 174
components:
- type: Transform
- pos: 11.5,6.5
+ pos: -5.5,8.5
parent: 1
- - uid: 278
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ deviceLists:
+ - 235
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 190
components:
- type: Transform
- pos: 17.5,21.5
+ pos: -0.5,4.5
parent: 1
- - uid: 279
+ - type: DeviceNetwork
+ deviceLists:
+ - 234
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 250
components:
- type: Transform
- pos: 17.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,7.5
parent: 1
- - uid: 280
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasVentScrubber
+ entities:
+ - uid: 153
components:
- type: Transform
- pos: 17.5,19.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,4.5
parent: 1
- - uid: 281
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 155
components:
- type: Transform
- pos: 15.5,23.5
+ pos: 1.5,7.5
parent: 1
- - uid: 282
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 173
components:
- type: Transform
- pos: 14.5,23.5
+ pos: -4.5,8.5
parent: 1
- - uid: 283
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ deviceLists:
+ - 235
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 189
components:
- type: Transform
- pos: 13.5,17.5
+ pos: 0.5,4.5
parent: 1
- - uid: 284
+ - type: DeviceNetwork
+ deviceLists:
+ - 234
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GravityGeneratorMini
+ entities:
+ - uid: 24
components:
- type: Transform
- pos: 12.5,17.5
+ pos: 3.5,4.5
parent: 1
- - uid: 285
+- proto: Grille
+ entities:
+ - uid: 66
components:
- type: Transform
- pos: 11.5,17.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,1.5
parent: 1
- - uid: 286
+ - uid: 67
components:
- type: Transform
- pos: 11.5,18.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,1.5
parent: 1
- - uid: 296
+ - uid: 68
components:
- type: Transform
- pos: 3.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,1.5
parent: 1
- - uid: 297
+ - uid: 69
components:
- type: Transform
- pos: 2.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,2.5
parent: 1
- - uid: 298
+ - uid: 70
components:
- type: Transform
- pos: 1.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,3.5
parent: 1
- - uid: 299
+ - uid: 76
components:
- type: Transform
- pos: 1.5,14.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,6.5
parent: 1
- - uid: 300
+ - uid: 77
components:
- type: Transform
- pos: 1.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,7.5
parent: 1
- - uid: 301
+ - uid: 78
components:
- type: Transform
- pos: 2.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,8.5
parent: 1
- - uid: 302
+ - uid: 107
components:
- type: Transform
- pos: 3.5,15.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,9.5
parent: 1
- - uid: 303
+ - uid: 110
components:
- type: Transform
- pos: 3.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,10.5
parent: 1
- - uid: 318
+ - uid: 111
components:
- type: Transform
- pos: 3.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,10.5
parent: 1
- - uid: 319
+ - uid: 112
components:
- type: Transform
- pos: 2.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,9.5
parent: 1
- - uid: 320
+ - uid: 113
components:
- type: Transform
- pos: 1.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,9.5
parent: 1
- - uid: 321
+ - uid: 263
components:
- type: Transform
- pos: 1.5,18.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-0.5
parent: 1
- - uid: 322
+- proto: Gyroscope
+ entities:
+ - uid: 26
components:
- type: Transform
- pos: 1.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,3.5
parent: 1
- - uid: 323
+- proto: LampGold
+ entities:
+ - uid: 87
components:
- type: Transform
- pos: 1.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -2.258786,3.5893521
parent: 1
- - uid: 324
+ - uid: 249
components:
- type: Transform
- pos: 1.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: -5.3132653,9.936902
parent: 1
- - uid: 325
+- proto: LockerMedical
+ entities:
+ - uid: 127
components:
+ - type: MetaData
+ name: Psychologist Locker
- type: Transform
- pos: 1.5,22.5
+ pos: -2.5,9.5
parent: 1
- - uid: 326
+- proto: PaintingSleepingGypsy
+ entities:
+ - uid: 95
components:
- type: Transform
- pos: 1.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,10.5
parent: 1
- - uid: 327
+- proto: PaperBin20
+ entities:
+ - uid: 50
components:
- type: Transform
- pos: 1.5,24.5
+ pos: -2.5,3.5
parent: 1
- - uid: 328
+- proto: PlushieCatBlack
+ entities:
+ - uid: 256
components:
- type: Transform
- pos: 1.5,25.5
+ pos: -3.5087583,7.573662
parent: 1
- - uid: 329
+- proto: PortableGeneratorPacmanShuttle
+ entities:
+ - uid: 22
components:
- type: Transform
- pos: 1.5,26.5
+ pos: 3.5,1.5
parent: 1
- - uid: 330
+ - type: FuelGenerator
+ on: False
+ - type: Physics
+ bodyType: Static
+- proto: PowerCellRecharger
+ entities:
+ - uid: 137
components:
- type: Transform
- pos: 1.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,7.5
parent: 1
- - uid: 331
+- proto: Poweredlight
+ entities:
+ - uid: 38
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 1.5,28.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,3.5
parent: 1
- - uid: 332
+ - uid: 251
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 1.5,29.5
+ pos: -4.5,4.5
parent: 1
- - uid: 334
+ - uid: 252
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 3.5,29.5
+ pos: 0.5,4.5
parent: 1
- - uid: 335
+ - uid: 253
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 3.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,7.5
parent: 1
- - uid: 336
+ - uid: 254
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 3.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,8.5
parent: 1
- - uid: 337
+- proto: PsychBed
+ entities:
+ - uid: 89
components:
- type: Transform
- pos: 3.5,26.5
+ pos: -3.5,7.5
parent: 1
- - uid: 338
+- proto: RandomPosterAny
+ entities:
+ - uid: 96
components:
- type: Transform
- pos: 3.5,25.5
+ pos: -4.5,5.5
parent: 1
- - uid: 339
+ - uid: 124
components:
- type: Transform
- pos: 3.5,24.5
+ pos: -1.5,5.5
parent: 1
- - uid: 340
+ - uid: 125
components:
- type: Transform
- pos: 3.5,23.5
+ pos: 1.5,5.5
parent: 1
- - uid: 341
+ - uid: 126
components:
- type: Transform
- pos: 3.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,3.5
parent: 1
- - uid: 342
+- proto: SheetPlasma
+ entities:
+ - uid: 246
components:
- type: Transform
- pos: 3.5,21.5
+ pos: 3.5068681,1.5169401
parent: 1
- - uid: 343
+ - type: Stack
+ count: 15
+- proto: ShuttersNormalOpen
+ entities:
+ - uid: 139
components:
- type: Transform
- pos: 3.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,8.5
parent: 1
- - uid: 344
+ - type: DeviceLinkSink
+ links:
+ - 123
+ - uid: 140
components:
- type: Transform
- pos: 3.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,7.5
parent: 1
- - uid: 345
+ - type: DeviceLinkSink
+ links:
+ - 123
+ - uid: 141
components:
- type: Transform
- pos: 3.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,6.5
parent: 1
- - uid: 351
+ - type: DeviceLinkSink
+ links:
+ - 123
+ - uid: 142
components:
- type: Transform
- pos: 1.5,30.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,10.5
parent: 1
- - uid: 353
+ - type: DeviceLinkSink
+ links:
+ - 123
+ - uid: 143
components:
- type: Transform
- pos: 1.5,31.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,10.5
parent: 1
- - uid: 354
+ - type: DeviceLinkSink
+ links:
+ - 123
+- proto: ShuttleWindow
+ entities:
+ - uid: 3
components:
- type: Transform
- pos: 2.5,31.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,2.5
parent: 1
- - uid: 355
+ - uid: 4
components:
- type: Transform
- pos: 3.5,31.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,3.5
parent: 1
- - uid: 356
+ - uid: 7
components:
- type: Transform
- pos: 3.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-0.5
parent: 1
-- proto: CableApcStack1
- entities:
- - uid: 287
+ - uid: 51
components:
- type: Transform
- pos: 14.969948,18.058058
+ rot: -1.5707963267948966 rad
+ pos: -2.5,1.5
parent: 1
- - uid: 288
+ - uid: 52
components:
- type: Transform
- pos: 14.594948,22.433058
+ rot: -1.5707963267948966 rad
+ pos: -3.5,1.5
parent: 1
- - uid: 289
+ - uid: 53
components:
- type: Transform
- pos: 11.876198,21.323683
+ rot: -1.5707963267948966 rad
+ pos: -4.5,1.5
parent: 1
- - uid: 290
+ - uid: 71
components:
- type: Transform
- pos: 16.813698,18.604933
+ rot: 1.5707963267948966 rad
+ pos: -6.5,6.5
parent: 1
-- proto: CableHV
- entities:
- - uid: 152
+ - uid: 72
components:
- type: Transform
- pos: 6.5,22.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,7.5
parent: 1
- - uid: 153
+ - uid: 73
components:
- type: Transform
- pos: 7.5,22.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,8.5
parent: 1
- - uid: 154
+ - uid: 93
components:
- type: Transform
- pos: 8.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,10.5
parent: 1
- - uid: 155
+ - uid: 94
components:
- type: Transform
- pos: 8.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,10.5
parent: 1
-- proto: CableMV
- entities:
- - uid: 177
+ - uid: 100
components:
- type: Transform
- pos: 8.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,9.5
parent: 1
- - uid: 180
+ - uid: 104
components:
- type: Transform
- pos: 7.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,9.5
parent: 1
- - uid: 196
+ - uid: 106
components:
- type: Transform
- pos: 7.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,9.5
parent: 1
-- proto: CableTerminal
+- proto: SignalButton
entities:
- - uid: 150
+ - uid: 123
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,8.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 143:
+ - Pressed: Toggle
+ 142:
+ - Pressed: Toggle
+ 139:
+ - Pressed: Toggle
+ 140:
+ - Pressed: Toggle
+ 141:
+ - Pressed: Toggle
+ - uid: 138
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,7.5
parent: 1
-- proto: CarpetBlack
+ - type: DeviceLinkSource
+ linkedPorts:
+ 54:
+ - Pressed: DoorBolt
+- proto: SMESBasic
entities:
- - uid: 2
+ - uid: 23
components:
- type: Transform
- pos: 6.5,2.5
+ pos: 4.5,1.5
parent: 1
- - uid: 3
+- proto: SpawnPointLatejoin
+ entities:
+ - uid: 180
components:
- type: Transform
- pos: 7.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,3.5
parent: 1
- - uid: 4
+- proto: SpawnPointPsychologist
+ entities:
+ - uid: 122
components:
- type: Transform
- pos: 8.5,2.5
+ pos: -3.5,8.5
parent: 1
- - uid: 5
+- proto: SubstationBasic
+ entities:
+ - uid: 25
components:
- type: Transform
- pos: 6.5,3.5
+ pos: 4.5,4.5
parent: 1
- - uid: 6
+- proto: Table
+ entities:
+ - uid: 114
components:
- type: Transform
- pos: 7.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,8.5
parent: 1
- - uid: 7
+ - uid: 115
components:
- type: Transform
- pos: 8.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,8.5
parent: 1
- - uid: 8
+ - uid: 116
components:
- type: Transform
- pos: 8.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,8.5
parent: 1
- - uid: 9
+ - uid: 136
components:
- type: Transform
- pos: 7.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,7.5
parent: 1
- - uid: 10
+- proto: TableCounterWood
+ entities:
+ - uid: 48
components:
- type: Transform
- pos: 6.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,2.5
parent: 1
- - uid: 22
+ - uid: 81
components:
- type: Transform
- pos: 2.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,3.5
parent: 1
-- proto: CarpetOrange
+- proto: TableReinforcedGlass
entities:
- - uid: 95
+ - uid: 82
components:
- type: Transform
- pos: 8.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,4.5
parent: 1
- - uid: 96
+- proto: TableWood
+ entities:
+ - uid: 31
components:
- type: Transform
- pos: 7.5,8.5
+ pos: -5.5,9.5
parent: 1
- - uid: 97
+- proto: Thruster
+ entities:
+ - uid: 132
components:
- type: Transform
- pos: 6.5,8.5
+ pos: 3.5,7.5
parent: 1
- - uid: 98
+ - uid: 133
components:
- type: Transform
- pos: 6.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,6.5
parent: 1
- - uid: 99
+ - uid: 134
components:
- type: Transform
- pos: 6.5,10.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,-0.5
parent: 1
- - uid: 100
+ - uid: 135
components:
- type: Transform
- pos: 7.5,10.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,0.5
parent: 1
- - uid: 101
+- proto: WallShuttle
+ entities:
+ - uid: 2
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 8.5,10.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,5.5
parent: 1
- - uid: 102
+ - uid: 14
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 8.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,0.5
parent: 1
- - uid: 103
+ - uid: 16
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 7.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,10.5
parent: 1
-- proto: CarpetPink
- entities:
- - uid: 352
- components:
- - type: Transform
- pos: 7.5,16.5
- parent: 1
-- proto: Catwalk
- entities:
- - uid: 178
- components:
- - type: Transform
- pos: 9.5,19.5
- parent: 1
- - uid: 181
- components:
- - type: Transform
- pos: 8.5,19.5
- parent: 1
- - uid: 182
- components:
- - type: Transform
- pos: 7.5,19.5
- parent: 1
- - uid: 183
- components:
- - type: Transform
- pos: 6.5,19.5
- parent: 1
- - uid: 184
- components:
- - type: Transform
- pos: 5.5,19.5
- parent: 1
- - uid: 185
- components:
- - type: Transform
- pos: 5.5,20.5
- parent: 1
- - uid: 186
- components:
- - type: Transform
- pos: 5.5,21.5
- parent: 1
- - uid: 187
- components:
- - type: Transform
- pos: 5.5,22.5
- parent: 1
- - uid: 188
- components:
- - type: Transform
- pos: 5.5,23.5
- parent: 1
- - uid: 189
- components:
- - type: Transform
- pos: 7.5,23.5
- parent: 1
- - uid: 190
- components:
- - type: Transform
- pos: 6.5,23.5
- parent: 1
- - uid: 191
- components:
- - type: Transform
- pos: 8.5,23.5
- parent: 1
- - uid: 192
- components:
- - type: Transform
- pos: 9.5,23.5
- parent: 1
- - uid: 193
- components:
- - type: Transform
- pos: 9.5,22.5
- parent: 1
- - uid: 194
- components:
- - type: Transform
- pos: 9.5,21.5
- parent: 1
- - uid: 195
- components:
- - type: Transform
- pos: 9.5,20.5
- parent: 1
- - uid: 197
- components:
- - type: Transform
- pos: 7.5,22.5
- parent: 1
- - uid: 198
- components:
- - type: Transform
- pos: 7.5,21.5
- parent: 1
-- proto: ChairFolding
- entities:
- - uid: 135
+ - uid: 19
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
- pos: 16.37534,11.413506
+ pos: -1.5,1.5
parent: 1
- - uid: 139
- components:
- - type: Transform
- pos: 13.484715,12.601006
- parent: 1
- - uid: 140
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.50034,11.851006
- parent: 1
- - uid: 141
+ - uid: 20
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 15.640965,12.616631
+ rot: -1.5707963267948966 rad
+ pos: -1.5,0.5
parent: 1
- - uid: 143
+ - uid: 28
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 14.578465,12.491631
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-0.5
parent: 1
- - uid: 253
+ - uid: 29
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 13.630781,2.6637483
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-0.5
parent: 1
- - uid: 254
+ - uid: 30
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.974531,2.7418733
+ rot: -1.5707963267948966 rad
+ pos: 2.5,0.5
parent: 1
- - uid: 255
+ - uid: 32
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: 15.208906,2.5387483
+ pos: 5.5,4.5
parent: 1
- - uid: 256
+ - uid: 33
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: 16.599531,2.5856233
+ pos: 3.5,0.5
parent: 1
-- proto: ClosetMaintenanceFilledRandom
- entities:
- - uid: 201
- components:
- - type: Transform
- pos: 7.5,21.5
- parent: 1
-- proto: ComfyChair
- entities:
- - uid: 106
+ - uid: 34
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: 7.5,8.5
+ pos: 5.5,1.5
parent: 1
- - uid: 127
+ - uid: 36
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: 6.5,14.5
- parent: 1
- - uid: 132
- components:
- - type: Transform
- pos: 6.5,16.5
- parent: 1
-- proto: ComputerTelevision
- entities:
- - uid: 14
- components:
- - type: Transform
- pos: 8.5,4.5
- parent: 1
- - uid: 20
- components:
- - type: Transform
- pos: 3.5,3.5
- parent: 1
- - uid: 86
- components:
- - type: Transform
- pos: 1.5,7.5
- parent: 1
- - uid: 104
- components:
- - type: Transform
- pos: 7.5,10.5
+ pos: 4.5,5.5
parent: 1
-- proto: Dresser
- entities:
- - uid: 12
+ - uid: 55
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 6.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,10.5
parent: 1
- - uid: 19
+ - uid: 62
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 1.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,10.5
parent: 1
- - uid: 84
+ - uid: 63
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 3.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,2.5
parent: 1
-- proto: FloorTileItemWood
- entities:
- - uid: 136
+ - uid: 64
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 15.944151,22.094772
+ rot: 1.5707963267948966 rad
+ pos: -6.5,3.5
parent: 1
- - uid: 275
+ - uid: 65
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 16.334776,18.110397
+ rot: 1.5707963267948966 rad
+ pos: -6.5,4.5
parent: 1
- - uid: 276
+ - uid: 74
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 12.741026,18.938522
+ rot: 1.5707963267948966 rad
+ pos: -6.5,5.5
parent: 1
- - uid: 277
+ - uid: 75
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 12.991026,22.376022
+ rot: 1.5707963267948966 rad
+ pos: -6.5,9.5
parent: 1
-- proto: GeneratorRTG
- entities:
- - uid: 88
+ - uid: 101
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 6.5,22.5
+ pos: -1.5,10.5
parent: 1
-- proto: LockerFreezer
- entities:
- - uid: 16
+ - uid: 102
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 6.5,2.5
+ pos: 2.5,6.5
parent: 1
- - uid: 21
+ - uid: 103
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 2.5,3.5
+ pos: 2.5,7.5
parent: 1
- uid: 105
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 8.5,10.5
- parent: 1
-- proto: MaintenanceFluffSpawner
- entities:
- - uid: 11
- components:
- - type: Transform
- pos: 6.5,4.5
- parent: 1
-- proto: MaintenanceToolSpawner
- entities:
- - uid: 199
- components:
- - type: Transform
- pos: 7.5,22.5
- parent: 1
- - uid: 294
- components:
- - type: Transform
- pos: 13.5,19.5
- parent: 1
-- proto: MaintenanceWeaponSpawner
- entities:
- - uid: 200
- components:
- - type: Transform
- pos: 1.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,8.5
parent: 1
-- proto: Mirror
+- proto: WallShuttleDiagonal
entities:
- - uid: 273
+ - uid: 5
components:
- type: Transform
- pos: 12.5,14.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,0.5
parent: 1
-- proto: PottedPlantRandomPlastic
- entities:
- - uid: 82
+ - uid: 37
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 5.5,5.5
parent: 1
- - uid: 87
- components:
- - type: Transform
- pos: 2.5,7.5
- parent: 1
-- proto: PoweredSmallLight
- entities:
- - uid: 80
+ - uid: 60
components:
- type: Transform
- pos: 9.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,1.5
parent: 1
- - uid: 81
+ - uid: 108
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,9.5
parent: 1
- - uid: 83
+- proto: WallShuttleInterior
+ entities:
+ - uid: 6
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 5.5,1.5
+ pos: 2.5,1.5
parent: 1
- - uid: 304
+ - uid: 15
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 13.5,14.5
- parent: 1
- - uid: 305
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,7.5
+ pos: 2.5,3.5
parent: 1
- - uid: 306
+ - uid: 21
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 1.5,15.5
+ pos: 2.5,4.5
parent: 1
- - uid: 307
+ - uid: 35
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 5.5,17.5
+ pos: 2.5,5.5
parent: 1
- - uid: 308
+ - uid: 40
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
+ rot: 1.5707963267948966 rad
pos: 1.5,5.5
parent: 1
- - uid: 309
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,9.5
- parent: 1
- - uid: 310
+ - uid: 41
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 11.5,1.5
- parent: 1
- - uid: 311
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,7.5
- parent: 1
- - uid: 312
- components:
- - type: Transform
- pos: 11.5,7.5
- parent: 1
- - uid: 313
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,1.5
- parent: 1
- - uid: 333
- components:
- - type: Transform
- pos: 1.5,31.5
- parent: 1
- - uid: 347
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,17.5
+ pos: 0.5,5.5
parent: 1
-- proto: RandomBook
- entities:
- - uid: 269
+ - uid: 42
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 13.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,5.5
parent: 1
-- proto: RandomDrinkBottle
- entities:
- - uid: 23
+ - uid: 43
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 1.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,5.5
parent: 1
- - uid: 85
+ - uid: 56
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 3.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,5.5
parent: 1
-- proto: RandomDrinkGlass
- entities:
- - uid: 267
+ - uid: 59
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 15.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,5.5
parent: 1
-- proto: RandomFoodSingle
- entities:
- - uid: 108
+ - uid: 61
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 6.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,1.5
parent: 1
-- proto: RandomInstruments
- entities:
- - uid: 133
+ - uid: 84
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 8.5,15.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,5.5
parent: 1
-- proto: RandomItem
- entities:
- - uid: 94
+ - uid: 88
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 2.5,6.5
+ pos: -1.5,9.5
parent: 1
- - uid: 129
+ - uid: 98
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 6.5,15.5
+ pos: -1.5,7.5
parent: 1
- - uid: 348
+ - uid: 99
components:
+ - type: MetaData
+ flags: PvsPriority
- type: Transform
- pos: 3.5,15.5
+ pos: -1.5,8.5
parent: 1
-- proto: RandomSpawner
+- proto: WarpPointShip
entities:
- - uid: 257
- components:
- - type: Transform
- pos: 12.5,3.5
- parent: 1
- - uid: 258
- components:
- - type: Transform
- pos: 15.5,3.5
- parent: 1
- - uid: 259
- components:
- - type: Transform
- pos: 2.5,1.5
- parent: 1
- - uid: 260
- components:
- - type: Transform
- pos: 7.5,3.5
- parent: 1
- - uid: 261
- components:
- - type: Transform
- pos: 6.5,10.5
- parent: 1
- - uid: 262
- components:
- - type: Transform
- pos: 2.5,9.5
- parent: 1
- - uid: 263
- components:
- - type: Transform
- pos: 3.5,10.5
- parent: 1
- uid: 264
- components:
- - type: Transform
- pos: 7.5,14.5
- parent: 1
- - uid: 265
- components:
- - type: Transform
- pos: 15.5,14.5
- parent: 1
- - uid: 266
- components:
- - type: Transform
- pos: 14.5,11.5
- parent: 1
- - uid: 315
- components:
- - type: Transform
- pos: 2.5,19.5
- parent: 1
- - uid: 316
- components:
- - type: Transform
- pos: 1.5,22.5
- parent: 1
- - uid: 317
- components:
- - type: Transform
- pos: 3.5,27.5
- parent: 1
- - uid: 346
- components:
- - type: Transform
- pos: 2.5,31.5
- parent: 1
- - uid: 349
- components:
- - type: Transform
- pos: 2.5,13.5
- parent: 1
- - uid: 350
- components:
- - type: Transform
- pos: 14.5,10.5
- parent: 1
-- proto: RandomVending
- entities:
- - uid: 274
- components:
- - type: Transform
- pos: 16.5,14.5
- parent: 1
-- proto: SalvagePartsSpawnerLow
- entities:
- - uid: 314
- components:
- - type: Transform
- pos: 16.5,21.5
- parent: 1
-- proto: SheetSteel1
- entities:
- - uid: 291
- components:
- - type: Transform
- pos: 15.264679,18.964308
- parent: 1
- - uid: 292
- components:
- - type: Transform
- pos: 12.90078,20.964308
- parent: 1
- - uid: 293
- components:
- - type: Transform
- pos: 15.050178,22.03991
- parent: 1
-- proto: SinkEmpty
- entities:
- - uid: 271
- components:
- - type: Transform
- pos: 12.5,13.5
- parent: 1
-- proto: SMESBasicEmpty
- entities:
- - uid: 151
- components:
- - type: Transform
- pos: 8.5,22.5
- parent: 1
-- proto: SpaceCash10
- entities:
- - uid: 130
- components:
- - type: Transform
- pos: 6.607684,15.804618
- parent: 1
- - uid: 131
- components:
- - type: Transform
- pos: 6.467059,15.335868
- parent: 1
- - type: Stack
- count: 20
-- proto: SubstationBasicEmpty
- entities:
- - uid: 156
- components:
- - type: Transform
- pos: 8.5,21.5
- parent: 1
-- proto: TableCarpet
- entities:
- - uid: 125
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 6.5,15.5
+ pos: -0.5,3.5
parent: 1
-- proto: TableWood
+- proto: WindoorSecure
entities:
- - uid: 107
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,8.5
- parent: 1
- - uid: 134
- components:
- - type: Transform
- pos: 8.5,15.5
- parent: 1
- - uid: 137
- components:
- - type: Transform
- pos: 13.5,11.5
- parent: 1
- - uid: 138
- components:
- - type: Transform
- pos: 15.5,11.5
- parent: 1
- - uid: 142
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,11.5
- parent: 1
-- proto: ToiletDirtyWater
- entities:
- - uid: 270
+ - uid: 8
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 2.5,14.5
+ pos: -2.5,4.5
parent: 1
-- proto: ToySpawner
+- proto: WindowReinforcedDirectional
entities:
- - uid: 295
+ - uid: 83
components:
- type: Transform
- pos: 13.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,3.5
parent: 1
-- proto: WallSolidRust
+- proto: Wrench
entities:
- - uid: 158
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 6.5,20.5
- parent: 1
- - uid: 165
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 8.5,20.5
- parent: 1
- - uid: 179
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 7.5,20.5
- parent: 1
- - uid: 272
+ - uid: 247
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,14.5
+ pos: 3.5085251,1.5570569
parent: 1
...
diff --git a/Resources/Maps/_NF/Shuttles/rosebudmkii.yml b/Resources/Maps/_NF/Shuttles/rosebudmkii.yml
index be6c78c3d6da..b5b0b9b522ed 100644
--- a/Resources/Maps/_NF/Shuttles/rosebudmkii.yml
+++ b/Resources/Maps/_NF/Shuttles/rosebudmkii.yml
@@ -7155,14 +7155,6 @@ entities:
- type: Transform
pos: -8.642134,3.4433465
parent: 1
-- proto: MiningDrill
- entities:
- - uid: 322
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.16817,4.674234
- parent: 1
- proto: Morgue
entities:
- uid: 175
diff --git a/Resources/Maps/_NF/Shuttles/stratos.yml b/Resources/Maps/_NF/Shuttles/stratos.yml
new file mode 100644
index 000000000000..f5f6a8046ef2
--- /dev/null
+++ b/Resources/Maps/_NF/Shuttles/stratos.yml
@@ -0,0 +1,7893 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 14: FloorBar
+ 30: FloorDark
+ 32: FloorDarkDiagonalMini
+ 46: FloorGlass
+ 90: FloorSteel
+ 97: FloorSteelDirty
+ 101: FloorSteelMono
+ 109: FloorWhite
+ 114: FloorWhiteMono
+ 119: FloorWood
+ 121: Lattice
+ 122: Plating
+entities:
+ - proto: ""
+ entities:
+ - uid: 1
+ components:
+ - type: MetaData
+ name: grid
+ - type: Transform
+ pos: -0.54525757,-0.44343954
+ parent: invalid
+ - type: MapGrid
+ chunks:
+ 0,0:
+ ind: 0,0
+ tiles: HgAAAAADHgAAAAACHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAACHgAAAAABegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAADbQAAAAADbQAAAAABegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIAAAAAAAIAAAAAAAIAAAAAABWgAAAAADegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAegAAAAAAcgAAAAACcgAAAAACcgAAAAAAcgAAAAAAegAAAAAAIAAAAAAAIAAAAAACIAAAAAABWgAAAAABegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACbQAAAAACbQAAAAABbQAAAAADbQAAAAAAbQAAAAABegAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAWgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACegAAAAAAcgAAAAABcgAAAAABcgAAAAAAcgAAAAAAegAAAAAAIAAAAAAAIAAAAAABIAAAAAACWgAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAACegAAAAAAdwAAAAAAdwAAAAAAdwAAAAABdwAAAAACdwAAAAADegAAAAAAWgAAAAADWgAAAAADWgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAAAdwAAAAADdwAAAAAAWgAAAAADegAAAAAAegAAAAAAWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAACegAAAAAAdwAAAAADdwAAAAADDgAAAAACDgAAAAACDgAAAAAAegAAAAAAWgAAAAAAWgAAAAADegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAABDgAAAAADDgAAAAABDgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAADdwAAAAACdwAAAAADDgAAAAAADgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAADdwAAAAABdwAAAAAADgAAAAAADgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAAAegAAAAAAWgAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAAB
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAACHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAbQAAAAACbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAbQAAAAAAbQAAAAAAcgAAAAADcgAAAAADegAAAAAAbQAAAAACbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAegAAAAAAbQAAAAAAbQAAAAAAbQAAAAACbQAAAAADbQAAAAABbQAAAAADbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAADbQAAAAADbQAAAAABbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAcgAAAAADcgAAAAACbQAAAAADcgAAAAADegAAAAAAegAAAAAAbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAACcgAAAAAAegAAAAAAcgAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAcgAAAAAAcgAAAAADegAAAAAAcgAAAAAAbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAcgAAAAADcgAAAAACegAAAAAAcgAAAAACbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABegAAAAAAWgAAAAACWgAAAAAAWgAAAAAA
+ version: 6
+ 0,1:
+ ind: 0,1
+ tiles: YQAAAAAAYQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAACWgAAAAABYQAAAAAAWgAAAAACWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABYQAAAAAAWgAAAAACWgAAAAAAWgAAAAAAHgAAAAADHgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACLgAAAAABLgAAAAADegAAAAAAWgAAAAABWgAAAAAAYQAAAAAAWgAAAAADYQAAAAAAWgAAAAAAHgAAAAADHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACLgAAAAABLgAAAAADegAAAAAAegAAAAAAegAAAAAAWgAAAAAAegAAAAAAWgAAAAABWgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACLgAAAAAALgAAAAABegAAAAAAAAAAAAAAegAAAAAAdwAAAAADdwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAAAdwAAAAABdwAAAAAAdwAAAAABdwAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAAAdwAAAAACdwAAAAADdwAAAAABdwAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAABdwAAAAADdwAAAAABdwAAAAACdwAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,1:
+ ind: -1,1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAbQAAAAADbQAAAAACWgAAAAACWgAAAAACYQAAAAAAWgAAAAACWgAAAAADYQAAAAAAWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABYQAAAAAAWgAAAAABWgAAAAACYQAAAAAAWgAAAAAAWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAABWgAAAAAAYQAAAAAAWgAAAAAAYQAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAAAWgAAAAAAWgAAAAAAYQAAAAAAWgAAAAAAWgAAAAADWgAAAAAAegAAAAAALgAAAAACLgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADHgAAAAABWgAAAAAAWgAAAAACWgAAAAABWgAAAAACegAAAAAAegAAAAAAegAAAAAALgAAAAACLgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAALgAAAAABLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAACWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAADZQAAAAACZQAAAAAAZQAAAAAAWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ - type: Broadphase
+ - type: Physics
+ bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ - type: Fixtures
+ fixtures: {}
+ - type: OccluderTree
+ - type: SpreaderGrid
+ - type: Shuttle
+ - type: GridPathfinding
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ color: '#EFB34196'
+ id: Bot
+ decals:
+ 187: -7,20
+ - node:
+ color: '#EFB341FF'
+ id: Bot
+ decals:
+ 61: -6,20
+ - node:
+ color: '#D381C9FF'
+ id: BotGreyscale
+ decals:
+ 26: -4,8
+ 31: -4,7
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 40: 0,6
+ 52: 0,10
+ - node:
+ color: '#D4D4D496'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 176: 9,19
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 64: -5,19
+ 65: -6,20
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 39: -2,6
+ 53: -2,10
+ - node:
+ color: '#D4D4D496'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 88: 5,19
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 180: -9,20
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 44: 0,2
+ 55: 0,8
+ - node:
+ color: '#D4D4D496'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 90: 7,16
+ 177: 9,18
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 69: -5,16
+ - node:
+ color: '#791500FF'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 37: 4,10
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 38: -2,2
+ 54: -2,8
+ - node:
+ color: '#D4D4D496'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 91: 5,16
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 68: -7,16
+ 182: -9,18
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 85: -3,17
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 70: -6,19
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 86: 3,17
+ - node:
+ color: '#D4D4D496'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 96: 7,18
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 71: -7,18
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteLineE
+ decals:
+ 41: 0,5
+ 42: 0,4
+ 45: 0,3
+ 58: 0,9
+ - node:
+ color: '#D4D4D496'
+ id: BrickTileWhiteLineE
+ decals:
+ 92: 7,17
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteLineE
+ decals:
+ 62: -5,18
+ 63: -5,17
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteLineN
+ decals:
+ 80: -2,17
+ 81: -1,17
+ 82: 0,17
+ 83: 2,17
+ 84: 1,17
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteLineN
+ decals:
+ 46: -1,6
+ 56: -1,10
+ - node:
+ color: '#D4D4D496'
+ id: BrickTileWhiteLineN
+ decals:
+ 94: 6,19
+ 95: 7,19
+ 175: 8,19
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteLineN
+ decals:
+ 185: -8,20
+ 186: -7,20
+ - node:
+ color: '#79150096'
+ id: BrickTileWhiteLineS
+ decals:
+ 103: 3,15
+ 104: 1,15
+ - node:
+ color: '#791500FF'
+ id: BrickTileWhiteLineS
+ decals:
+ 32: 5,10
+ 33: 6,10
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteLineS
+ decals:
+ 43: -1,2
+ 57: -1,8
+ 105: 0,15
+ 106: -1,15
+ 107: -2,15
+ 108: -3,15
+ - node:
+ color: '#D4D4D496'
+ id: BrickTileWhiteLineS
+ decals:
+ 93: 6,16
+ 178: 8,18
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteLineS
+ decals:
+ 73: -6,16
+ 184: -8,18
+ - node:
+ color: '#791500FF'
+ id: BrickTileWhiteLineW
+ decals:
+ 34: 4,13
+ 35: 4,12
+ 36: 4,11
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteLineW
+ decals:
+ 47: -2,5
+ 48: -2,4
+ 49: -2,3
+ 59: -2,9
+ - node:
+ color: '#D4D4D496'
+ id: BrickTileWhiteLineW
+ decals:
+ 97: 5,18
+ 98: 5,17
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteLineW
+ decals:
+ 72: -7,17
+ 183: -9,19
+ - node:
+ color: '#FFFFFFFF'
+ id: Caution
+ decals:
+ 113: 8,7
+ - node:
+ color: '#D381C996'
+ id: CheckerNWSE
+ decals:
+ 9: 2,5
+ 10: 3,5
+ 11: 4,5
+ 12: 5,5
+ 50: 1,2
+ 51: 2,2
+ 150: -7,6
+ 151: -6,6
+ 152: -5,6
+ 153: -4,6
+ 154: -4,5
+ 155: -5,5
+ 167: -6,5
+ 168: -7,5
+ - node:
+ color: '#D4D4D496'
+ id: CheckerNWSE
+ decals:
+ 99: 4,19
+ 100: 5,15
+ 101: 6,15
+ 102: 8,20
+ 179: 9,20
+ - node:
+ color: '#EFB34196'
+ id: CheckerNWSE
+ decals:
+ 76: -6,15
+ 77: -5,15
+ 78: -4,19
+ - node:
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 110: 0,0
+ 169: -9,3
+ 173: 11,19
+ 174: -11,19
+ - node:
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 156: -9,6
+ 157: -10,6
+ 161: -7,6
+ 162: -4,6
+ 172: -5,5
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 142: 8,8
+ 147: 5,11
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtHeavyMonotile
+ decals:
+ 115: -7,18
+ 140: 10,7
+ 141: 9,7
+ - node:
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 158: -10,5
+ 163: -4,5
+ 164: -5,8
+ 165: -9,8
+ 166: -2,5
+ 170: -7,5
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 123: -1,6
+ 124: -2,6
+ 125: -1,5
+ 126: -1,3
+ 127: -1,8
+ 128: -1,9
+ 129: -1,12
+ 130: -1,16
+ 131: 3,17
+ 132: -3,16
+ 133: 6,18
+ 134: 8,7
+ 135: 9,7
+ 136: 10,6
+ 137: 10,5
+ 138: 10,4
+ 139: 10,7
+ 144: 2,15
+ 145: 5,10
+ - node:
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 159: -8,3
+ 160: -6,6
+ 171: -6,5
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 116: -1,13
+ 117: -4,8
+ 118: -1,3
+ 119: 0,4
+ 120: 0,5
+ 121: 3,5
+ 122: 5,5
+ 143: 3,15
+ 146: 5,12
+ - node:
+ color: '#FFFFFFFF'
+ id: LoadingArea
+ decals:
+ 114: -8,23
+ - node:
+ color: '#D381C9FF'
+ id: WarnCornerGreyscaleNE
+ decals:
+ 27: -4,10
+ - node:
+ color: '#D381C9FF'
+ id: WarnCornerGreyscaleNW
+ decals:
+ 28: -5,10
+ - node:
+ color: '#D381C9FF'
+ id: WarnCornerGreyscaleSE
+ decals:
+ 29: -4,9
+ - node:
+ color: '#D381C9FF'
+ id: WarnCornerGreyscaleSW
+ decals:
+ 30: -5,9
+ - node:
+ color: '#EFB341FF'
+ id: WarnCornerNE
+ decals:
+ 21: -7,24
+ - node:
+ color: '#EFB341FF'
+ id: WarnCornerNW
+ decals:
+ 22: -9,24
+ - node:
+ color: '#EFB341FF'
+ id: WarnCornerSE
+ decals:
+ 20: -7,22
+ - node:
+ color: '#EFB341FF'
+ id: WarnCornerSW
+ decals:
+ 19: -9,22
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallSW
+ decals:
+ 7: 10,7
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnFull
+ decals:
+ 13: -10,24
+ 14: -10,23
+ 15: -10,22
+ 16: -6,23
+ 17: -6,22
+ 25: -6,24
+ - node:
+ color: '#EFB341FF'
+ id: WarnLineE
+ decals:
+ 79: -7,23
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineE
+ decals:
+ 8: 7,9
+ - node:
+ color: '#EFB341FF'
+ id: WarnLineN
+ decals:
+ 24: -8,22
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineN
+ decals:
+ 0: 7,7
+ 1: 8,7
+ 2: 9,7
+ - node:
+ color: '#EFB341FF'
+ id: WarnLineS
+ decals:
+ 18: -9,23
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineS
+ decals:
+ 3: 10,6
+ 4: 10,5
+ 5: 10,4
+ 6: 10,3
+ - node:
+ color: '#EFB341FF'
+ id: WarnLineW
+ decals:
+ 23: -8,24
+ - type: GridAtmosphere
+ version: 2
+ data:
+ tiles:
+ 0,0:
+ 0: 65535
+ 0,1:
+ 0: 65535
+ 0,3:
+ 0: 65535
+ 0,2:
+ 0: 65535
+ 1,0:
+ 1: 656
+ 0: 64840
+ 1,1:
+ 0: 65535
+ 1,2:
+ 0: 65535
+ 1,3:
+ 0: 65407
+ 1: 128
+ 2,0:
+ 0: 65415
+ 1: 120
+ 2,1:
+ 0: 65535
+ 2,2:
+ 0: 65535
+ 2,3:
+ 1: 33024
+ 0: 28672
+ 0,-1:
+ 0: 61440
+ -1,-1:
+ 0: 57344
+ -3,0:
+ 1: 4563
+ 0: 60972
+ -3,1:
+ 1: 4369
+ 0: 61166
+ -3,2:
+ 1: 3581
+ 0: 57858
+ -3,3:
+ 1: 8192
+ 0: 49152
+ -2,0:
+ 0: 63299
+ 1: 2096
+ -2,1:
+ 0: 65535
+ -2,2:
+ 0: 64991
+ 1: 544
+ -2,3:
+ 1: 288
+ 0: 65228
+ -1,0:
+ 1: 16
+ 0: 65518
+ -1,1:
+ 0: 65535
+ -1,2:
+ 0: 65535
+ -1,3:
+ 0: 65535
+ 0,4:
+ 0: 65535
+ 0,5:
+ 0: 4095
+ 1,4:
+ 0: 65535
+ 1,5:
+ 0: 61167
+ 1,6:
+ 0: 1262
+ 1: 2048
+ 2,4:
+ 0: 65535
+ 2,5:
+ 0: 65535
+ 2,6:
+ 0: 52991
+ 1: 8448
+ -3,4:
+ 0: 61166
+ -3,5:
+ 0: 61166
+ -2,4:
+ 0: 65535
+ -2,5:
+ 0: 65535
+ -2,6:
+ 0: 1279
+ 1: 768
+ -1,4:
+ 0: 65535
+ -1,5:
+ 0: 3823
+ 3,0:
+ 1: 4369
+ 3,1:
+ 1: 4369
+ 3,2:
+ 1: 1
+ 3,-1:
+ 1: 4096
+ -3,-1:
+ 1: 4096
+ 2,7:
+ 0: 140
+ -3,6:
+ 0: 28398
+ 1: 32768
+ -3,7:
+ 0: 38
+ 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:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+ - type: BecomesStation
+ id: Stratos
+ - proto: AirAlarm
+ entities:
+ - uid: 835
+ components:
+ - type: Transform
+ pos: -2.5,18.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 836
+ - 642
+ - 776
+ - 655
+ - 752
+ - 706
+ - 729
+ - 719
+ - 705
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 838
+ components:
+ - type: Transform
+ pos: -5.5,8.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 845
+ - 844
+ - 1050
+ - 1031
+ - 770
+ - 392
+ - 389
+ - type: AtmosDevice
+ joinedGrid: 1
+ - proto: AirCanister
+ entities:
+ - uid: 543
+ components:
+ - type: Transform
+ anchored: True
+ pos: -3.5,13.5
+ parent: 1
+ - type: Physics
+ bodyType: Static
+ - type: AtmosDevice
+ joinedGrid: 1
+ - proto: Airlock
+ entities:
+ - uid: 983
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,16.5
+ parent: 1
+ - proto: AirlockCargo
+ entities:
+ - uid: 65
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 7.5,9.5
+ parent: 1
+ - proto: AirlockCargoGlass
+ entities:
+ - uid: 86
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,21.5
+ parent: 1
+ - uid: 453
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,16.5
+ parent: 1
+ - uid: 454
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,17.5
+ parent: 1
+ - proto: AirlockCommandGlass
+ entities:
+ - uid: 266
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,18.5
+ parent: 1
+ - proto: AirlockExternalGlass
+ entities:
+ - uid: 43
+ components:
+ - type: Transform
+ pos: 10.5,18.5
+ parent: 1
+ - uid: 45
+ components:
+ - type: Transform
+ pos: -9.5,18.5
+ parent: 1
+ - uid: 126
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,4.5
+ parent: 1
+ - uid: 158
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,4.5
+ parent: 1
+ - uid: 294
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 1
+ - uid: 295
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 1
+ - uid: 304
+ components:
+ - type: Transform
+ pos: -9.5,20.5
+ parent: 1
+ - uid: 318
+ components:
+ - type: Transform
+ pos: 10.5,20.5
+ parent: 1
+ - proto: AirlockGlass
+ entities:
+ - uid: 252
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,20.5
+ parent: 1
+ - uid: 437
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,14.5
+ parent: 1
+ - uid: 438
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,14.5
+ parent: 1
+ - uid: 441
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,17.5
+ parent: 1
+ - uid: 446
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,16.5
+ parent: 1
+ - proto: AirlockGlassShuttle
+ entities:
+ - uid: 205
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 1
+ - uid: 206
+ components:
+ - type: Transform
+ pos: 1.5,-0.5
+ parent: 1
+ - uid: 1062
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,20.5
+ parent: 1
+ - uid: 1063
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,18.5
+ parent: 1
+ - uid: 1064
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,20.5
+ parent: 1
+ - uid: 1065
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,18.5
+ parent: 1
+ - proto: AirlockMaint
+ entities:
+ - uid: 507
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,12.5
+ parent: 1
+ - proto: AirlockScienceGlass
+ entities:
+ - uid: 390
+ components:
+ - type: Transform
+ pos: -7.5,6.5
+ parent: 1
+ - uid: 400
+ components:
+ - type: Transform
+ pos: -2.5,6.5
+ parent: 1
+ - uid: 401
+ components:
+ - type: Transform
+ pos: -2.5,5.5
+ parent: 1
+ - uid: 402
+ components:
+ - type: Transform
+ pos: 1.5,5.5
+ parent: 1
+ - uid: 455
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,14.5
+ parent: 1
+ - uid: 457
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,11.5
+ parent: 1
+ - uid: 458
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,7.5
+ parent: 1
+ - uid: 1041
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,7.5
+ parent: 1
+ - proto: AirSensor
+ entities:
+ - uid: 836
+ components:
+ - type: Transform
+ pos: 0.5,16.5
+ parent: 1
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ deviceLists:
+ - 835
+ - uid: 1031
+ components:
+ - type: Transform
+ pos: -4.5,5.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 838
+ - proto: AmeController
+ entities:
+ - uid: 240
+ components:
+ - type: Transform
+ pos: 7.5,6.5
+ parent: 1
+ - type: AmeController
+ injecting: True
+ - type: ContainerContainer
+ containers:
+ AmeFuel: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 85
+ - proto: AmeJar
+ entities:
+ - uid: 85
+ components:
+ - type: MetaData
+ flags: InContainer
+ - type: Transform
+ parent: 240
+ - type: Physics
+ canCollide: False
+ - uid: 219
+ components:
+ - type: Transform
+ pos: 8.537659,6.5074883
+ parent: 1
+ - uid: 233
+ components:
+ - type: Transform
+ pos: 8.333996,6.524457
+ parent: 1
+ - proto: AmeShielding
+ entities:
+ - uid: 52
+ components:
+ - type: Transform
+ pos: 9.5,5.5
+ parent: 1
+ - uid: 53
+ components:
+ - type: Transform
+ pos: 8.5,5.5
+ parent: 1
+ - uid: 62
+ components:
+ - type: Transform
+ pos: 7.5,5.5
+ parent: 1
+ - uid: 66
+ components:
+ - type: Transform
+ pos: 8.5,4.5
+ parent: 1
+ - type: PointLight
+ radius: 2
+ enabled: True
+ - uid: 79
+ components:
+ - type: Transform
+ pos: 8.5,3.5
+ parent: 1
+ - uid: 89
+ components:
+ - type: Transform
+ pos: 7.5,3.5
+ parent: 1
+ - uid: 92
+ components:
+ - type: Transform
+ pos: 9.5,4.5
+ parent: 1
+ - uid: 160
+ components:
+ - type: Transform
+ pos: 7.5,4.5
+ parent: 1
+ - uid: 238
+ components:
+ - type: Transform
+ pos: 9.5,3.5
+ parent: 1
+ - proto: APCBasic
+ entities:
+ - uid: 511
+ components:
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 1
+ - uid: 512
+ components:
+ - type: Transform
+ pos: 3.5,18.5
+ parent: 1
+ - uid: 513
+ components:
+ - type: Transform
+ pos: -4.5,20.5
+ parent: 1
+ - uid: 611
+ components:
+ - type: Transform
+ pos: 7.5,8.5
+ parent: 1
+ - proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 55
+ components:
+ - type: Transform
+ pos: -4.5,22.5
+ parent: 1
+ - uid: 56
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,20.5
+ parent: 1
+ - uid: 59
+ components:
+ - type: Transform
+ pos: -4.5,23.5
+ parent: 1
+ - uid: 77
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,18.5
+ parent: 1
+ - uid: 78
+ components:
+ - type: Transform
+ pos: -4.5,24.5
+ parent: 1
+ - uid: 122
+ components:
+ - type: Transform
+ pos: -10.5,23.5
+ parent: 1
+ - uid: 177
+ components:
+ - type: Transform
+ pos: -10.5,24.5
+ parent: 1
+ - uid: 209
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 1
+ - uid: 210
+ components:
+ - type: Transform
+ pos: 1.5,-0.5
+ parent: 1
+ - uid: 298
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,18.5
+ parent: 1
+ - uid: 299
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,20.5
+ parent: 1
+ - uid: 344
+ components:
+ - type: Transform
+ pos: -10.5,22.5
+ parent: 1
+ - uid: 911
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,4.5
+ parent: 1
+ - uid: 913
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,4.5
+ parent: 1
+ - uid: 921
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,7.5
+ parent: 1
+ - proto: AtmosFixBlockerMarker
+ entities:
+ - uid: 137
+ components:
+ - type: Transform
+ pos: -8.5,10.5
+ parent: 1
+ - uid: 297
+ components:
+ - type: Transform
+ pos: 9.5,14.5
+ parent: 1
+ - uid: 331
+ components:
+ - type: Transform
+ pos: -9.5,8.5
+ parent: 1
+ - uid: 336
+ components:
+ - type: Transform
+ pos: -8.5,8.5
+ parent: 1
+ - uid: 345
+ components:
+ - type: Transform
+ pos: -8.5,9.5
+ parent: 1
+ - uid: 388
+ components:
+ - type: Transform
+ pos: -9.5,9.5
+ parent: 1
+ - uid: 412
+ components:
+ - type: Transform
+ pos: -10.5,9.5
+ parent: 1
+ - uid: 857
+ components:
+ - type: Transform
+ pos: -11.5,4.5
+ parent: 1
+ - uid: 858
+ components:
+ - type: Transform
+ pos: -4.5,2.5
+ parent: 1
+ - uid: 859
+ components:
+ - type: Transform
+ pos: -3.5,1.5
+ parent: 1
+ - uid: 860
+ components:
+ - type: Transform
+ pos: -6.5,1.5
+ parent: 1
+ - uid: 861
+ components:
+ - type: Transform
+ pos: -7.5,1.5
+ parent: 1
+ - uid: 862
+ components:
+ - type: Transform
+ pos: -8.5,1.5
+ parent: 1
+ - uid: 863
+ components:
+ - type: Transform
+ pos: -9.5,1.5
+ parent: 1
+ - uid: 864
+ components:
+ - type: Transform
+ pos: -10.5,0.5
+ parent: 1
+ - uid: 865
+ components:
+ - type: Transform
+ pos: -11.5,-0.5
+ parent: 1
+ - uid: 866
+ components:
+ - type: Transform
+ pos: -11.5,0.5
+ parent: 1
+ - uid: 867
+ components:
+ - type: Transform
+ pos: -11.5,1.5
+ parent: 1
+ - uid: 868
+ components:
+ - type: Transform
+ pos: -11.5,3.5
+ parent: 1
+ - uid: 869
+ components:
+ - type: Transform
+ pos: -11.5,2.5
+ parent: 1
+ - uid: 870
+ components:
+ - type: Transform
+ pos: -11.5,5.5
+ parent: 1
+ - uid: 871
+ components:
+ - type: Transform
+ pos: -11.5,6.5
+ parent: 1
+ - uid: 872
+ components:
+ - type: Transform
+ pos: -11.5,7.5
+ parent: 1
+ - uid: 873
+ components:
+ - type: Transform
+ pos: -11.5,8.5
+ parent: 1
+ - uid: 874
+ components:
+ - type: Transform
+ pos: -11.5,9.5
+ parent: 1
+ - uid: 875
+ components:
+ - type: Transform
+ pos: -11.5,10.5
+ parent: 1
+ - uid: 876
+ components:
+ - type: Transform
+ pos: -6.5,13.5
+ parent: 1
+ - uid: 877
+ components:
+ - type: Transform
+ pos: -6.5,10.5
+ parent: 1
+ - uid: 878
+ components:
+ - type: Transform
+ pos: -6.5,9.5
+ parent: 1
+ - uid: 879
+ components:
+ - type: Transform
+ pos: -7.5,14.5
+ parent: 1
+ - uid: 880
+ components:
+ - type: Transform
+ pos: -10.5,15.5
+ parent: 1
+ - uid: 881
+ components:
+ - type: Transform
+ pos: 12.5,2.5
+ parent: 1
+ - uid: 882
+ components:
+ - type: Transform
+ pos: -8.5,27.5
+ parent: 1
+ - uid: 883
+ components:
+ - type: Transform
+ pos: -7.5,26.5
+ parent: 1
+ - uid: 884
+ components:
+ - type: Transform
+ pos: -6.5,26.5
+ parent: 1
+ - uid: 885
+ components:
+ - type: Transform
+ pos: 7.5,26.5
+ parent: 1
+ - uid: 886
+ components:
+ - type: Transform
+ pos: 8.5,26.5
+ parent: 1
+ - uid: 887
+ components:
+ - type: Transform
+ pos: 9.5,27.5
+ parent: 1
+ - uid: 888
+ components:
+ - type: Transform
+ pos: 12.5,8.5
+ parent: 1
+ - uid: 889
+ components:
+ - type: Transform
+ pos: 12.5,7.5
+ parent: 1
+ - uid: 890
+ components:
+ - type: Transform
+ pos: 12.5,6.5
+ parent: 1
+ - uid: 891
+ components:
+ - type: Transform
+ pos: 12.5,5.5
+ parent: 1
+ - uid: 892
+ components:
+ - type: Transform
+ pos: 12.5,4.5
+ parent: 1
+ - uid: 893
+ components:
+ - type: Transform
+ pos: 12.5,3.5
+ parent: 1
+ - uid: 894
+ components:
+ - type: Transform
+ pos: 12.5,1.5
+ parent: 1
+ - uid: 895
+ components:
+ - type: Transform
+ pos: 12.5,0.5
+ parent: 1
+ - uid: 896
+ components:
+ - type: Transform
+ pos: 12.5,-0.5
+ parent: 1
+ - uid: 897
+ components:
+ - type: Transform
+ pos: 11.5,0.5
+ parent: 1
+ - uid: 898
+ components:
+ - type: Transform
+ pos: 10.5,1.5
+ parent: 1
+ - uid: 899
+ components:
+ - type: Transform
+ pos: 9.5,1.5
+ parent: 1
+ - uid: 900
+ components:
+ - type: Transform
+ pos: 8.5,1.5
+ parent: 1
+ - uid: 901
+ components:
+ - type: Transform
+ pos: 7.5,1.5
+ parent: 1
+ - uid: 902
+ components:
+ - type: Transform
+ pos: 5.5,2.5
+ parent: 1
+ - uid: 903
+ components:
+ - type: Transform
+ pos: 4.5,1.5
+ parent: 1
+ - uid: 904
+ components:
+ - type: Transform
+ pos: 7.5,13.5
+ parent: 1
+ - uid: 905
+ components:
+ - type: Transform
+ pos: 8.5,14.5
+ parent: 1
+ - uid: 906
+ components:
+ - type: Transform
+ pos: 11.5,15.5
+ parent: 1
+ - uid: 1040
+ components:
+ - type: Transform
+ pos: -9.5,10.5
+ parent: 1
+ - uid: 1055
+ components:
+ - type: Transform
+ pos: -8.5,14.5
+ parent: 1
+ - proto: Autolathe
+ entities:
+ - uid: 1045
+ components:
+ - type: Transform
+ pos: -4.5,4.5
+ parent: 1
+ - proto: BarSign
+ entities:
+ - uid: 580
+ components:
+ - type: Transform
+ pos: 5.5,14.5
+ parent: 1
+ - proto: Bed
+ entities:
+ - uid: 250
+ components:
+ - type: Transform
+ pos: 8.5,24.5
+ parent: 1
+ - uid: 279
+ components:
+ - type: Transform
+ pos: 9.5,24.5
+ parent: 1
+ - uid: 282
+ components:
+ - type: Transform
+ pos: 6.5,24.5
+ parent: 1
+ - uid: 315
+ components:
+ - type: Transform
+ pos: 7.5,24.5
+ parent: 1
+ - proto: BedsheetCentcom
+ entities:
+ - uid: 996
+ components:
+ - type: Transform
+ pos: 9.5,24.5
+ parent: 1
+ - proto: BedsheetPurple
+ entities:
+ - uid: 998
+ components:
+ - type: Transform
+ pos: 7.5,24.5
+ parent: 1
+ - proto: BedsheetRainbow
+ entities:
+ - uid: 997
+ components:
+ - type: Transform
+ pos: 8.5,24.5
+ parent: 1
+ - proto: BedsheetRD
+ entities:
+ - uid: 999
+ components:
+ - type: Transform
+ pos: 6.5,24.5
+ parent: 1
+ - proto: BenchSofaCorpCorner
+ entities:
+ - uid: 595
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,8.5
+ parent: 1
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+ - type: Fixtures
+ fixtures: {}
+ - proto: BenchSofaCorpLeft
+ entities:
+ - uid: 570
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,9.5
+ parent: 1
+ - type: Physics
+ bodyType: Static
+ - proto: BenchSofaCorpMiddle
+ entities:
+ - uid: 565
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,8.5
+ parent: 1
+ - type: Physics
+ bodyType: Static
+ - proto: BenchSofaCorpRight
+ entities:
+ - uid: 556
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,8.5
+ parent: 1
+ - type: Physics
+ bodyType: Static
+ - proto: BlastDoor
+ entities:
+ - uid: 151
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -10.5,9.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 1049
+ - uid: 419
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -4.5,24.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 64
+ - uid: 420
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -4.5,23.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 64
+ - uid: 421
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -4.5,22.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 64
+ - uid: 422
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -10.5,24.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 64
+ - uid: 423
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -10.5,23.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 64
+ - uid: 424
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -10.5,22.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 64
+ - proto: BoxInflatable
+ entities:
+ - uid: 312
+ components:
+ - type: Transform
+ pos: 8.3826275,10.656089
+ parent: 1
+ - proto: CableApcExtension
+ entities:
+ - uid: 10
+ components:
+ - type: Transform
+ pos: -1.5,16.5
+ parent: 1
+ - uid: 394
+ components:
+ - type: Transform
+ pos: -7.5,7.5
+ parent: 1
+ - uid: 395
+ components:
+ - type: Transform
+ pos: -6.5,7.5
+ parent: 1
+ - uid: 397
+ components:
+ - type: Transform
+ pos: -8.5,5.5
+ parent: 1
+ - uid: 398
+ components:
+ - type: Transform
+ pos: -4.5,7.5
+ parent: 1
+ - uid: 399
+ components:
+ - type: Transform
+ pos: -8.5,6.5
+ parent: 1
+ - uid: 411
+ components:
+ - type: Transform
+ pos: -3.5,5.5
+ parent: 1
+ - uid: 413
+ components:
+ - type: Transform
+ pos: -5.5,7.5
+ parent: 1
+ - uid: 479
+ components:
+ - type: Transform
+ pos: -2.5,16.5
+ parent: 1
+ - uid: 561
+ components:
+ - type: Transform
+ pos: -4.5,20.5
+ parent: 1
+ - uid: 562
+ components:
+ - type: Transform
+ pos: -5.5,20.5
+ parent: 1
+ - uid: 563
+ components:
+ - type: Transform
+ pos: -6.5,20.5
+ parent: 1
+ - uid: 564
+ components:
+ - type: Transform
+ pos: -7.5,20.5
+ parent: 1
+ - uid: 566
+ components:
+ - type: Transform
+ pos: -7.5,19.5
+ parent: 1
+ - uid: 567
+ components:
+ - type: Transform
+ pos: -7.5,18.5
+ parent: 1
+ - uid: 568
+ components:
+ - type: Transform
+ pos: -7.5,17.5
+ parent: 1
+ - uid: 569
+ components:
+ - type: Transform
+ pos: -7.5,16.5
+ parent: 1
+ - uid: 571
+ components:
+ - type: Transform
+ pos: -7.5,21.5
+ parent: 1
+ - uid: 572
+ components:
+ - type: Transform
+ pos: -7.5,22.5
+ parent: 1
+ - uid: 573
+ components:
+ - type: Transform
+ pos: -7.5,23.5
+ parent: 1
+ - uid: 574
+ components:
+ - type: Transform
+ pos: -7.5,24.5
+ parent: 1
+ - uid: 575
+ components:
+ - type: Transform
+ pos: 3.5,18.5
+ parent: 1
+ - uid: 576
+ components:
+ - type: Transform
+ pos: 3.5,17.5
+ parent: 1
+ - uid: 577
+ components:
+ - type: Transform
+ pos: 3.5,16.5
+ parent: 1
+ - uid: 578
+ components:
+ - type: Transform
+ pos: 2.5,16.5
+ parent: 1
+ - uid: 579
+ components:
+ - type: Transform
+ pos: 1.5,16.5
+ parent: 1
+ - uid: 581
+ components:
+ - type: Transform
+ pos: 0.5,16.5
+ parent: 1
+ - uid: 582
+ components:
+ - type: Transform
+ pos: 0.5,17.5
+ parent: 1
+ - uid: 583
+ components:
+ - type: Transform
+ pos: 0.5,18.5
+ parent: 1
+ - uid: 584
+ components:
+ - type: Transform
+ pos: 0.5,19.5
+ parent: 1
+ - uid: 585
+ components:
+ - type: Transform
+ pos: 0.5,20.5
+ parent: 1
+ - uid: 587
+ components:
+ - type: Transform
+ pos: -0.5,16.5
+ parent: 1
+ - uid: 589
+ components:
+ - type: Transform
+ pos: -0.5,15.5
+ parent: 1
+ - uid: 590
+ components:
+ - type: Transform
+ pos: -0.5,14.5
+ parent: 1
+ - uid: 591
+ components:
+ - type: Transform
+ pos: -0.5,13.5
+ parent: 1
+ - uid: 593
+ components:
+ - type: Transform
+ pos: 4.5,16.5
+ parent: 1
+ - uid: 594
+ components:
+ - type: Transform
+ pos: 5.5,16.5
+ parent: 1
+ - uid: 596
+ components:
+ - type: Transform
+ pos: 6.5,16.5
+ parent: 1
+ - uid: 597
+ components:
+ - type: Transform
+ pos: 7.5,16.5
+ parent: 1
+ - uid: 598
+ components:
+ - type: Transform
+ pos: 8.5,16.5
+ parent: 1
+ - uid: 600
+ components:
+ - type: Transform
+ pos: 6.5,17.5
+ parent: 1
+ - uid: 601
+ components:
+ - type: Transform
+ pos: 6.5,18.5
+ parent: 1
+ - uid: 602
+ components:
+ - type: Transform
+ pos: 6.5,19.5
+ parent: 1
+ - uid: 603
+ components:
+ - type: Transform
+ pos: 6.5,20.5
+ parent: 1
+ - uid: 604
+ components:
+ - type: Transform
+ pos: 6.5,21.5
+ parent: 1
+ - uid: 605
+ components:
+ - type: Transform
+ pos: 6.5,22.5
+ parent: 1
+ - uid: 606
+ components:
+ - type: Transform
+ pos: 6.5,23.5
+ parent: 1
+ - uid: 607
+ components:
+ - type: Transform
+ pos: 6.5,24.5
+ parent: 1
+ - uid: 608
+ components:
+ - type: Transform
+ pos: 7.5,24.5
+ parent: 1
+ - uid: 609
+ components:
+ - type: Transform
+ pos: 8.5,24.5
+ parent: 1
+ - uid: 610
+ components:
+ - type: Transform
+ pos: 9.5,24.5
+ parent: 1
+ - uid: 613
+ components:
+ - type: Transform
+ pos: 7.5,8.5
+ parent: 1
+ - uid: 614
+ components:
+ - type: Transform
+ pos: 7.5,9.5
+ parent: 1
+ - uid: 615
+ components:
+ - type: Transform
+ pos: 6.5,9.5
+ parent: 1
+ - uid: 616
+ components:
+ - type: Transform
+ pos: 5.5,9.5
+ parent: 1
+ - uid: 617
+ components:
+ - type: Transform
+ pos: 4.5,9.5
+ parent: 1
+ - uid: 618
+ components:
+ - type: Transform
+ pos: 3.5,9.5
+ parent: 1
+ - uid: 620
+ components:
+ - type: Transform
+ pos: 3.5,10.5
+ parent: 1
+ - uid: 621
+ components:
+ - type: Transform
+ pos: 3.5,11.5
+ parent: 1
+ - uid: 622
+ components:
+ - type: Transform
+ pos: 7.5,9.5
+ parent: 1
+ - uid: 623
+ components:
+ - type: Transform
+ pos: 7.5,7.5
+ parent: 1
+ - uid: 624
+ components:
+ - type: Transform
+ pos: 5.5,7.5
+ parent: 1
+ - uid: 625
+ components:
+ - type: Transform
+ pos: 6.5,7.5
+ parent: 1
+ - uid: 626
+ components:
+ - type: Transform
+ pos: -3.5,4.5
+ parent: 1
+ - uid: 627
+ components:
+ - type: Transform
+ pos: 5.5,6.5
+ parent: 1
+ - uid: 628
+ components:
+ - type: Transform
+ pos: 10.5,7.5
+ parent: 1
+ - uid: 629
+ components:
+ - type: Transform
+ pos: 10.5,6.5
+ parent: 1
+ - uid: 630
+ components:
+ - type: Transform
+ pos: 10.5,5.5
+ parent: 1
+ - uid: 631
+ components:
+ - type: Transform
+ pos: 10.5,4.5
+ parent: 1
+ - uid: 632
+ components:
+ - type: Transform
+ pos: 10.5,3.5
+ parent: 1
+ - uid: 633
+ components:
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 1
+ - uid: 634
+ components:
+ - type: Transform
+ pos: 9.5,7.5
+ parent: 1
+ - uid: 635
+ components:
+ - type: Transform
+ pos: 5.5,4.5
+ parent: 1
+ - uid: 636
+ components:
+ - type: Transform
+ pos: 8.5,7.5
+ parent: 1
+ - uid: 637
+ components:
+ - type: Transform
+ pos: 5.5,5.5
+ parent: 1
+ - uid: 638
+ components:
+ - type: Transform
+ pos: -4.5,4.5
+ parent: 1
+ - uid: 639
+ components:
+ - type: Transform
+ pos: -5.5,4.5
+ parent: 1
+ - uid: 640
+ components:
+ - type: Transform
+ pos: -6.5,4.5
+ parent: 1
+ - uid: 648
+ components:
+ - type: Transform
+ pos: -8.5,9.5
+ parent: 1
+ - uid: 649
+ components:
+ - type: Transform
+ pos: -9.5,9.5
+ parent: 1
+ - uid: 650
+ components:
+ - type: Transform
+ pos: -8.5,8.5
+ parent: 1
+ - uid: 651
+ components:
+ - type: Transform
+ pos: -8.5,7.5
+ parent: 1
+ - uid: 653
+ components:
+ - type: Transform
+ pos: -8.5,4.5
+ parent: 1
+ - uid: 656
+ components:
+ - type: Transform
+ pos: -1.5,4.5
+ parent: 1
+ - uid: 657
+ components:
+ - type: Transform
+ pos: -0.5,4.5
+ parent: 1
+ - uid: 658
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 1
+ - uid: 659
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 1
+ - uid: 660
+ components:
+ - type: Transform
+ pos: 0.5,3.5
+ parent: 1
+ - uid: 661
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 1
+ - uid: 662
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 1
+ - uid: 663
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 1
+ - uid: 664
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 1
+ - uid: 665
+ components:
+ - type: Transform
+ pos: 1.5,2.5
+ parent: 1
+ - uid: 666
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 1
+ - uid: 667
+ components:
+ - type: Transform
+ pos: 1.5,0.5
+ parent: 1
+ - uid: 668
+ components:
+ - type: Transform
+ pos: -0.5,5.5
+ parent: 1
+ - uid: 669
+ components:
+ - type: Transform
+ pos: -0.5,6.5
+ parent: 1
+ - uid: 670
+ components:
+ - type: Transform
+ pos: -0.5,7.5
+ parent: 1
+ - uid: 671
+ components:
+ - type: Transform
+ pos: -0.5,8.5
+ parent: 1
+ - uid: 771
+ components:
+ - type: Transform
+ pos: -7.5,4.5
+ parent: 1
+ - uid: 826
+ components:
+ - type: Transform
+ pos: 9.5,16.5
+ parent: 1
+ - uid: 827
+ components:
+ - type: Transform
+ pos: -8.5,24.5
+ parent: 1
+ - uid: 834
+ components:
+ - type: Transform
+ pos: -4.5,8.5
+ parent: 1
+ - uid: 985
+ components:
+ - type: Transform
+ pos: -8.5,16.5
+ parent: 1
+ - uid: 986
+ components:
+ - type: Transform
+ pos: -7.5,16.5
+ parent: 1
+ - uid: 987
+ components:
+ - type: Transform
+ pos: -7.5,15.5
+ parent: 1
+ - uid: 988
+ components:
+ - type: Transform
+ pos: -7.5,14.5
+ parent: 1
+ - uid: 989
+ components:
+ - type: Transform
+ pos: 8.5,15.5
+ parent: 1
+ - uid: 990
+ components:
+ - type: Transform
+ pos: 8.5,14.5
+ parent: 1
+ - uid: 991
+ components:
+ - type: Transform
+ pos: 5.5,3.5
+ parent: 1
+ - uid: 992
+ components:
+ - type: Transform
+ pos: 9.5,3.5
+ parent: 1
+ - uid: 993
+ components:
+ - type: Transform
+ pos: 8.5,3.5
+ parent: 1
+ - uid: 994
+ components:
+ - type: Transform
+ pos: 7.5,3.5
+ parent: 1
+ - uid: 995
+ components:
+ - type: Transform
+ pos: 6.5,3.5
+ parent: 1
+ - uid: 1030
+ components:
+ - type: Transform
+ pos: -3.5,7.5
+ parent: 1
+ - uid: 1034
+ components:
+ - type: Transform
+ pos: -3.5,6.5
+ parent: 1
+ - proto: CableHV
+ entities:
+ - uid: 48
+ components:
+ - type: Transform
+ pos: 9.5,8.5
+ parent: 1
+ - uid: 258
+ components:
+ - type: Transform
+ pos: 10.5,8.5
+ parent: 1
+ - uid: 283
+ components:
+ - type: Transform
+ pos: 9.5,7.5
+ parent: 1
+ - uid: 284
+ components:
+ - type: Transform
+ pos: 7.5,6.5
+ parent: 1
+ - uid: 285
+ components:
+ - type: Transform
+ pos: 8.5,6.5
+ parent: 1
+ - uid: 286
+ components:
+ - type: Transform
+ pos: 9.5,6.5
+ parent: 1
+ - uid: 289
+ components:
+ - type: Transform
+ pos: 10.5,9.5
+ parent: 1
+ - uid: 290
+ components:
+ - type: Transform
+ pos: 10.5,7.5
+ parent: 1
+ - proto: CableMV
+ entities:
+ - uid: 514
+ components:
+ - type: Transform
+ pos: 10.5,9.5
+ parent: 1
+ - uid: 515
+ components:
+ - type: Transform
+ pos: 9.5,9.5
+ parent: 1
+ - uid: 516
+ components:
+ - type: Transform
+ pos: 8.5,9.5
+ parent: 1
+ - uid: 517
+ components:
+ - type: Transform
+ pos: 7.5,9.5
+ parent: 1
+ - uid: 518
+ components:
+ - type: Transform
+ pos: 6.5,9.5
+ parent: 1
+ - uid: 519
+ components:
+ - type: Transform
+ pos: 5.5,9.5
+ parent: 1
+ - uid: 520
+ components:
+ - type: Transform
+ pos: 4.5,9.5
+ parent: 1
+ - uid: 521
+ components:
+ - type: Transform
+ pos: 3.5,9.5
+ parent: 1
+ - uid: 522
+ components:
+ - type: Transform
+ pos: 2.5,9.5
+ parent: 1
+ - uid: 523
+ components:
+ - type: Transform
+ pos: 1.5,9.5
+ parent: 1
+ - uid: 524
+ components:
+ - type: Transform
+ pos: 0.5,9.5
+ parent: 1
+ - uid: 525
+ components:
+ - type: Transform
+ pos: -0.5,9.5
+ parent: 1
+ - uid: 526
+ components:
+ - type: Transform
+ pos: -0.5,9.5
+ parent: 1
+ - uid: 527
+ components:
+ - type: Transform
+ pos: -0.5,8.5
+ parent: 1
+ - uid: 528
+ components:
+ - type: Transform
+ pos: -0.5,7.5
+ parent: 1
+ - uid: 529
+ components:
+ - type: Transform
+ pos: -0.5,6.5
+ parent: 1
+ - uid: 530
+ components:
+ - type: Transform
+ pos: -0.5,5.5
+ parent: 1
+ - uid: 531
+ components:
+ - type: Transform
+ pos: -0.5,4.5
+ parent: 1
+ - uid: 532
+ components:
+ - type: Transform
+ pos: -0.5,4.5
+ parent: 1
+ - uid: 533
+ components:
+ - type: Transform
+ pos: -1.5,4.5
+ parent: 1
+ - uid: 534
+ components:
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 1
+ - uid: 535
+ components:
+ - type: Transform
+ pos: -0.5,9.5
+ parent: 1
+ - uid: 536
+ components:
+ - type: Transform
+ pos: -0.5,10.5
+ parent: 1
+ - uid: 537
+ components:
+ - type: Transform
+ pos: -0.5,11.5
+ parent: 1
+ - uid: 538
+ components:
+ - type: Transform
+ pos: -0.5,12.5
+ parent: 1
+ - uid: 539
+ components:
+ - type: Transform
+ pos: -0.5,13.5
+ parent: 1
+ - uid: 540
+ components:
+ - type: Transform
+ pos: -0.5,14.5
+ parent: 1
+ - uid: 541
+ components:
+ - type: Transform
+ pos: -0.5,15.5
+ parent: 1
+ - uid: 542
+ components:
+ - type: Transform
+ pos: -0.5,16.5
+ parent: 1
+ - uid: 544
+ components:
+ - type: Transform
+ pos: 0.5,16.5
+ parent: 1
+ - uid: 545
+ components:
+ - type: Transform
+ pos: 1.5,16.5
+ parent: 1
+ - uid: 546
+ components:
+ - type: Transform
+ pos: 2.5,16.5
+ parent: 1
+ - uid: 548
+ components:
+ - type: Transform
+ pos: 3.5,16.5
+ parent: 1
+ - uid: 549
+ components:
+ - type: Transform
+ pos: 3.5,17.5
+ parent: 1
+ - uid: 550
+ components:
+ - type: Transform
+ pos: 3.5,18.5
+ parent: 1
+ - uid: 552
+ components:
+ - type: Transform
+ pos: -1.5,16.5
+ parent: 1
+ - uid: 553
+ components:
+ - type: Transform
+ pos: -2.5,16.5
+ parent: 1
+ - uid: 554
+ components:
+ - type: Transform
+ pos: -3.5,16.5
+ parent: 1
+ - uid: 555
+ components:
+ - type: Transform
+ pos: -4.5,16.5
+ parent: 1
+ - uid: 557
+ components:
+ - type: Transform
+ pos: -4.5,17.5
+ parent: 1
+ - uid: 558
+ components:
+ - type: Transform
+ pos: -4.5,18.5
+ parent: 1
+ - uid: 559
+ components:
+ - type: Transform
+ pos: -4.5,19.5
+ parent: 1
+ - uid: 560
+ components:
+ - type: Transform
+ pos: -4.5,20.5
+ parent: 1
+ - uid: 612
+ components:
+ - type: Transform
+ pos: 7.5,8.5
+ parent: 1
+ - proto: CableTerminal
+ entities:
+ - uid: 287
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,7.5
+ parent: 1
+ - uid: 288
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,7.5
+ parent: 1
+ - proto: CargoPallet
+ entities:
+ - uid: 82
+ components:
+ - type: Transform
+ pos: 8.5,9.5
+ parent: 1
+ - uid: 473
+ components:
+ - type: Transform
+ pos: 9.5,9.5
+ parent: 1
+ - proto: CarpetBlack
+ entities:
+ - uid: 242
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,22.5
+ parent: 1
+ - uid: 246
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,23.5
+ parent: 1
+ - uid: 253
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,23.5
+ parent: 1
+ - uid: 254
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,22.5
+ parent: 1
+ - uid: 255
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,23.5
+ parent: 1
+ - uid: 275
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,22.5
+ parent: 1
+ - uid: 276
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,22.5
+ parent: 1
+ - uid: 278
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,23.5
+ parent: 1
+ - uid: 281
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,23.5
+ parent: 1
+ - uid: 313
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,22.5
+ parent: 1
+ - uid: 964
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,13.5
+ parent: 1
+ - uid: 965
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,12.5
+ parent: 1
+ - uid: 966
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,11.5
+ parent: 1
+ - uid: 967
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,10.5
+ parent: 1
+ - proto: CarpetSBlue
+ entities:
+ - uid: 646
+ components:
+ - type: Transform
+ pos: 0.5,9.5
+ parent: 1
+ - proto: Chair
+ entities:
+ - uid: 981
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,15.5
+ parent: 1
+ - proto: ChairOfficeDark
+ entities:
+ - uid: 1042
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,6.5
+ parent: 1
+ - uid: 1043
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,6.5
+ parent: 1
+ - proto: ChairPilotSeat
+ entities:
+ - uid: 329
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,20.5
+ parent: 1
+ - proto: ClosetJanitorFilled
+ entities:
+ - uid: 1015
+ components:
+ - type: Transform
+ pos: 5.5,15.5
+ parent: 1
+ - proto: ClosetL3ScienceFilled
+ entities:
+ - uid: 435
+ components:
+ - type: Transform
+ pos: 3.5,6.5
+ parent: 1
+ - proto: ClosetRadiationSuitFilled
+ entities:
+ - uid: 459
+ components:
+ - type: Transform
+ pos: 2.5,6.5
+ parent: 1
+ - proto: ClosetWallEmergencyFilledRandom
+ entities:
+ - uid: 1017
+ components:
+ - type: Transform
+ pos: -6.5,25.5
+ parent: 1
+ - proto: ClosetWallFireFilledRandom
+ entities:
+ - uid: 1013
+ components:
+ - type: Transform
+ pos: 5.5,20.5
+ parent: 1
+ - proto: ClosetWallMaintenanceFilledRandom
+ entities:
+ - uid: 1009
+ components:
+ - type: Transform
+ pos: -5.5,25.5
+ parent: 1
+ - uid: 1010
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,7.5
+ parent: 1
+ - proto: ClothingHeadHatBeretEngineering
+ entities:
+ - uid: 1018
+ components:
+ - type: Transform
+ pos: -8.281233,24.312689
+ parent: 1
+ - proto: ClothingHeadHatBeretRND
+ entities:
+ - uid: 963
+ components:
+ - type: Transform
+ pos: -6.0664554,4.706133
+ parent: 1
+ - proto: ComputerPowerMonitoring
+ entities:
+ - uid: 436
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,3.5
+ parent: 1
+ - proto: ComputerRadar
+ entities:
+ - uid: 327
+ components:
+ - type: Transform
+ pos: 1.5,21.5
+ parent: 1
+ - proto: ComputerShuttle
+ entities:
+ - uid: 326
+ components:
+ - type: Transform
+ pos: 0.5,21.5
+ parent: 1
+ - proto: ComputerStationRecords
+ entities:
+ - uid: 328
+ components:
+ - type: Transform
+ pos: -0.5,21.5
+ parent: 1
+ - proto: ComputerTabletopAnalysisConsole
+ entities:
+ - uid: 1038
+ components:
+ - type: Transform
+ pos: -6.5,7.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 348:
+ - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver
+ - proto: ComputerTabletopResearchAndDevelopment
+ entities:
+ - uid: 1037
+ components:
+ - type: Transform
+ pos: -5.5,7.5
+ parent: 1
+ - proto: CrateArtifactContainer
+ entities:
+ - uid: 403
+ components:
+ - type: Transform
+ pos: 5.5,4.5
+ parent: 1
+ - type: Lock
+ locked: False
+ - uid: 404
+ components:
+ - type: Transform
+ pos: 4.5,4.5
+ parent: 1
+ - type: Lock
+ locked: False
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14923
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - proto: CrateEmptySpawner
+ entities:
+ - uid: 978
+ components:
+ - type: Transform
+ pos: -8.5,22.5
+ parent: 1
+ - proto: CrateTrashCart
+ entities:
+ - uid: 915
+ components:
+ - type: Transform
+ pos: -4.5,13.5
+ parent: 1
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.4,-0.4
+ - 0.4,-0.4
+ - 0.4,0.29
+ - -0.4,0.29
+ mask:
+ - Impassable
+ - LowImpassable
+ layer:
+ - BulletImpassable
+ - Opaque
+ density: 50
+ hard: True
+ restitution: 0
+ friction: 0.4
+ - type: EntityStorage
+ open: True
+ removedMasks: 20
+ - type: PlaceableSurface
+ isPlaceable: True
+ - proto: DefibrillatorCabinetFilled
+ entities:
+ - uid: 414
+ components:
+ - type: Transform
+ pos: -1.5,7.5
+ parent: 1
+ - proto: DisposalBend
+ entities:
+ - uid: 803
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,2.5
+ parent: 1
+ - uid: 939
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,12.5
+ parent: 1
+ - proto: DisposalJunction
+ entities:
+ - uid: 945
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,8.5
+ parent: 1
+ - proto: DisposalPipe
+ entities:
+ - uid: 645
+ components:
+ - type: Transform
+ pos: -0.5,5.5
+ parent: 1
+ - uid: 804
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,3.5
+ parent: 1
+ - uid: 837
+ components:
+ - type: Transform
+ pos: -0.5,4.5
+ parent: 1
+ - uid: 923
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,15.5
+ parent: 1
+ - uid: 924
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,15.5
+ parent: 1
+ - uid: 925
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,15.5
+ parent: 1
+ - uid: 926
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,15.5
+ parent: 1
+ - uid: 929
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,15.5
+ parent: 1
+ - uid: 930
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,15.5
+ parent: 1
+ - uid: 931
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,15.5
+ parent: 1
+ - uid: 932
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,15.5
+ parent: 1
+ - uid: 933
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,15.5
+ parent: 1
+ - uid: 934
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,15.5
+ parent: 1
+ - uid: 935
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,12.5
+ parent: 1
+ - uid: 936
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,12.5
+ parent: 1
+ - uid: 937
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,12.5
+ parent: 1
+ - uid: 940
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,14.5
+ parent: 1
+ - uid: 941
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,13.5
+ parent: 1
+ - uid: 942
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,11.5
+ parent: 1
+ - uid: 943
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,10.5
+ parent: 1
+ - uid: 944
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,9.5
+ parent: 1
+ - uid: 946
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,7.5
+ parent: 1
+ - uid: 947
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,6.5
+ parent: 1
+ - uid: 949
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,8.5
+ parent: 1
+ - uid: 950
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,8.5
+ parent: 1
+ - uid: 951
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,8.5
+ parent: 1
+ - uid: 952
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,8.5
+ parent: 1
+ - uid: 953
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,8.5
+ parent: 1
+ - proto: DisposalTrunk
+ entities:
+ - uid: 802
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,2.5
+ parent: 1
+ - uid: 914
+ components:
+ - type: Transform
+ pos: -4.5,13.5
+ parent: 1
+ - uid: 922
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,15.5
+ parent: 1
+ - uid: 928
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,15.5
+ parent: 1
+ - uid: 948
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,8.5
+ parent: 1
+ - proto: DisposalUnit
+ entities:
+ - uid: 801
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 1
+ - uid: 918
+ components:
+ - type: Transform
+ pos: -5.5,15.5
+ parent: 1
+ - uid: 919
+ components:
+ - type: Transform
+ pos: 6.5,15.5
+ parent: 1
+ - uid: 920
+ components:
+ - type: Transform
+ pos: 5.5,8.5
+ parent: 1
+ - proto: DisposalYJunction
+ entities:
+ - uid: 927
+ components:
+ - type: Transform
+ pos: -0.5,15.5
+ parent: 1
+ - uid: 938
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,12.5
+ parent: 1
+ - proto: DrinkGlass
+ entities:
+ - uid: 480
+ components:
+ - type: Transform
+ pos: 6.407689,11.024149
+ parent: 1
+ - uid: 481
+ components:
+ - type: Transform
+ pos: 6.687379,11.111562
+ parent: 1
+ - uid: 482
+ components:
+ - type: Transform
+ pos: 6.8447046,10.954219
+ parent: 1
+ - uid: 483
+ components:
+ - type: Transform
+ pos: 6.565015,10.936736
+ parent: 1
+ - proto: DrinkVodkaBottleFull
+ entities:
+ - uid: 487
+ components:
+ - type: Transform
+ pos: 6.753511,10.66121
+ parent: 1
+ - proto: Dropper
+ entities:
+ - uid: 846
+ components:
+ - type: Transform
+ pos: -6.4767566,4.780698
+ parent: 1
+ - proto: EmergencyLight
+ entities:
+ - uid: 839
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,4.5
+ parent: 1
+ - uid: 840
+ components:
+ - type: Transform
+ pos: 1.5,2.5
+ parent: 1
+ - uid: 841
+ components:
+ - type: Transform
+ pos: -2.5,17.5
+ parent: 1
+ - uid: 842
+ components:
+ - type: Transform
+ pos: 8.5,20.5
+ parent: 1
+ - uid: 843
+ components:
+ - type: Transform
+ pos: -5.5,24.5
+ parent: 1
+ - proto: ExtinguisherCabinetFilled
+ entities:
+ - uid: 829
+ components:
+ - type: Transform
+ pos: -1.5,18.5
+ parent: 1
+ - uid: 830
+ components:
+ - type: Transform
+ pos: -2.5,7.5
+ parent: 1
+ - uid: 831
+ components:
+ - type: Transform
+ pos: 11.5,6.5
+ parent: 1
+ - proto: FaxMachineShip
+ entities:
+ - uid: 330
+ components:
+ - type: Transform
+ pos: -1.5,20.5
+ parent: 1
+ - proto: FireAlarm
+ entities:
+ - uid: 856
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,14.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 851
+ - 852
+ - 853
+ - 848
+ - 828
+ - 847
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 1051
+ components:
+ - type: Transform
+ pos: -4.5,11.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1050
+ - 844
+ - 845
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 1052
+ components:
+ - type: Transform
+ pos: -7.5,17.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 828
+ - 847
+ - 854
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 1053
+ components:
+ - type: Transform
+ pos: 7.5,20.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 855
+ - 848
+ - 849
+ - type: AtmosDevice
+ joinedGrid: 1
+ - proto: FirelockGlass
+ entities:
+ - uid: 828
+ components:
+ - type: Transform
+ pos: -3.5,17.5
+ parent: 1
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ deviceLists:
+ - 856
+ - 1052
+ - uid: 844
+ components:
+ - type: Transform
+ pos: -2.5,6.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 838
+ - 1051
+ - uid: 845
+ components:
+ - type: Transform
+ pos: -2.5,5.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 838
+ - 1051
+ - uid: 847
+ components:
+ - type: Transform
+ pos: -3.5,16.5
+ parent: 1
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ deviceLists:
+ - 856
+ - 1052
+ - uid: 848
+ components:
+ - type: Transform
+ pos: 4.5,17.5
+ parent: 1
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ deviceLists:
+ - 856
+ - 1053
+ - uid: 849
+ components:
+ - type: Transform
+ pos: 4.5,16.5
+ parent: 1
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ deviceLists:
+ - 1053
+ - uid: 850
+ components:
+ - type: Transform
+ pos: 0.5,18.5
+ parent: 1
+ - uid: 851
+ components:
+ - type: Transform
+ pos: -0.5,14.5
+ parent: 1
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ deviceLists:
+ - 856
+ - uid: 852
+ components:
+ - type: Transform
+ pos: 2.5,14.5
+ parent: 1
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ deviceLists:
+ - 856
+ - uid: 853
+ components:
+ - type: Transform
+ pos: 3.5,14.5
+ parent: 1
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ deviceLists:
+ - 856
+ - uid: 854
+ components:
+ - type: Transform
+ pos: -7.5,21.5
+ parent: 1
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ deviceLists:
+ - 1052
+ - uid: 855
+ components:
+ - type: Transform
+ pos: 6.5,20.5
+ parent: 1
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ deviceLists:
+ - 1053
+ - uid: 1050
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,6.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 838
+ - 1051
+ - proto: FoodBoxDonkpocketPizza
+ entities:
+ - uid: 11
+ components:
+ - type: Transform
+ pos: 6.6362467,11.607235
+ parent: 1
+ - proto: GasPassiveVent
+ entities:
+ - uid: 351
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,9.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 352
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,10.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 716
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,14.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 717
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,14.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - proto: GasPipeBend
+ entities:
+ - uid: 619
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 699
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 712
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 749
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 750
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 795
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 807
+ components:
+ - type: Transform
+ pos: -1.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 813
+ components:
+ - type: Transform
+ pos: 5.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 955
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 956
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - proto: GasPipeFourway
+ entities:
+ - uid: 673
+ components:
+ - type: Transform
+ pos: -0.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 957
+ components:
+ - type: Transform
+ pos: -3.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - proto: GasPipeStraight
+ entities:
+ - uid: 18
+ components:
+ - type: Transform
+ pos: -7.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19
+ components:
+ - type: Transform
+ pos: 8.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 245
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 346
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 347
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 355
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,10.5
+ parent: 1
+ - uid: 356
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,10.5
+ parent: 1
+ - uid: 357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,10.5
+ parent: 1
+ - uid: 358
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,9.5
+ parent: 1
+ - uid: 359
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,9.5
+ parent: 1
+ - uid: 360
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,9.5
+ parent: 1
+ - uid: 391
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 675
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 676
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 677
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 678
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 680
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 681
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 682
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 683
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 684
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 685
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 687
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 688
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 689
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 693
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,14.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 695
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 696
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 697
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 700
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 701
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 702
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 703
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 704
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 708
+ components:
+ - type: Transform
+ pos: 6.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 709
+ components:
+ - type: Transform
+ pos: 6.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 710
+ components:
+ - type: Transform
+ pos: 6.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 711
+ components:
+ - type: Transform
+ pos: 6.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 713
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 714
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 715
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 720
+ components:
+ - type: Transform
+ pos: 8.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 721
+ components:
+ - type: Transform
+ pos: 8.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 722
+ components:
+ - type: Transform
+ pos: 8.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 723
+ components:
+ - type: Transform
+ pos: 8.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 725
+ components:
+ - type: Transform
+ pos: -7.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 726
+ components:
+ - type: Transform
+ pos: 8.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 731
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 732
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 735
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 736
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 737
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 738
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 740
+ components:
+ - type: Transform
+ pos: 3.5,10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 741
+ components:
+ - type: Transform
+ pos: 3.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 743
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 744
+ components:
+ - type: Transform
+ pos: 3.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 745
+ components:
+ - type: Transform
+ pos: 3.5,14.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 746
+ components:
+ - type: Transform
+ pos: 3.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 748
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 751
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 755
+ components:
+ - type: Transform
+ pos: 4.5,7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 756
+ components:
+ - type: Transform
+ pos: 3.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 757
+ components:
+ - type: Transform
+ pos: 3.5,7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 758
+ components:
+ - type: Transform
+ pos: 3.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 759
+ components:
+ - type: Transform
+ pos: 4.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 760
+ components:
+ - type: Transform
+ pos: -0.5,14.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 761
+ components:
+ - type: Transform
+ pos: -0.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 763
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 765
+ components:
+ - type: Transform
+ pos: -0.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 766
+ components:
+ - type: Transform
+ pos: -0.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 767
+ components:
+ - type: Transform
+ pos: -0.5,7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 772
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 773
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 774
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 777
+ components:
+ - type: Transform
+ pos: -7.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 778
+ components:
+ - type: Transform
+ pos: -7.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 779
+ components:
+ - type: Transform
+ pos: -7.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 780
+ components:
+ - type: Transform
+ pos: -7.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 783
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 785
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 786
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 787
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 788
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,14.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 789
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 790
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 791
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 792
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 793
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 794
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 797
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 798
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 799
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 805
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 806
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 958
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1036
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1054
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - proto: GasPipeTJunction
+ entities:
+ - uid: 674
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 679
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 686
+ components:
+ - type: Transform
+ pos: 2.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 694
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 698
+ components:
+ - type: Transform
+ pos: 4.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 707
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 727
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 728
+ components:
+ - type: Transform
+ pos: 7.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 739
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 742
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 747
+ components:
+ - type: Transform
+ pos: 3.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 762
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 764
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 768
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 781
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 784
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 796
+ components:
+ - type: Transform
+ pos: -3.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 954
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - proto: GasPort
+ entities:
+ - uid: 353
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,10.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 354
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,9.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 509
+ components:
+ - type: Transform
+ pos: -3.5,13.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - proto: GasPressurePump
+ entities:
+ - uid: 349
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,10.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 350
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,9.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 510
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,12.5
+ parent: 1
+ - type: GasPressurePump
+ enabled: True
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - proto: GasVentPump
+ entities:
+ - uid: 389
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,6.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 838
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 642
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,15.5
+ parent: 1
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ deviceLists:
+ - 835
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 655
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,16.5
+ parent: 1
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ deviceLists:
+ - 835
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 672
+ components:
+ - type: Transform
+ pos: -5.5,22.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 690
+ components:
+ - type: Transform
+ pos: -0.5,19.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 692
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,8.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 705
+ components:
+ - type: Transform
+ pos: 6.5,21.5
+ parent: 1
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ deviceLists:
+ - 835
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 706
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,19.5
+ parent: 1
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ deviceLists:
+ - 835
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 754
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,5.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 769
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,6.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 770
+ components:
+ - type: Transform
+ pos: -4.5,7.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 838
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 809
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,10.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 814
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,12.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - proto: GasVentScrubber
+ entities:
+ - uid: 392
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,4.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 838
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 719
+ components:
+ - type: Transform
+ pos: 8.5,22.5
+ parent: 1
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ deviceLists:
+ - 835
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 729
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,16.5
+ parent: 1
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ deviceLists:
+ - 835
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 730
+ components:
+ - type: Transform
+ pos: 1.5,19.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 733
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,12.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 734
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,9.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 752
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,16.5
+ parent: 1
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ deviceLists:
+ - 835
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 753
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,5.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 775
+ components:
+ - type: Transform
+ pos: -7.5,22.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 776
+ components:
+ - type: Transform
+ pos: -4.5,19.5
+ parent: 1
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ deviceLists:
+ - 835
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 800
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,8.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 808
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,4.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1027
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,4.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - proto: GravityGeneratorMini
+ entities:
+ - uid: 223
+ components:
+ - type: Transform
+ pos: 9.5,10.5
+ parent: 1
+ - proto: Grille
+ entities:
+ - uid: 3
+ components:
+ - type: Transform
+ pos: -2.5,21.5
+ parent: 1
+ - uid: 5
+ components:
+ - type: Transform
+ pos: 1.5,22.5
+ parent: 1
+ - uid: 6
+ components:
+ - type: Transform
+ pos: 0.5,22.5
+ parent: 1
+ - uid: 7
+ components:
+ - type: Transform
+ pos: -0.5,22.5
+ parent: 1
+ - uid: 9
+ components:
+ - type: Transform
+ pos: -1.5,22.5
+ parent: 1
+ - uid: 15
+ components:
+ - type: Transform
+ pos: 3.5,21.5
+ parent: 1
+ - uid: 16
+ components:
+ - type: Transform
+ pos: 2.5,22.5
+ parent: 1
+ - uid: 25
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,13.5
+ parent: 1
+ - uid: 26
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,13.5
+ parent: 1
+ - uid: 70
+ components:
+ - type: Transform
+ pos: 8.5,15.5
+ parent: 1
+ - uid: 95
+ components:
+ - type: Transform
+ pos: 9.5,15.5
+ parent: 1
+ - uid: 127
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,9.5
+ parent: 1
+ - uid: 152
+ components:
+ - type: Transform
+ pos: -7.5,7.5
+ parent: 1
+ - uid: 155
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,9.5
+ parent: 1
+ - uid: 156
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,10.5
+ parent: 1
+ - uid: 163
+ components:
+ - type: Transform
+ pos: -7.5,15.5
+ parent: 1
+ - uid: 164
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 1
+ - uid: 176
+ components:
+ - type: Transform
+ pos: -8.5,15.5
+ parent: 1
+ - uid: 180
+ components:
+ - type: Transform
+ pos: 9.5,11.5
+ parent: 1
+ - uid: 181
+ components:
+ - type: Transform
+ pos: 8.5,11.5
+ parent: 1
+ - uid: 208
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 1
+ - uid: 211
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 1
+ - uid: 303
+ components:
+ - type: Transform
+ pos: 10.5,19.5
+ parent: 1
+ - uid: 305
+ components:
+ - type: Transform
+ pos: -9.5,19.5
+ parent: 1
+ - uid: 338
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,10.5
+ parent: 1
+ - uid: 340
+ components:
+ - type: Transform
+ pos: -10.5,10.5
+ parent: 1
+ - uid: 486
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,21.5
+ parent: 1
+ - uid: 508
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,4.5
+ parent: 1
+ - uid: 641
+ components:
+ - type: Transform
+ pos: -7.5,5.5
+ parent: 1
+ - uid: 718
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,21.5
+ parent: 1
+ - uid: 959
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,7.5
+ parent: 1
+ - uid: 1039
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,8.5
+ parent: 1
+ - proto: GunSafeShuttleCaptain
+ entities:
+ - uid: 409
+ components:
+ - type: Transform
+ pos: 2.5,20.5
+ parent: 1
+ - proto: Gyroscope
+ entities:
+ - uid: 833
+ components:
+ - type: Transform
+ pos: 9.5,6.5
+ parent: 1
+ - uid: 974
+ components:
+ - type: Transform
+ pos: 9.5,9.5
+ parent: 1
+ - proto: HandLabeler
+ entities:
+ - uid: 652
+ components:
+ - type: Transform
+ pos: -6.1410556,4.47001
+ parent: 1
+ - proto: HospitalCurtainsOpen
+ entities:
+ - uid: 274
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,24.5
+ parent: 1
+ - uid: 277
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,24.5
+ parent: 1
+ - uid: 280
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,24.5
+ parent: 1
+ - uid: 325
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,24.5
+ parent: 1
+ - uid: 434
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,16.5
+ parent: 1
+ - uid: 654
+ components:
+ - type: Transform
+ pos: 0.5,8.5
+ parent: 1
+ - proto: IntercomCommon
+ entities:
+ - uid: 1026
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,19.5
+ parent: 1
+ - uid: 1028
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,11.5
+ parent: 1
+ - proto: IntercomScience
+ entities:
+ - uid: 961
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,8.5
+ parent: 1
+ - proto: JanitorialTrolley
+ entities:
+ - uid: 982
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,16.5
+ parent: 1
+ - proto: KitchenReagentGrinder
+ entities:
+ - uid: 916
+ components:
+ - type: Transform
+ pos: -5.5,4.5
+ parent: 1
+ - proto: Lamp
+ entities:
+ - uid: 822
+ components:
+ - type: Transform
+ pos: -1.5009942,19.849262
+ parent: 1
+ - proto: LampGold
+ entities:
+ - uid: 980
+ components:
+ - type: Transform
+ pos: -2.6181068,15.859153
+ parent: 1
+ - proto: LargeBeaker
+ entities:
+ - uid: 960
+ components:
+ - type: Transform
+ pos: -6.6508236,4.5818577
+ parent: 1
+ - proto: LockerCaptainFilled
+ entities:
+ - uid: 406
+ components:
+ - type: Transform
+ pos: 2.5,19.5
+ parent: 1
+ - proto: LockerEngineerFilled
+ entities:
+ - uid: 296
+ components:
+ - type: Transform
+ pos: 7.238914,7.4961095
+ parent: 1
+ - proto: MachineArtifactAnalyzer
+ entities:
+ - uid: 348
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,9.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 1038
+ - proto: MachineArtifactCrusher
+ entities:
+ - uid: 1035
+ components:
+ - type: Transform
+ pos: -8.5,4.5
+ parent: 1
+ - proto: MiningDrill
+ entities:
+ - uid: 464
+ components:
+ - type: Transform
+ pos: -8.629296,24.431751
+ parent: 1
+ - uid: 465
+ components:
+ - type: Transform
+ pos: -8.437011,24.624058
+ parent: 1
+ - proto: OreBag
+ entities:
+ - uid: 462
+ components:
+ - type: Transform
+ pos: -6.5665894,24.484198
+ parent: 1
+ - uid: 463
+ components:
+ - type: Transform
+ pos: -6.4267445,24.624058
+ parent: 1
+ - proto: OreProcessor
+ entities:
+ - uid: 426
+ components:
+ - type: Transform
+ pos: -7.5,24.5
+ parent: 1
+ - proto: PaintingFireaxeCabinet
+ entities:
+ - uid: 1012
+ components:
+ - type: Transform
+ pos: -4.5,3.5
+ parent: 1
+ - proto: PlasmaReinforcedWindowDirectional
+ entities:
+ - uid: 112
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,10.5
+ parent: 1
+ - uid: 342
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,10.5
+ parent: 1
+ - uid: 343
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,9.5
+ parent: 1
+ - proto: PosterContrabandVoteWeh
+ entities:
+ - uid: 314
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,18.5
+ parent: 1
+ - proto: PosterLegitScience
+ entities:
+ - uid: 467
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,3.5
+ parent: 1
+ - proto: PottedPlantRandom
+ entities:
+ - uid: 40
+ components:
+ - type: Transform
+ pos: -8.5,19.5
+ parent: 1
+ - uid: 812
+ components:
+ - type: Transform
+ pos: 1.5,13.5
+ parent: 1
+ - uid: 968
+ components:
+ - type: Transform
+ pos: 7.5,17.5
+ parent: 1
+ - uid: 969
+ components:
+ - type: Transform
+ pos: -4.5,15.5
+ parent: 1
+ - uid: 971
+ components:
+ - type: Transform
+ pos: 0.5,6.5
+ parent: 1
+ - uid: 973
+ components:
+ - type: Transform
+ pos: 2.5,2.5
+ parent: 1
+ - proto: PottedPlantRandomPlastic
+ entities:
+ - uid: 1011
+ components:
+ - type: Transform
+ pos: 4.5,19.5
+ parent: 1
+ - proto: PowerCellRecharger
+ entities:
+ - uid: 1008
+ components:
+ - type: Transform
+ pos: -4.5,18.5
+ parent: 1
+ - proto: Poweredlight
+ entities:
+ - uid: 488
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,13.5
+ parent: 1
+ - uid: 489
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,10.5
+ parent: 1
+ - uid: 490
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,10.5
+ parent: 1
+ - uid: 491
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,4.5
+ parent: 1
+ - uid: 492
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,7.5
+ parent: 1
+ - uid: 493
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,5.5
+ parent: 1
+ - uid: 494
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,7.5
+ parent: 1
+ - uid: 495
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,22.5
+ parent: 1
+ - uid: 496
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 7.5,19.5
+ parent: 1
+ - uid: 497
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,19.5
+ parent: 1
+ - uid: 498
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -0.5,17.5
+ parent: 1
+ - uid: 499
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -6.5,20.5
+ parent: 1
+ - uid: 500
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -8.5,24.5
+ parent: 1
+ - uid: 501
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,16.5
+ parent: 1
+ - uid: 502
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,16.5
+ parent: 1
+ - uid: 503
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -2.5,13.5
+ parent: 1
+ - uid: 504
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,5.5
+ parent: 1
+ - proto: PoweredSmallLight
+ entities:
+ - uid: 823
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,5.5
+ parent: 1
+ - uid: 824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,5.5
+ parent: 1
+ - uid: 825
+ components:
+ - type: Transform
+ pos: 9.5,16.5
+ parent: 1
+ - proto: Protolathe
+ entities:
+ - uid: 1044
+ components:
+ - type: Transform
+ pos: -3.5,4.5
+ parent: 1
+ - proto: Rack
+ entities:
+ - uid: 61
+ components:
+ - type: Transform
+ pos: 8.5,6.5
+ parent: 1
+ - uid: 460
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,24.5
+ parent: 1
+ - uid: 461
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,24.5
+ parent: 1
+ - proto: RagItem
+ entities:
+ - uid: 484
+ components:
+ - type: Transform
+ pos: 4.4323835,11.985687
+ parent: 1
+ - proto: Railing
+ entities:
+ - uid: 816
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,4.5
+ parent: 1
+ - uid: 819
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,4.5
+ parent: 1
+ - proto: RailingCorner
+ entities:
+ - uid: 817
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,5.5
+ parent: 1
+ - uid: 818
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,3.5
+ parent: 1
+ - uid: 820
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,5.5
+ parent: 1
+ - uid: 821
+ components:
+ - type: Transform
+ pos: 12.5,3.5
+ parent: 1
+ - proto: RandomDrinkGlass
+ entities:
+ - uid: 17
+ components:
+ - type: Transform
+ pos: 4.5,12.5
+ parent: 1
+ - proto: RandomFoodSingle
+ entities:
+ - uid: 4
+ components:
+ - type: Transform
+ pos: 4.5,13.5
+ parent: 1
+ - proto: RandomPainting
+ entities:
+ - uid: 909
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,25.5
+ parent: 1
+ - uid: 910
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,23.5
+ parent: 1
+ - uid: 912
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,12.5
+ parent: 1
+ - proto: RandomPosterAny
+ entities:
+ - uid: 984
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,21.5
+ parent: 1
+ - uid: 1002
+ components:
+ - type: Transform
+ pos: -3.5,20.5
+ parent: 1
+ - uid: 1003
+ components:
+ - type: Transform
+ pos: 0.5,12.5
+ parent: 1
+ - uid: 1005
+ components:
+ - type: Transform
+ pos: 3.5,7.5
+ parent: 1
+ - uid: 1006
+ components:
+ - type: Transform
+ pos: 1.5,3.5
+ parent: 1
+ - uid: 1007
+ components:
+ - type: Transform
+ pos: -2.5,9.5
+ parent: 1
+ - uid: 1048
+ components:
+ - type: Transform
+ pos: -9.5,2.5
+ parent: 1
+ - proto: ReinforcedPlasmaWindow
+ entities:
+ - uid: 110
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,10.5
+ parent: 1
+ - uid: 150
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,10.5
+ parent: 1
+ - uid: 153
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,9.5
+ parent: 1
+ - uid: 244
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,7.5
+ parent: 1
+ - uid: 1029
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,8.5
+ parent: 1
+ - proto: ReinforcedWindow
+ entities:
+ - uid: 213
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 1
+ - uid: 300
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 1
+ - uid: 301
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 1
+ - proto: ResearchAndDevelopmentServer
+ entities:
+ - uid: 1004
+ components:
+ - type: Transform
+ pos: -2.5,13.5
+ parent: 1
+ - proto: ShuttleWindow
+ entities:
+ - uid: 8
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,22.5
+ parent: 1
+ - uid: 12
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,22.5
+ parent: 1
+ - uid: 13
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,22.5
+ parent: 1
+ - uid: 14
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,22.5
+ parent: 1
+ - uid: 20
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,22.5
+ parent: 1
+ - uid: 21
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,15.5
+ parent: 1
+ - uid: 22
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,15.5
+ parent: 1
+ - uid: 23
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,11.5
+ parent: 1
+ - uid: 30
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,10.5
+ parent: 1
+ - uid: 31
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,15.5
+ parent: 1
+ - uid: 42
+ components:
+ - type: Transform
+ pos: -9.5,19.5
+ parent: 1
+ - uid: 76
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,9.5
+ parent: 1
+ - uid: 94
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,13.5
+ parent: 1
+ - uid: 184
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,13.5
+ parent: 1
+ - uid: 186
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,15.5
+ parent: 1
+ - uid: 239
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,11.5
+ parent: 1
+ - uid: 251
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,22.5
+ parent: 1
+ - uid: 319
+ components:
+ - type: Transform
+ pos: 10.5,19.5
+ parent: 1
+ - uid: 371
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,21.5
+ parent: 1
+ - uid: 644
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,4.5
+ parent: 1
+ - uid: 724
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,21.5
+ parent: 1
+ - uid: 907
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,21.5
+ parent: 1
+ - uid: 908
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,21.5
+ parent: 1
+ - uid: 962
+ components:
+ - type: Transform
+ pos: -7.5,5.5
+ parent: 1
+ - uid: 1024
+ components:
+ - type: Transform
+ pos: -7.5,7.5
+ parent: 1
+ - proto: SignalButton
+ entities:
+ - uid: 64
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,21.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 421:
+ - Pressed: Toggle
+ 420:
+ - Pressed: Toggle
+ 419:
+ - Pressed: Toggle
+ 424:
+ - Pressed: Toggle
+ 423:
+ - Pressed: Toggle
+ 422:
+ - Pressed: Toggle
+ - uid: 1049
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,6.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 151:
+ - Pressed: Toggle
+ - proto: SignAnomaly
+ entities:
+ - uid: 417
+ components:
+ - type: Transform
+ pos: -6.5,8.5
+ parent: 1
+ - proto: SignBar
+ entities:
+ - uid: 551
+ components:
+ - type: Transform
+ pos: 1.5,14.5
+ parent: 1
+ - proto: SignDirectionalBar
+ entities:
+ - uid: 469
+ components:
+ - type: Transform
+ pos: 1.5386099,18.472553
+ parent: 1
+ - proto: SignDirectionalSalvage
+ entities:
+ - uid: 466
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5064895,18.505243
+ parent: 1
+ - proto: SignDirectionalSci
+ entities:
+ - uid: 468
+ components:
+ - type: Transform
+ pos: -0.5010574,18.305386
+ parent: 1
+ - proto: SignJanitor
+ entities:
+ - uid: 1014
+ components:
+ - type: Transform
+ pos: 7.5,15.5
+ parent: 1
+ - proto: SignRND
+ entities:
+ - uid: 415
+ components:
+ - type: Transform
+ pos: 0.5,11.5
+ parent: 1
+ - proto: SignScience
+ entities:
+ - uid: 416
+ components:
+ - type: Transform
+ pos: -1.5,11.5
+ parent: 1
+ - proto: SignSecureMed
+ entities:
+ - uid: 1019
+ components:
+ - type: Transform
+ pos: -7.5,9.5
+ parent: 1
+ - proto: SignShipDock
+ entities:
+ - uid: 306
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,21.5
+ parent: 1
+ - uid: 307
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,17.5
+ parent: 1
+ - uid: 308
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,21.5
+ parent: 1
+ - uid: 309
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,17.5
+ parent: 1
+ - uid: 310
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,2.5
+ parent: 1
+ - uid: 311
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,2.5
+ parent: 1
+ - proto: SignShock
+ entities:
+ - uid: 471
+ components:
+ - type: Transform
+ pos: 10.5,2.5
+ parent: 1
+ - uid: 472
+ components:
+ - type: Transform
+ pos: 11.5,7.5
+ parent: 1
+ - proto: SignSmoking
+ entities:
+ - uid: 470
+ components:
+ - type: Transform
+ pos: 10.5,10.5
+ parent: 1
+ - uid: 1021
+ components:
+ - type: Transform
+ pos: -3.5,11.5
+ parent: 1
+ - proto: SignSpace
+ entities:
+ - uid: 241
+ components:
+ - type: Transform
+ pos: 11.5,5.5
+ parent: 1
+ - uid: 257
+ components:
+ - type: Transform
+ pos: -10.5,3.5
+ parent: 1
+ - uid: 292
+ components:
+ - type: Transform
+ pos: -10.5,5.5
+ parent: 1
+ - uid: 293
+ components:
+ - type: Transform
+ pos: 11.5,3.5
+ parent: 1
+ - uid: 1032
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,8.5
+ parent: 1
+ - proto: Sink
+ entities:
+ - uid: 430
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,9.5
+ parent: 1
+ - proto: SMESBasic
+ entities:
+ - uid: 57
+ components:
+ - type: Transform
+ pos: 9.5,8.5
+ parent: 1
+ - uid: 234
+ components:
+ - type: Transform
+ pos: 10.5,8.5
+ parent: 1
+ - proto: Soap
+ entities:
+ - uid: 976
+ components:
+ - type: Transform
+ pos: 0.50327635,8.438866
+ parent: 1
+ - proto: SpawnPointBartender
+ entities:
+ - uid: 1022
+ components:
+ - type: Transform
+ pos: 5.5,11.5
+ parent: 1
+ - proto: SpawnPointCaptain
+ entities:
+ - uid: 408
+ components:
+ - type: Transform
+ pos: 0.5,19.5
+ parent: 1
+ - proto: SpawnPointLatejoin
+ entities:
+ - uid: 588
+ components:
+ - type: Transform
+ pos: 3.5,9.5
+ parent: 1
+ - proto: SpawnPointSalvageSpecialist
+ entities:
+ - uid: 1023
+ components:
+ - type: Transform
+ pos: -7.5,23.5
+ parent: 1
+ - proto: SpawnPointScientist
+ entities:
+ - uid: 1033
+ components:
+ - type: Transform
+ pos: -4.5,6.5
+ parent: 1
+ - proto: SpawnPointStationEngineer
+ entities:
+ - uid: 1025
+ components:
+ - type: Transform
+ pos: 8.5,8.5
+ parent: 1
+ - proto: StoolBar
+ entities:
+ - uid: 547
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,12.5
+ parent: 1
+ - uid: 586
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,10.5
+ parent: 1
+ - uid: 592
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,11.5
+ parent: 1
+ - uid: 599
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,13.5
+ parent: 1
+ - proto: StorageCanister
+ entities:
+ - uid: 393
+ components:
+ - type: Transform
+ pos: -3.5,8.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - proto: SubstationBasic
+ entities:
+ - uid: 44
+ components:
+ - type: Transform
+ pos: 10.5,9.5
+ parent: 1
+ - proto: SuitStorageBasic
+ entities:
+ - uid: 407
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 1
+ - proto: SuitStorageEVA
+ entities:
+ - uid: 317
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 1
+ - proto: SuitStorageRD
+ entities:
+ - uid: 405
+ components:
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 1
+ - proto: SuitStorageSalv
+ entities:
+ - uid: 432
+ components:
+ - type: Transform
+ pos: -5.5,20.5
+ parent: 1
+ - uid: 1000
+ components:
+ - type: Transform
+ pos: -6.5,20.5
+ parent: 1
+ - proto: SuitStorageWallmountEVAEmergency
+ entities:
+ - uid: 320
+ components:
+ - type: Transform
+ pos: -10.5,21.5
+ parent: 1
+ - type: Physics
+ canCollide: False
+ - uid: 321
+ components:
+ - type: Transform
+ pos: 11.5,21.5
+ parent: 1
+ - type: Physics
+ canCollide: False
+ - uid: 832
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,4.5
+ parent: 1
+ - type: Physics
+ canCollide: False
+ - proto: TableGlass
+ entities:
+ - uid: 322
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,20.5
+ parent: 1
+ - uid: 324
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,19.5
+ parent: 1
+ - uid: 917
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,4.5
+ parent: 1
+ - uid: 1047
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,4.5
+ parent: 1
+ - proto: TableReinforced
+ entities:
+ - uid: 221
+ components:
+ - type: Transform
+ pos: 8.5,10.5
+ parent: 1
+ - uid: 396
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,7.5
+ parent: 1
+ - uid: 979
+ components:
+ - type: Transform
+ pos: -2.5,15.5
+ parent: 1
+ - uid: 1001
+ components:
+ - type: Transform
+ pos: -4.5,18.5
+ parent: 1
+ - uid: 1020
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,7.5
+ parent: 1
+ - proto: TableWoodReinforced
+ entities:
+ - uid: 456
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,11.5
+ parent: 1
+ - uid: 474
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,13.5
+ parent: 1
+ - uid: 475
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,12.5
+ parent: 1
+ - uid: 476
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,10.5
+ parent: 1
+ - uid: 477
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,10.5
+ parent: 1
+ - uid: 478
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,11.5
+ parent: 1
+ - proto: Thruster
+ entities:
+ - uid: 32
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,1.5
+ parent: 1
+ - uid: 34
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,1.5
+ parent: 1
+ - uid: 35
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,1.5
+ parent: 1
+ - uid: 36
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,2.5
+ parent: 1
+ - uid: 37
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,1.5
+ parent: 1
+ - uid: 58
+ components:
+ - type: Transform
+ pos: -6.5,26.5
+ parent: 1
+ - uid: 74
+ components:
+ - type: Transform
+ pos: 9.5,27.5
+ parent: 1
+ - uid: 75
+ components:
+ - type: Transform
+ pos: 8.5,26.5
+ parent: 1
+ - uid: 96
+ components:
+ - type: Transform
+ pos: -7.5,26.5
+ parent: 1
+ - uid: 117
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,1.5
+ parent: 1
+ - uid: 118
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,13.5
+ parent: 1
+ - uid: 120
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,13.5
+ parent: 1
+ - uid: 190
+ components:
+ - type: Transform
+ pos: 7.5,26.5
+ parent: 1
+ - uid: 192
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,1.5
+ parent: 1
+ - uid: 193
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,1.5
+ parent: 1
+ - uid: 194
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,1.5
+ parent: 1
+ - uid: 195
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,1.5
+ parent: 1
+ - uid: 196
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,1.5
+ parent: 1
+ - uid: 199
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,2.5
+ parent: 1
+ - uid: 200
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,15.5
+ parent: 1
+ - uid: 201
+ components:
+ - type: Transform
+ pos: -8.5,27.5
+ parent: 1
+ - uid: 217
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,15.5
+ parent: 1
+ - uid: 302
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,14.5
+ parent: 1
+ - uid: 972
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,14.5
+ parent: 1
+ - proto: ToiletEmpty
+ entities:
+ - uid: 433
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,16.5
+ parent: 1
+ - proto: ToolboxElectricalFilled
+ entities:
+ - uid: 1016
+ components:
+ - type: Transform
+ pos: 8.633488,10.665126
+ parent: 1
+ - proto: ToyAi
+ entities:
+ - uid: 1046
+ components:
+ - type: Transform
+ pos: 2.6159043,9.357023
+ parent: 1
+ - proto: ToyFigurineBartender
+ entities:
+ - uid: 810
+ components:
+ - type: Transform
+ pos: 6.42688,10.518995
+ parent: 1
+ - proto: VendingBarDrobe
+ entities:
+ - uid: 323
+ components:
+ - type: Transform
+ pos: 8.5,22.5
+ parent: 1
+ - proto: VendingMachineBooze
+ entities:
+ - uid: 333
+ components:
+ - type: Transform
+ pos: 5.5,13.5
+ parent: 1
+ - proto: VendingMachineCargoDrobe
+ entities:
+ - uid: 291
+ components:
+ - type: Transform
+ pos: 9.5,22.5
+ parent: 1
+ - proto: VendingMachineCigs
+ entities:
+ - uid: 977
+ components:
+ - type: Transform
+ pos: -3.5,19.5
+ parent: 1
+ - proto: VendingMachineCuddlyCritterVend
+ entities:
+ - uid: 243
+ components:
+ - type: Transform
+ pos: 10.5,25.5
+ parent: 1
+ - proto: VendingMachineEngiDrobe
+ entities:
+ - uid: 24
+ components:
+ - type: Transform
+ pos: 10.5,22.5
+ parent: 1
+ - proto: VendingMachineSalvage
+ entities:
+ - uid: 425
+ components:
+ - type: Transform
+ pos: -9.5,25.5
+ parent: 1
+ - proto: VendingMachineSciDrobe
+ entities:
+ - uid: 410
+ components:
+ - type: Transform
+ pos: 5.5,6.5
+ parent: 1
+ - proto: VendingMachineTankDispenserEVA
+ entities:
+ - uid: 316
+ components:
+ - type: Transform
+ pos: -1.5,0.5
+ parent: 1
+ - proto: WallShuttle
+ entities:
+ - uid: 33
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,11.5
+ parent: 1
+ - uid: 38
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 11.5,25.5
+ parent: 1
+ - uid: 39
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 11.5,21.5
+ parent: 1
+ - uid: 41
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 11.5,17.5
+ parent: 1
+ - uid: 46
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -10.5,21.5
+ parent: 1
+ - uid: 47
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -8.5,26.5
+ parent: 1
+ - uid: 50
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -9.5,17.5
+ parent: 1
+ - uid: 54
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,26.5
+ parent: 1
+ - uid: 63
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -9.5,15.5
+ parent: 1
+ - uid: 67
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 11.5,6.5
+ parent: 1
+ - uid: 68
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 6.5,14.5
+ parent: 1
+ - uid: 69
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 10.5,11.5
+ parent: 1
+ - uid: 71
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 6.5,12.5
+ parent: 1
+ - uid: 72
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 7.5,12.5
+ parent: 1
+ - uid: 73
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 7.5,11.5
+ parent: 1
+ - uid: 80
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -6.5,15.5
+ parent: 1
+ - uid: 81
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -6.5,14.5
+ parent: 1
+ - uid: 84
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -10.5,17.5
+ parent: 1
+ - uid: 87
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -9.5,16.5
+ parent: 1
+ - uid: 88
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 7.5,15.5
+ parent: 1
+ - uid: 90
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,10.5
+ parent: 1
+ - uid: 91
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 7.5,14.5
+ parent: 1
+ - uid: 93
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -9.5,27.5
+ parent: 1
+ - uid: 99
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,3.5
+ parent: 1
+ - uid: 100
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,2.5
+ parent: 1
+ - uid: 101
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,3.5
+ parent: 1
+ - uid: 102
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,3.5
+ parent: 1
+ - uid: 103
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -10.5,29.5
+ parent: 1
+ - uid: 104
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -10.5,28.5
+ parent: 1
+ - uid: 105
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -10.5,27.5
+ parent: 1
+ - uid: 106
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -10.5,26.5
+ parent: 1
+ - uid: 107
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -10.5,25.5
+ parent: 1
+ - uid: 108
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -6.5,25.5
+ parent: 1
+ - uid: 109
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -7.5,25.5
+ parent: 1
+ - uid: 111
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -10.5,6.5
+ parent: 1
+ - uid: 113
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 11.5,10.5
+ parent: 1
+ - uid: 114
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 11.5,9.5
+ parent: 1
+ - uid: 115
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 11.5,8.5
+ parent: 1
+ - uid: 116
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -10.5,2.5
+ parent: 1
+ - uid: 119
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 11.5,24.5
+ parent: 1
+ - uid: 121
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -8.5,25.5
+ parent: 1
+ - uid: 123
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 9.5,26.5
+ parent: 1
+ - uid: 124
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,25.5
+ parent: 1
+ - uid: 131
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-0.5
+ parent: 1
+ - uid: 132
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 11.5,29.5
+ parent: 1
+ - uid: 133
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 11.5,5.5
+ parent: 1
+ - uid: 134
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 7.5,25.5
+ parent: 1
+ - uid: 135
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 11.5,3.5
+ parent: 1
+ - uid: 136
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 9.5,2.5
+ parent: 1
+ - uid: 138
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 11.5,1.5
+ parent: 1
+ - uid: 139
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -5.5,14.5
+ parent: 1
+ - uid: 140
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 11.5,2.5
+ parent: 1
+ - uid: 141
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 10.5,2.5
+ parent: 1
+ - uid: 142
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -5.5,2.5
+ parent: 1
+ - uid: 143
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 8.5,2.5
+ parent: 1
+ - uid: 144
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 6.5,2.5
+ parent: 1
+ - uid: 145
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 6.5,1.5
+ parent: 1
+ - uid: 146
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -9.5,2.5
+ parent: 1
+ - uid: 147
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -6.5,2.5
+ parent: 1
+ - uid: 148
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -5.5,1.5
+ parent: 1
+ - uid: 149
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -8.5,2.5
+ parent: 1
+ - uid: 154
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 11.5,7.5
+ parent: 1
+ - uid: 157
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -10.5,1.5
+ parent: 1
+ - uid: 159
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -10.5,3.5
+ parent: 1
+ - uid: 161
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 11.5,23.5
+ parent: 1
+ - uid: 162
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -5.5,12.5
+ parent: 1
+ - uid: 165
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,1.5
+ parent: 1
+ - uid: 166
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,2.5
+ parent: 1
+ - uid: 167
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,2.5
+ parent: 1
+ - uid: 168
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,3.5
+ parent: 1
+ - uid: 169
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,3.5
+ parent: 1
+ - uid: 170
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,3.5
+ parent: 1
+ - uid: 171
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,1.5
+ parent: 1
+ - uid: 172
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,2.5
+ parent: 1
+ - uid: 173
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 10.5,17.5
+ parent: 1
+ - uid: 174
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 10.5,16.5
+ parent: 1
+ - uid: 175
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 10.5,15.5
+ parent: 1
+ - uid: 178
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 5.5,23.5
+ parent: 1
+ - uid: 179
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 5.5,24.5
+ parent: 1
+ - uid: 183
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 9.5,25.5
+ parent: 1
+ - uid: 187
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 10.5,26.5
+ parent: 1
+ - uid: 188
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 8.5,25.5
+ parent: 1
+ - uid: 189
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,25.5
+ parent: 1
+ - uid: 191
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,27.5
+ parent: 1
+ - uid: 197
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 11.5,22.5
+ parent: 1
+ - uid: 198
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -7.5,2.5
+ parent: 1
+ - uid: 202
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 11.5,26.5
+ parent: 1
+ - uid: 203
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 11.5,27.5
+ parent: 1
+ - uid: 204
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 11.5,28.5
+ parent: 1
+ - uid: 207
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-0.5
+ parent: 1
+ - uid: 212
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,0.5
+ parent: 1
+ - uid: 214
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-0.5
+ parent: 1
+ - uid: 215
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,8.5
+ parent: 1
+ - uid: 216
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 7.5,2.5
+ parent: 1
+ - uid: 218
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,0.5
+ parent: 1
+ - uid: 220
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -2.5,20.5
+ parent: 1
+ - uid: 222
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -2.5,19.5
+ parent: 1
+ - uid: 224
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -4.5,20.5
+ parent: 1
+ - uid: 225
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,20.5
+ parent: 1
+ - uid: 226
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,19.5
+ parent: 1
+ - uid: 227
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,20.5
+ parent: 1
+ - uid: 228
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -3.5,20.5
+ parent: 1
+ - uid: 229
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 5.5,20.5
+ parent: 1
+ - uid: 230
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 5.5,22.5
+ parent: 1
+ - uid: 231
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -4.5,21.5
+ parent: 1
+ - uid: 232
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 5.5,21.5
+ parent: 1
+ - uid: 273
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,8.5
+ parent: 1
+ - uid: 332
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -10.5,5.5
+ parent: 1
+ - uid: 334
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,11.5
+ parent: 1
+ - uid: 335
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -10.5,7.5
+ parent: 1
+ - uid: 337
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,8.5
+ parent: 1
+ - uid: 339
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,11.5
+ parent: 1
+ - uid: 341
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,11.5
+ parent: 1
+ - uid: 691
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,11.5
+ parent: 1
+ - uid: 1056
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -11.5,21.5
+ parent: 1
+ - uid: 1057
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -11.5,17.5
+ parent: 1
+ - uid: 1058
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 12.5,21.5
+ parent: 1
+ - uid: 1059
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 12.5,17.5
+ parent: 1
+ - uid: 1060
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -11.5,19.5
+ parent: 1
+ - uid: 1061
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 12.5,19.5
+ parent: 1
+ - proto: WallShuttleDiagonal
+ entities:
+ - uid: 27
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,28.5
+ parent: 1
+ - uid: 28
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,26.5
+ parent: 1
+ - uid: 29
+ components:
+ - type: Transform
+ pos: 5.5,25.5
+ parent: 1
+ - uid: 97
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-0.5
+ parent: 1
+ - uid: 98
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-0.5
+ parent: 1
+ - uid: 125
+ components:
+ - type: Transform
+ pos: 10.5,28.5
+ parent: 1
+ - uid: 128
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,11.5
+ parent: 1
+ - uid: 129
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,16.5
+ parent: 1
+ - uid: 130
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,16.5
+ parent: 1
+ - uid: 182
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,25.5
+ parent: 1
+ - uid: 185
+ components:
+ - type: Transform
+ pos: 6.5,26.5
+ parent: 1
+ - uid: 235
+ components:
+ - type: Transform
+ pos: 6.5,8.5
+ parent: 1
+ - uid: 249
+ components:
+ - type: Transform
+ pos: 7.5,21.5
+ parent: 1
+ - uid: 815
+ components:
+ - type: Transform
+ pos: -10.5,11.5
+ parent: 1
+ - proto: WallShuttleInterior
+ entities:
+ - uid: 2
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,10.5
+ parent: 1
+ - uid: 49
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,12.5
+ parent: 1
+ - uid: 51
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 6.5,6.5
+ parent: 1
+ - uid: 60
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 6.5,5.5
+ parent: 1
+ - uid: 83
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 6.5,7.5
+ parent: 1
+ - uid: 236
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,8.5
+ parent: 1
+ - uid: 237
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 6.5,4.5
+ parent: 1
+ - uid: 247
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,20.5
+ parent: 1
+ - uid: 248
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,21.5
+ parent: 1
+ - uid: 256
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,18.5
+ parent: 1
+ - uid: 259
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,17.5
+ parent: 1
+ - uid: 260
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,17.5
+ parent: 1
+ - uid: 261
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,18.5
+ parent: 1
+ - uid: 262
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,18.5
+ parent: 1
+ - uid: 263
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,18.5
+ parent: 1
+ - uid: 264
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,18.5
+ parent: 1
+ - uid: 265
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,18.5
+ parent: 1
+ - uid: 267
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,21.5
+ parent: 1
+ - uid: 268
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,21.5
+ parent: 1
+ - uid: 269
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,17.5
+ parent: 1
+ - uid: 270
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,21.5
+ parent: 1
+ - uid: 271
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,21.5
+ parent: 1
+ - uid: 272
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,17.5
+ parent: 1
+ - uid: 361
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,11.5
+ parent: 1
+ - uid: 362
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,11.5
+ parent: 1
+ - uid: 363
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,11.5
+ parent: 1
+ - uid: 364
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,10.5
+ parent: 1
+ - uid: 365
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,9.5
+ parent: 1
+ - uid: 366
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,11.5
+ parent: 1
+ - uid: 367
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,11.5
+ parent: 1
+ - uid: 368
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,11.5
+ parent: 1
+ - uid: 369
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,10.5
+ parent: 1
+ - uid: 370
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,9.5
+ parent: 1
+ - uid: 372
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,7.5
+ parent: 1
+ - uid: 373
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,7.5
+ parent: 1
+ - uid: 374
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,8.5
+ parent: 1
+ - uid: 375
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,7.5
+ parent: 1
+ - uid: 376
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,7.5
+ parent: 1
+ - uid: 377
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,7.5
+ parent: 1
+ - uid: 378
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 1.5,6.5
+ parent: 1
+ - uid: 379
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,7.5
+ parent: 1
+ - uid: 380
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,4.5
+ parent: 1
+ - uid: 381
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,3.5
+ parent: 1
+ - uid: 382
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,3.5
+ parent: 1
+ - uid: 383
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,3.5
+ parent: 1
+ - uid: 384
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,4.5
+ parent: 1
+ - uid: 385
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,3.5
+ parent: 1
+ - uid: 386
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 4.5,7.5
+ parent: 1
+ - uid: 387
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: 3.5,7.5
+ parent: 1
+ - uid: 418
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,3.5
+ parent: 1
+ - uid: 427
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -5.5,21.5
+ parent: 1
+ - uid: 428
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ pos: -6.5,21.5
+ parent: 1
+ - uid: 439
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,14.5
+ parent: 1
+ - uid: 440
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,18.5
+ parent: 1
+ - uid: 442
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,13.5
+ parent: 1
+ - uid: 443
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,15.5
+ parent: 1
+ - uid: 444
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,14.5
+ parent: 1
+ - uid: 445
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,14.5
+ parent: 1
+ - uid: 447
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,14.5
+ parent: 1
+ - uid: 448
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,15.5
+ parent: 1
+ - uid: 449
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,18.5
+ parent: 1
+ - uid: 450
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,14.5
+ parent: 1
+ - uid: 451
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,14.5
+ parent: 1
+ - uid: 452
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,14.5
+ parent: 1
+ - uid: 505
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,14.5
+ parent: 1
+ - uid: 506
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,13.5
+ parent: 1
+ - uid: 643
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,3.5
+ parent: 1
+ - uid: 970
+ components:
+ - type: MetaData
+ flags: PvsPriority
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,8.5
+ parent: 1
+ - proto: WardrobeScienceFilled
+ entities:
+ - uid: 429
+ components:
+ - type: Transform
+ pos: -1.5,10.5
+ parent: 1
+ - uid: 431
+ components:
+ - type: Transform
+ pos: 4.5,6.5
+ parent: 1
+ - uid: 647
+ components:
+ - type: Transform
+ pos: -1.5,9.5
+ parent: 1
+ - proto: WarpPointShip
+ entities:
+ - uid: 485
+ components:
+ - type: Transform
+ pos: 0.5,15.5
+ parent: 1
+ - proto: WaterCooler
+ entities:
+ - uid: 975
+ components:
+ - type: Transform
+ pos: 1.5,12.5
+ parent: 1
+ - proto: WindoorSecure
+ entities:
+ - uid: 811
+ components:
+ - type: Transform
+ pos: 5.5,10.5
+ parent: 1
+...
diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml
index 83293febcf00..da51eccdbae7 100644
--- a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml
+++ b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml
@@ -28,6 +28,7 @@
- id: BoxSurvivalSecurity
- id: Flash
- id: MagazinePistol
+ - id: FrontierUplinkCoin5
- type: entity
noSpawn: true
@@ -40,6 +41,7 @@
- id: Flash
- id: ForensicPad
- id: ForensicScanner
+ - id: FrontierUplinkCoin5
- type: entity
noSpawn: true
@@ -143,6 +145,7 @@
- id: RubberStampHos # Frontier
- id: DoorRemoteSecurity # Frontier
- id: SecurityTechFabCircuitboard # Frontier
+ - id: BaseSecurityUplinkRadioSheriff # Frontier
- type: entity
noSpawn: true
@@ -395,3 +398,4 @@
contents:
- id: BoxSurvivalBrigmedic
- id: Flash
+ - id: FrontierUplinkCoin5
diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml
index fcaf6ed62037..96eb4ad5f651 100644
--- a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml
+++ b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml
@@ -27,6 +27,7 @@
- id: BoxSurvivalSecurity
- id: Flash
- id: MagazinePistol
+ - id: FrontierUplinkCoin5
- type: entity
noSpawn: true
@@ -39,6 +40,7 @@
- id: Flash
- id: ForensicPad
- id: ForensicScanner
+ - id: FrontierUplinkCoin5
- type: entity
noSpawn: true
@@ -47,7 +49,9 @@
components:
- type: StorageFill
contents:
+ - id: BoxSurvivalBrigmedic
- id: Flash
+ - id: FrontierUplinkCoin5
- type: entity
noSpawn: true
@@ -151,6 +155,7 @@
- id: RubberStampHos # Frontier
- id: DoorRemoteSecurity # Frontier
- id: SecurityTechFabCircuitboard # Frontier
+ - id: BaseSecurityUplinkRadioSheriff # Frontier
- type: entity
noSpawn: true
diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/satchel.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/satchel.yml
index 51a3fe4e3a30..68f9257e2c36 100644
--- a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/satchel.yml
+++ b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/satchel.yml
@@ -41,6 +41,7 @@
- id: BoxSurvivalSecurity
- id: Flash
- id: MagazinePistol
+ - id: FrontierUplinkCoin5
- type: entity
noSpawn: true
@@ -53,6 +54,7 @@
- id: Flash
- id: ForensicPad
- id: ForensicScanner
+ - id: FrontierUplinkCoin5
- type: entity
noSpawn: true
@@ -61,7 +63,9 @@
components:
- type: StorageFill
contents:
+ - id: BoxSurvivalBrigmedic
- id: Flash
+ - id: FrontierUplinkCoin5
- type: entity
noSpawn: true
@@ -165,6 +169,7 @@
- id: RubberStampHos # Frontier
- id: DoorRemoteSecurity # Frontier
- id: SecurityTechFabCircuitboard # Frontier
+ - id: BaseSecurityUplinkRadioSheriff # Frontier
- type: entity
noSpawn: true
diff --git a/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml b/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml
index 84e4b3ac468f..f7839e3fe07f 100644
--- a/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml
+++ b/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml
@@ -81,6 +81,8 @@
# - Skub
- id: Skub
prob: 0.01
+ - id: ClothingShoesSkates
+ prob: 0.02
- id: ResearchDisk10000
prob: 0.005
- id: ClothingHeadHatCatEars
diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/cargo.yml b/Resources/Prototypes/Catalog/Fills/Lockers/cargo.yml
index 404c73ca04c4..a4706ff3df96 100644
--- a/Resources/Prototypes/Catalog/Fills/Lockers/cargo.yml
+++ b/Resources/Prototypes/Catalog/Fills/Lockers/cargo.yml
@@ -25,7 +25,7 @@
# - id: Flare # Frontier
# amount: 3 # Frontier
- id: BoxFlare # Frontier
- - id: MiningDrill # Frontier
+ - id: Pickaxe # Frontier
- id: WeaponProtoKineticAccelerator # Frontier
- type: entity
diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml
index 582c27a658e3..956b8cc73da6 100644
--- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml
+++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml
@@ -219,7 +219,8 @@
# - id: ClothingMaskSterile # Frontier - bloat
# - id: ClothingHeadHatBeretCmo # Frontier - bloat
- id: ClothingOuterHardsuitMedical
- - id: Hypospray
+# - id: Hypospray # Frontier - balance
+ - id: HypoMini # Frontier
- id: HandheldCrewMonitor
# - id: DoorRemoteMedical # Frontier
- id: RubberStampCMO
@@ -252,7 +253,8 @@
# - id: ClothingHeadHatBeretCmo # Frontier - bloat
# - id: DiagnoserMachineCircuitboard # Frontier - bloat
# - id: VaccinatorMachineCircuitboard # Frontier - bloat
- - id: Hypospray
+# - id: Hypospray # Frontier - balance
+ - id: HypoMini # Frontier
- id: HandheldCrewMonitor
# - id: DoorRemoteMedical # Frontier
- id: RubberStampCMO
diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml
index aa1db7527804..eb2602e9a4db 100644
--- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml
+++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/salvage.yml
@@ -5,8 +5,8 @@
WeaponProtoKineticAccelerator: 3
WeaponCrusher: 3
WeaponCrusherDagger: 5
- MiningDrill: 3
- Pickaxe: 8
+# MiningDrill: 3
+ Pickaxe: 10
OreBag: 6
Floodlight: 10
RadioHandheld: 5
diff --git a/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml b/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml
index d6218eb258e5..aa2439a2ae0c 100644
--- a/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml
+++ b/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml
@@ -149,6 +149,7 @@
sprite: Clothing/Ears/Headsets/syndicate.rsi
- type: Clothing
sprite: Clothing/Ears/Headsets/syndicate.rsi
+ - type: Contraband #frontier
- type: entity
parent: ClothingHeadsetAlt
diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml
index 1ab2fab0e6c4..cbb09acea4d0 100644
--- a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml
+++ b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml
@@ -9,7 +9,7 @@
- type: Clothing
sprite: Clothing/Eyes/Hud/diag.rsi
- type: ShowHealthBars
- damageContainers:
+ damageContainers:
- Inorganic
- Silicon
@@ -24,10 +24,10 @@
- type: Clothing
sprite: Clothing/Eyes/Hud/med.rsi
- type: ShowHealthBars
- damageContainers:
+ damageContainers:
- Biological
- type: ShowHealthIcons
- damageContainers:
+ damageContainers:
- Biological
- type: entity
@@ -105,10 +105,10 @@
- type: Clothing
sprite: Clothing/Eyes/Hud/medonion.rsi
- type: ShowHealthBars
- damageContainers:
+ damageContainers:
- Biological
- type: ShowHealthIcons
- damageContainers:
+ damageContainers:
- Biological
- type: ShowHungerIcons
@@ -123,10 +123,10 @@
- type: Clothing
sprite: Clothing/Eyes/Hud/medonionbeer.rsi
- type: ShowHealthBars
- damageContainers:
+ damageContainers:
- Biological
- type: ShowHealthIcons
- damageContainers:
+ damageContainers:
- Biological
- type: ShowHungerIcons
- type: ShowThirstIcons
@@ -155,11 +155,11 @@
sprite: Clothing/Eyes/Hud/medsecengi.rsi
- type: ShowSecurityIcons
- type: ShowHealthBars
- damageContainers:
+ damageContainers:
- Biological
- Inorganic
- type: ShowHealthIcons
- damageContainers:
+ damageContainers:
- Biological
- type: ShowSyndicateIcons
@@ -175,11 +175,11 @@
sprite: Clothing/Eyes/Hud/omni.rsi
- type: ShowSecurityIcons
- type: ShowHealthBars
- damageContainers:
+ damageContainers:
- Biological
- Inorganic
- type: ShowHealthIcons
- damageContainers:
+ damageContainers:
- Biological
- type: ShowHungerIcons
- type: ShowThirstIcons
@@ -197,6 +197,7 @@
sprite: Clothing/Eyes/Hud/synd.rsi
- type: ShowSyndicateIcons
- type: ShowSecurityIcons
+ - type: Contraband #frontier
- type: entity
parent: ClothingEyesGlassesSunglasses
@@ -204,3 +205,4 @@
suffix: Syndicate
components:
- type: ShowSecurityIcons
+ - type: Contraband #frontier
diff --git a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml
index 1dfef95f0768..66494f02994b 100644
--- a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml
+++ b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml
@@ -332,6 +332,7 @@
- type: Thieving
stripTimeReduction: 1.5
stealthy: true
+ - type: Contraband #frontier
- type: entity
parent: ClothingHandsGlovesColorWhite
@@ -377,6 +378,7 @@
type: MeleeSpeechBoundUserInterface
- type: StaticPrice
price: 0
+ - type: Contraband #frontier
- type: entity
parent: ClothingHandsBase
diff --git a/Resources/Prototypes/Entities/Clothing/Hands/specific.yml b/Resources/Prototypes/Entities/Clothing/Hands/specific.yml
index e6a57319999a..57c5365bd4b9 100644
--- a/Resources/Prototypes/Entities/Clothing/Hands/specific.yml
+++ b/Resources/Prototypes/Entities/Clothing/Hands/specific.yml
@@ -21,7 +21,7 @@
interfaces:
- key: enum.ChameleonUiKey.Key
type: ChameleonBoundUserInterface
-
+
- type: entity
parent: ClothingHandsChameleon
id: ClothingHandsChameleonThief
diff --git a/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml
index 3ea304864367..340c11e5c92d 100644
--- a/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml
+++ b/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml
@@ -42,6 +42,7 @@
sprite: Clothing/Head/Helmets/eva_syndicate.rsi
- type: Clothing
sprite: Clothing/Head/Helmets/eva_syndicate.rsi
+ - type: Contraband #frontier
#Cosmonaut Helmet
- type: entity
diff --git a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml
index dc6bc9b78e3c..52af606e8eaa 100644
--- a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml
+++ b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml
@@ -56,6 +56,7 @@
Slash: 0.95
Piercing: 0.95
Heat: 0.95
+ - type: Contraband #frontier
- type: entity
parent: ClothingMaskGas
diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml
index 0b7506046e24..95a394b6e73e 100644
--- a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml
+++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml
@@ -515,6 +515,7 @@
- type: HeldSpeedModifier
- type: ToggleableClothing
clothingPrototype: ClothingHeadHelmetHardsuitSyndie
+ - type: Contraband #frontier
# Syndicate Medic Hardsuit
- type: entity
@@ -529,6 +530,7 @@
sprite: Clothing/OuterClothing/Hardsuits/syndiemedic.rsi
- type: ToggleableClothing
clothingPrototype: ClothingHeadHelmetHardsuitSyndieMedic
+ - type: Contraband #frontier
#Syndicate Elite Hardsuit
- type: entity
@@ -563,6 +565,7 @@
- type: HeldSpeedModifier
- type: ToggleableClothing
clothingPrototype: ClothingHeadHelmetHardsuitSyndieElite
+ - type: Contraband #frontier
#Syndicate Commander Hardsuit
- type: entity
@@ -595,6 +598,7 @@
- type: HeldSpeedModifier
- type: ToggleableClothing
clothingPrototype: ClothingHeadHelmetHardsuitSyndieCommander
+ - type: Contraband #frontier
#Cybersun Juggernaut Hardsuit
- type: entity
@@ -627,6 +631,7 @@
- type: HeldSpeedModifier
- type: ToggleableClothing
clothingPrototype: ClothingHeadHelmetHardsuitCybersun
+ - type: Contraband #frontier
#Wizard Hardsuit
- type: entity
diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml
index d880f3598c0b..cdc0770eaa95 100644
--- a/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml
+++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml
@@ -31,6 +31,7 @@
tags:
- SuitEVA
- WhitelistChameleon
+ - type: Contraband #frontier
#Emergency EVA
- type: entity
diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml b/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml
index aa7284924fb4..685ef9364aa4 100644
--- a/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml
+++ b/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml
@@ -127,6 +127,7 @@
- type: Tag
tags:
- WhitelistChameleon
+ - type: Contraband #frontier
- type: entity
id: ActionBaseToggleMagboots
diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml
index 99f6295591c1..f40ec6a9138f 100644
--- a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml
+++ b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml
@@ -106,6 +106,7 @@
# ninja are masters of sneaking around relatively quickly, won't break cloak
walkModifier: 1.1
sprintModifier: 1.3
+ - type: Contraband #frontier
- type: entity
parent: ClothingShoesBaseButcherable
@@ -160,6 +161,7 @@
- type: NoSlip
- type: StaticPrice
price: 25
+ - type: Contraband #frontier
- type: entity
parent: ClothingShoesClown
diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/salvage.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/salvage.yml
index d1f0fa2ced2f..6d8a2681a806 100644
--- a/Resources/Prototypes/Entities/Markers/Spawners/Random/salvage.yml
+++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/salvage.yml
@@ -31,12 +31,40 @@
- CrateServiceBooks
- CrateServiceSmokeables
- CrateTrashCartFilled
+ - CrateChemistryP
+ - CrateChemistryS
+ - CrateChemistryD
+ - CrateEmergencyFire
+ - CrateEmergencyInflatablewall
+ - CrateEngineeringGear
+ - CrateEngineeringToolbox
+ - CrateEngineeringCableBulk
+ - CrateEngineeringElectricalSupplies
+ - CrateEngineeringJetpack
+ - CrateEngineeringMiniJetpack
+ - CrateEngineeringAMEJar
+ - CrateEngineeringSolar
+ - CrateFunPlushie
+ - CrateFunInstrumentsVariety
+ - CrateFunArtSupplies
+ - CrateFunBoardGames
+ - CrateFunATV
+ - CrateFunPirate
+ - CrateFunToyBox
+ - CrateFunMysteryFigurines
+ - CrateFunDartsSet
+ - CrateChemistrySupplies
+ - CrateSecurityArmor
+ - CrateSecurityHelmet
+ - CrateServiceTheatre
- ClosetMaintenanceFilledRandom
- ClosetEmergencyFilledRandom
- rareChance: 0.4
+ - CrateNPCKoboldCube
+ - CrateNPCMonkeyCube
+ rareChance: 0.6
prototypes:
- CrateSalvageAssortedGoodies
- chance: 0.9
+ chance: 0.3
offset: 0.0
- type: entity
@@ -62,6 +90,175 @@
chance: 0.9
offset: 0.0
+- type: entity
+ name: Salvage Handheld Flag Spawner
+ id: SalvageHandheldFlagSpawner
+ parent: MarkerBase
+ components:
+ - type: Sprite
+ layers:
+ - state: red
+ - sprite: Objects/Misc/Handy_Flags/blank_handy_flag.rsi
+ state: icon
+ - type: RandomSpawner
+ prototypes:
+ - NTHandyFlag
+ - BlankHandyFlag
+ - SyndieHandyFlag
+ - LGBTQHandyFlag
+ - PirateHandyFlag
+ chance: 0.9
+ offset: 0.0
+
+- type: entity
+ name: Salvage Tank Spawner
+ id: SalvageTankSpawner
+ parent: MarkerBase
+ components:
+ - type: Sprite
+ layers:
+ - state: red
+ - sprite: Structures/Storage/tanks.rsi
+ state: fueltank
+ - type: RandomSpawner
+ rarePrototypes:
+ - WeldingFuelTankHighCapacity
+ - WaterTankHighCapacity
+ rareChance: 0.03
+ prototypes:
+ - WaterTankFull
+ - WeldingFuelTankFull
+ - WaterCooler
+ chance: 0.9
+ offset: 0.0
+
+- type: entity
+ name: Salvage Generator Spawner
+ id: SalvageGeneratorSpawner
+ parent: MarkerBase
+ components:
+ - type: Sprite
+ layers:
+ - state: red
+ - sprite: Structures/Power/Generation/portable_generator.rsi
+ state: portgen0
+ - type: RandomSpawner
+ rarePrototypes:
+ - PortableGeneratorSuperPacman
+ - PortableGeneratorJrPacman
+ rareChance: 0.3
+ prototypes:
+ - PortableGeneratorJrPacman
+ chance: 0.6
+ offset: 0.0
+
+- type: entity
+ name: Salvage Suit Storage Spawner
+ id: SalvageSuitStorageSpawner
+ parent: MarkerBase
+ components:
+ - type: Sprite
+ layers:
+ - state: red
+ - sprite: Structures/Storage/suit_storage.rsi
+ state: base
+ - type: RandomSpawner
+ prototypes:
+ - SuitStorageEVA
+ - SuitStorageEVAAlternate
+ - SuitStorageEVAEmergency
+ - SuitStorageEVAPrisoner
+ - SuitStorageEVAPirate
+ - SuitStorageBasic
+ - SuitStorageEngi
+ - SuitStorageAtmos
+ - SuitStorageSalv
+ offset: 0.0
+
+- type: entity
+ name: Salvage Locker Spawner
+ id: SalvageLockerSpawner
+ parent: MarkerBase
+ components:
+ - type: Sprite
+ layers:
+ - state: red
+ - sprite: Structures/Storage/closet.rsi
+ state: alien
+ - type: RandomSpawner
+ rarePrototypes:
+ - LockerAtmosphericsFilledHardsuit
+ - LockerAtmosphericsFilled
+ - LockerSalvageSpecialistFilledHardsuit
+ - LockerEngineerFilledHardsuit
+ - LockerSecurityFilled
+ - ClosetBombFilled
+ - LockerBoozeFilled
+ - ClosetChefFilled
+ rareChance: 0.15
+ prototypes:
+ - ClosetL3Filled
+ - LockerSalvageSpecialistFilled
+ - ClosetToolFilled
+ - LockerElectricalSuppliesFilled
+ - LockerWeldingSuppliesFilled
+ - LockerEngineerFilled
+ - ClosetRadiationSuitFilled
+ - LockerMedicineFilled
+ - LockerMedicalFilled
+ - LockerChemistryFilled
+ - LockerParamedicFilled
+ - ClosetEmergencyFilledRandom
+ - ClosetFireFilled
+ - ClosetMaintenanceFilledRandom
+ - LockerScienceFilled
+ - ClosetJanitorFilled
+ - LockerBotanistFilled
+ - WardrobeMixedFilled
+ chance: 0.8
+ offset: 0.0
+
+- type: entity
+ name: Salvage Potted Plants Spawner
+ id: SalvagePottedPlantsSpawner
+ parent: MarkerBase
+ components:
+ - type: Sprite
+ layers:
+ - state: red
+ - sprite: Structures/Furniture/potted_plants.rsi
+ state: plant-01
+ - type: RandomSpawner
+ prototypes:
+ - PottedPlant1
+ - PottedPlant2
+ - PottedPlant3
+ - PottedPlant4
+ - PottedPlant5
+ - PottedPlant6
+ - PottedPlant7
+ - PottedPlant8
+ - PottedPlant10
+ - PottedPlant11
+ - PottedPlant12
+ - PottedPlant13
+ - PottedPlant14
+ - PottedPlant15
+ - PottedPlant16
+ - PottedPlant17
+ - PottedPlant18
+ - PottedPlant19
+ - PottedPlant20
+ - PottedPlant21
+ - PottedPlant22
+ - PottedPlant23
+ - PottedPlant24
+ - PottedPlant26
+ - PottedPlant27
+ - PottedPlant28
+ - PottedPlant29
+ offset: 0.0
+
- type: entity
name: Salvage T2 Machine Parts Spawner
id: SalvagePartsT2Spawner
@@ -149,7 +346,7 @@
- type: RandomSpawner
rarePrototypes:
- MobSharkSalvage
- rareChance: 0.2
+ rareChance: 0.1 #frontier nerf
prototypes:
- MobCarpSalvage
- MobCarpSalvage
@@ -201,7 +398,7 @@
- type: RandomSpawner
rarePrototypes:
- MobSharkSalvage
- rareChance: 0.2
+ rareChance: 0.1 #frontier nerf
prototypes:
- MobCarpSalvage
- MobCarpSalvage
diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml
index e897373889fe..2aa61fed54ec 100644
--- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml
+++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml
@@ -1919,6 +1919,7 @@
damage: 50
behaviors:
- !type:ExplodeBehavior
+ - type: Contraband #frontier
# I have included a snake_hiss.ogg sound file so if you want to use that be my guest
- type: entity
@@ -2605,6 +2606,7 @@
- type: NpcFactionMember
factions:
- Syndicate
+ - type: Contraband #frontier
- type: entity
name: space cat
diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml b/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml
index 7ba05671ff7e..6f4d3512b6ee 100644
--- a/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml
+++ b/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml
@@ -29,7 +29,7 @@
fix1:
shape:
!type:PhysShapeCircle
- radius: 0.40
+ radius: 0.5 # frontier trying to get them to not teleport into shuttles
density: 80
mask:
- FlyingMobMask
@@ -63,7 +63,7 @@
damage:
types:
Piercing: 5
- Slash: 10
+ Slash: 5 # frontier nerf
- type: TypingIndicator
proto: alien
- type: Tag
@@ -123,7 +123,7 @@
fix1:
shape:
!type:PhysShapeCircle
- radius: 0.40
+ radius: 0.5
density: 10
mask:
- MobMask
@@ -197,7 +197,7 @@
fix1:
shape:
!type:PhysShapeCircle
- radius: 0.40
+ radius: 0.55
density: 100
mask:
- FlyingMobMask
@@ -206,7 +206,7 @@
- type: MobThresholds
thresholds:
0: Alive
- 180: Dead
+ 80: Dead
- type: Stamina
critThreshold: 150
- type: DamageStateVisuals
@@ -227,7 +227,7 @@
- type: MeleeWeapon
damage:
types:
- Slash: 12
+ Slash: 7
Bloodloss: 5
- type: entity
diff --git a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml
index 8dce12d74865..d4b2404ba05c 100644
--- a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml
+++ b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml
@@ -32,7 +32,7 @@
templateId: arachnid
# Damage (Self)
- type: Bloodstream
- bloodReagent: SpiderBlood # would be cool if they had to drink copper instead of iron but that might just be more bloat to deal with.
+ bloodReagent: CopperBlood
- type: ArachnidChaos
- type: Spider
- type: IgnoreSpiderWeb
diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml
index bc9079fb2db7..4623338034bd 100644
--- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml
+++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml
@@ -192,6 +192,7 @@
contents:
- id: CigaretteSyndicate
amount: 5
+ - type: Contraband #frontier
- type: entity
id: CigPackMixedMedical
diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml
index 4a50ea55118b..7480d333090f 100644
--- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml
+++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml
@@ -29,6 +29,8 @@
components:
- type: ComputerBoard
prototype: ComputerAlert
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopAlert # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -40,6 +42,8 @@
state: cpu_engineering
- type: ComputerBoard
prototype: ComputerPowerMonitoring
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopPowerMonitoring # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -51,6 +55,8 @@
state: cpu_medical
- type: ComputerBoard
prototype: ComputerMedicalRecords
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopMedicalRecords # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -62,6 +68,8 @@
state: cpu_security
- type: ComputerBoard
prototype: ComputerCriminalRecords
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopCriminalRecords # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -73,6 +81,8 @@
state: cpu_command
- type: ComputerBoard
prototype: ComputerStationRecords
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopStationRecords # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -89,6 +99,8 @@
- type: Tag
tags:
- DroneUsable
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopCargoOrders # Frontier
- type: entity
id: CargoBountyComputerCircuitboard
@@ -104,6 +116,8 @@
- type: Tag
tags:
- DroneUsable
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopCargoBounty # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -115,6 +129,8 @@
state: cpu_supply
- type: ComputerBoard
prototype: ComputerCargoShuttle
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopCargoShuttle # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -128,6 +144,8 @@
prototype: ComputerSalvageExpedition
- type: StealTarget
stealGroup: SalvageExpeditionsComputerCircuitboard
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopSalvageExpedition # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -139,6 +157,8 @@
prototype: ComputerShuttleCargo
- type: StealTarget
stealGroup: CargoShuttleConsoleCircuitboard
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopShuttleCargo # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -150,6 +170,8 @@
prototype: ComputerShuttleSalvage
- type: StealTarget
stealGroup: SalvageShuttleConsoleCircuitboard
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopShuttleSalvage # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -163,6 +185,8 @@
tags:
- DroneUsable
- SurveillanceCameraMonitorCircuitboard
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopSurveillanceCameraMonitor # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -172,6 +196,8 @@
components:
- type: ComputerBoard
prototype: ComputerSurveillanceWirelessCameraMonitor
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopSurveillanceWirelessCameraMonitor # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -185,6 +211,8 @@
tags:
- DroneUsable
- ComputerTelevisionCircuitboard
+# - type: ComputerTabletopBoard # Frontier
+# prototype: ComputerTabletopTelevision # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -196,6 +224,8 @@
state: cpu_science
- type: ComputerBoard
prototype: ComputerResearchAndDevelopment
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopResearchAndDevelopment # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -207,6 +237,8 @@
state: cpu_science
- type: ComputerBoard
prototype: ComputerAnalysisConsole
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopAnalysisConsole # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -218,6 +250,8 @@
state: cpu_science
- type: ComputerBoard
prototype: ComputerTechnologyDiskTerminal
+# - type: ComputerTabletopBoard # Frontier
+# prototype: ComputerTabletopTechnologyDiskTerminal # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -227,6 +261,8 @@
components:
- type: ComputerBoard
prototype: ComputerCrewMonitoring
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopCrewMonitoring # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -244,6 +280,8 @@
tags:
- DroneUsable
- HighRiskItem
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopId # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -255,6 +293,8 @@
state: cpu_medical
- type: ComputerBoard
prototype: computerBodyScanner
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopBodyScanner # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -266,6 +306,8 @@
state: cpu_command
- type: ComputerBoard
prototype: ComputerComms
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopComms # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -275,6 +317,8 @@
components:
- type: ComputerBoard
prototype: SyndicateComputerComms
+ - type: ComputerTabletopBoard # Frontier
+ prototype: SyndicateComputerTabletopComms # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -283,6 +327,8 @@
components:
- type: ComputerBoard
prototype: ComputerRadar
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopRadar # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -294,6 +340,8 @@
state: cpu_engineering
- type: ComputerBoard
prototype: ComputerSolarControl
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopSolarControl # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -303,6 +351,8 @@
components:
- type: ComputerBoard
prototype: SpaceVillainArcade
+# - type: ComputerTabletopBoard # Frontier
+# prototype: TabletopSpaceVillainArcade # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -312,6 +362,8 @@
components:
- type: ComputerBoard
prototype: BlockGameArcade
+# - type: ComputerTabletopBoard # Frontier
+# prototype: TabletopBlockGameArcade # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -323,6 +375,8 @@
state: cpu_engineering
- type: ComputerBoard
prototype: ParticleAcceleratorControlBoxUnfinished
+# - type: ComputerTabletopBoard # Frontier
+# prototype: ParticleAcceleratorControlBoxTabletopUnfinished # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -332,6 +386,8 @@
components:
- type: ComputerBoard
prototype: ComputerShuttle
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopShuttle # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -341,6 +397,8 @@
components:
- type: ComputerBoard
prototype: ComputerShuttleSyndie
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopShuttleSyndie # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -352,6 +410,8 @@
state: cpu_medical
- type: ComputerBoard
prototype: ComputerCloningConsole
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopCloningConsole # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -365,6 +425,8 @@
prototype: ComputerIFF
- type: StaticPrice
price: 400
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopIFF # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -374,6 +436,8 @@
components:
- type: ComputerBoard
prototype: ComputerIFFSyndicate
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopIFFSyndicate # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -385,6 +449,8 @@
state: cpu_supply
- type: ComputerBoard
prototype: ComputerShipyard
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopShipyard # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -398,6 +464,8 @@
# price: 150
- type: ComputerBoard
prototype: ComputerMassMedia
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopMassMedia # Frontier
- type: entity
parent: BaseComputerCircuitboard
@@ -409,3 +477,5 @@
state: cpu_engineering
- type: ComputerBoard
prototype: ComputerSensorMonitoring
+ - type: ComputerTabletopBoard # Frontier
+ prototype: ComputerTabletopSensorMonitoring # Frontier
diff --git a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/singularity_beacon.yml b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/singularity_beacon.yml
index 372b68911305..942d2500859d 100644
--- a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/singularity_beacon.yml
+++ b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/singularity_beacon.yml
@@ -38,3 +38,4 @@
priority: High
- type: StaticPrice
price: 1500
+ - type: Contraband #frontier
diff --git a/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml b/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml
index 487753dc2bad..8a099e95a10f 100644
--- a/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml
+++ b/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml
@@ -228,6 +228,7 @@
layers:
- state: crypt_red
- state: synd_label
+ - type: Contraband #frontier
- type: entity
parent: EncryptionKey
diff --git a/Resources/Prototypes/Entities/Objects/Fun/darts.yml b/Resources/Prototypes/Entities/Objects/Fun/darts.yml
index a4e86e1b113a..6e2a65a72305 100644
--- a/Resources/Prototypes/Entities/Objects/Fun/darts.yml
+++ b/Resources/Prototypes/Entities/Objects/Fun/darts.yml
@@ -127,6 +127,7 @@
blockSlots: NONE
- type: SolutionTransfer
maxTransferAmount: 7
+ - type: Contraband #frontier
- type: entity
name: dartboard
diff --git a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml
index 04474ced17da..706c61620a4e 100644
--- a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml
+++ b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml
@@ -667,6 +667,7 @@
type: ChameleonBoundUserInterface
- type: StaticPrice
price: 200
+ - type: Contraband #frontier
- type: entity
name: passenger ID card
@@ -704,6 +705,7 @@
tags:
- NuclearOperative
- SyndicateAgent
+ - type: Contraband #frontier
- type: entity
parent: IDCardStandard
diff --git a/Resources/Prototypes/Entities/Objects/Misc/implanters.yml b/Resources/Prototypes/Entities/Objects/Misc/implanters.yml
index ac2883925f5f..0845b72bbaf7 100644
--- a/Resources/Prototypes/Entities/Objects/Misc/implanters.yml
+++ b/Resources/Prototypes/Entities/Objects/Misc/implanters.yml
@@ -165,6 +165,7 @@
implant: StorageImplant
- type: StaticPrice
price: 500
+ - type: Contraband #frontier
- type: entity
id: FreedomImplanter
@@ -173,6 +174,7 @@
components:
- type: Implanter
implant: FreedomImplant
+ - type: Contraband #frontier
- type: entity
id: UplinkImplanter
@@ -181,6 +183,7 @@
components:
- type: Implanter
implant: UplinkImplant
+ - type: Contraband #frontier
- type: entity
id: EmpImplanter
@@ -189,6 +192,7 @@
components:
- type: Implanter
implant: EmpImplant
+ - type: Contraband #frontier
- type: entity
id: ScramImplanter
@@ -197,6 +201,7 @@
components:
- type: Implanter
implant: ScramImplant
+ - type: Contraband #frontier
- type: entity
id: DnaScramblerImplanter
@@ -205,6 +210,7 @@
components:
- type: Implanter
implant: DnaScramblerImplant
+ - type: Contraband #frontier
#Nuclear Operative/Special implanters
@@ -215,6 +221,7 @@
components:
- type: Implanter
implant: MicroBombImplant
+ - type: Contraband #frontier
- type: entity
id: MacroBombImplanter
@@ -223,6 +230,7 @@
components:
- type: Implanter
implant: MacroBombImplant
+ - type: Contraband #frontier
- type: entity
id: DeathRattleImplanter
@@ -231,6 +239,7 @@
components:
- type: Implanter
implant: DeathRattleImplant
+ - type: Contraband #frontier
- type: entity
id: DeathAcidifierImplanter
@@ -239,6 +248,7 @@
components:
- type: Implanter
implant: DeathAcidifierImplant
+ - type: Contraband #frontier
# Security and Command implanters
diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml
index 4f38787c6114..e440c174ec93 100644
--- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml
+++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml
@@ -323,6 +323,7 @@
sprite: Objects/Misc/bureaucracy.rsi
heldPrefix: overpriced_pen
size: Tiny
+ - type: Contraband #frontier
- type: entity
name: captain's fountain pen
diff --git a/Resources/Prototypes/Entities/Objects/Power/powersink.yml b/Resources/Prototypes/Entities/Objects/Power/powersink.yml
index b2d9daa7c78e..260866cc6b54 100644
--- a/Resources/Prototypes/Entities/Objects/Power/powersink.yml
+++ b/Resources/Prototypes/Entities/Objects/Power/powersink.yml
@@ -49,3 +49,4 @@
location: powersink
- type: StaticPrice
price: 400
+ - type: Contraband #frontier
diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/handheld_crew_monitor.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/handheld_crew_monitor.yml
index af23a4c7e63e..938a8504adfe 100644
--- a/Resources/Prototypes/Entities/Objects/Specific/Medical/handheld_crew_monitor.yml
+++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/handheld_crew_monitor.yml
@@ -38,7 +38,7 @@
- type: ItemSlots
slots:
cell_slot:
- name: power-cell-slot-component-slot-name-default
+ name: power-cell-slot-component-slot-name-default
- type: entity
id: SpyCrewMonitor
@@ -64,7 +64,7 @@
- type: ItemSlots
slots:
cell_slot:
- name: power-cell-slot-component-slot-name-default
+ name: power-cell-slot-component-slot-name-default
- type: entity
id: SyndiCrewMonitor
@@ -79,6 +79,7 @@
sprite: Objects/Specific/Medical/syndihandheldcrewmonitor.rsi
- type: PowerCellDraw
useRate: 40
+ - type: Contraband #frontier
- type: entity
id: SyndiCrewMonitorEmpty
@@ -88,5 +89,4 @@
- type: ItemSlots
slots:
cell_slot:
- name: power-cell-slot-component-slot-name-default
-
\ No newline at end of file
+ name: power-cell-slot-component-slot-name-default
diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml
index 9e071ed66aa1..724db5a4d12a 100644
--- a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml
+++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml
@@ -52,6 +52,7 @@
onlyMobs: false
- type: UseDelay
delay: 0.5
+ - type: Contraband #frontier
- type: entity
name: borghypo
@@ -89,6 +90,7 @@
maxVol: 3000
- type: UseDelay
delay: 0.0
+ - type: Contraband #frontier
- type: entity
name: chemical medipen
@@ -415,6 +417,7 @@
delay: 0.5
- type: StaticPrice # A new shitcurity meta
price: 75
+ - type: Contraband #frontier
- type: entity
parent: BaseItem
diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml
index 93881af7f962..56c17a24ca98 100644
--- a/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml
+++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml
@@ -111,3 +111,5 @@
Quantity: 30
- type: Tag
tags: []
+ - type: VendPrice # Frontier
+ price: 15000
diff --git a/Resources/Prototypes/Entities/Objects/Tools/emag.yml b/Resources/Prototypes/Entities/Objects/Tools/emag.yml
index 73704acee853..40a6b6d7a653 100644
--- a/Resources/Prototypes/Entities/Objects/Tools/emag.yml
+++ b/Resources/Prototypes/Entities/Objects/Tools/emag.yml
@@ -14,6 +14,7 @@
sprite: Objects/Tools/emag.rsi
- type: StaticPrice
price: 400
+ - type: Contraband #frontier
- type: entity
parent: BaseItem
diff --git a/Resources/Prototypes/Entities/Objects/Tools/jammer.yml b/Resources/Prototypes/Entities/Objects/Tools/jammer.yml
index a881dccf4211..e523b57a59af 100644
--- a/Resources/Prototypes/Entities/Objects/Tools/jammer.yml
+++ b/Resources/Prototypes/Entities/Objects/Tools/jammer.yml
@@ -20,3 +20,5 @@
startingItem: PowerCellMedium
- type: StaticPrice
price: 250
+ - type: Contraband #frontier
+
diff --git a/Resources/Prototypes/Entities/Objects/Tools/jaws_of_life.yml b/Resources/Prototypes/Entities/Objects/Tools/jaws_of_life.yml
index 2a35e4dc07e6..4ece58246369 100644
--- a/Resources/Prototypes/Entities/Objects/Tools/jaws_of_life.yml
+++ b/Resources/Prototypes/Entities/Objects/Tools/jaws_of_life.yml
@@ -81,3 +81,4 @@
damage:
types:
Blunt: 14
+ - type: Contraband #frontier
diff --git a/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml b/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml
index 64efe53f43da..60e5fee49ece 100644
--- a/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml
+++ b/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml
@@ -90,6 +90,7 @@
max: 1
- type: StaticPrice
price: 1350
+ - type: Contraband #frontier
- type: entity
name: artistic toolbox
@@ -122,6 +123,7 @@
damage:
types:
Blunt: 20
+ - type: Contraband #frontier
- type: entity
name: golden toolbox
@@ -160,4 +162,4 @@
- type: UserInterface
interfaces:
- key: enum.ThiefBackpackUIKey.Key
- type: ThiefBackpackBoundUserInterface
\ No newline at end of file
+ type: ThiefBackpackBoundUserInterface
diff --git a/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml b/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml
index 6b07447e32c1..a6bd588c9ff4 100644
--- a/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml
+++ b/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml
@@ -308,6 +308,7 @@
path: /Audio/Effects/Vehicle/vehiclestartup.ogg
params:
volume: -3
+ - type: Contraband #frontier
- type: entity
parent: BaseVehicleRideable
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/plastic.yml b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/plastic.yml
index 8f79ea657760..cd047a9a0fb5 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/plastic.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/plastic.yml
@@ -72,6 +72,7 @@
- type: HolidayRsiSwap
sprite:
festive: Objects/Weapons/Bombs/c4gift.rsi
+ - type: Contraband #frontier
- type: entity
name: seismic charge
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_pka.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_pka.yml
index 6104d6c93633..f85e93b893f0 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_pka.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_pka.yml
@@ -47,7 +47,3 @@
- Belt
- type: UseDelay
delay: 1
- - type: Tag # Frontier
- tags: # Frontier
- - WeaponRanged # Frontier
- - WeaponLongarms # Frontier
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_staff.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_staff.yml
index 203a393dd4fa..9cab4cac25a4 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_staff.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_staff.yml
@@ -20,6 +20,4 @@
- type: Tag
tags:
- WizardStaff
- - WeaponRanged # Frontier
- - WeaponLongarms # Frontier
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_wand.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_wand.yml
index 8abcc5ab1846..c4a937ee2cd1 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_wand.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/base_wand.yml
@@ -25,5 +25,3 @@
- type: Tag
tags:
- WizardWand
- - WeaponRanged # Frontier
- - WeaponShortArms # Frontier
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/watergun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/watergun.yml
index 39ea9ccab0ff..138760010790 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/watergun.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Basic/watergun.yml
@@ -51,8 +51,6 @@
Plastic: 150
- type: Tag # Frontier
tags: # Frontier
- - WeaponRanged # Frontier
- - WeaponShortArms # Frontier
- Sidearm # Frontier
- type: entity
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 9c8714235624..8d81f12aed8d 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml
@@ -30,10 +30,6 @@
- type: Appearance
- type: StaticPrice
price: 500
- - type: Tag # Frontier
- tags: # Frontier
- - WeaponRanged # Frontier
- - WeaponLongarms # Frontier
- type: entity
id: BaseWeaponPowerCell
@@ -82,8 +78,6 @@
- 0,1,0,1
- type: Tag
tags:
- - WeaponRanged # Frontier
- - WeaponShortArms # Frontier
- Sidearm
- type: Clothing
sprite: Objects/Weapons/Guns/Battery/taser.rsi
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Bow/bow.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Bow/bow.yml
index 6cb96800a91d..7f1ac7cddc5c 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Bow/bow.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Bow/bow.yml
@@ -44,10 +44,6 @@
projectiles: !type:ContainerSlot
- type: ContainerAmmoProvider
container: aprojectiles
- - type: Tag # Frontier
- tags: # Frontier
- - WeaponRanged # Frontier
- - WeaponLongarms # Frontier
- type: entity
id: BowImprovised
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml
index 7087a825567f..9d685e1ddc0e 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml
@@ -19,10 +19,6 @@
path: /Audio/Weapons/Guns/Empty/lmg_empty.ogg
- type: StaticPrice
price: 500
- - type: Tag # Frontier
- tags: # Frontier
- - WeaponRanged # Frontier
- - WeaponLongarms # Frontier
# No chamber because HMG may want its own
- type: entity
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml
index da45cc8e1ab5..acb35ec39a80 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/LMGs/lmgs.yml
@@ -60,10 +60,6 @@
price: 500
- type: UseDelay
delay: 1
- - type: Tag # Frontier
- tags: # Frontier
- - WeaponRanged # Frontier
- - WeaponLongarms # Frontier
- type: entity
name: L6 SAW
@@ -83,6 +79,7 @@
steps: 4
zeroVisible: true
- type: Appearance
+ - type: Contraband #frontier
- type: entity
name: L6C ROW
@@ -119,3 +116,4 @@
proto: CartridgeLightRifle
capacity: 100
- type: AmmoCounter
+ - type: Contraband #frontier
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml
index e722d0ca8c2d..8b4982bc741c 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml
@@ -19,10 +19,6 @@
containers:
ballistic-ammo: !type:Container
ents: []
- - type: Tag # Frontier
- tags: # Frontier
- - WeaponRanged # Frontier
- - WeaponLongarms # Frontier
- type: entity
name: china lake
@@ -53,6 +49,7 @@
proto: GrenadeFrag
soundInsert:
path: /Audio/Weapons/Guns/MagIn/batrifle_magin.ogg
+ - type: Contraband #frontier
- type: entity
name: RPG-7
@@ -266,8 +263,6 @@
False: { state: base-unshaded-off }
- type: Tag # Frontier
tags: # Frontier
- - WeaponRanged # Frontier
- - WeaponShortArms # Frontier
- Sidearm # Frontier
# Admeme
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml
index 95fa4159f81b..fc4e9a31addf 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml
@@ -19,8 +19,6 @@
- type: Tag
tags:
- Sidearm
- - WeaponRanged # Frontier
- - WeaponShortArms # Frontier
- type: Clothing
sprite: Objects/Weapons/Guns/Pistols/viper.rsi
quickEquip: false
@@ -104,6 +102,7 @@
gun_chamber: !type:ContainerSlot
- type: StaticPrice # Frontier 500<1000
price: 1000
+ - type: Contraband #frontier
- type: entity
name: cobra
@@ -152,6 +151,7 @@
containers:
gun_magazine: !type:ContainerSlot
gun_chamber: !type:ContainerSlot
+ - type: Contraband #frontier
- type: entity
name: mk 58
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml
index 5f7e5054415b..d00d7b5229ba 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml
@@ -15,8 +15,6 @@
- type: Tag
tags:
- Sidearm
- - WeaponRanged # Frontier
- - WeaponShortArms # Frontier
- type: Clothing
sprite: Objects/Weapons/Guns/Revolvers/deckard.rsi
quickEquip: false
@@ -142,6 +140,7 @@
- CartridgeMagnum
- SpeedLoaderMagnum
proto: CartridgeMagnumAP
+ - type: Contraband #frontier
- type: entity
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml
index ddf3236985d4..5bc8125ebaa9 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml
@@ -49,10 +49,6 @@
gun_chamber: !type:ContainerSlot
- type: StaticPrice
price: 500
- - type: Tag # Frontier
- tags: # Frontier
- - WeaponRanged # Frontier
- - WeaponLongarms # Frontier
- type: entity
name: AKMS
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml
index 2ce56e030c06..e258bdb0ff65 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml
@@ -54,10 +54,6 @@
gun_chamber: !type:ContainerSlot
- type: StaticPrice
price: 500
- - type: Tag # Frontier
- tags: # Frontier
- - WeaponRanged # Frontier
- - WeaponLongarms # Frontier
- type: entity
name: Atreides
@@ -107,6 +103,7 @@
steps: 6
zeroVisible: true
- type: Appearance
+ - type: Contraband #frontier
- type: entity
name: Drozd
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml
index d0c84a9b5f67..553b9a409e24 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml
@@ -42,10 +42,6 @@
ents: []
- type: StaticPrice
price: 500
- - type: Tag # Frontier
- tags: # Frontier
- - WeaponRanged # Frontier
- - WeaponLongarms # Frontier
- type: entity
name: Bulldog
@@ -102,10 +98,7 @@
- type: Appearance
- type: StaticPrice
price: 500
- - type: Tag # Frontier
- tags: # Frontier
- - WeaponRanged # Frontier
- - WeaponLongarms # Frontier
+ - type: Contraband #frontier
- type: entity
name: double-barreled shotgun
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml
index 88dec6ef8925..b5404c0da757 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml
@@ -36,10 +36,6 @@
ents: []
- type: StaticPrice
price: 500
- - type: Tag # Frontier
- tags: # Frontier
- - WeaponRanged # Frontier
- - WeaponLongarms # Frontier
- type: entity
name: Kardashev-Mosin
@@ -68,6 +64,7 @@
- CartridgeAntiMateriel
capacity: 5
proto: CartridgeAntiMateriel
+ - type: Contraband #frontier
- type: entity
name: musket
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/flare_gun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/flare_gun.yml
index f4a6b950448f..9723346ce90c 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/flare_gun.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/flare_gun.yml
@@ -46,5 +46,4 @@
price: 150
- type: Tag # Frontier
tags: # Frontier
- - Sidearm
- - WeaponShortArms # Frontier
+ - Sidearm # Frontier
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml
index 03470e6226c1..ae1f5df3c154 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml
@@ -65,10 +65,6 @@
storagebase: !type:Container
ents: []
gas_tank: !type:ContainerSlot
- - type: Tag # Frontier
- tags: # Frontier
- - WeaponRanged # Frontier
- - WeaponLongarms # Frontier
- type: entity
name: pie cannon
@@ -111,10 +107,6 @@
containers:
storagebase: !type:Container
ents: []
- - type: Tag # Frontier
- tags: # Frontier
- - WeaponRanged # Frontier
- - WeaponLongarms # Frontier
# shoots bullets instead of throwing them, no other changes
- type: entity
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/armblade.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/armblade.yml
index 3da5d7404c17..497876f35968 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/armblade.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/armblade.yml
@@ -22,6 +22,3 @@
qualities:
- Prying
- type: Prying
- - type: Tag # Frontier
- tags: # Frontier
- - WeaponMelee # Frontier
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml
index 58655da40551..819579d29cfb 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml
@@ -38,7 +38,6 @@
- type: Tag
tags:
- BaseballBat
- - WeaponMelee # Frontier
- type: entity
name: knockback stick
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/chainsaw.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/chainsaw.yml
index e32562d38869..bfdd94add6c0 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/chainsaw.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/chainsaw.yml
@@ -47,6 +47,3 @@
maxVol: 300
- type: UseDelay
delay: 1
- - type: Tag # Frontier
- tags: # Frontier
- - WeaponMelee # Frontier
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/cult.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/cult.yml
index 97f4bec8e087..db24d3e2cd00 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/cult.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/cult.yml
@@ -21,9 +21,6 @@
slots:
- back
- type: DisarmMalus
- - type: Tag # Frontier
- tags: # Frontier
- - WeaponMelee # Frontier
- type: entity
name: eldritch blade
@@ -48,9 +45,6 @@
slots:
- back
- type: DisarmMalus
- - type: Tag # Frontier
- tags: # Frontier
- - WeaponMelee # Frontier
- type: entity
name: unholy halberd
@@ -61,7 +55,6 @@
- type: Tag
tags:
- FireAxe
- - WeaponMelee # Frontier
- type: Sharp
- type: Sprite
sprite: Objects/Weapons/Melee/cult_halberd.rsi
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml
index a070a5519993..3f580215185a 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml
@@ -156,6 +156,7 @@
- Write
- type: DisarmMalus
malus: 0
+ - type: Contraband #frontier
- type: entity
parent: BaseItem
@@ -174,6 +175,7 @@
- id: EnergyDagger
sound:
path: /Audio/Effects/unwrap.ogg
+ - type: Contraband #frontier
- type: entity
name: energy cutlass
@@ -211,6 +213,7 @@
right:
- state: inhand-right-blade
shader: unshaded
+ - type: Contraband #frontier
- type: entity
name: Double Bladed Energy Sword
@@ -280,3 +283,4 @@
right:
- state: inhand-right-blade
shader: unshaded
+ - type: Contraband #frontier
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/fireaxe.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/fireaxe.yml
index e0dac0467663..77bb1e5c0294 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/fireaxe.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/fireaxe.yml
@@ -7,7 +7,6 @@
- type: Tag
tags:
- FireAxe
- - WeaponMelee # Frontier
- type: Sharp
- type: Sprite
sprite: Objects/Weapons/Melee/fireaxe.rsi
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/gohei.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/gohei.yml
index 4513d0096251..2380e19d79f8 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/gohei.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/gohei.yml
@@ -15,6 +15,3 @@
- type: Item
size: Small
sprite: Objects/Weapons/Melee/gohei.rsi
- - type: Tag # Frontier
- tags: # Frontier
- - WeaponMelee # Frontier
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml
index d2bd2b275ae8..601017629af3 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml
@@ -13,9 +13,6 @@
radius: 4
- type: StaticPrice
price: 255
- - type: Tag # Frontier
- tags: # Frontier
- - WeaponMelee # Frontier
- type: entity
parent: BaseWeaponCrusher
@@ -24,7 +21,6 @@
- type: Tag
tags:
- Pickaxe
- - WeaponMelee # Frontier
- type: Sprite
sprite: Objects/Weapons/Melee/crusher.rsi
state: icon
@@ -116,7 +112,6 @@
- type: Tag
tags:
- Pickaxe
- - WeaponMelee # Frontier
- type: StaticPrice
price: 285
- type: Clothing
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/needle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/needle.yml
index ca73751dc91f..11efeba5f8c0 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/needle.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/needle.yml
@@ -15,6 +15,3 @@
- type: Item
size: Tiny
- type: BalloonPopper
- - type: Tag # Frontier
- tags: # Frontier
- - WeaponMelee # Frontier
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml
index 97dfc93af724..83ce68f78381 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml
@@ -7,7 +7,6 @@
- type: Tag
tags:
- Pickaxe
- - WeaponMelee # Frontier
- type: Sprite
sprite: Objects/Weapons/Melee/pickaxe.rsi
state: pickaxe
@@ -56,7 +55,6 @@
- type: Tag
tags:
- Pickaxe
- - WeaponMelee # Frontier
- type: Sprite
sprite: Objects/Tools/handdrill.rsi
state: handdrill
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml
index 6c5f85638a53..51025f164562 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml
@@ -20,6 +20,3 @@
Structural: 10
- type: Item
size: Large
- - type: Tag # Frontier
- tags: # Frontier
- - WeaponMelee # Frontier
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml
index 3cd13c192e96..7c18d5efd1e4 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml
@@ -11,7 +11,6 @@
- type: Tag
tags:
- Spear
- - WeaponMelee # Frontier
- type: Fixtures
fixtures:
fix1:
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml
index 06f7f289cf56..b0b166f6ce81 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/stunprod.yml
@@ -67,6 +67,3 @@
- type: Construction
graph: makeshiftstunprod
node: msstunprod
- - type: Tag # Frontier
- tags: # Frontier
- - WeaponMelee # Frontier
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml
index 1b3047e2c17e..76cc6abdb5c2 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml
@@ -26,7 +26,6 @@
- type: Tag
tags:
- CaptainSabre
- - WeaponMelee # Frontier
- type: DisarmMalus
- type: Clothing
quickEquip: false
@@ -44,7 +43,6 @@
- type: Tag
tags:
- Katana
- - WeaponMelee # Frontier
- type: Sprite
sprite: Objects/Weapons/Melee/katana.rsi
state: icon
@@ -106,7 +104,6 @@
- type: Tag
tags:
- Machete
- - WeaponMelee # Frontier
- type: Sprite
sprite: Objects/Weapons/Melee/machete.rsi
state: icon
@@ -153,9 +150,6 @@
- back
- suitStorage
- type: DisarmMalus
- - type: Tag # Frontier
- tags: # Frontier
- - WeaponMelee # Frontier
- type: entity
name: cutlass
@@ -167,7 +161,6 @@
- type: Tag
tags:
- Machete
- - WeaponMelee # Frontier
- type: Sprite
sprite: Objects/Weapons/Melee/cutlass.rsi
state: icon
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/white_cane.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/white_cane.yml
index e7831972aa2d..bba4085295ed 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/white_cane.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/white_cane.yml
@@ -24,7 +24,3 @@
Blunt: 3
- type: UseDelay
delay: 1
- - type: Tag # Frontier
- tags: # Frontier
- - WeaponMelee # Frontier
-
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml
index 36d4c947fcd7..0f6c2b7e72e3 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml
@@ -77,6 +77,7 @@
- type: ContainerContainer
containers:
cluster-payload: !type:Container
+ - type: Contraband #frontier
- type: entity
parent: BaseItem
@@ -241,3 +242,5 @@
- type: ContainerContainer
containers:
cluster-payload: !type:Container
+ - type: Contraband #frontier
+
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml
index 90cb751e40a8..d6d7210a4a45 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml
@@ -56,6 +56,7 @@
volume: 5
initialBeepDelay: 0
beepInterval: 2 # 2 beeps total (at 0 and 2)
+ - type: Contraband #frontier
- type: entity
name: flashbang
@@ -119,6 +120,7 @@
path: /Audio/Effects/minibombcountdown.ogg
params:
volume: 12
+ - type: Contraband #frontier
- type: entity
name: supermatter grenade
@@ -182,6 +184,7 @@
params:
volume: 5
- type: ExplodeOnTrigger
+ - type: Contraband #frontier
- type: entity
name: whitehole grenade
@@ -229,6 +232,7 @@
params:
volume: 15
- type: DeleteOnTrigger
+ - type: Contraband #frontier
- type: entity
name: the nuclear option
@@ -259,6 +263,7 @@
- type: TimerTriggerVisuals
primingSound:
path: /Audio/Effects/countdown.ogg
+ - type: Contraband #frontier
- type: entity
name: modular grenade
@@ -345,6 +350,7 @@
- type: TimerTriggerVisuals
primingSound:
path: /Audio/Effects/hallelujah.ogg
+ - type: Contraband #frontier
- type: entity
parent: GrenadeBase
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/security.yml b/Resources/Prototypes/Entities/Objects/Weapons/security.yml
index db64ca339721..c8f2fd4d0e7b 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/security.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/security.yml
@@ -82,9 +82,6 @@
- type: GuideHelp
guides:
- Security
- - type: Tag # Frontier
- tags: # Frontier
- - WeaponMelee # Frontier
- type: entity
name: truncheon
@@ -116,9 +113,6 @@
- type: GuideHelp
guides:
- Security
- - type: Tag # Frontier
- tags: # Frontier
- - WeaponMelee # Frontier
- type: entity
name: flash
diff --git a/Resources/Prototypes/Entities/Structures/Decoration/banners.yml b/Resources/Prototypes/Entities/Structures/Decoration/banners.yml
index bb020fd9f60e..1d8505533f26 100644
--- a/Resources/Prototypes/Entities/Structures/Decoration/banners.yml
+++ b/Resources/Prototypes/Entities/Structures/Decoration/banners.yml
@@ -26,6 +26,23 @@
- HighImpassable
- BulletImpassable
- type: InteractionOutline
+# Frontier
+ - type: Destructible
+ thresholds:
+ - trigger:
+ !type:DamageTrigger
+ damage: 25
+ behaviors:
+ - !type:DoActsBehavior
+ acts: ["Destruction"]
+ - !type:SpawnEntitiesBehavior
+ spawn:
+ MaterialCloth1:
+ min: 1
+ max: 2
+ SheetSteel1:
+ min: 1
+ max: 2
- type: entity
id: BannerNanotrasen
@@ -36,6 +53,9 @@
- type: Sprite
sprite: Structures/Decoration/banner.rsi
state: banner
+ - type: Construction # Frontier
+ graph: BannersGraph # Frontier
+ node: BannerNanotrasenNode # Frontier
- type: entity
id: BannerCargo
@@ -46,6 +66,9 @@
- type: Sprite
sprite: Structures/Decoration/banner.rsi
state: banner_cargo
+ - type: Construction # Frontier
+ graph: BannersGraph # Frontier
+ node: BannerCargoNode # Frontier
- type: entity
id: BannerEngineering
@@ -56,6 +79,9 @@
- type: Sprite
sprite: Structures/Decoration/banner.rsi
state: banner_engineering
+ - type: Construction # Frontier
+ graph: BannersGraph # Frontier
+ node: BannerEngineeringNode # Frontier
- type: entity
id: BannerMedical
@@ -66,6 +92,9 @@
- type: Sprite
sprite: Structures/Decoration/banner.rsi
state: banner_medical
+ - type: Construction # Frontier
+ graph: BannersGraph # Frontier
+ node: BannerMedicalNode # Frontier
- type: entity
id: BannerRevolution
@@ -76,6 +105,9 @@
- type: Sprite
sprite: Structures/Decoration/banner.rsi
state: banner_revolution
+ - type: Construction # Frontier
+ graph: BannersGraph # Frontier
+ node: BannerRevolutionNode # Frontier
- type: entity
id: BannerSyndicate
@@ -86,6 +118,9 @@
- type: Sprite
sprite: Structures/Decoration/banner.rsi
state: banner_syndicate
+ - type: Construction # Frontier
+ graph: BannersGraph # Frontier
+ node: BannerSyndicateNode # Frontier
- type: entity
id: BannerScience
@@ -96,6 +131,9 @@
- type: Sprite
sprite: Structures/Decoration/banner.rsi
state: banner_science
+ - type: Construction # Frontier
+ graph: BannersGraph # Frontier
+ node: BannerScienceNode # Frontier
- type: entity
id: BannerSecurity
@@ -106,6 +144,9 @@
- type: Sprite
sprite: Structures/Decoration/banner.rsi
state: banner_security
+ - type: Construction # Frontier
+ graph: BannersGraph # Frontier
+ node: BannerSecurityNode # Frontier
- type: entity
id: BannerBlue
@@ -116,6 +157,9 @@
- type: Sprite
sprite: Structures/Decoration/banner.rsi
state: banner-blue
+ - type: Construction # Frontier
+ graph: BannersGraph # Frontier
+ node: BannerBlueNode # Frontier
- type: entity
id: BannerRed
@@ -126,6 +170,9 @@
- type: Sprite
sprite: Structures/Decoration/banner.rsi
state: banner-red
+ - type: Construction # Frontier
+ graph: BannersGraph # Frontier
+ node: BannerRedNode # Frontier
- type: entity
id: BannerYellow
@@ -136,6 +183,9 @@
- type: Sprite
sprite: Structures/Decoration/banner.rsi
state: banner-yellow
+ - type: Construction # Frontier
+ graph: BannersGraph # Frontier
+ node: BannerYellowNode # Frontier
- type: entity
id: BannerGreen
@@ -146,3 +196,6 @@
- type: Sprite
sprite: Structures/Decoration/banner.rsi
state: banner-green
+ - type: Construction # Frontier
+ graph: BannersGraph # Frontier
+ node: BannerGreenNode # Frontier
diff --git a/Resources/Prototypes/Entities/Structures/Decoration/bonfire.yml b/Resources/Prototypes/Entities/Structures/Decoration/bonfire.yml
index 22aef79340b9..322284736a4f 100644
--- a/Resources/Prototypes/Entities/Structures/Decoration/bonfire.yml
+++ b/Resources/Prototypes/Entities/Structures/Decoration/bonfire.yml
@@ -30,6 +30,9 @@
sound:
path: /Audio/Ambience/Objects/fireplace.ogg
- type: AlwaysHot
+ - type: Construction # Frontier
+ graph: FiresGraph # Frontier
+ node: BonfireNode # Frontier
- type: entity
id: LegionnaireBonfire
diff --git a/Resources/Prototypes/Entities/Structures/Decoration/fireplace.yml b/Resources/Prototypes/Entities/Structures/Decoration/fireplace.yml
index 3446c4980b48..e2ba84d597db 100644
--- a/Resources/Prototypes/Entities/Structures/Decoration/fireplace.yml
+++ b/Resources/Prototypes/Entities/Structures/Decoration/fireplace.yml
@@ -46,3 +46,6 @@
- !type:DoActsBehavior
acts: [ "Destruction" ]
- type: AlwaysHot
+ - type: Construction # Frontier
+ graph: FiresGraph # Frontier
+ node: FireplaceNode # Frontier
diff --git a/Resources/Prototypes/Entities/Structures/Furniture/altar.yml b/Resources/Prototypes/Entities/Structures/Furniture/altar.yml
index d34030eb973f..15496d603b5c 100644
--- a/Resources/Prototypes/Entities/Structures/Furniture/altar.yml
+++ b/Resources/Prototypes/Entities/Structures/Furniture/altar.yml
@@ -66,6 +66,9 @@
acts: [ "Destruction" ]
- type: StealTarget
stealGroup: AltarNanotrasen
+ - type: Construction # Frontier
+ graph: AltarsGraph # Frontier
+ node: AltarNanotrasenNode # Frontier
- type: entity
id: AltarChaos
@@ -78,6 +81,9 @@
- type: Icon
sprite: Structures/Furniture/Altars/Gods/nanotrasen.rsi
state: chaos
+ - type: Construction # Frontier
+ graph: AltarsGraph # Frontier
+ node: AltarChaosNode # Frontier
- type: entity
id: AltarDruid
@@ -90,6 +96,9 @@
- type: Icon
sprite: Structures/Furniture/Altars/Gods/nanotrasen.rsi
state: druid
+ - type: Construction # Frontier
+ graph: AltarsGraph # Frontier
+ node: AltarDruidNode # Frontier
- type: entity
id: AltarToolbox
@@ -102,6 +111,9 @@
- type: Icon
sprite: Structures/Furniture/Altars/Gods/nanotrasen.rsi
state: toolbox
+ - type: Construction # Frontier
+ graph: AltarsGraph # Frontier
+ node: AltarToolboxNode # Frontier
- type: entity
id: AltarSpaceChristian
@@ -121,6 +133,9 @@
radius: 1.5
energy: 1
color: "#fbceb1"
+ - type: Construction # Frontier
+ graph: AltarsGraph # Frontier
+ node: AltarSpaceChristianNode # Frontier
- type: entity
id: AltarSatana
@@ -140,6 +155,9 @@
radius: 1.5
energy: 1
color: "#ff6347"
+ - type: Construction # Frontier
+ graph: AltarsGraph # Frontier
+ node: AltarSatanaNode # Frontier
- type: entity
id: AltarTechnology
@@ -159,6 +177,9 @@
radius: 1.5
energy: 1
color: "#e0ffff"
+ - type: Construction # Frontier
+ graph: AltarsGraph # Frontier
+ node: AltarTechnologyNode # Frontier
- type: entity
id: AltarConvertFestival
@@ -201,6 +222,9 @@
- type: Tag
tags:
- Wooden
+ - type: Construction # Frontier
+ graph: AltarsGraph # Frontier
+ node: AltarConvertFestivalNode # Frontier
- type: entity
id: AltarConvertMaint
@@ -220,6 +244,9 @@
radius: 1.5
energy: 1
color: "#fbceb1"
+ - type: Construction # Frontier
+ graph: AltarsGraph # Frontier
+ node: AltarConvertMaintNode # Frontier
- type: entity
id: AltarConvertBlue
@@ -239,6 +266,9 @@
radius: 1.5
energy: 1
color: "#fbceb1"
+ - type: Construction # Frontier
+ graph: AltarsGraph # Frontier
+ node: AltarConvertBlueNode # Frontier
- type: entity
id: AltarConvertBurden
@@ -258,6 +288,9 @@
radius: 1.5
energy: 1
color: "#fbceb1"
+ - type: Construction # Frontier
+ graph: AltarsGraph # Frontier
+ node: AltarConvertBurdenNode # Frontier
- type: entity
id: AltarConvert
@@ -296,6 +329,9 @@
radius: 1.5
energy: 1
color: "#fbceb1"
+ - type: Construction # Frontier
+ graph: AltarsGraph # Frontier
+ node: AltarConvertOrangeNode # Frontier
- type: entity
id: AltarConvertRed
@@ -315,6 +351,9 @@
radius: 1.5
energy: 1
color: "#fbceb1"
+ - type: Construction # Frontier
+ graph: AltarsGraph # Frontier
+ node: AltarConvertRedNode # Frontier
- type: entity
id: AltarConvertWhite
@@ -334,6 +373,9 @@
radius: 1.5
energy: 1
color: "#fbceb1"
+ - type: Construction # Frontier
+ graph: AltarsGraph # Frontier
+ node: AltarConvertWhiteNode # Frontier
- type: entity
id: AltarConvertYellow
@@ -353,6 +395,9 @@
radius: 1.5
energy: 1
color: "#fbceb1"
+ - type: Construction # Frontier
+ graph: AltarsGraph # Frontier
+ node: AltarConvertYellowNode # Frontier
- type: entity
id: AltarHeaven
diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml
index 2595057716fd..8ec2ef1ee655 100644
--- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml
+++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml
@@ -428,7 +428,7 @@
- type: DeviceNetwork
deviceNetId: Wired
- type: DeviceLinkSource
- range: 5
+ range: 8 # Frontier
ports:
- ArtifactAnalyzerSender
- type: ActivatableUI
diff --git a/Resources/Prototypes/Entities/Structures/Machines/bombs.yml b/Resources/Prototypes/Entities/Structures/Machines/bombs.yml
index 580253f11895..192edf7ef7ff 100644
--- a/Resources/Prototypes/Entities/Structures/Machines/bombs.yml
+++ b/Resources/Prototypes/Entities/Structures/Machines/bombs.yml
@@ -126,6 +126,7 @@
totalIntensity: 4000.0
intensitySlope: 3
maxIntensity: 400
+ - type: Contraband #frontier
- type: entity
parent: SyndicateBomb
diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml
index 55285a9a2466..b72814823efc 100644
--- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml
+++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml
@@ -283,11 +283,13 @@
- Igniter
- PowerCellMedium
- PowerCellHigh
+ - PowerCellMicroreactor
- WeaponPistolCHIMP
- WeaponGauntletGorilla
- SynthesizerInstrument
- RPED
- ClothingShoesBootsMagSci
+ - ClothingShoesBootsMagAdv # Frontier
- ClothingShoesBootsSpeed
- NodeScanner
- HolofanProjector
diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/big_boxes.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/big_boxes.yml
index bf77ebfaea28..b22606e64555 100644
--- a/Resources/Prototypes/Entities/Structures/Storage/Closets/big_boxes.yml
+++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/big_boxes.yml
@@ -71,7 +71,7 @@
movementVisibilityRate: 0.20
- type: StaticPrice
price: 100
-
+ - type: Contraband #frontier
- type: entity
id: BigBox
diff --git a/Resources/Prototypes/Entities/Structures/Storage/ore_box.yml b/Resources/Prototypes/Entities/Structures/Storage/ore_box.yml
index 8b7074847f96..988c5486ae57 100644
--- a/Resources/Prototypes/Entities/Structures/Storage/ore_box.yml
+++ b/Resources/Prototypes/Entities/Structures/Storage/ore_box.yml
@@ -1,13 +1,11 @@
-- type: entity
+- type: entity
id: OreBox
name: ore box
- # description: A large storage container for holding unprocessed ores.
- description: A large storage container for collecting and holding unprocessed ores and fragments. # Frontier
+ description: A large storage container for collecting and holding unprocessed ores and fragments. # Frontier - was: A large storage container for holding unprocessed ores.
parent: BaseStructureDynamic
components:
- type: StaticPrice
- # price: 500
- price: 1000 # Frontier
+ price: 625 # Frontier - 500<625
- type: Anchorable
- type: InteractionOutline
- type: Damageable
@@ -17,15 +15,13 @@
thresholds:
- trigger:
!type:DamageTrigger
- # damage: 150
- damage: 450 # Frontier
+ damage: 450 # Frontier - 150<450
behaviors:
- !type:DoActsBehavior
acts: [ "Destruction" ]
- trigger:
!type:DamageTrigger
- # damage: 100
- damage: 300 # Frontier
+ damage: 300 # Frontier 100<300
behaviors:
- !type:EmptyAllContainersBehaviour
- !type:SpawnEntitiesBehavior
@@ -71,9 +67,9 @@
containers:
storagebase: !type:Container
ents: [ ]
- - type: Dumpable # Frontier
+ - type: Dumpable # Frontier
- type: MagnetPickup # Frontier
- range: 1.5 # Ore bag has a range of 1.0
+ range: 1.5 # Ore bag has a range of 1.0
- type: Fixtures
fixtures:
fix1:
diff --git a/Resources/Prototypes/Entities/World/Debris/wrecks.yml b/Resources/Prototypes/Entities/World/Debris/wrecks.yml
index 091f552d047a..38a69d12b842 100644
--- a/Resources/Prototypes/Entities/World/Debris/wrecks.yml
+++ b/Resources/Prototypes/Entities/World/Debris/wrecks.yml
@@ -20,13 +20,23 @@
Plating:
- prob: 3.5 # Intentional blank.
- id: SalvageMaterialCrateSpawner
- prob: 0.6
+ prob: 0.7
- id: RandomArtifactSpawner20
prob: 0.3
- id: SalvageCanisterSpawner
prob: 0.3
- id: SalvageLiquidCanisterSpawner # Frontier
prob: 0.03
+ - id: SalvageTankSpawner
+ prob: 0.15
+ - id: SalvageLockerSpawner
+ prob: 0.15
+ - id: SalvageSuitStorageSpawner
+ prob: 0.05
+ - id: SalvagePottedPlantsSpawner
+ prob: 0.1
+ - id: SalvageGeneratorSpawner
+ prob: 0.1
- id: SalvageMobSpawner
prob: 0.3
- id: SpawnMobBearSalvage
@@ -41,14 +51,44 @@
prob: 0.02
- id: TableFrame
prob: 0.2
+ - id: MedicalBed
+ prob: 0.025
+ - id: Bed
+ prob: 0.05
+ - id: Bookshelf
+ prob: 0.025
+ - id: Dresser
+ prob: 0.025
+ - id: RollerBedSpawnFolded
+ prob: 0.02
+ - id: RollerBed
+ prob: 0.02
+ - id: CheapRollerBed
+ prob: 0.02
+ - id: EmergencyRollerBed
+ prob: 0.02
- id: RandomBox
prob: 0.2
+ - id: SalvageHandheldFlagSpawner
+ prob: 0.02
- id: Girder
prob: 1.7
- id: WallSolid
prob: 1.5
- id: Grille
prob: 0.4
+ - id: WindowDirectional
+ prob: 0.05
+ - id: WindowReinforcedDirectional
+ prob: 0.1
+ - id: PlasmaWindowDirectional
+ prob: 0.005
+ - id: PlasmaWindow
+ prob: 0.005
+ - id: ReinforcedWindow
+ prob: 0.1
+ - id: Window
+ prob: 0.05
Lattice:
- prob: 2
- id: Grille
@@ -68,7 +108,19 @@
- id: RandomAmmoBox
prob: 0.2
- id: ChairFolding
- prob: 0.2
+ prob: 0.05
+ - id: ChairWood
+ prob: 0.05
+ - id: ComfyChair
+ prob: 0.05
+ - id: ChairOfficeDark
+ prob: 0.05
+ - id: ChairOfficeLight
+ prob: 0.05
+ - id: ChairPilotSeat
+ prob: 0.05
+ - id: Stool
+ prob: 0.05
- id: RandomBook
prob: 0.2
- id: RandomBox
@@ -93,12 +145,17 @@
prob: 0.03
- id: SpawnMobPurpleSnake
prob: 0.02
+ - id: Gyroscope
+ prob: 0.0025
+ - id: Thruster
+ prob: 0.005
- type: GCAbleObject
queue: SpaceDebris
- type: IFF
flags: HideLabel
color: "#88b0d1"
+
- type: entity
id: ScrapDebrisSmall
parent: BaseScrapDebris
@@ -107,7 +164,7 @@
components:
- type: MapGrid
- type: BlobFloorPlanBuilder
- floorPlacements: 8
+ floorPlacements: 16
- type: entity
id: ScrapDebrisMedium
@@ -117,7 +174,7 @@
components:
- type: MapGrid
- type: BlobFloorPlanBuilder
- floorPlacements: 16
+ floorPlacements: 24
- type: entity
id: ScrapDebrisLarge
@@ -127,4 +184,45 @@
components:
- type: MapGrid
- type: BlobFloorPlanBuilder
- floorPlacements: 24
+ radius: 12
+ floorPlacements: 36
+ blobDrawProb: 0.625
+
+
+- type: entity
+ id: ScrapDebrisExtraLarge
+ parent: BaseScrapDebris
+ name: Scrap Debris Extra Large
+ noSpawn: true
+ components:
+ - type: MapGrid
+ - type: BlobFloorPlanBuilder
+ radius: 18
+ floorPlacements: 54
+ blobDrawProb: 0.675
+
+
+- type: entity
+ id: ScrapDebrisExtraLargeScattered
+ parent: BaseScrapDebris
+ name: Scrap Debris Extra Large Scattered
+ noSpawn: true
+ components:
+ - type: MapGrid
+ - type: BlobFloorPlanBuilder
+ radius: 18
+ floorPlacements: 54
+ blobDrawProb: 0.3
+
+
+- type: entity
+ id: ScrapDebrisHuge
+ parent: BaseScrapDebris
+ name: Scrap Debris Huge
+ noSpawn: true
+ components:
+ - type: MapGrid
+ - type: BlobFloorPlanBuilder
+ radius: 24
+ floorPlacements: 80
+ blobDrawProb: 0.75
diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Nyanotrasen/Entities/Clothing/Head/hats.yml
index 72c6bf50b610..ece1d28b6254 100644
--- a/Resources/Prototypes/Nyanotrasen/Entities/Clothing/Head/hats.yml
+++ b/Resources/Prototypes/Nyanotrasen/Entities/Clothing/Head/hats.yml
@@ -111,3 +111,4 @@
Blunt: 0.80
Slash: 0.80
Piercing: 0.80
+ - type: Contraband #frontier
diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/Nyanotrasen/Entities/Clothing/OuterClothing/armor.yml
index db9824104610..9e1090031115 100644
--- a/Resources/Prototypes/Nyanotrasen/Entities/Clothing/OuterClothing/armor.yml
+++ b/Resources/Prototypes/Nyanotrasen/Entities/Clothing/OuterClothing/armor.yml
@@ -50,3 +50,4 @@
Blunt: 0.60
Slash: 0.60
Piercing: 0.75
+ - type: Contraband #frontier
diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Weapons/Melee/blunt.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Weapons/Melee/blunt.yml
index 80159f5a592f..0f92700cd035 100644
--- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Weapons/Melee/blunt.yml
+++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Weapons/Melee/blunt.yml
@@ -26,6 +26,7 @@
quickEquip: false
slots:
- back
+ - type: Contraband #frontier
- type: entity
name: shinai
@@ -50,4 +51,4 @@
- type: Item
size: Normal
sprite: Nyanotrasen/Objects/Weapons/Melee/shinai.rsi
- - type: DisarmMalus
\ No newline at end of file
+ - type: DisarmMalus
diff --git a/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/boxes.yml b/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/boxes.yml
index c4c37e6f92c4..aae99d70f8d9 100644
--- a/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/boxes.yml
+++ b/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/boxes.yml
@@ -31,6 +31,8 @@
- BoxLatexGloves
- BoxBodyBag
- BoxBeaker
+ - BoxCandle
+ - BoxCandleSmall
chance: 0.7
rarePrototypes:
- BoxHugHealing
diff --git a/Resources/Prototypes/Nyanotrasen/Procedural/Themes/ruined_dwellings.yml b/Resources/Prototypes/Nyanotrasen/Procedural/Themes/ruined_dwellings.yml
deleted file mode 100644
index bcf2403f0d84..000000000000
--- a/Resources/Prototypes/Nyanotrasen/Procedural/Themes/ruined_dwellings.yml
+++ /dev/null
@@ -1,100 +0,0 @@
-# Tiny Rooms: 3x3
-- type: dungeonRoom
- id: RuinedDwelling3x3RoomA
- size: 3,3
- atlas: /Maps/_NF/Dungeon/ruined_dwellings.yml
- offset: 1,1
- tags:
- - RuinedDwelling
-
-- type: dungeonRoom
- id: RuinedDwelling3x3RoomB
- size: 3,3
- atlas: /Maps/_NF/Dungeon/ruined_dwellings.yml
- offset: 1,5
- tags:
- - RuinedDwelling
-
-- type: dungeonRoom
- id: RuinedDwelling3x3RoomC
- size: 3,3
- atlas: /Maps/_NF/Dungeon/ruined_dwellings.yml
- offset: 1,9
- tags:
- - RuinedDwelling
-
-- type: dungeonRoom
- id: RuinedDwelling3x3Toilet
- size: 3,3
- atlas: /Maps/_NF/Dungeon/ruined_dwellings.yml
- offset: 1,13
- tags:
- - RuinedDwelling
-
-# Hallways: 3x15
-- type: dungeonRoom
- id: RuinedDwelling3x15Hallway
- size: 3,15
- atlas: /Maps/_NF/Dungeon/ruined_dwellings.yml
- offset: 1,17
- tags:
- - RuinedDwelling
-
-# Average Rooms: 5x5
-- type: dungeonRoom
- id: RuinedDwelling5x5RoomA
- size: 5,5
- atlas: /Maps/_NF/Dungeon/ruined_dwellings.yml
- offset: 5,1
- tags:
- - RuinedDwelling
-
-- type: dungeonRoom
- id: RuinedDwelling5x5RoomB
- size: 5,5
- atlas: /Maps/_NF/Dungeon/ruined_dwellings.yml
- offset: 5,7
- tags:
- - RuinedDwelling
-
-- type: dungeonRoom
- id: RuinedDwelling5x5RoomC
- size: 5,5
- atlas: /Maps/_NF/Dungeon/ruined_dwellings.yml
- offset: 5,13
- tags:
- - RuinedDwelling
-
-- type: dungeonRoom
- id: RuinedDwelling5x5Generator
- size: 5,5
- atlas: /Maps/_NF/Dungeon/ruined_dwellings.yml
- offset: 5,19
- tags:
- - RuinedDwelling
-
-# Common Areas: 7x7
-- type: dungeonRoom
- id: RuinedDwelling7x7Laundromat
- size: 7,7
- atlas: /Maps/_NF/Dungeon/ruined_dwellings.yml
- offset: 11,1
- tags:
- - RuinedDwelling
-
-- type: dungeonRoom
- id: RuinedDwelling7x7Commons
- size: 7,7
- atlas: /Maps/_NF/Dungeon/ruined_dwellings.yml
- offset: 11,9
- tags:
- - RuinedDwelling
-
-- type: dungeonRoom
- id: RuinedDwelling7x7Crater
- size: 7,7
- atlas: /Maps/_NF/Dungeon/ruined_dwellings.yml
- offset: 11,17
- tags:
- - RuinedDwelling
-
diff --git a/Resources/Prototypes/Nyanotrasen/Procedural/Themes/ruined_hospital.yml b/Resources/Prototypes/Nyanotrasen/Procedural/Themes/ruined_hospital.yml
deleted file mode 100644
index 56bc60ddc2c3..000000000000
--- a/Resources/Prototypes/Nyanotrasen/Procedural/Themes/ruined_hospital.yml
+++ /dev/null
@@ -1,191 +0,0 @@
-# Hallways: 3xY
-- type: dungeonRoom
- id: RuinedHospital3x11Hallway
- size: 3,11
- atlas: /Maps/_NF/Dungeon/ruined_hospital.yml
- offset: 1,1
- tags:
- - RuinedHospital
-
-- type: dungeonRoom
- id: RuinedHospital3x3HallwayJunction
- size: 3,3
- atlas: /Maps/_NF/Dungeon/ruined_hospital.yml
- offset: 1,13
- tags:
- - RuinedHospital
-
-- type: dungeonRoom
- id: RuinedHospital3x7Hallway
- size: 3,7
- atlas: /Maps/_NF/Dungeon/ruined_hospital.yml
- offset: 1,17
- tags:
- - RuinedHospital
-
-- type: dungeonRoom
- id: RuinedHospital3x5Hallway
- size: 3,5
- atlas: /Maps/_NF/Dungeon/ruined_hospital.yml
- offset: 1,25
- tags:
- - RuinedHospital
-
-
-# Maintenance: 4xY
-- type: dungeonRoom
- id: RuinedHospital4x4MaintJunction
- size: 4,4
- atlas: /Maps/_NF/Dungeon/ruined_hospital.yml
- offset: 5,1
- tags:
- - RuinedHospital
-
-- type: dungeonRoom
- id: RuinedHospital4x4MaintStorageA
- size: 4,4
- atlas: /Maps/_NF/Dungeon/ruined_hospital.yml
- offset: 5,6
- tags:
- - RuinedHospital
-
-- type: dungeonRoom
- id: RuinedHospital4x4MaintStorageB
- size: 4,4
- atlas: /Maps/_NF/Dungeon/ruined_hospital.yml
- offset: 5,11
- tags:
- - RuinedHospital
-
-- type: dungeonRoom
- id: RuinedHospital4x4MaintEmpty
- size: 4,4
- atlas: /Maps/_NF/Dungeon/ruined_hospital.yml
- offset: 5,16
- tags:
- - RuinedHospital
-
-# Facilities: 5xY
-- type: dungeonRoom
- id: RuinedHospital5x5Pharmacy
- size: 5,5
- atlas: /Maps/_NF/Dungeon/ruined_hospital.yml
- offset: 10,1
- tags:
- - RuinedHospital
-
-- type: dungeonRoom
- id: RuinedHospital5x5Exam
- size: 5,5
- atlas: /Maps/_NF/Dungeon/ruined_hospital.yml
- offset: 10,7
- tags:
- - RuinedHospital
-
-- type: dungeonRoom
- id: RuinedHospital5x5Infection
- size: 5,5
- atlas: /Maps/_NF/Dungeon/ruined_hospital.yml
- offset: 10,13
- tags:
- - RuinedHospital
-
-- type: dungeonRoom
- id: RuinedHospital5x5Bathroom
- size: 5,5
- atlas: /Maps/_NF/Dungeon/ruined_hospital.yml
- offset: 10,19
- tags:
- - RuinedHospital
-
-- type: dungeonRoom
- id: RuinedHospital5x5VendingMachines
- size: 5,5
- atlas: /Maps/_NF/Dungeon/ruined_hospital.yml
- offset: 10,25
- tags:
- - RuinedHospital
-
-# Facilities: 6xY
-- type: dungeonRoom
- id: RuinedHospital6x5Office
- size: 6,5
- atlas: /Maps/_NF/Dungeon/ruined_hospital.yml
- offset: 16,1
- tags:
- - RuinedHospital
-
-- type: dungeonRoom
- id: RuinedHospital6x5Therapist
- size: 6,5
- atlas: /Maps/_NF/Dungeon/ruined_hospital.yml
- offset: 16,7
- tags:
- - RuinedHospital
-
-- type: dungeonRoom
- id: RuinedHospital6x5Exam
- size: 6,5
- atlas: /Maps/_NF/Dungeon/ruined_hospital.yml
- offset: 16,13
- tags:
- - RuinedHospital
-
-# Facilities: 7xY
-- type: dungeonRoom
- id: RuinedHospital7x5Bathroom
- size: 7,5
- atlas: /Maps/_NF/Dungeon/ruined_hospital.yml
- offset: 23,1
- tags:
- - RuinedHospital
-
-- type: dungeonRoom
- id: RuinedHospital7x7BreakRoom
- size: 7,7
- atlas: /Maps/_NF/Dungeon/ruined_hospital.yml
- offset: 23,7
- tags:
- - RuinedHospital
-
-- type: dungeonRoom
- id: RuinedHospital7x7OperatingRoom
- size: 7,7
- atlas: /Maps/_NF/Dungeon/ruined_hospital.yml
- offset: 23,15
- tags:
- - RuinedHospital
-
-- type: dungeonRoom
- id: RuinedHospital7x7Morgue
- size: 7,7
- atlas: /Maps/_NF/Dungeon/ruined_hospital.yml
- offset: 23,23
- tags:
- - RuinedHospital
-
-- type: dungeonRoom
- id: RuinedHospital7x7LockerRoom
- size: 7,7
- atlas: /Maps/_NF/Dungeon/ruined_hospital.yml
- offset: 23,31
- tags:
- - RuinedHospital
-
-# Generator: 8x5
-- type: dungeonRoom
- id: RuinedHospital8x5Generator
- size: 8,5
- atlas: /Maps/_NF/Dungeon/ruined_hospital.yml
- offset: 31,1
- tags:
- - RuinedHospital
-
-# Facilities: 9xY
-- type: dungeonRoom
- id: RuinedHospital9x7OperatingRoom
- size: 9,7
- atlas: /Maps/_NF/Dungeon/ruined_hospital.yml
- offset: 40,1
- tags:
- - RuinedHospital
diff --git a/Resources/Prototypes/Nyanotrasen/Procedural/Themes/ruined_shops.yml b/Resources/Prototypes/Nyanotrasen/Procedural/Themes/ruined_shops.yml
deleted file mode 100644
index 424a0abd202a..000000000000
--- a/Resources/Prototypes/Nyanotrasen/Procedural/Themes/ruined_shops.yml
+++ /dev/null
@@ -1,49 +0,0 @@
-# Shop: 9x9
-- type: dungeonRoom
- id: RuinedShop9x9General
- size: 9,9
- atlas: /Maps/_NF/Dungeon/ruined_shops.yml
- offset: 1,1
- tags:
- - RuinedShop
-
-- type: dungeonRoom
- id: RuinedShop9x9Guns
- size: 9,9
- atlas: /Maps/_NF/Dungeon/ruined_shops.yml
- offset: 11,1
- tags:
- - RuinedShop
-
-- type: dungeonRoom
- id: RuinedShop9x9Grocery
- size: 9,9
- atlas: /Maps/_NF/Dungeon/ruined_shops.yml
- offset: 21,1
- tags:
- - RuinedShop
-
-- type: dungeonRoom
- id: RuinedShop9x9Chapel
- size: 9,9
- atlas: /Maps/_NF/Dungeon/ruined_shops.yml
- offset: 31,1
- tags:
- - RuinedShop
-
-- type: dungeonRoom
- id: RuinedShop9x9Dive
- size: 9,9
- atlas: /Maps/_NF/Dungeon/ruined_shops.yml
- offset: 41,1
- tags:
- - RuinedShop
-
-- type: dungeonRoom
- id: RuinedShop9x9Garage
- size: 9,9
- atlas: /Maps/_NF/Dungeon/ruined_shops.yml
- offset: 51,1
- tags:
- - RuinedShop
-
diff --git a/Resources/Prototypes/Nyanotrasen/Procedural/dungeon_configs.yml b/Resources/Prototypes/Nyanotrasen/Procedural/dungeon_configs.yml
deleted file mode 100644
index 1b1c9ec63c91..000000000000
--- a/Resources/Prototypes/Nyanotrasen/Procedural/dungeon_configs.yml
+++ /dev/null
@@ -1,120 +0,0 @@
-# ruined hospital
-
-- type: dungeonConfig
- id: RuinedHospital
- generator: !type:PrefabDunGen
- roomWhitelist:
- - RuinedHospital
- presets:
- - NyanoCompound
- postGeneration:
- - !type:MiddleConnectionPostGen
- count: 1
- tile: FloorWhitePlastic
- entities:
- - CableApcExtension
- - AirlockGlass
-
- - !type:EntrancePostGen
- count: 2
- tile: FloorWhitePlastic
- entities:
- - AirlockGlass
-
- - !type:WallMountPostGen
- tile: Plating
- prob: 0.05
- spawns:
- - id: RandomPainting
- prob: 1
- orGroup: content
- - id: DefibrillatorCabinetFilled
- prob: 0.2
- orGroup: content
- - id: ExtinguisherCabinetFilled
- prob: 0.2
- orGroup: content
- - id: IntercomCommon
- prob: 0.1
- orGroup: content
-
- - !type:BoundaryWallPostGen
- tile: Plating
- wall: WallSolid
- cornerWall: WallSolid
-
-# ruined dwellings
-
-- type: dungeonConfig
- id: RuinedDwellings
- generator: !type:PrefabDunGen
- roomWhitelist:
- - RuinedDwelling
- presets:
- - NyanoStack
- postGeneration:
- - !type:MiddleConnectionPostGen
- count: 1
- tile: FloorWood
- entities:
- - CableApcExtension
- - WoodDoor
-
- - !type:EntrancePostGen
- count: 2
- tile: FloorWood
- entities:
- - WoodDoor
-
- - !type:ExternalWindowPostGen
- tile: FloorWood
- entities:
- - Window
-
- - !type:WallMountPostGen
- tile: Plating
- prob: 0.05
- spawns:
- - id: RandomPainting
- prob: 1
- orGroup: content
-
- - !type:BoundaryWallPostGen
- tile: Plating
- wall: WallSolid
- cornerWall: WallSolid
-
-# ruined shops
-
-# - type: dungeonConfig
- # id: RuinedShop
- # generator: !type:PrefabDunGen
- # tile: FloorPlanetAsphalt
- # roomWhitelist:
- # - RuinedShop
- # presets:
- # - NyanoSolo9
- # postGeneration:
- # - !type:EntrancePostGen
- # count: 1
- # tile: FloorPlanetAsphalt
- # entities:
- # - WoodDoor
-
- # - !type:ExternalWindowPostGen
- # tile: FloorWood
- # entities:
- # - Window
-
- # - !type:WallMountPostGen
- # tile: Plating
- # prob: 0.05
- # spawns:
- # - id: RandomPosterAny
- # orGroup: content
-
- # - !type:BoundaryWallPostGen
- # tile: Plating
- # wall: WallDrywall
- # cornerWall: WallDrywall
-
diff --git a/Resources/Prototypes/Nyanotrasen/tags.yml b/Resources/Prototypes/Nyanotrasen/tags.yml
index b35f01c0af2d..43b8a6576acc 100644
--- a/Resources/Prototypes/Nyanotrasen/tags.yml
+++ b/Resources/Prototypes/Nyanotrasen/tags.yml
@@ -1,15 +1,6 @@
- type: Tag
id: SheetSteel
-- type: Tag
- id: RuinedDwelling
-
-- type: Tag
- id: RuinedHospital
-
-- type: Tag
- id: RuinedShop
-
- type: Tag
id: MothroachHide
diff --git a/Resources/Prototypes/Procedural/Magnet/asteroid.yml b/Resources/Prototypes/Procedural/Magnet/asteroid.yml
index 35867b854785..9abd60b27c16 100644
--- a/Resources/Prototypes/Procedural/Magnet/asteroid.yml
+++ b/Resources/Prototypes/Procedural/Magnet/asteroid.yml
@@ -1,116 +1,121 @@
-- type: weightedRandom
- id: AsteroidOre
- weights:
- OreIron: 1.0
- OreQuartz: 1.0
- OreCoal: 1.0
- OreGold: 0.25
- OreSilver: 0.25
- OrePlasma: 0.15
- OreUranium: 0.15
+# Frontier - these cause startup issues due to nonexistent NoiseDunGen
+# This file comes from this PR:
+# https://github.com/space-wizards/space-station-14/commit/bf79acd127483d64f96dc23f2e64c74ceb84303d
+# but then i dont see any of the CS code so bad merge i guess
-# Large asteroids, typically 1
-- type: dungeonConfig
- id: BlobAsteroid
- # Floor generation
- generator: !type:NoiseDunGen
- tileCap: 1500
- capStd: 32
- iterations: 3
- layers:
- - tile: FloorAsteroidSand
- threshold: 0.30
- noise:
- frequency: 0.020
- noiseType: OpenSimplex2
- fractalType: FBm
- octaves: 2
- lacunarity: 2
- # Everything else
- postGeneration:
- # Generate biome
- - !type:BiomePostGen
- biomeTemplate: Asteroid
-
- # Generate ore veins
- - !type:MarkerLayerPostGen
- markerTemplate: AsteroidOre
-
-# Multiple smaller asteroids
-# This is a pain so we generate fewer tiles
-- type: dungeonConfig
- id: ClusterAsteroid
- # Floor generation
- generator: !type:NoiseDunGen
- tileCap: 1000
- capStd: 32
- layers:
- - tile: FloorAsteroidSand
- threshold: 0.10
- noise:
- frequency: 0.130
- noiseType: OpenSimplex2
- fractalType: FBm
- octaves: 2
- lacunarity: 2
- # Everything else
- postGeneration:
- # Generate biome
- - !type:BiomePostGen
- biomeTemplate: Asteroid
-
- # Generate ore veins
- - !type:MarkerLayerPostGen
- markerTemplate: AsteroidOre
-
-# Long and spindly, less smooth than blob
-- type: dungeonConfig
- id: SpindlyAsteroid
- # Floor generation
- generator: !type:NoiseDunGen
- tileCap: 1500
- capStd: 32
- layers:
- - tile: FloorAsteroidSand
- threshold: -0.50
- noise:
- frequency: 0.055
- noiseType: Cellular
- fractalType: FBm
- octaves: 3
- lacunarity: 2
- cellularDistanceFunction: Euclidean
- postGeneration:
- # Generate biome
- - !type:BiomePostGen
- biomeTemplate: Asteroid
-
- # Generate ore veins
- - !type:MarkerLayerPostGen
- markerTemplate: AsteroidOre
-
-# Lots of holes in it
-- type: dungeonConfig
- id: SwissCheeseAsteroid
- # Floor generation
- generator: !type:NoiseDunGen
- tileCap: 1500
- capStd: 32
- layers:
- - tile: FloorAsteroidSand
- threshold: -0.10
- noise:
- frequency: 0.155
- noiseType: OpenSimplex2
- fractalType: FBm
- octaves: 2
- lacunarity: 2
- # Everything else
- postGeneration:
- # Generate biome
- - !type:BiomePostGen
- biomeTemplate: Asteroid
-
- # Generate ore veins
- - !type:MarkerLayerPostGen
- markerTemplate: AsteroidOre
+#- type: weightedRandom
+# id: AsteroidOre
+# weights:
+# OreIron: 1.0
+# OreQuartz: 1.0
+# OreCoal: 1.0
+# OreGold: 0.25
+# OreSilver: 0.25
+# OrePlasma: 0.15
+# OreUranium: 0.15
+#
+## Large asteroids, typically 1
+#- type: dungeonConfig
+# id: BlobAsteroid
+# # Floor generation
+# generator: !type:NoiseDunGen
+# tileCap: 1500
+# capStd: 32
+# iterations: 3
+# layers:
+# - tile: FloorAsteroidSand
+# threshold: 0.30
+# noise:
+# frequency: 0.020
+# noiseType: OpenSimplex2
+# fractalType: FBm
+# octaves: 2
+# lacunarity: 2
+# # Everything else
+# postGeneration:
+# # Generate biome
+# - !type:BiomePostGen
+# biomeTemplate: Asteroid
+#
+# # Generate ore veins
+# - !type:MarkerLayerPostGen
+# markerTemplate: AsteroidOre
+#
+## Multiple smaller asteroids
+## This is a pain so we generate fewer tiles
+#- type: dungeonConfig
+# id: ClusterAsteroid
+# # Floor generation
+# generator: !type:NoiseDunGen
+# tileCap: 1000
+# capStd: 32
+# layers:
+# - tile: FloorAsteroidSand
+# threshold: 0.10
+# noise:
+# frequency: 0.130
+# noiseType: OpenSimplex2
+# fractalType: FBm
+# octaves: 2
+# lacunarity: 2
+# # Everything else
+# postGeneration:
+# # Generate biome
+# - !type:BiomePostGen
+# biomeTemplate: Asteroid
+#
+# # Generate ore veins
+# - !type:MarkerLayerPostGen
+# markerTemplate: AsteroidOre
+#
+## Long and spindly, less smooth than blob
+#- type: dungeonConfig
+# id: SpindlyAsteroid
+# # Floor generation
+# generator: !type:NoiseDunGen
+# tileCap: 1500
+# capStd: 32
+# layers:
+# - tile: FloorAsteroidSand
+# threshold: -0.50
+# noise:
+# frequency: 0.055
+# noiseType: Cellular
+# fractalType: FBm
+# octaves: 3
+# lacunarity: 2
+# cellularDistanceFunction: Euclidean
+# postGeneration:
+# # Generate biome
+# - !type:BiomePostGen
+# biomeTemplate: Asteroid
+#
+# # Generate ore veins
+# - !type:MarkerLayerPostGen
+# markerTemplate: AsteroidOre
+#
+## Lots of holes in it
+#- type: dungeonConfig
+# id: SwissCheeseAsteroid
+# # Floor generation
+# generator: !type:NoiseDunGen
+# tileCap: 1500
+# capStd: 32
+# layers:
+# - tile: FloorAsteroidSand
+# threshold: -0.10
+# noise:
+# frequency: 0.155
+# noiseType: OpenSimplex2
+# fractalType: FBm
+# octaves: 2
+# lacunarity: 2
+# # Everything else
+# postGeneration:
+# # Generate biome
+# - !type:BiomePostGen
+# biomeTemplate: Asteroid
+#
+# # Generate ore veins
+# - !type:MarkerLayerPostGen
+# markerTemplate: AsteroidOre
diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml
index 5ab0d68c33ff..033766a7d4a2 100644
--- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml
+++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml
@@ -291,9 +291,9 @@
TableSalt: 5
solids:
FoodBreadBun: 1
- FoodMeat: 3
- FoodCheeseSlice: 3
- FoodTomato: 3
+ FoodMeat: 2
+ FoodCheeseSlice: 2
+ FoodTomato: 2
FoodEgg: 2
- type: microwaveMealRecipe
diff --git a/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml b/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml
index 01eb7a5f88a0..00edd958c72d 100644
--- a/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml
+++ b/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml
@@ -267,7 +267,7 @@
equipment:
jumpsuit: ClothingUniformJumpsuitERTJanitor
back: ClothingBackpackERTJanitorFilled
- shoes: ClothingShoesBootsMag
+ shoes: ClothingShoesBootsMagGaloshes # Frontier
mask: ClothingMaskGasERT
gloves: ClothingHandsGlovesColorPurple
outerClothing: ClothingOuterHardsuitERTJanitor
diff --git a/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml b/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml
index 727c0e4fa4ed..4ce7e89e1395 100644
--- a/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml
+++ b/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml
@@ -36,7 +36,7 @@
id: SeniorOfficerGear
equipment:
jumpsuit: ClothingUniformJumpsuitSeniorOfficer
- back: ClothingBackpackSecurityFilled
+ back: ClothingBackpackOfficerFilled # Frontier
shoes: ClothingShoesBootsCombatFilled
eyes: ClothingEyesGlassesSecurity
head: ClothingHeadHatBeret
@@ -47,6 +47,6 @@
pocket1: WeaponPistolMk58Nonlethal
gloves: ClothingHandsGlovesCombat # Frontier
innerClothingSkirt: ClothingUniformJumpskirtSeniorOfficer
- satchel: ClothingBackpackSatchelSecurityFilled
- duffelbag: ClothingBackpackDuffelSecurityFilled
- messenger: ClothingBackpackMessengerSecurityFilled # Frontier
+ satchel: ClothingBackpackSatchelOfficerFilled # Frontier
+ duffelbag: ClothingBackpackDuffelOfficerFilled # Frontier
+ messenger: ClothingBackpackMessengerOfficerFilled # Frontier
diff --git a/Resources/Prototypes/Roles/Jobs/Security/warden.yml b/Resources/Prototypes/Roles/Jobs/Security/warden.yml
index f9147678a757..5c75f3097610 100644
--- a/Resources/Prototypes/Roles/Jobs/Security/warden.yml
+++ b/Resources/Prototypes/Roles/Jobs/Security/warden.yml
@@ -32,7 +32,7 @@
equipment:
head: ClothingHeadHatWarden
jumpsuit: ClothingUniformJumpsuitWarden
- back: ClothingBackpackSecurityFilled
+ back: ClothingBackpackOfficerFilled # Frontier
shoes: ClothingShoesBootsCombatFilled
eyes: ClothingEyesGlassesSunglasses
outerClothing: ClothingOuterCoatWarden
@@ -43,6 +43,6 @@
pocket2: HoloprojectorSecurity # Frontier
gloves: ClothingHandsGlovesCombat # Frontier
innerClothingSkirt: ClothingUniformJumpskirtWarden
- satchel: ClothingBackpackSatchelSecurityFilled
- duffelbag: ClothingBackpackDuffelSecurityFilled
- messenger: ClothingBackpackMessengerSecurityFilled # Frontier
+ satchel: ClothingBackpackSatchelOfficerFilled # Frontier
+ duffelbag: ClothingBackpackDuffelOfficerFilled # Frontier
+ messenger: ClothingBackpackMessengerOfficerFilled # Frontier
diff --git a/Resources/Prototypes/World/Biomes/basic.yml b/Resources/Prototypes/World/Biomes/basic.yml
index 17b211b73ecf..a0b5713013e2 100644
--- a/Resources/Prototypes/World/Biomes/basic.yml
+++ b/Resources/Prototypes/World/Biomes/basic.yml
@@ -18,10 +18,19 @@
- type: NoiseDrivenDebrisSelector
noiseChannel: Wreck
debrisTable:
- ##- id: ScrapDebrisSmall
+ - id: ScrapDebrisSmall
+ prob: 1
- id: ScrapDebrisMedium
+ prob: 1
- id: ScrapDebrisLarge
- prob: 0.5
+ prob: 0.6
+ - id: ScrapDebrisExtraLarge
+ prob: 0.3
+ - id: ScrapDebrisExtraLargeScattered
+ prob: 0.3
+ - id: ScrapDebrisHuge
+ prob: 0.15
+
- type: NoiseRangeCarver
ranges:
- 0.4, 0.6
diff --git a/Resources/Prototypes/_NF/Catalog/Cargo/cargo_vending.yml b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_vending.yml
index 635dec04eabd..ad30eb998322 100644
--- a/Resources/Prototypes/_NF/Catalog/Cargo/cargo_vending.yml
+++ b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_vending.yml
@@ -65,3 +65,13 @@
cost: 100
category: Fun
group: market
+
+- type: cargoProduct
+ id: CrateVendingMachineRestockPottedPlantVend
+ icon:
+ sprite: _NF/Objects/Specific/Service/vending_machine_restock.rsi
+ state: base
+ product: CrateVendingMachineRestockPottedPlantVendFilled
+ cost: 100
+ category: Fun
+ group: market
diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/backpack.yml b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/backpack.yml
index c45ea1ef72e6..dffe164575bf 100644
--- a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/backpack.yml
+++ b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/backpack.yml
@@ -60,3 +60,15 @@
- id: BoxSurvival
- id: Lighter
- id: CigPackGreen
+
+- type: entity
+ noSpawn: true
+ parent: ClothingBackpackSecurity
+ id: ClothingBackpackOfficerFilled
+ components:
+ - type: StorageFill
+ contents:
+ - id: BoxSurvivalSecurity
+ - id: Flash
+ - id: MagazinePistol
+ - id: BaseSecurityUplinkRadioOfficer # Frontier
\ No newline at end of file
diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml
index 72b8ab5ad4d9..8b40fdd820df 100644
--- a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml
+++ b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml
@@ -60,3 +60,15 @@
- id: BoxSurvival
- id: Lighter
- id: CigPackGreen
+
+- type: entity
+ noSpawn: true
+ parent: ClothingBackpackDuffelSecurity
+ id: ClothingBackpackDuffelOfficerFilled
+ components:
+ - type: StorageFill
+ contents:
+ - id: BoxSurvivalSecurity
+ - id: Flash
+ - id: MagazinePistol
+ - id: BaseSecurityUplinkRadioOfficer # Frontier
\ No newline at end of file
diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/messenger.yml b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/messenger.yml
index aa02c4422b07..5b782bec8941 100644
--- a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/messenger.yml
+++ b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/messenger.yml
@@ -163,3 +163,8 @@
noSpawn: true
parent: [ClothingBackpackMessengerMailman, ClothingBackpackFilled]
id: ClothingBackpackMessengerMailmanFilled
+
+- type: entity
+ noSpawn: true
+ parent: [ClothingBackpackMessengerSecurity, ClothingBackpackOfficerFilled]
+ id: ClothingBackpackMessengerOfficerFilled
\ No newline at end of file
diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/satchel.yml b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/satchel.yml
index 5dd8e25eaecc..a1384bbd0723 100644
--- a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/satchel.yml
+++ b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/satchel.yml
@@ -60,3 +60,15 @@
- id: BoxSurvival
- id: Lighter
- id: CigPackGreen
+
+- type: entity
+ noSpawn: true
+ parent: ClothingBackpackSatchelSecurity
+ id: ClothingBackpackSatchelOfficerFilled
+ components:
+ - type: StorageFill
+ contents:
+ - id: BoxSurvivalSecurity
+ - id: Flash
+ - id: MagazinePistol
+ - id: BaseSecurityUplinkRadioOfficer # Frontier
\ No newline at end of file
diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Boxes/general.yml b/Resources/Prototypes/_NF/Catalog/Fills/Boxes/general.yml
index 76e9127542a3..63c294f5149e 100644
--- a/Resources/Prototypes/_NF/Catalog/Fills/Boxes/general.yml
+++ b/Resources/Prototypes/_NF/Catalog/Fills/Boxes/general.yml
@@ -88,3 +88,25 @@
- state: box
- type: VendPrice
price: 1200
+
+- type: entity
+ name: Thruster upgrade kit
+ parent: BoxCardboard
+ id: BoxT3SuperCapacitor
+ description: A box of super capacitors.
+ components:
+ - type: StorageFill
+ contents:
+ - id: SuperCapacitorStockPart
+ amount: 12
+ - type: Storage
+ maxItemSize: Normal
+ grid:
+ - 0,0,2,3
+ whitelist:
+ tags:
+ - CapacitorStockPart
+ - type: Sprite
+ layers:
+ - state: box
+# - state: wet_floor_sign
diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Crates/vending.yml b/Resources/Prototypes/_NF/Catalog/Fills/Crates/vending.yml
index afef43ddbd87..9f5d80de238a 100644
--- a/Resources/Prototypes/_NF/Catalog/Fills/Crates/vending.yml
+++ b/Resources/Prototypes/_NF/Catalog/Fills/Crates/vending.yml
@@ -51,3 +51,12 @@
contents:
- id: VendingMachineRestockAutoTuneVend
amount: 2
+
+- type: entity
+ id: CrateVendingMachineRestockPottedPlantVendFilled
+ parent: CratePlasticBiodegradable
+ components:
+ - type: StorageFill
+ contents:
+ - id: VendingMachineRestockPottedPlantVend
+ amount: 2
diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/security.yml b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/security.yml
index 7a1498ce24c0..32c91e0e540b 100644
--- a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/security.yml
+++ b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/security.yml
@@ -37,7 +37,7 @@
- id: JetpackSecurityFilled
- id: HandheldGPSBasic
- id: ClothingShoesBootsMagCombatFilled
- - id: Hypospray # Frontier
+ - id: HypoBrigmedic # Frontier
- type: entity
id: LockerBrigmedicFilled
@@ -70,7 +70,7 @@
# prob: 0.7
# - id: ClothingNeckCloakMoth #bzzz Moth-pocalypse
# prob: 0.15
- - id: Hypospray # Frontier
+ - id: HypoBrigmedic # Frontier
- type: entity
id: LockerMercenaryFilled
diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/service.yml b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/service.yml
index 1afddeb68c73..e573dba728ae 100644
--- a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/service.yml
+++ b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/service.yml
@@ -12,3 +12,18 @@
- id: BoxTrashbag
- id: BoxLightMixed
- id: Plunger
+
+- type: entity
+ id: LockerClownFilled
+ suffix: Filled
+ parent: LockerClown
+ components:
+ - type: StorageFill
+ contents:
+ - id: ClownRecorder
+ - id: ClothingHeadsetService
+ - id: BikeHorn
+ - id: CrayonRainbow
+ - id: RubberStampClown
+ - id: SoapDeluxe
+ - id: Plunger # Yes
\ No newline at end of file
diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage.yml b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage.yml
index 8a611a9f14eb..8314c35fa721 100644
--- a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage.yml
+++ b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage.yml
@@ -94,3 +94,22 @@
# - id: ClothingShoesBootsMagMercenaryFilled # Frontier - Not adding this to the suit storage so it wont be abused, exists only on role spawn.
- type: AccessReader
access: [["Captain"], ["Pilot"]]
+
+#Clown hardsuit
+- type: entity
+ id: SuitStorageClown
+ parent: SuitStorageBase
+ suffix: Clown
+ components:
+ - type: StorageFill
+ contents:
+# - id: NitrogenTankFilled
+# - id: OxygenTankFilled
+ - id: AirTankFilled
+ - id: ClothingOuterHardsuitClown
+ - id: ClothingMaskBreath
+ - id: JetpackMiniFilled
+ - id: HandheldGPSBasic
+# - id: ClothingShoesBootsMagMercenaryFilled # Frontier - Not adding this to the suit storage so it wont be abused, exists only on role spawn.
+ - type: AccessReader
+# access: [["Captain"], ["Pilot"]]
diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage_wallmount.yml b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage_wallmount.yml
index 0dabaabc65ca..82d934f30f56 100644
--- a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage_wallmount.yml
+++ b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage_wallmount.yml
@@ -131,3 +131,8 @@
- type: entity
id: SuitStorageWallmountWizard
parent: [SuitStorageWallmount, SuitStorageWizard]
+
+#Clown
+- type: entity
+ id: SuitStorageWallmountClown
+ parent: [SuitStorageWallmount, SuitStorageClown]
diff --git a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/circuitvend.yml b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/circuitvend.yml
index 2ec94a663345..da80ecbad523 100644
--- a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/circuitvend.yml
+++ b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/circuitvend.yml
@@ -2,6 +2,7 @@
id: CircuitVendInventory
startingInventory:
## SalvageExpeditionsComputerCircuitboard: 8
+ TilePrinterNFMachineCircuitboard: 8
ComputerIFFCircuitboard: 4
CrewMonitoringComputerCircuitboard: 6
ResearchComputerCircuitboard: 12
diff --git a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/contravend.yml b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/contravend.yml
index f9bff9fe51ae..c9c74e6c0a89 100644
--- a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/contravend.yml
+++ b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/contravend.yml
@@ -20,3 +20,4 @@
ClothingShoesChameleonNoSlips: 8
ClothingBackpackDuffelSyndicateEVABundle: 12
BoxHoloparasite: 2
+ VestineChemistryVial: 2
diff --git a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/pottedplantvend.yml b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/pottedplantvend.yml
new file mode 100644
index 000000000000..0eb03a2a3373
--- /dev/null
+++ b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/pottedplantvend.yml
@@ -0,0 +1,36 @@
+- type: vendingMachineInventory
+ id: PottedPlantVendInventory
+ startingInventory:
+ PottedPlant0: 6
+ PottedPlant1: 6
+ PottedPlant2: 6
+ PottedPlant3: 6
+ PottedPlant4: 6
+ PottedPlant5: 6
+ PottedPlant6: 6
+ PottedPlant7: 6
+ PottedPlant8: 6
+ PottedPlantBioluminscent: 6
+ PottedPlant10: 6
+ PottedPlant11: 6
+ PottedPlant12: 6
+ PottedPlant13: 6
+ PottedPlant14: 6
+ PottedPlant15: 6
+ PottedPlant16: 6
+ PottedPlant17: 6
+ PottedPlant18: 6
+ PottedPlant19: 6
+ PottedPlant20: 6
+ PottedPlant21: 6
+ PottedPlant22: 6
+ PottedPlant23: 6
+ PottedPlant24: 6
+ PottedPlantRD: 6
+ PottedPlant26: 6
+ PottedPlant27: 6
+ PottedPlant28: 6
+ PottedPlant29: 6
+ PottedPlant30: 6
+# contrabandInventory:
+# emaggedInventory:
diff --git a/Resources/Prototypes/_NF/Catalog/security_uplink_catalog.yml b/Resources/Prototypes/_NF/Catalog/security_uplink_catalog.yml
new file mode 100644
index 000000000000..417f9964d9a4
--- /dev/null
+++ b/Resources/Prototypes/_NF/Catalog/security_uplink_catalog.yml
@@ -0,0 +1,980 @@
+- type: listing
+ id: UplinkReinforcementRadioSyndicateCyborgAssault1
+ name: uplink-reinforcement-radio-cyborg-assault-name
+ description: uplink-reinforcement-radio-cyborg-assault-desc
+ productEntity: ReinforcementRadioSyndicateCyborgAssault
+ icon: { sprite: Mobs/Silicon/chassis.rsi, state: synd_sec }
+ cost:
+ FrontierUplinkCoin: 1
+ categories:
+ - UplinkSecurityBundles
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+
+- type: listing
+ id: UplinkSecurityHardsuit
+ name: uplink-security-hardsuit-name
+ description: uplink-security-hardsuit-desc
+ productEntity: ClothingOuterHardsuitSecurity
+ icon: { sprite: Clothing/OuterClothing/Hardsuits/security.rsi, state: icon }
+ cost:
+ FrontierUplinkCoin: 2
+ categories:
+ - UplinkSecurityHardsuits
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+
+- type: listing
+ id: UplinkSecurityHardsuitPatrol
+ name: uplink-security-hardsuit-patrol-name
+ description: uplink-security-hardsuit-patrol-desc
+ productEntity: ClothingOuterHardsuitSecuritypatrol
+ icon: { sprite: Clothing/OuterClothing/Hardsuits/security-patrol.rsi, state: icon }
+ cost:
+ FrontierUplinkCoin: 2
+ categories:
+ - UplinkSecurityHardsuits
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+
+- type: listing
+ id: UplinkSecurityHardsuitBrigmedic
+ name: uplink-security-hardsuit-brigmedic-name
+ description: uplink-security-hardsuit-brigmedic-desc
+ productEntity: ClothingOuterHardsuitBrigmedic
+ icon: { sprite: Clothing/OuterClothing/Hardsuits/brigmedic.rsi, state: icon }
+ cost:
+ FrontierUplinkCoin: 2
+ categories:
+ - UplinkSecurityHardsuits
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+
+- type: listing
+ id: UplinkSecurityHardsuitWarden
+ name: uplink-security-hardsuit-warden-name
+ description: uplink-security-hardsuit-warden-desc
+ productEntity: ClothingOuterHardsuitWarden
+ icon: { sprite: Clothing/OuterClothing/Hardsuits/security-warden.rsi, state: icon }
+ cost:
+ FrontierUplinkCoin: 3
+ categories:
+ - UplinkSecurityHardsuits
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - Warden
+ - SeniorOfficer
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecurityHardsuitSyndieReverseEngineered
+ name: uplink-security-hardsuit-syndie-re-name
+ description: uplink-security-hardsuit-syndie-re-desc
+ productEntity: ClothingOuterHardsuitSyndieReverseEngineered
+ icon: { sprite: Nyanotrasen/Clothing/OuterClothing/ReverseEngineering/syndicate.rsi, state: icon }
+ cost:
+ FrontierUplinkCoin: 30
+ categories:
+ - UplinkSecurityHardsuits
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - Warden
+ - SeniorOfficer
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecurityHardsuitSheriff
+ name: uplink-security-hardsuit-sheriff-name
+ description: uplink-security-hardsuit-sheriff-desc
+ productEntity: ClothingOuterHardsuitSecurityRed
+ icon: { sprite: Clothing/OuterClothing/Hardsuits/security-red.rsi, state: icon }
+ cost:
+ FrontierUplinkCoin: 3
+ categories:
+ - UplinkSecurityHardsuits
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecurityMK58
+ name: uplink-security-mk58-name
+ description: uplink-security-mk58-desc
+ productEntity: WeaponPistolMk58
+ icon: { sprite: Objects/Weapons/Guns/Pistols/mk58.rsi, state: icon }
+ cost:
+ FrontierUplinkCoin: 2
+ categories:
+ - UplinkSecurityWeapons
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+
+- type: listing
+ id: UplinkSecurityKammerer
+ name: uplink-security-kammerer-name
+ description: uplink-security-kammerer-desc
+ productEntity: WeaponShotgunKammerer
+ icon: { sprite: Objects/Weapons/Guns/Shotguns/pump.rsi, state: icon }
+ cost:
+ FrontierUplinkCoin: 2
+ categories:
+ - UplinkSecurityWeapons
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+
+- type: listing
+ id: UplinkSecurityDisabler
+ name: uplink-security-disabler-name
+ description: uplink-security-disabler-desc
+ productEntity: WeaponDisabler
+ icon: { sprite: Objects/Weapons/Guns/Battery/disabler.rsi, state: base }
+ cost:
+ FrontierUplinkCoin: 1
+ categories:
+ - UplinkSecurityWeapons
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+
+- type: listing
+ id: UplinkSecurityStunbaton
+ name: uplink-security-stunbaton-name
+ description: uplink-security-stunbaton-desc
+ productEntity: Stunbaton
+ icon: { sprite: Objects/Weapons/Melee/stunbaton.rsi, state: stunbaton_off }
+ cost:
+ FrontierUplinkCoin: 1
+ categories:
+ - UplinkSecurityWeapons
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+
+- type: listing
+ id: UplinkSecurityDeckard
+ name: uplink-security-deckard-name
+ description: uplink-security-deckard-desc
+ productEntity: WeaponRevolverDeckard
+ icon: { sprite: Objects/Weapons/Guns/Revolvers/deckard.rsi, state: base }
+ cost:
+ FrontierUplinkCoin: 2
+ categories:
+ - UplinkSecurityWeapons
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+
+- type: listing
+ id: UplinkSecurityEmitter
+ name: uplink-security-emitter-name
+ description: uplink-security-emitter-desc
+ productEntity: WeaponEmpEmitter
+ icon: { sprite: _NF/Objects/Weapons/EMP-Gun.rsi, state: icon }
+ cost:
+ FrontierUplinkCoin: 1
+ categories:
+ - UplinkSecurityWeapons
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+
+- type: listing
+ id: UplinkSecurityN1984
+ name: uplink-security-n1984-name
+ description: uplink-security-n1984-desc
+ productEntity: WeaponPistolN1984
+ icon: { sprite: Objects/Weapons/Guns/Pistols/N1984.rsi, state: icon }
+ cost:
+ FrontierUplinkCoin: 3
+ categories:
+ - UplinkSecurityWeapons
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - Warden
+ - SeniorOfficer
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecurityEnforcer
+ name: uplink-security-enforcer-name
+ description: uplink-security-enforcer-desc
+ productEntity: WeaponShotgunEnforcer
+ icon: { sprite: Objects/Weapons/Guns/Shotguns/enforcer.rsi, state: icon }
+ cost:
+ FrontierUplinkCoin: 3
+ categories:
+ - UplinkSecurityWeapons
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - Warden
+ - SeniorOfficer
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecurityLecter
+ name: uplink-security-lecter-name
+ description: uplink-security-lecter-desc
+ productEntity: WeaponRifleLecter
+ icon: { sprite: Objects/Weapons/Guns/Rifles/lecter.rsi, state: icon }
+ cost:
+ FrontierUplinkCoin: 3
+ categories:
+ - UplinkSecurityWeapons
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - Warden
+ - SeniorOfficer
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecurityLaserCarbine
+ name: uplink-security-lasercarbine-name
+ description: uplink-security-lasercarbine-desc
+ productEntity: WeaponLaserCarbine
+ icon: { sprite: Objects/Weapons/Guns/Battery/laser_gun.rsi, state: icon }
+ cost:
+ FrontierUplinkCoin: 3
+ categories:
+ - UplinkSecurityWeapons
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - Warden
+ - SeniorOfficer
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecurityDisablerSMG
+ name: uplink-security-disablersmg-name
+ description: uplink-security-disablersmg-desc
+ productEntity: WeaponDisablerSMG
+ icon: { sprite: Objects/Weapons/Guns/Battery/disabler_smg.rsi, state: base }
+ cost:
+ FrontierUplinkCoin: 3
+ categories:
+ - UplinkSecurityWeapons
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - Warden
+ - SeniorOfficer
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecurityEnergySword
+ name: uplink-security-energysword-name
+ description: uplink-security-energysword-desc
+ productEntity: EnergySword
+ icon: { sprite: Objects/Weapons/Melee/e_sword.rsi, state: icon }
+ cost:
+ FrontierUplinkCoin: 5
+ categories:
+ - UplinkSecurityWeapons
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecurityWT550
+ name: uplink-security-wt550-name
+ description: uplink-security-wt550-desc
+ productEntity: WeaponSubMachineGunWt550
+ icon: { sprite: Objects/Weapons/Guns/SMGs/wt550.rsi, state: icon }
+ cost:
+ FrontierUplinkCoin: 4
+ categories:
+ - UplinkSecurityWeapons
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecurityEnergyGun
+ name: uplink-security-energygun-name
+ description: uplink-security-energygun-desc
+ productEntity: WeaponEnergyGun
+ icon: { sprite: DeltaV/Objects/Weapons/Guns/Battery/energygun.rsi, state: icon }
+ cost:
+ FrontierUplinkCoin: 4
+ categories:
+ - UplinkSecurityWeapons
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecurityEmpRpg
+ name: uplink-security-emprpg-name
+ description: uplink-security-emprpg-desc
+ productEntity: WeaponLauncherRocketEmp
+ icon: { sprite: Objects/Weapons/Guns/Launchers/rocket.rsi, state: base }
+ cost:
+ FrontierUplinkCoin: 5
+ categories:
+ - UplinkSecurityWeapons
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecurityEmpGrenade
+ name: uplink-security-empgrenade-name
+ description: uplink-security-empgrenade-desc
+ productEntity: EmpGrenade
+ icon: { sprite: Objects/Weapons/Grenades/empgrenade.rsi, state: icon}
+ cost:
+ FrontierUplinkCoin: 1
+ categories:
+ - UplinkSecurityUtility
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - Warden
+ - SeniorOfficer
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecurityHolo
+ name: uplink-security-holo-name
+ description: uplink-security-holo-desc
+ productEntity: HoloprojectorSecurity
+ icon: { sprite: Objects/Devices/Holoprojectors/security.rsi, state: icon }
+ cost:
+ FrontierUplinkCoin: 1
+ categories:
+ - UplinkSecurityUtility
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+
+- type: listing
+ id: UplinkSecurityJetpack
+ name: uplink-security-jetpack-name
+ description: uplink-security-jetpack-desc
+ productEntity: JetpackSecurityFilled
+ icon: { sprite: Objects/Tanks/Jetpacks/security.rsi, state: icon }
+ cost:
+ FrontierUplinkCoin: 1
+ categories:
+ - UplinkSecurityUtility
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+
+- type: listing
+ id: UplinkSecurityMagboots
+ name: uplink-security-magboots-name
+ description: uplink-security-magboots-desc
+ productEntity: ClothingShoesBootsMagCombat
+ icon: { sprite: _NF/Clothing/Shoes/Boots/magboots-combat.rsi, state: icon }
+ cost:
+ FrontierUplinkCoin: 1
+ categories:
+ - UplinkSecurityUtility
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+
+- type: listing
+ id: UplinkSecurityTechfab
+ name: uplink-security-techfab-name
+ description: uplink-security-techfab-desc
+ productEntity: SecurityTechFabCircuitboard
+ icon: { sprite: Objects/Misc/module.rsi, state: security }
+ cost:
+ FrontierUplinkCoin: 5
+ categories:
+ - UplinkSecurityUtility
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecurityKey
+ name: uplink-security-key-name
+ description: uplink-security-key-desc
+ productEntity: BoxEncryptionKeySecurity
+ icon: { sprite: Objects/Storage/boxes.rsi, state: box }
+ cost:
+ FrontierUplinkCoin: 1
+ categories:
+ - UplinkSecurityUtility
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecurityEmpRocket
+ name: uplink-security-emprocket-name
+ description: uplink-security-emprocket-desc
+ productEntity: CartridgeRocketEmp
+ icon: { sprite: Objects/Weapons/Guns/Ammunition/Explosives/explosives.rsi, state: rpg-emp }
+ cost:
+ FrontierUplinkCoin: 1
+ categories:
+ - UplinkSecurityAmmo
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecurityThrusterKit
+ name: uplink-security-thrusterkit-name
+ description: uplink-security-thrusterkit-desc
+ productEntity: BoxT3SuperCapacitor
+ icon: { sprite: Objects/Storage/boxes.rsi, state: box}
+ cost:
+ FrontierUplinkCoin: 4
+ categories:
+ - UplinkSecurityUtility
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - Warden
+ - SeniorOfficer
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecurityPistolMagazine
+ name: uplink-security-magazinepistol-name
+ description: uplink-security-magazinepistol-desc
+ productEntity: BoxMagazinePistol
+ icon: { sprite: Objects/Storage/boxes.rsi, state: box }
+ cost:
+ FrontierUplinkCoin: 1
+ categories:
+ - UplinkSecurityAmmo
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+
+- type: listing
+ id: UplinkSecurity20RifleMagazine
+ name: uplink-security-20riflemagazine-name
+ description: uplink-security-20riflemagazine-desc
+ productEntity: BoxMagazineRifle
+ icon: { sprite: Objects/Storage/boxes.rsi, state: box }
+ cost:
+ FrontierUplinkCoin: 1
+ categories:
+ - UplinkSecurityAmmo
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - HeadOfSecurity
+ - SeniorOfficer
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecurityWT550Magazine
+ name: uplink-security-wt550magazine-name
+ description: uplink-security-wt550magazine-desc
+ productEntity: BoxMagazinePistolSubMachineGunTopMounted
+ icon: { sprite: Objects/Storage/boxes.rsi, state: box }
+ cost:
+ FrontierUplinkCoin: 1
+ categories:
+ - UplinkSecurityAmmo
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecurityHypo
+ name: uplink-security-hypo-name
+ description: uplink-security-hypo-desc
+ productEntity: HypoBrigmedic
+ icon: { sprite: _NF/Objects/Specific/Medical/hypobrigmedic.rsi, state: hypo }
+ cost:
+ FrontierUplinkCoin: 1
+ categories:
+ - UplinkSecurityUtility
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - Brigmedic
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecurityAmbuzol
+ name: uplink-security-ambuzol-name
+ description: uplink-security-ambuzol-desc
+ productEntity: SyringeAmbuzol
+ icon: { sprite: Objects/Specific/Chemistry/syringe.rsi, state: syringe_base0 }
+ cost:
+ FrontierUplinkCoin: 1
+ categories:
+ - UplinkSecurityUtility
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - Brigmedic
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecurityMedkit
+ name: uplink-security-medkit-name
+ description: uplink-security-medkit-desc
+ productEntity: MedkitCombatFilled
+ icon: { sprite: Objects/Specific/Medical/firstaidkits.rsi, state: blackkit }
+ cost:
+ FrontierUplinkCoin: 2
+ categories:
+ - UplinkSecurityUtility
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - Brigmedic
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecurityInspector
+ name: uplink-security-inspector-name
+ description: uplink-security-inspector-desc
+ productEntity: WeaponRevolverInspector
+ icon: { sprite: Objects/Weapons/Guns/Revolvers/inspector.rsi, state: icon }
+ cost:
+ FrontierUplinkCoin: 1
+ categories:
+ - UplinkSecurityWeapons
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+
+- type: listing
+ id: UplinkSecurityMateba
+ name: uplink-security-mateba-name
+ description: uplink-security-mateba-desc
+ productEntity: WeaponRevolverMateba
+ icon: { sprite: Objects/Weapons/Guns/Revolvers/mateba.rsi, state: icon }
+ cost:
+ FrontierUplinkCoin: 3
+ categories:
+ - UplinkSecurityWeapons
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+
+- type: listing
+ id: UplinkSecurityTruncheon
+ name: uplink-security-truncheon-name
+ description: uplink-security-truncheon-desc
+ productEntity: Truncheon
+ icon: { sprite: Objects/Weapons/Melee/truncheon.rsi, state: icon }
+ cost:
+ FrontierUplinkCoin: 1
+ categories:
+ - UplinkSecurityWeapons
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+
+- type: listing
+ id: UplinkSecurityArmingSword
+ name: uplink-security-armingsword-name
+ description: uplink-security-armingsword-desc
+ productEntity: PlasteelArmingSword
+ icon: { sprite: _NF/Objects/Weapons/Melee/armingsword.rsi, state: icon }
+ cost:
+ FrontierUplinkCoin: 2
+ categories:
+ - UplinkSecurityWeapons
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+
+- type: listing
+ id: UplinkSecurityCaptainSword
+ name: uplink-security-captainsword-name
+ description: uplink-security-captainsword-desc
+ productEntity: ClothingBeltSheathFilled
+ icon: { sprite: Objects/Weapons/Melee/captain_sabre.rsi, state: icon }
+ cost:
+ FrontierUplinkCoin: 10
+ categories:
+ - UplinkSecurityWeapons
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - Warden
+ - SeniorOfficer
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecurityPulsePistol
+ name: uplink-security-pulsepistol-name
+ description: uplink-security-pulsepistol-desc
+ productEntity: WeaponPulsePistol
+ icon: { sprite: Objects/Weapons/Guns/Battery/pulse_pistol.rsi, state: base }
+ cost:
+ FrontierUplinkCoin: 12
+ categories:
+ - UplinkSecurityWeapons
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - Warden
+ - SeniorOfficer
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecurityPulseCarbine
+ name: uplink-security-pulsecarbine-name
+ description: uplink-security-pulsecarbine-desc
+ productEntity: WeaponPulseCarbine
+ icon: { sprite: Objects/Weapons/Guns/Battery/pulse_carbine.rsi, state: base }
+ cost:
+ FrontierUplinkCoin: 20
+ categories:
+ - UplinkSecurityWeapons
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecurityHammer
+ name: uplink-security-hammer-name
+ description: uplink-security-hammer-desc
+ productEntity: SecBreachingHammer
+ icon: { sprite: Nyanotrasen/Objects/Weapons/Melee/breaching_hammer.rsi, state: icon }
+ cost:
+ FrontierUplinkCoin: 3
+ categories:
+ - UplinkSecurityWeapons
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - Warden
+ - SeniorOfficer
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecurityTeleShield
+ name: uplink-security-teleshield-name
+ description: uplink-security-teleshield-desc
+ productEntity: TelescopicShield
+ icon: { sprite: Objects/Weapons/Melee/teleriot_shield.rsi, state: teleriot-on }
+ cost:
+ FrontierUplinkCoin: 2
+ categories:
+ - UplinkSecurityUtility
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+
+- type: listing
+ id: UplinkSecurityEnergyShield
+ name: uplink-security-energyshield-name
+ description: uplink-security-energyshield-desc
+ productEntity: EnergyShield
+ icon: { sprite: Objects/Weapons/Melee/e_shield.rsi, state: eshield-on }
+ cost:
+ FrontierUplinkCoin: 4
+ categories:
+ - UplinkSecurityUtility
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - Warden
+ - SeniorOfficer
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecuritySwat
+ name: uplink-security-swat-name
+ description: uplink-security-swat-desc
+ productEntity: ClothingMaskGasSwat
+ icon: { sprite: Clothing/Mask/swat.rsi, state: icon}
+ cost:
+ FrontierUplinkCoin: 3
+ categories:
+ - UplinkSecurityUtility
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+ - !type:BuyerJobCondition
+ whitelist:
+ - Warden
+ - SeniorOfficer
+ - HeadOfSecurity
+
+- type: listing
+ id: UplinkSecuritySpeedloader
+ name: uplink-security-speedloader-name
+ description: uplink-security-speedloader-desc
+ productEntity: SpeedLoaderMagnum
+ icon: { sprite: Objects/Weapons/Guns/Ammunition/SpeedLoaders/Magnum/magnum_speed_loader.rsi, state: base }
+ cost:
+ FrontierUplinkCoin: 1
+ categories:
+ - UplinkSecurityAmmo
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+
+- type: listing
+ id: UplinkSecuritySpeedloaderRubber
+ name: uplink-security-speedloaderrubber-name
+ description: uplink-security-speedloaderrubber-desc
+ productEntity: SpeedLoaderMagnumRubber
+ icon: { sprite: Objects/Weapons/Guns/Ammunition/SpeedLoaders/Magnum/magnum_speed_loader.rsi, state: base }
+ cost:
+ FrontierUplinkCoin: 1
+ categories:
+ - UplinkSecurityAmmo
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+
+- type: listing
+ id: UplinkSecurityShotLethal
+ name: uplink-security-shotlethal-name
+ description: uplink-security-shotlethal-desc
+ productEntity: BoxLethalshot
+ icon: { sprite: Objects/Storage/boxes.rsi, state: box }
+ cost:
+ FrontierUplinkCoin: 1
+ categories:
+ - UplinkSecurityAmmo
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+
+- type: listing
+ id: UplinkSecurityShotBeanbag
+ name: uplink-security-shotbeanbag-name
+ description: uplink-security-shotbeanbag-desc
+ productEntity: BoxBeanbag
+ icon: { sprite: Objects/Storage/boxes.rsi, state: box }
+ cost:
+ FrontierUplinkCoin: 1
+ categories:
+ - UplinkSecurityAmmo
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+
+- type: listing
+ id: UplinkSecurityShotIncend
+ name: uplink-security-shotincend-name
+ description: uplink-security-shotincend-desc
+ productEntity: BoxShotgunIncendiary
+ icon: { sprite: Objects/Storage/boxes.rsi, state: box }
+ cost:
+ FrontierUplinkCoin: 2
+ categories:
+ - UplinkSecurityAmmo
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+
+- type: listing
+ id: UplinkSecurityShotSlug
+ name: uplink-security-shotslug-name
+ description: uplink-security-shotslug-desc
+ productEntity: BoxShotgunSlug
+ icon: { sprite: Objects/Storage/boxes.rsi, state: box }
+ cost:
+ FrontierUplinkCoin: 1
+ categories:
+ - UplinkSecurityAmmo
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
+
+- type: listing
+ id: UplinkSecurityCash1000
+ name: uplink-security-cash1000-name
+ description: uplink-security-cash1000-desc
+ productEntity: SpaceCash1000
+ icon: { sprite: Objects/Economy/cash.rsi, state: cash_1000000 }
+ cost:
+ FrontierUplinkCoin: 1
+ categories:
+ - UplinkSecurityUtility
+ conditions:
+ - !type:StoreWhitelistCondition
+ whitelist:
+ tags:
+ - SecurityUplink
diff --git a/Resources/Prototypes/_NF/Entities/Actions/cancel-escape-inventory.yml b/Resources/Prototypes/_NF/Entities/Actions/cancel-escape-inventory.yml
new file mode 100644
index 000000000000..5d8d2f0da212
--- /dev/null
+++ b/Resources/Prototypes/_NF/Entities/Actions/cancel-escape-inventory.yml
@@ -0,0 +1,10 @@
+- type: entity
+ id: ActionCancelEscape
+ name: Stop escaping
+ description: Calm down and sit peacefuly in your carrier's inventory
+ noSpawn: true
+ components:
+ - type: InstantAction
+ icon: _NF/Actions/escapeinventory.rsi/cancel-escape.png
+ event: !type:EscapeInventoryCancelActionEvent
+ useDelay: 2
diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/_NF/Entities/Clothing/Masks/masks.yml
index cb9ecf341a35..746c57782061 100644
--- a/Resources/Prototypes/_NF/Entities/Clothing/Masks/masks.yml
+++ b/Resources/Prototypes/_NF/Entities/Clothing/Masks/masks.yml
@@ -35,7 +35,7 @@
replacement: mumble
- type: entity
- parent: ClothingMaskBase
+ parent: ClothingMaskPullableBase
id: ClothingMaskPilot
name: pilot breathing mask
description: A close-fitting breathing mask designed for, it would seems, minimal comfort of wearer.
diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Masks/specific.yml b/Resources/Prototypes/_NF/Entities/Clothing/Masks/specific.yml
index 526e1b76ff11..1dd3fefdaeb4 100644
--- a/Resources/Prototypes/_NF/Entities/Clothing/Masks/specific.yml
+++ b/Resources/Prototypes/_NF/Entities/Clothing/Masks/specific.yml
@@ -6,6 +6,7 @@
- type: VoiceMasker
default: ClothingMaskGas
radioMode: Fake
+ - type: Contraband #frontier
- type: entity
parent: ClothingMaskGasVoiceChameleon
@@ -15,3 +16,4 @@
- type: VoiceMasker
default: ClothingMaskGas
radioMode: Real
+ - type: Contraband #frontier
diff --git a/Resources/Prototypes/_NF/Entities/Markers/Spawners/Random/generator.yml b/Resources/Prototypes/_NF/Entities/Markers/Spawners/Random/generator.yml
new file mode 100644
index 000000000000..1a70be599be5
--- /dev/null
+++ b/Resources/Prototypes/_NF/Entities/Markers/Spawners/Random/generator.yml
@@ -0,0 +1,20 @@
+- type: entity
+ id: RandomDungeonPortableGeneratorSpawner
+ name: random portable generator spawner
+ suffix: Dungeon
+ parent: MarkerBase
+ components:
+ - type: Sprite
+ layers:
+ - state: red
+ - sprite: Structures/Power/Generation/portable_generator.rsi
+ state: portgen0
+ - type: RandomSpawner
+ prototypes:
+ - PortableGeneratorPacmanShuttle
+ - PortableGeneratorPacman
+ chance: 1
+ rarePrototypes:
+ - PortableGeneratorSuperPacmanShuttle
+ - PortableGeneratorSuperPacman
+ rareChance: 0.3
diff --git a/Resources/Prototypes/_NF/Entities/Mobs/NPCs/arcadiaindustries.yml b/Resources/Prototypes/_NF/Entities/Mobs/NPCs/arcadiaindustries.yml
index 2b69aced5427..8d8308419e4b 100644
--- a/Resources/Prototypes/_NF/Entities/Mobs/NPCs/arcadiaindustries.yml
+++ b/Resources/Prototypes/_NF/Entities/Mobs/NPCs/arcadiaindustries.yml
@@ -60,6 +60,14 @@
damage:
groups:
Brute: 4
+ - type: Damageable
+ damageContainer: Inorganic
+ - type: Bloodstream
+ bloodReagent: Oil
+ bloodlossDamage:
+ types:
+ Bloodloss:
+ 1
- type: entity
name: Hijacked Hologuardian
@@ -107,10 +115,18 @@
types:
Piercing: 5
Heat: 5
+ - type: Damageable
+ damageContainer: Inorganic
+ - type: Bloodstream
+ bloodReagent: Oil
+ bloodlossDamage:
+ types:
+ Bloodloss:
+ 1
- type: entity
name: Mobile Blaster Unit
- parent: SimpleMobBase
+ parent: SimpleSpaceMobBase
id: MobArcIndBlaster
description: A mobile energy blaster that capable of... oh god run it's spotted you!
components:
@@ -170,3 +186,11 @@
- SemiAuto
soundGunshot: /Audio/Weapons/Guns/Gunshots/laser_cannon.ogg
- type: CombatMode
+ - type: Damageable
+ damageContainer: Inorganic
+ - type: Bloodstream
+ bloodReagent: Oil
+ bloodlossDamage:
+ types:
+ Bloodloss:
+ 1
diff --git a/Resources/Prototypes/_NF/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/_NF/Entities/Objects/Devices/Circuitboards/Machine/production.yml
new file mode 100644
index 000000000000..a3e3fa6d59c8
--- /dev/null
+++ b/Resources/Prototypes/_NF/Entities/Objects/Devices/Circuitboards/Machine/production.yml
@@ -0,0 +1,13 @@
+- type: entity
+ id: TilePrinterNFMachineCircuitboard
+ parent: BaseMachineCircuitboard
+ name: tile-meister 5000 machine board
+ description: A machine printed circuit board for an tile-meister 5000
+ components:
+ - type: MachineBoard
+ prototype: TilePrinterNF
+ requirements:
+ MatterBin: 2
+ Manipulator: 2
+ materialRequirements:
+ Glass: 1
diff --git a/Resources/Prototypes/_NF/Entities/Objects/Devices/pinpointer.yml b/Resources/Prototypes/_NF/Entities/Objects/Devices/pinpointer.yml
new file mode 100644
index 000000000000..92a3023e41f1
--- /dev/null
+++ b/Resources/Prototypes/_NF/Entities/Objects/Devices/pinpointer.yml
@@ -0,0 +1,9 @@
+- type: entity
+ id: PinpointerUniversalDebug
+ parent: PinpointerUniversal
+ suffix: DEBUG, DO NOT MAP
+ components:
+ - type: Pinpointer
+ maxRange: -1
+ retargetDoAfter: 0
+ canTargetMobs: true
diff --git a/Resources/Prototypes/_NF/Entities/Objects/Specific/Medical/hypospray.yml b/Resources/Prototypes/_NF/Entities/Objects/Specific/Medical/hypospray.yml
new file mode 100644
index 000000000000..262b006fa226
--- /dev/null
+++ b/Resources/Prototypes/_NF/Entities/Objects/Specific/Medical/hypospray.yml
@@ -0,0 +1,49 @@
+- type: entity
+ name: NTCS-101 hypospray
+ parent: BaseItem
+ description: A commercial hypospray designed by Nanotrasen Chemical Supply. It has two built in safety features for the consumer market, a small chemical reservoir and an injection delay.
+ id: HypoMini
+ components:
+ - type: Sprite
+ sprite: _NF/Objects/Specific/Medical/hypomini.rsi
+ state: hypo
+ - type: Item
+ sprite: _NF/Objects/Specific/Medical/hypomini.rsi
+ - type: SolutionContainerManager
+ solutions:
+ hypospray:
+ maxVol: 5
+ - type: RefillableSolution
+ solution: hypospray
+ - type: ExaminableSolution
+ solution: hypospray
+ - type: Hypospray
+ onlyMobs: false
+ - type: UseDelay
+ delay: 2.5
+ - type: StaticPrice
+ price: 550
+
+- type: entity
+ name: NTCS-102 hypospray
+ parent: HypoMini
+ description: A commercial hypospray designed by Nanotrasen Chemical Supply. It has two built in safety features for the consumer market, a small chemical reservoir and an injection delay. This one is branded for use by law-enforcement.
+ id: HypoBrigmedic
+ components:
+ - type: Sprite
+ sprite: _NF/Objects/Specific/Medical/hypobrigmedic.rsi
+ state: hypo
+ - type: Item
+ sprite: _NF/Objects/Specific/Medical/hypobrigmedic.rsi
+
+- type: entity
+ name: NTCS-103 hypospray
+ parent: HypoMini
+ description: A commercial hypospray designed by Nanotrasen Chemical Supply. It has two built in safety features for the consumer market, a small chemical reservoir and an injection delay. This one seems to be a limited edition, lucky you!
+ id: HypoMiniLimitedEdition
+ components:
+ - type: Sprite
+ sprite: _NF/Objects/Specific/Medical/hypominilimitededition.rsi
+ state: hypo
+ - type: Item
+ sprite: _NF/Objects/Specific/Medical/hypominilimitededition.rsi
\ No newline at end of file
diff --git a/Resources/Prototypes/_NF/Entities/Objects/Specific/Service/vending_machine_restock.yml b/Resources/Prototypes/_NF/Entities/Objects/Specific/Service/vending_machine_restock.yml
index 3e2b17453bad..f33eb4814ea0 100644
--- a/Resources/Prototypes/_NF/Entities/Objects/Specific/Service/vending_machine_restock.yml
+++ b/Resources/Prototypes/_NF/Entities/Objects/Specific/Service/vending_machine_restock.yml
@@ -143,3 +143,20 @@
- state: green_bit
shader: unshaded
- state: refill_autotune
+
+- type: entity
+ parent: SecuredVendingMachineRestock
+ id: VendingMachineRestockPottedPlantVend
+ name: Plant-O-Matic restock box
+ description: A box containing potted plants for the Plant-O-Matic vending machine. A label reads THE BOX IS TAMPER PROOF AND WILL DESTROY IT'S CONTENT ON HARM.
+ components:
+ - type: VendingMachineRestock
+ canRestock:
+ - PottedPlantVendInventory
+ - type: Sprite
+ sprite: _NF/Objects/Specific/Service/vending_machine_restock.rsi
+ layers:
+ - state: base
+ - state: green_bit
+ shader: unshaded
+ - state: refill_pottedplant
diff --git a/Resources/Prototypes/_NF/Entities/Objects/Specific/security.yml b/Resources/Prototypes/_NF/Entities/Objects/Specific/security.yml
new file mode 100644
index 000000000000..abd6a4d3f0d2
--- /dev/null
+++ b/Resources/Prototypes/_NF/Entities/Objects/Specific/security.yml
@@ -0,0 +1,107 @@
+- type: entity
+ name: frontier uplink coin
+ parent: BaseItem
+ id: FrontierUplinkCoin
+ suffix: 20 TC
+ description: A token awarded to the NFSD for turning in contraband. It can be exchanged in an NFSD uplink device for a variety of law enforcement tools.
+ components:
+ - type: Sprite
+ sprite: _NF/Objects/Specific/Security/frontieruplinkcoin.rsi
+ state: frontieruplinkcoin
+ - type: Item
+ sprite: _NF/Objects/Specific/Security/frontieruplinkcoin.rsi
+ size: Tiny
+ - type: Stack
+ count: 20
+ stackType: FrontierUplinkCoin
+ - type: StaticPrice
+ price: 0
+ - type: StackPrice
+ price: 200
+ - type: Currency
+ price:
+ FrontierUplinkCoin: 1
+
+- type: entity
+ parent: FrontierUplinkCoin
+ id: FrontierUplinkCoin1
+ suffix: 1 TC
+ components:
+ - type: Stack
+ count: 1
+
+- type: entity
+ parent: FrontierUplinkCoin
+ id: FrontierUplinkCoin5
+ suffix: 5 TC
+ components:
+ - type: Stack
+ count: 5
+
+- type: entity
+ parent: FrontierUplinkCoin
+ id: FrontierUplinkCoin10
+ suffix: 10 TC
+ components:
+ - type: Stack
+ count: 10
+
+# Uplinks
+- type: entity
+ parent: BaseItem
+ id: BaseSecurityUplinkRadio
+ name: nfsd uplink
+ description: Retro looking old radio...
+ suffix: Empty
+ noSpawn: true
+ components:
+ - type: Sprite
+ sprite: Objects/Devices/communication.rsi
+ layers:
+ - state: old-radio
+ - type: Item
+ sprite: Objects/Devices/communication.rsi
+ heldPrefix: old-radio
+ - type: UserInterface
+ interfaces:
+ - key: enum.StoreUiKey.Key
+ type: StoreBoundUserInterface
+ - type: ActivatableUI
+ key: enum.StoreUiKey.Key
+ - type: Store
+ preset: StorePresetSecurityUplink
+ balance:
+ FrontierUplinkCoin: 0
+ - type: Tag
+ tags:
+ - SecurityUplink
+
+- type: entity
+ parent: BaseSecurityUplinkRadio
+ id: BaseSecurityUplinkRadioDebug
+ suffix: Security, DEBUG
+ components:
+ - type: Store
+ preset: StorePresetSecurityUplink
+ balance:
+ FrontierUplinkCoin: 99999
+
+- type: entity
+ parent: BaseSecurityUplinkRadio
+ id: BaseSecurityUplinkRadioSheriff
+ suffix: Sheriff 15
+ components:
+ - type: Store
+ preset: StorePresetSecurityUplink
+ balance:
+ FrontierUplinkCoin: 15
+
+- type: entity
+ parent: BaseSecurityUplinkRadio
+ id: BaseSecurityUplinkRadioOfficer
+ suffix: Officer 10
+ components:
+ - type: Store
+ preset: StorePresetSecurityUplink
+ balance:
+ FrontierUplinkCoin: 10
\ No newline at end of file
diff --git a/Resources/Prototypes/_NF/Entities/Objects/Weapons/Guns/Bow/crossbow.yml b/Resources/Prototypes/_NF/Entities/Objects/Weapons/Guns/Bow/crossbow.yml
index ff83d08fb3a1..270f0369a58b 100644
--- a/Resources/Prototypes/_NF/Entities/Objects/Weapons/Guns/Bow/crossbow.yml
+++ b/Resources/Prototypes/_NF/Entities/Objects/Weapons/Guns/Bow/crossbow.yml
@@ -8,10 +8,6 @@
description: The original rooty tooty point and shooty.
abstract: true
components:
- - type: Tag
- tags:
- - WeaponRanged
- - WeaponLongarms
- type: Sprite
sprite: _NF/Objects/Weapons/Guns/Bow/crossbow.rsi
- type: Item
diff --git a/Resources/Prototypes/_NF/Entities/Objects/Weapons/Melee/sword.yml b/Resources/Prototypes/_NF/Entities/Objects/Weapons/Melee/sword.yml
index 091e5c57a728..6c58c48a0b5c 100644
--- a/Resources/Prototypes/_NF/Entities/Objects/Weapons/Melee/sword.yml
+++ b/Resources/Prototypes/_NF/Entities/Objects/Weapons/Melee/sword.yml
@@ -22,9 +22,6 @@
spread: 90
- type: Item
sprite: _NF/Objects/Weapons/Melee/armingsword.rsi
- - type: Tag
- tags:
- - WeaponMelee
- type: DisarmMalus
- type: Clothing
quickEquip: false
diff --git a/Resources/Prototypes/_NF/Entities/Objects/Weapons/Melee/wooden_stake.yml b/Resources/Prototypes/_NF/Entities/Objects/Weapons/Melee/wooden_stake.yml
index eabfdde70b19..fc617a83babb 100644
--- a/Resources/Prototypes/_NF/Entities/Objects/Weapons/Melee/wooden_stake.yml
+++ b/Resources/Prototypes/_NF/Entities/Objects/Weapons/Melee/wooden_stake.yml
@@ -7,7 +7,6 @@
- type: Tag
tags:
- Spear
- - WeaponMeleeStake
- Wooden
- type: Sprite
sprite: _NF/Objects/Weapons/Melee/wooden_stake.rsi
diff --git a/Resources/Prototypes/_NF/Entities/Structures/Doors/secret_door.yml b/Resources/Prototypes/_NF/Entities/Structures/Doors/secret_door.yml
index e6f0fae88cb5..0a0a3bfcfb16 100644
--- a/Resources/Prototypes/_NF/Entities/Structures/Doors/secret_door.yml
+++ b/Resources/Prototypes/_NF/Entities/Structures/Doors/secret_door.yml
@@ -79,3 +79,31 @@
node: UraniumSecretDoorNode
containers:
- battery-container
+
+#shuttle secret door
+- type: entity
+ id: ShuttleSecretDoorAssembly
+ name: secret shuttle door assembly
+ parent: BaseSecretDoorAssembly
+ components:
+ - type: Sprite
+ sprite: _NF/Structures/Doors/secret_door_shuttle.rsi
+ state: assembly
+ - type: Construction
+ graph: ShuttleSecretDoorGraph
+ node: assembly
+ placement:
+ mode: SnapgridCenter
+
+- type: entity
+ id: ShuttleSecretDoor
+ name: shuttle wall
+ parent: BaseSecretDoor
+ components:
+ - type: Sprite
+ sprite: _NF/Structures/Doors/secret_door_shuttle.rsi
+ - type: Construction
+ graph: ShuttleSecretDoorGraph
+ node: ShuttleSecretDoorNode
+ containers:
+ - battery-container
diff --git a/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/gun_racks_base.yml b/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/gun_racks_base.yml
index 93833a3a7967..893f07aa70d3 100644
--- a/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/gun_racks_base.yml
+++ b/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/gun_racks_base.yml
@@ -76,36 +76,36 @@
weapon1_slot:
name: stored weapon
whitelist:
- tags:
- - WeaponLongarms
+ components:
+ - Gun
insertOnInteract: false
priority: 8
weapon2_slot:
name: stored weapon
whitelist:
- tags:
- - WeaponLongarms
+ components:
+ - Gun
insertOnInteract: false
priority: 7
weapon3_slot:
name: stored weapon
whitelist:
- tags:
- - WeaponLongarms
+ components:
+ - Gun
insertOnInteract: false
priority: 6
weapon4_slot:
name: stored weapon
whitelist:
- tags:
- - WeaponLongarms
+ components:
+ - Gun
insertOnInteract: false
priority: 5
weapon5_slot:
name: stored weapon
whitelist:
- tags:
- - WeaponLongarms
+ components:
+ - Gun
insertOnInteract: false
priority: 4
- type: ItemMapper
@@ -113,28 +113,28 @@
weapon_generic_gun1:
minCount: 1
whitelist:
- tags:
- - WeaponLongarms
+ components:
+ - Gun
weapon_generic_gun2:
minCount: 2
whitelist:
- tags:
- - WeaponLongarms
+ components:
+ - Gun
weapon_generic_gun3:
minCount: 3
whitelist:
- tags:
- - WeaponLongarms
+ components:
+ - Gun
weapon_generic_gun4:
minCount: 4
whitelist:
- tags:
- - WeaponLongarms
+ components:
+ - Gun
weapon_generic_gun5:
minCount: 5
whitelist:
- tags:
- - WeaponLongarms
+ components:
+ - Gun
sprite: _NF/Structures/Furniture/Armory/gun_racks.rsi
- type: ContainerContainer
containers:
diff --git a/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/melee_weaapon_racks_base.yml b/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/melee_weaapon_racks_base.yml
index f4ed9627b5ad..1bd6c8fb67d3 100644
--- a/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/melee_weaapon_racks_base.yml
+++ b/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/melee_weaapon_racks_base.yml
@@ -34,36 +34,36 @@
weapon1_slot:
name: stored weapon
whitelist:
- tags:
- - WeaponMelee
+ components:
+ - MeleeWeapon
insertOnInteract: false
priority: 8
weapon2_slot:
name: stored weapon
whitelist:
- tags:
- - WeaponMelee
+ components:
+ - MeleeWeapon
insertOnInteract: false
priority: 7
weapon3_slot:
name: stored weapon
whitelist:
- tags:
- - WeaponMelee
+ components:
+ - MeleeWeapon
insertOnInteract: false
priority: 6
weapon4_slot:
name: stored weapon
whitelist:
- tags:
- - WeaponMelee
+ components:
+ - MeleeWeapon
insertOnInteract: false
priority: 5
weapon5_slot:
name: stored weapon
whitelist:
- tags:
- - WeaponMelee
+ components:
+ - MeleeWeapon
insertOnInteract: false
priority: 4
- type: ItemMapper
@@ -71,28 +71,28 @@
weapon_generic_melee1:
minCount: 1
whitelist:
- tags:
- - WeaponMelee
+ components:
+ - MeleeWeapon
weapon_generic_melee2:
minCount: 2
whitelist:
- tags:
- - WeaponMelee
+ components:
+ - MeleeWeapon
weapon_generic_melee3:
minCount: 3
whitelist:
- tags:
- - WeaponMelee
+ components:
+ - MeleeWeapon
weapon_generic_melee4:
minCount: 4
whitelist:
- tags:
- - WeaponMelee
+ components:
+ - MeleeWeapon
weapon_generic_melee5:
minCount: 5
whitelist:
- tags:
- - WeaponMelee
+ components:
+ - MeleeWeapon
sprite: _NF/Structures/Furniture/Armory/melee_weapon_racks.rsi
- type: Construction
graph: WeaponRackConstructionGraph
diff --git a/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/pistol_racks_base.yml b/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/pistol_racks_base.yml
index 8fc3392a6eb6..875ab78283b0 100644
--- a/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/pistol_racks_base.yml
+++ b/Resources/Prototypes/_NF/Entities/Structures/Furniture/Armory/pistol_racks_base.yml
@@ -81,7 +81,6 @@
name: stored weapon
whitelist:
tags:
- - WeaponShortArms
- Sidearm
insertOnInteract: false
priority: 8
@@ -89,7 +88,6 @@
name: stored weapon
whitelist:
tags:
- - WeaponShortArms
- Sidearm
insertOnInteract: false
priority: 7
@@ -97,7 +95,6 @@
name: stored weapon
whitelist:
tags:
- - WeaponShortArms
- Sidearm
insertOnInteract: false
priority: 6
@@ -105,7 +102,6 @@
name: stored weapon
whitelist:
tags:
- - WeaponShortArms
- Sidearm
insertOnInteract: false
priority: 5
@@ -115,25 +111,21 @@
minCount: 1
whitelist:
tags:
- - WeaponShortArms
- Sidearm
weapon_generic_pistol2:
minCount: 2
whitelist:
tags:
- - WeaponShortArms
- Sidearm
weapon_generic_pistol3:
minCount: 3
whitelist:
tags:
- - WeaponShortArms
- Sidearm
weapon_generic_pistol4:
minCount: 4
whitelist:
tags:
- - WeaponShortArms
- Sidearm
sprite: _NF/Structures/Furniture/Armory/pistol_racks.rsi
- type: InteractionOutline
diff --git a/Resources/Prototypes/_NF/Entities/Structures/Furniture/altar_frame.yml b/Resources/Prototypes/_NF/Entities/Structures/Furniture/altar_frame.yml
new file mode 100644
index 000000000000..9027af22cd76
--- /dev/null
+++ b/Resources/Prototypes/_NF/Entities/Structures/Furniture/altar_frame.yml
@@ -0,0 +1,72 @@
+- type: entity
+ id: AltarFrameNF
+ parent: BaseStructure
+ name: altar frame
+ description: Altar of the Gods. Kinda hollow to be honest.
+ suffix: Unfinished
+ placement:
+ mode: SnapgridCenter
+ components:
+ - type: Sprite
+ snapCardinals: true
+ sprite: _NF/Structures/Furniture/altar_frame.rsi
+ state: altar_frame
+ - type: Icon
+ sprite: _NF/Structures/Furniture/altar_frame.rsi
+ state: altar_frame
+ - type: Damageable
+ damageContainer: Inorganic
+ damageModifierSet: Metallic
+ - type: Destructible
+ thresholds:
+ - trigger:
+ !type:DamageTrigger
+ damage: 125
+ behaviors:
+ - !type:DoActsBehavior
+ acts: [ "Destruction" ]
+ - trigger:
+ !type:DamageTrigger
+ damage: 25
+ behaviors:
+ - !type:PlaySoundBehavior
+ sound:
+ path: /Audio/Effects/metalbreak.ogg
+ - !type:SpawnEntitiesBehavior
+ spawn:
+ SheetSteel1:
+ min: 2
+ max: 4
+ - !type:DoActsBehavior
+ acts: [ "Destruction" ]
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape:
+ !type:PhysShapeAabb
+ bounds: "-0.45,-0.45,0.45,0.45"
+ density: 55
+ mask:
+ - TableMask
+ layer:
+ - TableLayer
+ - type: Anchorable
+ - type: Transform
+ anchored: true
+ - type: Climbable
+ - type: Clickable
+ - type: InteractionOutline
+ - type: Construction
+ containers:
+ - altar_candle1
+ - altar_candle2
+ - altar_cloth
+ - altar_component
+ graph: AltarsGraph
+ node: AltarFrameNode
+ - type: ContainerContainer
+ containers:
+ altar_candle1: !type:Container
+ altar_candle2: !type:Container
+ altar_cloth: !type:Container
+ altar_component: !type:Container
diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers.yml
index d79ef3211842..864c99934024 100644
--- a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers.yml
+++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers.yml
@@ -277,3 +277,65 @@
components:
- type: MarketModifier
mod: 0.40
+
+- type: entity
+ name: contraband exchange computer
+ parent: [BaseStructureDisableToolUse, BaseStructureIndestructible, BaseStructureComputer]
+ id: ComputerContrabandPalletConsole
+ description: Used to exchange contraband
+ placement:
+ mode: SnapgridCenter
+ components:
+ - type: MeleeSound
+ soundGroups:
+ Brute:
+ path:
+ "/Audio/Effects/glass_hit.ogg"
+ - type: Computer
+ - type: ApcPowerReceiver
+ powerLoad: 200
+ - type: ExtensionCableReceiver
+ - type: ActivatableUIRequiresPower
+ - type: Sprite
+ netsync: false
+ noRot: true
+ sprite: _NF/Structures/Machines/computers.rsi
+ layers:
+ - map: ["computerLayerBody"]
+ state: computer
+ - map: ["computerLayerKeyboard"]
+ state: generic_keyboard
+ - map: ["computerLayerScreen"]
+ state: contraband
+ - map: ["computerLayerKeys"]
+ state: telesci_key
+ - type: Appearance
+ - type: GenericVisualizer
+ visuals:
+ enum.ComputerVisuals.Powered:
+ computerLayerScreen:
+ True: { visible: true, shader: unshaded }
+ False: { visible: false }
+ computerLayerKeys:
+ True: { visible: true, shader: unshaded }
+ False: { visible: true, shader: shaded }
+ - type: LitOnPowered
+ - type: PointLight
+ radius: 1.5
+ energy: 1.6
+ color: "#b89f25"
+ enabled: false
+ mask: /Textures/Effects/LightMasks/cone.png
+ autoRot: true
+ offset: "0, 0.4" # shine from the top, not bottom of the computer
+ castShadows: false
+ - type: EmitSoundOnUIOpen
+ sound:
+ collection: Keyboard
+ - type: ContrabandPalletConsole
+ - type: ActivatableUI
+ key: enum.ContrabandPalletConsoleUiKey.Contraband
+ - type: UserInterface
+ interfaces:
+ - key: enum.ContrabandPalletConsoleUiKey.Contraband
+ type: ContrabandPalletConsoleBoundUserInterface
diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_tabletop.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_tabletop.yml
index d7be73f7b535..d95743bab8bc 100644
--- a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_tabletop.yml
+++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_tabletop.yml
@@ -807,4 +807,41 @@
- map: ["computerLayerKeys"]
sprite: Structures/Machines/computers.rsi
state: tech_key
-
\ No newline at end of file
+
+- type: entity
+ parent: [BaseStructureComputerTabletop, StationAdminBankATM]
+ id: ComputerTabletopStationAdminBankATM
+ components:
+ - type: Sprite
+ layers:
+ - map: ["computerLayerBody"]
+ sprite: _NF/Structures/Machines/computer_tabletop.rsi
+ state: computer_tabletop
+ - map: ["computerLayerKeyboard"]
+ sprite: _NF/Structures/Machines/computer_tabletop.rsi
+ state: generic_keyboard_tabletop
+ - map: ["computerLayerScreen"]
+ sprite: Structures/Machines/computers.rsi
+ state: id
+ - map: ["computerLayerKeys"]
+ sprite: Structures/Machines/computers.rsi
+ state: id_key
+
+- type: entity
+ parent: [BaseStructureComputerTabletop, ComputerContrabandPalletConsole]
+ id: ComputerTabletopContrabandPalletConsole
+ components:
+ - type: Sprite
+ layers:
+ - map: ["computerLayerBody"]
+ sprite: _NF/Structures/Machines/computer_tabletop.rsi
+ state: computer_tabletop
+ - map: ["computerLayerKeyboard"]
+ sprite: _NF/Structures/Machines/computer_tabletop.rsi
+ state: generic_keyboard_tabletop
+ - map: ["computerLayerScreen"]
+ sprite: _NF/Structures/Machines/computers.rsi
+ state: contraband
+ - map: ["computerLayerKeys"]
+ sprite: _NF/Structures/Machines/computers.rsi
+ state: telesci_key
diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/frame_tabletop.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/frame_tabletop.yml
new file mode 100644
index 000000000000..1d93b8d1cf39
--- /dev/null
+++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/frame_tabletop.yml
@@ -0,0 +1,56 @@
+- type: entity
+ parent: ComputerFrame
+ name: computer
+ id: ComputerTabletopFrame
+ components:
+ - type: Construction
+ graph: GraphComputerTabletop
+ node: frameUnsecured
+ containers:
+ - board
+ - type: Sprite
+ drawdepth: SmallObjects
+ sprite: _NF/Structures/Machines/computer_tabletop.rsi
+ layers:
+ - state: computer_tabletop_frame
+ map: [ "enum.ConstructionVisuals.Layer" ]
+ - type: Appearance
+ - type: GenericVisualizer
+ visuals:
+ enum.ConstructionVisuals.Key:
+ enum.ConstructionVisuals.Layer:
+ frameUnsecured: { state: computer_tabletop_frame }
+ boardUnsecured: { state: computer_board_exposed }
+ missingWires: { state: computer_tabletop }
+ monitorMissing: { state: computer_no_monitor }
+ monitorUnsecured: { state: computer_monitor_unscrewed }
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape:
+ !type:PhysShapeAabb
+ bounds: "-0.45,-0.45,0.45,0.45"
+ density: 60
+ mask:
+ - Impassable
+ - LowImpassable
+
+- type: entity
+ parent: ComputerBroken
+ id: ComputerTabletopBroken
+ suffix: Tabletop
+ components:
+ - type: Sprite
+ drawdepth: SmallObjects
+ sprite: _NF/Structures/Machines/computer_tabletop.rsi
+ state: broken_tabletop
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape:
+ !type:PhysShapeAabb
+ bounds: "-0.45,-0.45,0.45,0.45"
+ density: 60
+ mask:
+ - Impassable
+ - LowImpassable
diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/contraband_pallet.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/contraband_pallet.yml
new file mode 100644
index 000000000000..97ec77301f53
--- /dev/null
+++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/contraband_pallet.yml
@@ -0,0 +1,28 @@
+- type: entity
+ id: ContrabandPallet
+ name: contraband exchange pallet
+ description: Designates valid items to exchange with CentCom for security crystals
+ parent: [BaseStructureDisableToolUse, BaseStructureIndestructible, BaseStructure] # Frontier - BaseStructureDisabledToolsUse,BaseStructureIndestructible
+ components:
+ - type: InteractionOutline
+ - type: Anchorable
+ - type: CollideOnAnchor
+ - type: Physics
+ canCollide: false
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape:
+ !type:PhysShapeAabb
+ bounds: "-0.45,-0.45,0.45,0.45"
+ density: 15
+ mask:
+ - MachineMask
+ - type: ContrabandPallet
+ - type: StaticPrice
+ price: 100
+ - type: Sprite
+ drawdepth: FloorTiles
+ layers:
+ - sprite: _NF/Structures/contraband_pallet.rsi
+ state: base
diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/lathe.yml
index 77e2b18fa3ef..ba2b128a0d3f 100644
--- a/Resources/Prototypes/_NF/Entities/Structures/Machines/lathe.yml
+++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/lathe.yml
@@ -137,3 +137,87 @@
whitelist:
tags:
- PrizeTicket
+
+- type: entity
+ parent: BaseLathe
+ id: TilePrinterNF
+ name: tile-meister 5000
+ description: Prints floor tiles. No mercy.
+ components:
+ - type: Sprite
+ sprite: Structures/Machines/sheetifier.rsi
+ layers:
+ - state: base_machine
+ map: ["enum.LatheVisualLayers.IsRunning"]
+ - state: buttons_on
+ shader: unshaded
+ map: ["enum.PowerDeviceVisualLayers.Powered"]
+ - type: Machine
+ board: TilePrinterNFMachineCircuitboard
+ - type: MaterialStorage
+ dropOnDeconstruct: true
+ ignoreColor: true
+ canEjectStoredMaterials: false
+ whitelist:
+ tags:
+ - Raw
+ - Wooden
+ - Sheet
+ - RawMaterial
+ - Ingot
+ - type: Lathe
+ idleState: base_machine
+ runningState: base_machine_processing
+ staticRecipes:
+ - FloorTileItemSteel
+ - FloorTileItemSteelCheckerLight
+ - FloorTileItemSteelCheckerDark
+ - FloorTileItemMetalDiamond
+ - FloorTileItemWood
+ - FloorTileItemWhite
+ - FloorTileItemDark
+ - FloorTileItemTechmaint
+ - FloorTileItemFreezer
+ - FloorTileItemShowroom
+ - FloorTileItemGCircuit
+ - FloorTileItemBCircuit
+ - FloorTileItemGold
+ - FloorTileItemReinforced
+ - FloorTileItemMono
+ - FloorTileItemLino
+ - FloorTileItemHydro
+ - FloorTileItemLime
+ - FloorTileItemShuttleWhite
+# - FloorTileStackShuttleBlue
+# - FloorTileStackShuttleOrange
+ - FloorTileItemShuttlePurple
+# - FloorTileStackShuttleRed
+ - FloorTileItemEighties
+ - FloorTileItemArcadeBlue
+ - FloorTileItemArcadeBlue2
+ - FloorTileItemArcadeRed
+ - FloorTileItemBoxing
+ - FloorTileItemGym
+ - FloorTileItemBlue
+ - FloorTileItemMining
+ - FloorTileItemMiningDark
+ - FloorTileItemMiningLight
+ - FloorTileItemBar
+ - FloorTileItemClown
+ - FloorTileItemMime
+ - FloorTileItemKitchen
+ - FloorTileItemLaundry
+ - FloorTileItemSilver
+ - FloorTileItemSteelMaint
+ - FloorTileItemGratingMaint
+ - SheetPaper
+ - FloorCarpetItemRed
+ - FloorCarpetItemBlack
+ - FloorCarpetItemBlue
+ - FloorCarpetItemGreen
+ - FloorCarpetItemOrange
+ - FloorCarpetItemSkyBlue
+ - FloorCarpetItemPurple
+ - FloorCarpetItemPink
+ - FloorTileItemCarpetClown
+ - FloorTileItemCarpetOffice
diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/vending_machines.yml
index adb459c07345..0719d5d0d735 100644
--- a/Resources/Prototypes/_NF/Entities/Structures/Machines/vending_machines.yml
+++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/vending_machines.yml
@@ -274,3 +274,37 @@
# makeSentient: true
# allowSpeech: true
# - type: GhostTakeoverAvailable
+
+- type: entity
+ parent: [BaseStructureUnanchorable, VendingMachine]
+ id: VendingMachinePottedPlantVend
+ name: Plant-O-Matic
+ description: Sometimes potted plants are the best crewmates money can get.
+ components:
+ - type: VendingMachine
+ pack: PottedPlantVendInventory
+ offState: off
+ brokenState: broken
+ normalState: normal-unshaded
+ ejectState: eject-unshaded
+ denyState: deny-unshaded
+ - type: Advertise
+ pack: MegaSeedAds
+ - type: Sprite
+ sprite: _NF/Structures/Machines/VendingMachines/pottedplantvend.rsi
+ layers:
+ - state: "off"
+ map: ["enum.VendingMachineVisualLayers.Base"]
+ - state: "off"
+ map: ["enum.VendingMachineVisualLayers.BaseUnshaded"]
+ shader: unshaded
+ - state: panel
+ map: ["enum.WiresVisualLayers.MaintenancePanel"]
+ - type: PointLight
+ radius: 1.4
+ energy: 1.7
+ softness: 0.9
+ offset: "0, -0.6"
+ color: "#EEEEFF"
+ - type: MarketModifier
+ mod: 10
diff --git a/Resources/Prototypes/_NF/Entities/Structures/Storage/Closets/Lockers/lockers.yml b/Resources/Prototypes/_NF/Entities/Structures/Storage/Closets/Lockers/lockers.yml
index 00d06fc37472..728e6b238d57 100644
--- a/Resources/Prototypes/_NF/Entities/Structures/Storage/Closets/Lockers/lockers.yml
+++ b/Resources/Prototypes/_NF/Entities/Structures/Storage/Closets/Lockers/lockers.yml
@@ -79,3 +79,15 @@
map: ["enum.WeldableLayers.BaseWelded"]
- type: AccessReader
access: [["Captain"], ["Pilot"]]
+
+# Wooden Cabinet
+- type: entity
+ id: LockerWoodenGeneric
+ parent: LockerBooze
+ name: wooden cabinet
+ description: Dusty old wooden cabinet. Smells like grandparents.
+ components:
+ - type: Construction
+ graph: StorageFurnitureGraph
+ node: LockerWoodenGenericNode
+ - type: AccessReader
\ No newline at end of file
diff --git a/Resources/Prototypes/_NF/Entities/Structures/Storage/Crates/crates.yml b/Resources/Prototypes/_NF/Entities/Structures/Storage/Crates/crates.yml
index 9edcfa28cbe6..8d2b6e654330 100644
--- a/Resources/Prototypes/_NF/Entities/Structures/Storage/Crates/crates.yml
+++ b/Resources/Prototypes/_NF/Entities/Structures/Storage/Crates/crates.yml
@@ -102,6 +102,8 @@
- MachineLayer
- type: StaticPrice
price: 10000
+ - type: Contraband
+ value: 5
- type: entity
parent: CrateTradeBaseSecure
@@ -128,7 +130,9 @@
- MachineLayer
- type: StaticPrice
price: 20000
-
+ - type: Contraband
+ value: 5
+
- type: entity
parent: CrateTradeBaseSecure
id: CrateTradeContrabandSecureCyberSun
@@ -153,4 +157,6 @@
layer:
- MachineLayer
- type: StaticPrice
- price: 20000
\ No newline at end of file
+ price: 20000
+ - type: Contraband
+ value: 5
diff --git a/Resources/Prototypes/_NF/Entities/Structures/Storage/plant_box.yml b/Resources/Prototypes/_NF/Entities/Structures/Storage/plant_box.yml
new file mode 100644
index 000000000000..f57d4acb4de4
--- /dev/null
+++ b/Resources/Prototypes/_NF/Entities/Structures/Storage/plant_box.yml
@@ -0,0 +1,84 @@
+- type: entity
+ id: PlantBox
+ name: plant box
+ description: A large storage container for holding plants and seeds.
+ parent: BaseStructureDynamic
+ components:
+ - type: StaticPrice
+ price: 625
+ - type: Anchorable
+ - type: InteractionOutline
+ - type: Damageable
+ damageContainer: Inorganic
+ damageModifierSet: Wood
+ - type: Destructible
+ thresholds:
+ - trigger:
+ !type:DamageTrigger
+ damage: 450
+ behaviors:
+ - !type:DoActsBehavior
+ acts: [ "Destruction" ]
+ - trigger:
+ !type:DamageTrigger
+ damage: 300
+ behaviors:
+ - !type:EmptyAllContainersBehaviour
+ - !type:SpawnEntitiesBehavior
+ spawn:
+ MaterialWoodPlank1:
+ min: 3
+ max: 5
+ - !type:DoActsBehavior
+ acts: [ "Destruction" ]
+ - type: Climbable
+
+ # plantbox-specific
+ - type: Sprite
+ noRot: true
+ sprite: _NF/Structures/Storage/plantbox.rsi
+ layers:
+ - state: plantbox
+ - state: plantbox-top
+ map: [ top ]
+ visible: true
+ - type: Appearance
+ - type: GenericVisualizer
+ visuals:
+ enum.StorageVisuals.Open:
+ top:
+ True: { visible: false }
+ False: { visible: true }
+ - type: Storage
+ grid:
+ - 0,0,9,5
+ maxItemSize: Normal
+ storageOpenSound: /Audio/Effects/closetopen.ogg
+ storageCloseSound: /Audio/Effects/closetclose.ogg
+ whitelist:
+ components:
+ - Produce
+ - Seed
+ - type: UserInterface
+ interfaces:
+ - key: enum.StorageUiKey.Key
+ type: StorageBoundUserInterface
+ - type: ContainerContainer
+ containers:
+ storagebase: !type:Container
+ ents: [ ]
+ - type: Dumpable
+ - type: MagnetPickup
+ range: 1.5 # plant bag has a range of 1.0
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape:
+ !type:PhysShapeCircle
+ radius: 0.3
+ # very not dense to make it easy to pull
+ density: 20
+ mask:
+ - SmallMobMask
+ layer:
+ - MachineLayer
diff --git a/Resources/Prototypes/_NF/Events/events.yml b/Resources/Prototypes/_NF/Events/events.yml
index f493ec18914b..32c936cfd65f 100644
--- a/Resources/Prototypes/_NF/Events/events.yml
+++ b/Resources/Prototypes/_NF/Events/events.yml
@@ -140,3 +140,22 @@
maxDuration: 1200
- type: BluespaceErrorRule
gridPath: /Maps/_NF/Bluespace/cargoniaship.yml
+
+- type: entity
+ id: BluespaceArcIndDataCarrier
+ parent: BaseGameRule
+ noSpawn: true
+ components:
+ - type: StationEvent
+ startAnnouncement: station-event-bluespace-ship-start-announcement
+ startAudio:
+ path: /Audio/Announcements/attention.ogg
+ endAnnouncement: station-event-bluespace-ship-end-announcement
+ earliestStart: 100
+ minimumPlayers: 15
+ weight: 3
+ startDelay: 10
+ duration: 900
+ maxDuration: 1200
+ - type: BluespaceErrorRule
+ gridPath: /Maps/_NF/Bluespace/datacarrier.yml
diff --git a/Resources/Prototypes/_NF/Procedural/dungeon_configs.yml b/Resources/Prototypes/_NF/Procedural/dungeon_configs.yml
index bfb9c9227db4..52eda3451d55 100644
--- a/Resources/Prototypes/_NF/Procedural/dungeon_configs.yml
+++ b/Resources/Prototypes/_NF/Procedural/dungeon_configs.yml
@@ -5,10 +5,7 @@
- CaveFactory
- LavaBrig
- LavaMercenary
- - RuinedHospital
- SalvageExperiment
- - RuinedDwelling
- - RuinedShop
presets:
- Bucket
- Wow
@@ -155,8 +152,6 @@
generator: !type:PrefabDunGen
roomWhitelist:
- SalvageExperiment
- - RuinedHospital
- - RuinedShop
presets:
- Bucket
- Wow
@@ -222,8 +217,6 @@
generator: !type:PrefabDunGen
roomWhitelist:
- CaveFactory
- - RuinedDwelling
- - RuinedShop
presets:
- Bucket
- Wow
diff --git a/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/altars.yml b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/altars.yml
new file mode 100644
index 000000000000..f1cc4394d31f
--- /dev/null
+++ b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/altars.yml
@@ -0,0 +1,565 @@
+- type: constructionGraph
+ id: AltarsGraph
+ start: start
+ graph:
+ - node: start
+ edges:
+ - to: AltarFrameNode
+ completed:
+ - !type:SetAnchor
+ value: false
+ steps:
+ - material: Steel
+ amount: 4
+ - material: MetalRod
+ amount: 4
+ doAfter: 4
+
+ - node: AltarFrameNode
+ entity: AltarFrameNF
+ actions:
+ - !type:SnapToGrid {}
+ - !type:SetAnchor {}
+ edges:
+# Toolbox
+ - to: AltarToolboxNode
+ conditions:
+ - !type:EntityAnchored {}
+ steps:
+ - tag: Toolbox
+ name: toolbox (any)
+ store: altar_component
+ icon:
+ sprite: Objects/Tools/Toolboxes/toolbox_blue.rsi
+ state: icon
+ - material: Cloth
+ store: altar_cloth
+ amount: 2
+ doAfter: 2
+# Blue
+ - to: AltarConvertBlueNode
+ conditions:
+ - !type:EntityAnchored {}
+ steps:
+ - component: ExtinguishOnInteract # Not exclusive to candles I believe, but it's something that narrows down the list
+ name: candle (any)
+ store: altar_candle1
+ icon:
+ sprite: Objects/Misc/candles.rsi
+ state: candle-big
+ - component: ExtinguishOnInteract # Not exclusive to candles I believe, but it's something that narrows down the list
+ name: candle (any)
+ store: altar_candle2
+ icon:
+ sprite: Objects/Misc/candles.rsi
+ state: candle-big
+ - material: Cloth
+ store: altar_cloth
+ amount: 2
+ doAfter: 2
+# Red
+ - to: AltarConvertRedNode
+ conditions:
+ - !type:EntityAnchored {}
+ steps:
+ - component: FireExtinguisher
+ name: fire extinguisher
+ store: altar_component
+ icon:
+ sprite: Objects/Misc/fire_extinguisher.rsi
+ state: fire_extinguisher_closed
+ - component: ExtinguishOnInteract # Not exclusive to candles I believe, but it's something that narrows down the list
+ name: candle (any)
+ store: altar_candle1
+ icon:
+ sprite: Objects/Misc/candles.rsi
+ state: candle-big
+ - component: ExtinguishOnInteract # Not exclusive to candles I believe, but it's something that narrows down the list
+ name: candle (any)
+ store: altar_candle2
+ icon:
+ sprite: Objects/Misc/candles.rsi
+ state: candle-big
+ - material: Cloth
+ store: altar_cloth
+ amount: 2
+ doAfter: 2
+# Yellow
+ - to: AltarConvertYellowNode
+ conditions:
+ - !type:EntityAnchored {}
+ steps:
+ - component: PriceGun
+ name: appraisal tool
+ store: altar_component
+ icon:
+ sprite: Objects/Tools/appraisal-tool.rsi
+ state: icon
+ - component: ExtinguishOnInteract # Not exclusive to candles I believe, but it's something that narrows down the list
+ name: candle (any)
+ store: altar_candle1
+ icon:
+ sprite: Objects/Misc/candles.rsi
+ state: candle-big
+ - component: ExtinguishOnInteract # Not exclusive to candles I believe, but it's something that narrows down the list
+ name: candle (any)
+ store: altar_candle2
+ icon:
+ sprite: Objects/Misc/candles.rsi
+ state: candle-big
+ - material: Cloth
+ store: altar_cloth
+ amount: 2
+ doAfter: 2
+# Maint
+ - to: AltarConvertMaintNode
+ conditions:
+ - !type:EntityAnchored {}
+ steps:
+ - component: RandomFillSolution
+ name: strange pill
+ store: altar_component
+ icon:
+ sprite: Objects/Specific/Chemistry/pills.rsi
+ state: pill1
+ - component: ExtinguishOnInteract # Not exclusive to candles I believe, but it's something that narrows down the list
+ name: candle (any)
+ store: altar_candle1
+ icon:
+ sprite: Objects/Misc/candles.rsi
+ state: candle-big
+ - component: ExtinguishOnInteract # Not exclusive to candles I believe, but it's something that narrows down the list
+ name: candle (any)
+ store: altar_candle2
+ icon:
+ sprite: Objects/Misc/candles.rsi
+ state: candle-big
+ - material: Cloth
+ store: altar_cloth
+ amount: 2
+ doAfter: 2
+# Burden
+ - to: AltarConvertBurdenNode
+ conditions:
+ - !type:EntityAnchored {}
+ steps:
+ - tag: Ore
+ name: raw ore (any)
+ store: altar_component
+ icon:
+ sprite: Objects/Materials/ore.rsi
+ state: iron
+ - component: ExtinguishOnInteract # Not exclusive to candles I believe, but it's something that narrows down the list
+ name: candle (any)
+ store: altar_candle1
+ icon:
+ sprite: Objects/Misc/candles.rsi
+ state: candle-big
+ - component: ExtinguishOnInteract # Not exclusive to candles I believe, but it's something that narrows down the list
+ name: candle (any)
+ store: altar_candle2
+ icon:
+ sprite: Objects/Misc/candles.rsi
+ state: candle-big
+ - material: Cloth
+ store: altar_cloth
+ amount: 2
+ doAfter: 2
+# White
+ - to: AltarConvertWhiteNode
+ conditions:
+ - !type:EntityAnchored {}
+ steps:
+ - component: Sharp
+ name: sharp melee weapon (any)
+ store: altar_component
+ icon:
+ sprite: Objects/Weapons/Melee/captain_sabre.rsi
+ state: icon
+ - component: ExtinguishOnInteract # Not exclusive to candles I believe, but it's something that narrows down the list
+ name: candle (any)
+ store: altar_candle1
+ icon:
+ sprite: Objects/Misc/candles.rsi
+ state: candle-big
+ - component: ExtinguishOnInteract # Not exclusive to candles I believe, but it's something that narrows down the list
+ name: candle (any)
+ store: altar_candle2
+ icon:
+ sprite: Objects/Misc/candles.rsi
+ state: candle-big
+ - material: Cloth
+ store: altar_cloth
+ amount: 2
+ doAfter: 2
+# Orange
+ - to: AltarConvertOrangeNode
+ conditions:
+ - !type:EntityAnchored {}
+ steps:
+ - tag: CrystalOrange
+ name: orange crystal shard
+ store: altar_component
+ icon:
+ sprite: Objects/Materials/Shards/crystal.rsi
+ state: shard1
+ color: "#ff8227"
+ - component: ExtinguishOnInteract # Not exclusive to candles I believe, but it's something that narrows down the list
+ name: candle (any)
+ store: altar_candle1
+ icon:
+ sprite: Objects/Misc/candles.rsi
+ state: candle-big
+ - component: ExtinguishOnInteract # Not exclusive to candles I believe, but it's something that narrows down the list
+ name: candle (any)
+ store: altar_candle2
+ icon:
+ sprite: Objects/Misc/candles.rsi
+ state: candle-big
+ - material: Cloth
+ store: altar_cloth
+ amount: 2
+ doAfter: 2
+# Technology
+ - to: AltarTechnologyNode
+ conditions:
+ - !type:EntityAnchored {}
+ steps:
+ - component: MachineBoard
+ name: machine board (any)
+ store: altar_component
+ icon:
+ sprite: Objects/Misc/module.rsi
+ state: generic
+ - material: Cloth
+ store: altar_cloth
+ amount: 2
+ doAfter: 2
+# Nanotrasen
+ - to: AltarNanotrasenNode
+ conditions:
+ - !type:EntityAnchored {}
+ steps:
+ - component: IdCard
+ name: ID card (any)
+ store: altar_component
+ icon:
+ sprite: Objects/Misc/id_cards.rsi
+ state: default
+ - material: Cloth
+ store: altar_cloth
+ amount: 2
+ doAfter: 2
+# Chaos
+ - to: AltarChaosNode
+ conditions:
+ - !type:EntityAnchored {}
+ steps:
+ - component: Dice
+ name: dice (any)
+ store: altar_component
+ icon:
+ sprite: Objects/Fun/dice.rsi
+ state: d20_20
+ - material: Cloth
+ store: altar_cloth
+ amount: 2
+ doAfter: 2
+# Druid
+ - to: AltarDruidNode
+ conditions:
+ - !type:EntityAnchored {}
+ steps:
+ - component: Seed
+ name: seed (any)
+ store: altar_component
+ icon:
+ sprite: Objects/Specific/Hydroponics/seeds.rsi
+ state: seed
+ - material: Cloth
+ store: altar_cloth
+ amount: 2
+ doAfter: 2
+# Satana
+ - to: AltarSatanaNode
+ conditions:
+ - !type:EntityAnchored {}
+ steps:
+ - component: TabletopGame
+ name: tabletop battlemap (any)
+ store: altar_component
+ icon:
+ sprite: Objects/Fun/Tabletop/Battlemaps/shipbm.rsi
+ state: icon
+ - material: Cloth
+ store: altar_cloth
+ amount: 2
+ doAfter: 2
+# Festival
+ - to: AltarConvertFestivalNode
+ conditions:
+ - !type:EntityAnchored {}
+ steps:
+ - component: Instrument
+ name: musical instrument (any)
+ store: altar_component
+ icon:
+ sprite: Objects/Fun/Instruments/eguitar.rsi
+ state: icon
+ - material: Cloth
+ store: altar_cloth
+ amount: 2
+ doAfter: 2
+# Space-Christian
+ - to: AltarSpaceChristianNode
+ conditions:
+ - !type:EntityAnchored {}
+ steps:
+ - component: Bible
+ name: bible
+ store: altar_component
+ icon:
+ sprite: Objects/Specific/Chapel/bible.rsi
+ state: icon
+ - component: ExtinguishOnInteract # Not exclusive to candles I believe, but it's something that narrows down the list
+ name: candle (any)
+ store: altar_candle1
+ icon:
+ sprite: Objects/Misc/candles.rsi
+ state: candle-big
+ - component: ExtinguishOnInteract # Not exclusive to candles I believe, but it's something that narrows down the list
+ name: candle (any)
+ store: altar_candle2
+ icon:
+ sprite: Objects/Misc/candles.rsi
+ state: candle-big
+ - material: Cloth
+ store: altar_cloth
+ amount: 2
+ doAfter: 2
+# Dismantle
+ - to: start
+ conditions:
+ - !type:EntityAnchored
+ anchored: false
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 4
+ - !type:SpawnPrototype
+ prototype: PartRodMetal
+ amount: 4
+ - !type:DeleteEntity {}
+ steps:
+ - tool: Prying
+ doAfter: 3
+# Final
+ - node: AltarToolboxNode
+ entity: AltarToolbox
+ edges:
+ - to: AltarFrameNode
+ conditions:
+ - !type:EntityAnchored {}
+ completed:
+ - !type:EmptyAllContainers
+ pickup: true
+ emptyAtUser: true
+ steps:
+ - tool: Prying
+ doAfter: 3
+
+ - node: AltarConvertMaintNode
+ entity: AltarConvertMaint
+ edges:
+ - to: AltarFrameNode
+ conditions:
+ - !type:EntityAnchored {}
+ completed:
+ - !type:EmptyAllContainers
+ pickup: true
+ emptyAtUser: true
+ steps:
+ - tool: Prying
+ doAfter: 3
+
+ - node: AltarConvertBlueNode
+ entity: AltarConvertBlue
+ edges:
+ - to: AltarFrameNode
+ conditions:
+ - !type:EntityAnchored {}
+ completed:
+ - !type:EmptyAllContainers
+ pickup: true
+ emptyAtUser: true
+ steps:
+ - tool: Prying
+ doAfter: 3
+
+ - node: AltarConvertBurdenNode
+ entity: AltarConvertBurden
+ edges:
+ - to: AltarFrameNode
+ conditions:
+ - !type:EntityAnchored {}
+ completed:
+ - !type:EmptyAllContainers
+ pickup: true
+ emptyAtUser: true
+ steps:
+ - tool: Prying
+ doAfter: 3
+
+ - node: AltarConvertRedNode
+ entity: AltarConvertRed
+ edges:
+ - to: AltarFrameNode
+ conditions:
+ - !type:EntityAnchored {}
+ completed:
+ - !type:EmptyAllContainers
+ pickup: true
+ emptyAtUser: true
+ steps:
+ - tool: Prying
+ doAfter: 3
+
+ - node: AltarConvertYellowNode
+ entity: AltarConvertYellow
+ edges:
+ - to: AltarFrameNode
+ conditions:
+ - !type:EntityAnchored {}
+ completed:
+ - !type:EmptyAllContainers
+ pickup: true
+ emptyAtUser: true
+ steps:
+ - tool: Prying
+ doAfter: 3
+
+ - node: AltarConvertWhiteNode
+ entity: AltarConvertWhite
+ edges:
+ - to: AltarFrameNode
+ conditions:
+ - !type:EntityAnchored {}
+ completed:
+ - !type:EmptyAllContainers
+ pickup: true
+ emptyAtUser: true
+ steps:
+ - tool: Prying
+ doAfter: 3
+
+ - node: AltarConvertOrangeNode
+ entity: AltarConvertOrange
+ edges:
+ - to: AltarFrameNode
+ conditions:
+ - !type:EntityAnchored {}
+ completed:
+ - !type:EmptyAllContainers
+ pickup: true
+ emptyAtUser: true
+ steps:
+ - tool: Prying
+ doAfter: 3
+
+ - node: AltarTechnologyNode
+ entity: AltarTechnology
+ edges:
+ - to: AltarFrameNode
+ conditions:
+ - !type:EntityAnchored {}
+ completed:
+ - !type:EmptyAllContainers
+ pickup: true
+ emptyAtUser: true
+ steps:
+ - tool: Prying
+ doAfter: 3
+
+ - node: AltarNanotrasenNode
+ entity: AltarNanotrasen
+ edges:
+ - to: AltarFrameNode
+ conditions:
+ - !type:EntityAnchored {}
+ completed:
+ - !type:EmptyAllContainers
+ pickup: true
+ emptyAtUser: true
+ steps:
+ - tool: Prying
+ doAfter: 3
+
+ - node: AltarChaosNode
+ entity: AltarChaos
+ edges:
+ - to: AltarFrameNode
+ conditions:
+ - !type:EntityAnchored {}
+ completed:
+ - !type:EmptyAllContainers
+ pickup: true
+ emptyAtUser: true
+ steps:
+ - tool: Prying
+ doAfter: 3
+
+ - node: AltarDruidNode
+ entity: AltarDruid
+ edges:
+ - to: AltarFrameNode
+ conditions:
+ - !type:EntityAnchored {}
+ completed:
+ - !type:EmptyAllContainers
+ pickup: true
+ emptyAtUser: true
+ steps:
+ - tool: Prying
+ doAfter: 3
+
+ - node: AltarSpaceChristianNode
+ entity: AltarSpaceChristian
+ edges:
+ - to: AltarFrameNode
+ conditions:
+ - !type:EntityAnchored {}
+ completed:
+ - !type:EmptyAllContainers
+ pickup: true
+ emptyAtUser: true
+ steps:
+ - tool: Prying
+ doAfter: 3
+
+ - node: AltarSatanaNode
+ entity: AltarSatana
+ edges:
+ - to: AltarFrameNode
+ conditions:
+ - !type:EntityAnchored {}
+ completed:
+ - !type:EmptyAllContainers
+ pickup: true
+ emptyAtUser: true
+ steps:
+ - tool: Prying
+ doAfter: 3
+
+ - node: AltarConvertFestivalNode
+ entity: AltarConvertFestival
+ edges:
+ - to: AltarFrameNode
+ conditions:
+ - !type:EntityAnchored {}
+ completed:
+ - !type:EmptyAllContainers
+ pickup: true
+ emptyAtUser: true
+ steps:
+ - tool: Prying
+ doAfter: 3
diff --git a/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/banners.yml b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/banners.yml
new file mode 100644
index 000000000000..8935d86d9f19
--- /dev/null
+++ b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/banners.yml
@@ -0,0 +1,308 @@
+- type: constructionGraph
+ id: BannersGraph
+ start: start
+ graph:
+ - node: start
+ actions:
+ - !type:DestroyEntity {}
+ edges:
+ - to: BannerNanotrasenNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 2
+ doAfter: 1
+ - material: Cloth
+ amount: 2
+ doAfter: 1
+ - to: BannerCargoNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 2
+ doAfter: 1
+ - material: Cloth
+ amount: 2
+ doAfter: 1
+ - to: BannerEngineeringNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 2
+ doAfter: 1
+ - material: Cloth
+ amount: 2
+ doAfter: 1
+ - to: BannerMedicalNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 2
+ doAfter: 1
+ - material: Cloth
+ amount: 2
+ doAfter: 1
+ - to: BannerScienceNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 2
+ doAfter: 1
+ - material: Cloth
+ amount: 2
+ doAfter: 1
+ - to: BannerSecurityNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 2
+ doAfter: 1
+ - material: Cloth
+ amount: 2
+ doAfter: 1
+ - to: BannerBlueNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 2
+ doAfter: 1
+ - material: Cloth
+ amount: 2
+ doAfter: 1
+ - to: BannerRedNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 2
+ doAfter: 1
+ - material: Cloth
+ amount: 2
+ doAfter: 1
+ - to: BannerYellowNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 2
+ doAfter: 1
+ - material: Cloth
+ amount: 2
+ doAfter: 1
+ - to: BannerGreenNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 2
+ doAfter: 1
+ - material: Cloth
+ amount: 2
+ doAfter: 1
+ - to: BannerRevolutionNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 2
+ doAfter: 1
+ - material: Cloth
+ amount: 2
+ doAfter: 1
+ - to: BannerSyndicateNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 2
+ doAfter: 1
+ - material: Cloth
+ amount: 2
+ doAfter: 1
+
+ - node: BannerNanotrasenNode
+ entity: BannerNanotrasen
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 2
+ - !type:SpawnPrototype
+ prototype: MaterialCloth1
+ amount: 2
+ steps:
+ - tool: Screwing
+ doAfter: 1
+
+ - node: BannerCargoNode
+ entity: BannerCargo
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 2
+ - !type:SpawnPrototype
+ prototype: MaterialCloth1
+ amount: 2
+ steps:
+ - tool: Screwing
+ doAfter: 1
+
+ - node: BannerEngineeringNode
+ entity: BannerEngineering
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 2
+ - !type:SpawnPrototype
+ prototype: MaterialCloth1
+ amount: 2
+ steps:
+ - tool: Screwing
+ doAfter: 1
+
+ - node: BannerMedicalNode
+ entity: BannerMedical
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 2
+ - !type:SpawnPrototype
+ prototype: MaterialCloth1
+ amount: 2
+ steps:
+ - tool: Screwing
+ doAfter: 1
+
+ - node: BannerScienceNode
+ entity: BannerScience
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 2
+ - !type:SpawnPrototype
+ prototype: MaterialCloth1
+ amount: 2
+ steps:
+ - tool: Screwing
+ doAfter: 1
+
+ - node: BannerSecurityNode
+ entity: BannerSecurity
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 2
+ - !type:SpawnPrototype
+ prototype: MaterialCloth1
+ amount: 2
+ steps:
+ - tool: Screwing
+ doAfter: 1
+
+ - node: BannerRevolutionNode
+ entity: BannerRevolution
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 2
+ - !type:SpawnPrototype
+ prototype: MaterialCloth1
+ amount: 2
+ steps:
+ - tool: Screwing
+ doAfter: 1
+
+ - node: BannerSyndicateNode
+ entity: BannerSyndicate
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 2
+ - !type:SpawnPrototype
+ prototype: MaterialCloth1
+ amount: 2
+ steps:
+ - tool: Screwing
+ doAfter: 1
+
+ - node: BannerBlueNode
+ entity: BannerBlue
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 2
+ - !type:SpawnPrototype
+ prototype: MaterialCloth1
+ amount: 2
+ steps:
+ - tool: Screwing
+ doAfter: 1
+
+ - node: BannerRedNode
+ entity: BannerRed
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 2
+ - !type:SpawnPrototype
+ prototype: MaterialCloth1
+ amount: 2
+ steps:
+ - tool: Screwing
+ doAfter: 1
+
+ - node: BannerYellowNode
+ entity: BannerYellow
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 2
+ - !type:SpawnPrototype
+ prototype: MaterialCloth1
+ amount: 2
+ steps:
+ - tool: Screwing
+ doAfter: 1
+
+ - node: BannerGreenNode
+ entity: BannerGreen
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 2
+ - !type:SpawnPrototype
+ prototype: MaterialCloth1
+ amount: 2
+ steps:
+ - tool: Screwing
+ doAfter: 1
diff --git a/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/beds.yml b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/beds.yml
new file mode 100644
index 000000000000..1af77ed1afe2
--- /dev/null
+++ b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/beds.yml
@@ -0,0 +1,49 @@
+- type: constructionGraph
+ id: bedNF
+ start: start
+ graph:
+ - node: start
+ actions:
+ - !type:DestroyEntity {}
+ edges:
+ - to: mattress
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Cloth
+ amount: 2
+ doAfter: 2
+ - to: PsychBed
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: WoodPlank
+ amount: 4
+ - material: Cloth
+ amount: 4
+ doAfter: 2
+ - node: mattress
+ entity: Mattress
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: MaterialCloth1
+ amount: 2
+ steps:
+ - tool: Screwing
+ doAfter: 1
+ - node: PsychBed
+ entity: PsychBed
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: MaterialWoodPlank1
+ amount: 4
+ - !type:SpawnPrototype
+ prototype: MaterialCloth1
+ amount: 4
+ steps:
+ - tool: Screwing
+ doAfter: 1
\ No newline at end of file
diff --git a/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/benches.yml b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/benches.yml
new file mode 100644
index 000000000000..401fe88fcfd4
--- /dev/null
+++ b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/benches.yml
@@ -0,0 +1,307 @@
+- type: constructionGraph
+ id: BenchesGraph
+ start: start
+ graph:
+ - node: start
+ actions:
+ - !type:DestroyEntity {}
+ edges:
+# Steel bench
+ - to: BenchSteelMiddleNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 3
+ doAfter: 1
+ - to: BenchSteelRightNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 3
+ doAfter: 1
+ - to: BenchSteelLeftNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 3
+ doAfter: 1
+# Pew
+ - to: BenchPewMiddleNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: WoodPlank
+ amount: 3
+ doAfter: 1
+ - to: BenchPewRightNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: WoodPlank
+ amount: 3
+ doAfter: 1
+ - to: BenchPewLeftNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: WoodPlank
+ amount: 3
+ doAfter: 1
+# Park Bench
+ - to: BenchParkMiddleNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 1
+ doAfter: 1
+ - material: WoodPlank
+ amount: 2
+ doAfter: 1
+ - to: BenchParkRightNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 1
+ doAfter: 1
+ - material: WoodPlank
+ amount: 2
+ doAfter: 1
+ - to: BenchParkLeftNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 1
+ doAfter: 1
+ - material: WoodPlank
+ amount: 2
+ doAfter: 1
+# Bamboo Park Bench
+ - to: BenchParkBambooMiddleNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: WoodPlank
+ amount: 3
+ doAfter: 1
+ - to: BenchParkBambooRightNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: WoodPlank
+ amount: 3
+ doAfter: 1
+ - to: BenchParkBambooLeftNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: WoodPlank
+ amount: 3
+ doAfter: 1
+# White steel bench
+ - to: BenchSteelWhiteMiddleNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 3
+ doAfter: 1
+ - to: BenchSteelWhiteRightNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 3
+ doAfter: 1
+ - to: BenchSteelWhiteLeftNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 3
+ doAfter: 1
+# Nodes
+# Steel bench
+ - node: BenchSteelMiddleNode
+ entity: BenchSteelMiddle
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 3
+ steps:
+ - tool: Screwing
+ doAfter: 1
+ - node: BenchSteelRightNode
+ entity: BenchSteelRight
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 3
+ steps:
+ - tool: Screwing
+ doAfter: 1
+ - node: BenchSteelLeftNode
+ entity: BenchSteelLeft
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 3
+ steps:
+ - tool: Screwing
+ doAfter: 1
+# Pew
+ - node: BenchPewMiddleNode
+ entity: BenchPewMiddle
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: MaterialWoodPlank1
+ amount: 3
+ steps:
+ - tool: Screwing
+ doAfter: 1
+ - node: BenchPewRightNode
+ entity: BenchPewRight
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: MaterialWoodPlank1
+ amount: 3
+ steps:
+ - tool: Screwing
+ doAfter: 1
+ - node: BenchPewLeftNode
+ entity: BenchPewLeft
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: MaterialWoodPlank1
+ amount: 3
+ steps:
+ - tool: Screwing
+ doAfter: 1
+# Park Bench
+ - node: BenchParkMiddleNode
+ entity: BenchParkMiddle
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 1
+ - !type:SpawnPrototype
+ prototype: MaterialWoodPlank1
+ amount: 2
+ steps:
+ - tool: Screwing
+ doAfter: 1
+ - node: BenchParkRightNode
+ entity: BenchParkRight
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 1
+ - !type:SpawnPrototype
+ prototype: MaterialWoodPlank1
+ amount: 2
+ steps:
+ - tool: Screwing
+ doAfter: 1
+ - node: BenchParkLeftNode
+ entity: BenchParkLeft
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 1
+ - !type:SpawnPrototype
+ prototype: MaterialWoodPlank1
+ amount: 2
+ steps:
+ - tool: Screwing
+ doAfter: 1
+# Bamboo park bench
+ - node: BenchParkBambooMiddleNode
+ entity: BenchParkBambooMiddle
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: MaterialWoodPlank1
+ amount: 3
+ steps:
+ - tool: Screwing
+ doAfter: 1
+ - node: BenchParkBambooLeftNode
+ entity: BenchParkBambooLeft
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: MaterialWoodPlank1
+ amount: 3
+ steps:
+ - tool: Screwing
+ doAfter: 1
+ - node: BenchParkBambooRightNode
+ entity: BenchParkBambooRight
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: MaterialWoodPlank1
+ amount: 3
+ steps:
+ - tool: Screwing
+ doAfter: 1
+# White bench
+ - node: BenchSteelWhiteMiddleNode
+ entity: BenchSteelWhiteMiddle
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 3
+ steps:
+ - tool: Screwing
+ doAfter: 1
+ - node: BenchSteelWhiteRightNode
+ entity: BenchSteelWhiteRight
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 3
+ steps:
+ - tool: Screwing
+ doAfter: 1
+ - node: BenchSteelWhiteLeftNode
+ entity: BenchSteelWhiteLeft
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 3
+ steps:
+ - tool: Screwing
+ doAfter: 1
\ No newline at end of file
diff --git a/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/fires.yml b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/fires.yml
new file mode 100644
index 000000000000..03cd91aefe9e
--- /dev/null
+++ b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/fires.yml
@@ -0,0 +1,49 @@
+- type: constructionGraph
+ id: FiresGraph
+ start: start
+ graph:
+ - node: start
+ actions:
+ - !type:DestroyEntity {}
+ edges:
+ - to: BonfireNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: WoodPlank
+ amount: 10
+ doAfter: 1
+ - to: FireplaceNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: WoodPlank
+ amount: 10
+ doAfter: 1
+ - material: Steel
+ amount: 10
+ doAfter: 1
+
+ - node: BonfireNode
+ entity: Bonfire
+ edges:
+ - to: start
+ completed:
+ - !type:GivePrototype
+ prototype: MaterialWoodPlank1
+ amount: 1
+ steps:
+ - tool: Prying
+ doAfter: 1
+
+ - node: FireplaceNode
+ entity: Fireplace
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 4
+ steps:
+ - tool: Prying
+ doAfter: 1
\ No newline at end of file
diff --git a/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/sofas.yml b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/sofas.yml
new file mode 100644
index 000000000000..01ade99a44f7
--- /dev/null
+++ b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/sofas.yml
@@ -0,0 +1,200 @@
+- type: constructionGraph
+ id: SofasGraph
+ start: start
+ graph:
+ - node: start
+ actions:
+ - !type:DestroyEntity {}
+ edges:
+ - to: BenchSofaMiddleNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 2
+ doAfter: 1
+ - material: Cloth
+ amount: 2
+ doAfter: 1
+ - to: BenchSofaLeftNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 2
+ doAfter: 1
+ - material: Cloth
+ amount: 2
+ doAfter: 1
+ - to: BenchSofaRightNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 2
+ doAfter: 1
+ - material: Cloth
+ amount: 2
+ doAfter: 1
+ - to: BenchSofaCornerNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 2
+ doAfter: 1
+ - material: Cloth
+ amount: 2
+ doAfter: 1
+ - to: BenchSofaCorpMiddleNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 2
+ doAfter: 1
+ - material: Cloth
+ amount: 2
+ doAfter: 1
+ - to: BenchSofaCorpLeftNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 2
+ doAfter: 1
+ - material: Cloth
+ amount: 2
+ doAfter: 1
+ - to: BenchSofaCorpRightNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 2
+ doAfter: 1
+ - material: Cloth
+ amount: 2
+ doAfter: 1
+ - to: BenchSofaCorpCornerNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: Steel
+ amount: 2
+ doAfter: 1
+ - material: Cloth
+ amount: 2
+ doAfter: 1
+ - node: BenchSofaMiddleNode
+ entity: BenchSofaMiddle
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 2
+ - !type:SpawnPrototype
+ prototype: MaterialCloth1
+ amount: 2
+ steps:
+ - tool: Screwing
+ doAfter: 1
+ - node: BenchSofaLeftNode
+ entity: BenchSofaLeft
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 2
+ - !type:SpawnPrototype
+ prototype: MaterialCloth1
+ amount: 2
+ steps:
+ - tool: Screwing
+ doAfter: 1
+ - node: BenchSofaRightNode
+ entity: BenchSofaRight
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 2
+ - !type:SpawnPrototype
+ prototype: MaterialCloth1
+ amount: 2
+ steps:
+ - tool: Screwing
+ doAfter: 1
+ - node: BenchSofaCornerNode
+ entity: BenchSofaCorner
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 2
+ - !type:SpawnPrototype
+ prototype: MaterialCloth1
+ amount: 2
+ steps:
+ - tool: Screwing
+ doAfter: 1
+ - node: BenchSofaCorpMiddleNode
+ entity: BenchSofaCorpMiddle
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 2
+ - !type:SpawnPrototype
+ prototype: MaterialCloth1
+ amount: 2
+ steps:
+ - tool: Screwing
+ doAfter: 1
+ - node: BenchSofaCorpLeftNode
+ entity: BenchSofaCorpLeft
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 2
+ - !type:SpawnPrototype
+ prototype: MaterialCloth1
+ amount: 2
+ steps:
+ - tool: Screwing
+ doAfter: 1
+ - node: BenchSofaCorpRightNode
+ entity: BenchSofaCorpRight
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 2
+ - !type:SpawnPrototype
+ prototype: MaterialCloth1
+ amount: 2
+ steps:
+ - tool: Screwing
+ doAfter: 1
+ - node: BenchSofaCorpCornerNode
+ entity: BenchSofaCorpCorner
+ edges:
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 2
+ - !type:SpawnPrototype
+ prototype: MaterialCloth1
+ amount: 2
+ steps:
+ - tool: Screwing
+ doAfter: 1
\ No newline at end of file
diff --git a/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/storage.yml b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/storage.yml
new file mode 100644
index 000000000000..2a5c998046a4
--- /dev/null
+++ b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/storage.yml
@@ -0,0 +1,43 @@
+- type: constructionGraph
+ id: StorageFurnitureGraph
+ start: start
+ graph:
+ - node: start
+ actions:
+ - !type:EmptyAllContainers
+ - !type:DestroyEntity { }
+ edges:
+ - to: LockerWoodenGenericNode
+ completed:
+ - !type:SnapToGrid { }
+ steps:
+ - material: WoodPlank
+ amount: 6
+ - material: Steel
+ amount: 2
+ - material: Cable
+ amount: 2
+ doAfter: 3
+
+ - node: LockerWoodenGenericNode
+ entity: LockerWoodenGeneric
+ edges:
+ - to: start
+ conditions:
+ - !type:StorageWelded
+ welded: false
+ - !type:Locked
+ locked: false
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 2
+ - !type:SpawnPrototype
+ prototype: CableApcStack1
+ amount: 2
+ - !type:SpawnPrototype
+ prototype: MaterialWoodPlank1
+ amount: 6
+ steps:
+ - tool: Screwing
+ doAfter: 1
diff --git a/Resources/Prototypes/_NF/Recipes/Construction/Graphs/machines/computer_tabletop.yml b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/machines/computer_tabletop.yml
new file mode 100644
index 000000000000..5e9198b04b67
--- /dev/null
+++ b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/machines/computer_tabletop.yml
@@ -0,0 +1,142 @@
+- type: constructionGraph
+ id: GraphComputerTabletop
+ start: start
+ graph:
+ - node: start
+ edges:
+ - to: frameUnsecured
+ completed:
+ - !type:SetAnchor
+ value: false
+ steps:
+ - material: Steel
+ amount: 5
+ doAfter: 2.5
+
+ - node: frameUnsecured
+ actions:
+ - !type:AppearanceChange
+ entity: ComputerTabletopFrame
+ edges:
+ - to: boardUnsecured
+ conditions:
+ - !type:EntityAnchored {}
+ steps:
+ - component: ComputerTabletopBoard
+ store: board
+ name: any tabletop computer circuit board
+ icon:
+ sprite: "Objects/Misc/module.rsi"
+ state: "id_mod"
+
+ - to: start
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetSteel1
+ amount: 5
+ - !type:DeleteEntity {}
+ steps:
+ - tool: Welding
+ doAfter: 2
+
+ - node: boardUnsecured
+ actions:
+ - !type:AppearanceChange
+ edges:
+ - to: missingWires
+ conditions:
+ - !type:EntityAnchored {}
+ steps:
+ - tool: Screwing
+
+ - to: frameUnsecured
+ conditions:
+ - !type:EntityAnchored { }
+ completed:
+ - !type:EmptyAllContainers {}
+ steps:
+ - tool: Prying
+
+ - node: missingWires
+ actions:
+ - !type:AppearanceChange
+ edges:
+ - to: monitorMissing
+ conditions:
+ - !type:EntityAnchored {}
+ steps:
+ - material: Cable
+ amount: 5
+
+ - to: boardUnsecured
+ conditions:
+ - !type:EntityAnchored { }
+ steps:
+ - tool: Screwing
+
+ - node: monitorMissing
+ entity: ComputerTabletopFrame
+ actions:
+ - !type:SetAnchor { }
+ - !type:AppearanceChange
+ edges:
+ - to: monitorUnsecured
+ conditions:
+ - !type:EntityAnchored {}
+ steps:
+ - material: Glass
+ amount: 2
+
+ - to: missingWires
+ conditions:
+ - !type:EntityAnchored { }
+ completed:
+ - !type:SpawnPrototype
+ prototype: CableApcStack1
+ amount: 5
+ steps:
+ - tool: Cutting
+
+ - node: monitorUnsecured
+ actions:
+ - !type:AppearanceChange
+ entity: ComputerTabletopFrame
+ edges:
+ - to: tabletop computer
+ conditions:
+ - !type:EntityAnchored {}
+ steps:
+ - tool: Screwing
+
+ - to: monitorMissing
+ conditions:
+ - !type:EntityAnchored {}
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetGlass1
+ amount: 2
+ steps:
+ - tool: Prying
+
+ - node: tabletop computer
+ entity: !type:BoardNodeEntity { container: board }
+ edges:
+ - to: monitorUnsecured
+ conditions:
+ - !type:AllWiresCut {}
+ steps:
+ - tool: Screwing
+
+ - node: monitorBroken
+ entity: ComputerTabletopBroken
+ edges:
+ - to: monitorMissing
+ conditions:
+ - !type:EntityAnchored {}
+ completed:
+ - !type:SpawnPrototype
+ prototype: ShardGlass
+ amount: 2
+ steps:
+ - tool: Prying
+ doAfter: 2
diff --git a/Resources/Prototypes/_NF/Recipes/Construction/Graphs/structures/secretdoor.yml b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/structures/secretdoor.yml
index b54c267ec005..fcc6d2c5421f 100644
--- a/Resources/Prototypes/_NF/Recipes/Construction/Graphs/structures/secretdoor.yml
+++ b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/structures/secretdoor.yml
@@ -249,3 +249,85 @@
steps:
- tool: Prying
doAfter: 5
+
+- type: constructionGraph
+ id: ShuttleSecretDoorGraph
+ start: start
+ graph:
+ - node: start
+ edges:
+ - to: assembly
+ completed:
+ - !type:SetAnchor
+ value: false
+ steps:
+ - material: Silver
+ amount: 4
+ doAfter: 4
+ - material: MetalRod
+ amount: 4
+ doAfter: 4
+ - node: assembly
+ entity: ShuttleSecretDoorAssembly
+ actions:
+ - !type:SnapToGrid {}
+ - !type:SetAnchor {}
+ edges:
+ - to: wired
+ conditions:
+ - !type:EntityAnchored {}
+ steps:
+ - material: Cable
+ amount: 4
+ doAfter: 2.5
+ - to: start
+ conditions:
+ - !type:EntityAnchored
+ anchored: false
+ completed:
+ - !type:SpawnPrototype
+ prototype: SheetUranium1
+ amount: 4
+ - !type:DeleteEntity {}
+ steps:
+ - tool: Welding
+ doAfter: 3
+ - node: wired
+ entity: ShuttleSecretDoorAssembly
+ edges:
+ - to: electronics
+ steps:
+ - component: PowerCell
+ name: power cell
+ store: battery-container
+ icon:
+ sprite: Objects/Power/power_cells.rsi
+ state: small
+ doAfter: 1
+ - to: assembly
+ completed:
+ - !type:GivePrototype
+ prototype: CableApcStack1
+ amount: 4
+ steps:
+ - tool: Cutting
+ doAfter: 2
+ - node: electronics
+ entity: ShuttleSecretDoorAssembly
+ edges:
+ - to: ShuttleSecretDoorNode
+ steps:
+ - tool: Screwing
+ doAfter: 2
+ - node: ShuttleSecretDoorNode
+ entity: ShuttleSecretDoor
+ edges:
+ - to: wired
+ conditions:
+ - !type:EntityAnchored {}
+ - !type:DoorWelded {}
+ completed:
+ - !type:EmptyAllContainers {}
+ steps:
+ - tool: Prying
+ doAfter: 5
diff --git a/Resources/Prototypes/_NF/Recipes/Construction/furniture.yml b/Resources/Prototypes/_NF/Recipes/Construction/furniture.yml
new file mode 100644
index 000000000000..e8e56fbcc0f4
--- /dev/null
+++ b/Resources/Prototypes/_NF/Recipes/Construction/furniture.yml
@@ -0,0 +1,940 @@
+# Beds
+- type: construction
+ id: Mattres
+ name: mattress
+ description: Marginally preferable to sleeping on the floor.
+ graph: bedNF
+ startNode: start
+ targetNode: mattress
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Furniture/furniture.rsi
+ state: mattress
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: PsychBed
+ name: psychologist bed
+ description: An upholstered bed for the psychological care of patients.
+ graph: bedNF
+ startNode: start
+ targetNode: PsychBed
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Furniture/furniture.rsi
+ state: psychbed
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+# Seat
+- type: construction
+ id: BenchSofaMiddle
+ name: sofa (middle)
+ description: Multiple seats spanning a single object. Truly a marvel of science.
+ graph: SofasGraph
+ startNode: start
+ targetNode: BenchSofaMiddleNode
+ category: construction-category-furniture
+ icon:
+ sprite: SimpleStation14/Structures/Furniture/Benches/sofa.rsi
+ state: middle
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BenchSofaLeft
+ name: sofa (left)
+ description: Multiple seats spanning a single object. Truly a marvel of science.
+ graph: SofasGraph
+ startNode: start
+ targetNode: BenchSofaLeftNode
+ category: construction-category-furniture
+ icon:
+ sprite: SimpleStation14/Structures/Furniture/Benches/sofa.rsi
+ state: left
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BenchSofaRight
+ name: sofa (right)
+ description: Multiple seats spanning a single object. Truly a marvel of science.
+ graph: SofasGraph
+ startNode: start
+ targetNode: BenchSofaRightNode
+ category: construction-category-furniture
+ icon:
+ sprite: SimpleStation14/Structures/Furniture/Benches/sofa.rsi
+ state: right
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BenchSofaCorner
+ name: sofa (corner)
+ description: Multiple seats spanning a single object. Truly a marvel of science.
+ graph: SofasGraph
+ startNode: start
+ targetNode: BenchSofaCornerNode
+ category: construction-category-furniture
+ icon:
+ sprite: SimpleStation14/Structures/Furniture/Benches/sofa.rsi
+ state: corner
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BenchSofaCorpMiddle
+ name: grey sofa (middle)
+ description: Multiple seats spanning a single object. Truly a marvel of science.
+ graph: SofasGraph
+ startNode: start
+ targetNode: BenchSofaCorpMiddleNode
+ category: construction-category-furniture
+ icon:
+ sprite: SimpleStation14/Structures/Furniture/Benches/sofa_corp.rsi
+ state: middle
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BenchSofaCorpLeft
+ name: grey sofa (left)
+ description: Multiple seats spanning a single object. Truly a marvel of science.
+ graph: SofasGraph
+ startNode: start
+ targetNode: BenchSofaCorpLeftNode
+ category: construction-category-furniture
+ icon:
+ sprite: SimpleStation14/Structures/Furniture/Benches/sofa_corp.rsi
+ state: left
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BenchSofaCorpRight
+ name: grey sofa (right)
+ description: Multiple seats spanning a single object. Truly a marvel of science.
+ graph: SofasGraph
+ startNode: start
+ targetNode: BenchSofaCorpRightNode
+ category: construction-category-furniture
+ icon:
+ sprite: SimpleStation14/Structures/Furniture/Benches/sofa_corp.rsi
+ state: right
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BenchSofaCorpCorner
+ name: grey sofa (corner)
+ description: Multiple seats spanning a single object. Truly a marvel of science.
+ graph: SofasGraph
+ startNode: start
+ targetNode: BenchSofaCorpCornerNode
+ category: construction-category-furniture
+ icon:
+ sprite: SimpleStation14/Structures/Furniture/Benches/sofa_corp.rsi
+ state: corner
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BenchSteelMiddle
+ name: steel bench (middle)
+ description: Multiple seats spanning a single object. Truly a marvel of science.
+ graph: BenchesGraph
+ startNode: start
+ targetNode: BenchSteelMiddleNode
+ category: construction-category-furniture
+ icon:
+ sprite: SimpleStation14/Structures/Furniture/Benches/steel_bench.rsi
+ state: middle
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BenchSteelRight
+ name: steel bench (right)
+ description: Multiple seats spanning a single object. Truly a marvel of science.
+ graph: BenchesGraph
+ startNode: start
+ targetNode: BenchSteelRightNode
+ category: construction-category-furniture
+ icon:
+ sprite: SimpleStation14/Structures/Furniture/Benches/steel_bench.rsi
+ state: right
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BenchSteelLeft
+ name: steel bench (left)
+ description: Multiple seats spanning a single object. Truly a marvel of science.
+ graph: BenchesGraph
+ startNode: start
+ targetNode: BenchSteelLeftNode
+ category: construction-category-furniture
+ icon:
+ sprite: SimpleStation14/Structures/Furniture/Benches/steel_bench.rsi
+ state: left
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BenchPewMiddle
+ name: pew (middle)
+ description: Multiple seats spanning a single object. Truly a marvel of science.
+ graph: BenchesGraph
+ startNode: start
+ targetNode: BenchPewMiddleNode
+ category: construction-category-furniture
+ icon:
+ sprite: SimpleStation14/Structures/Furniture/Benches/pews.rsi
+ state: middle
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BenchPewRight
+ name: pew (right)
+ description: Multiple seats spanning a single object. Truly a marvel of science.
+ graph: BenchesGraph
+ startNode: start
+ targetNode: BenchPewRightNode
+ category: construction-category-furniture
+ icon:
+ sprite: SimpleStation14/Structures/Furniture/Benches/pews.rsi
+ state: right
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BenchPewLeft
+ name: pew (left)
+ description: Multiple seats spanning a single object. Truly a marvel of science.
+ graph: BenchesGraph
+ startNode: start
+ targetNode: BenchPewLeftNode
+ category: construction-category-furniture
+ icon:
+ sprite: SimpleStation14/Structures/Furniture/Benches/pews.rsi
+ state: left
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BenchParkMiddle
+ name: park bench (middle)
+ description: Multiple seats spanning a single object. Truly a marvel of science.
+ graph: BenchesGraph
+ startNode: start
+ targetNode: BenchParkMiddleNode
+ category: construction-category-furniture
+ icon:
+ sprite: SimpleStation14/Structures/Furniture/Benches/parkbench_wooden.rsi
+ state: middle
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BenchParkRight
+ name: park bench (right)
+ description: Multiple seats spanning a single object. Truly a marvel of science.
+ graph: BenchesGraph
+ startNode: start
+ targetNode: BenchParkRightNode
+ category: construction-category-furniture
+ icon:
+ sprite: SimpleStation14/Structures/Furniture/Benches/parkbench_wooden.rsi
+ state: right
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BenchParkLeft
+ name: park bench (left)
+ description: Multiple seats spanning a single object. Truly a marvel of science.
+ graph: BenchesGraph
+ startNode: start
+ targetNode: BenchParkLeftNode
+ category: construction-category-furniture
+ icon:
+ sprite: SimpleStation14/Structures/Furniture/Benches/parkbench_wooden.rsi
+ state: left
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BenchSteelWhiteMiddle
+ name: white bench (middle)
+ description: Multiple seats spanning a single object. Truly a marvel of science.
+ graph: BenchesGraph
+ startNode: start
+ targetNode: BenchSteelWhiteMiddleNode
+ category: construction-category-furniture
+ icon:
+ sprite: SimpleStation14/Structures/Furniture/Benches/steel_bench_white.rsi
+ state: middle
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BenchSteelWhiteRight
+ name: white bench (right)
+ description: Multiple seats spanning a single object. Truly a marvel of science.
+ graph: BenchesGraph
+ startNode: start
+ targetNode: BenchSteelWhiteRightNode
+ category: construction-category-furniture
+ icon:
+ sprite: SimpleStation14/Structures/Furniture/Benches/steel_bench_white.rsi
+ state: right
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BenchSteelWhiteLeft
+ name: white bench (left)
+ description: Multiple seats spanning a single object. Truly a marvel of science.
+ graph: BenchesGraph
+ startNode: start
+ targetNode: BenchSteelWhiteLeftNode
+ category: construction-category-furniture
+ icon:
+ sprite: SimpleStation14/Structures/Furniture/Benches/steel_bench_white.rsi
+ state: left
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BenchParkBambooMiddle
+ name: bamboo park bench (middle)
+ description: Multiple seats spanning a single object. Truly a marvel of science.
+ graph: BenchesGraph
+ startNode: start
+ targetNode: BenchParkBambooMiddleNode
+ category: construction-category-furniture
+ icon:
+ sprite: SimpleStation14/Structures/Furniture/Benches/parkbench_bamboo.rsi
+ state: middle
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BenchParkBambooRight
+ name: bamboo park bench (right)
+ description: Multiple seats spanning a single object. Truly a marvel of science.
+ graph: BenchesGraph
+ startNode: start
+ targetNode: BenchParkBambooRightNode
+ category: construction-category-furniture
+ icon:
+ sprite: SimpleStation14/Structures/Furniture/Benches/parkbench_bamboo.rsi
+ state: right
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BenchParkBambooLeft
+ name: bamboo park bench (left)
+ description: Multiple seats spanning a single object. Truly a marvel of science.
+ graph: BenchesGraph
+ startNode: start
+ targetNode: BenchParkBambooLeftNode
+ category: construction-category-furniture
+ icon:
+ sprite: SimpleStation14/Structures/Furniture/Benches/parkbench_bamboo.rsi
+ state: left
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+# Storage
+- type: construction
+ id: LockerWoodenGeneric
+ name: wooden cabinet
+ description: Dusty old wooden cabinet.
+ graph: StorageFurnitureGraph
+ startNode: start
+ targetNode: LockerWoodenGenericNode
+ category: construction-category-furniture
+ icon:
+ sprite: _NF/Structures/Storage/closet.rsi
+ state: wooden_cabinet_icon
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+# Decorations (bonfire, fireplace)
+- type: construction
+ id: Bonfire
+ name: bonefire
+ description: What can be better then late evening under the sky with guitar and friends.
+ graph: FiresGraph
+ startNode: start
+ targetNode: BonfireNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Decoration/bonfire.rsi
+ state: bonfire
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: Fireplace
+ name: fireplace
+ description: A place that has fire. Cozy!
+ graph: FiresGraph
+ startNode: start
+ targetNode: FireplaceNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Decoration/fireplace.rsi
+ state: fireplace
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+# Banners
+- type: construction
+ id: BannerNanotrasen
+ name: nanotrasen banner
+ description: A banner displaying the Nanotrasen logo.
+ graph: BannersGraph
+ startNode: start
+ targetNode: BannerNanotrasenNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Decoration/banner.rsi
+ state: banner
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BannerCargo
+ name: cargo banner
+ description: A banner displaying the colors of the cargo department.
+ graph: BannersGraph
+ startNode: start
+ targetNode: BannerCargoNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Decoration/banner.rsi
+ state: banner_cargo
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BannerEngineering
+ name: engineering banner
+ description: A banner displaying the colors of the engineering department.
+ graph: BannersGraph
+ startNode: start
+ targetNode: BannerEngineeringNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Decoration/banner.rsi
+ state: banner_engineering
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BannerMedical
+ name: medical banner
+ description: A banner displaying the colors of the medical department.
+ graph: BannersGraph
+ startNode: start
+ targetNode: BannerMedicalNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Decoration/banner.rsi
+ state: banner_medical
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BannerScience
+ name: science banner
+ description: A banner displaying the colors of the science department.
+ graph: BannersGraph
+ startNode: start
+ targetNode: BannerScienceNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Decoration/banner.rsi
+ state: banner_science
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BannerSecurity
+ name: security banner
+ description: A banner displaying the colors of the security department.
+ graph: BannersGraph
+ startNode: start
+ targetNode: BannerSecurityNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Decoration/banner.rsi
+ state: banner_security
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BannerBlue
+ name: blue banner
+ description: A banner displaying the color blue.
+ graph: BannersGraph
+ startNode: start
+ targetNode: BannerBlueNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Decoration/banner.rsi
+ state: banner-blue
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BannerRed
+ name: red banner
+ description: A banner displaying the color red.
+ graph: BannersGraph
+ startNode: start
+ targetNode: BannerRedNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Decoration/banner.rsi
+ state: banner-red
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BannerYellow
+ name: yellow banner
+ description: A banner displaying the color yellow.
+ graph: BannersGraph
+ startNode: start
+ targetNode: BannerYellowNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Decoration/banner.rsi
+ state: banner-yellow
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BannerGreen
+ name: green banner
+ description: A banner displaying the color green.
+ graph: BannersGraph
+ startNode: start
+ targetNode: BannerGreenNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Decoration/banner.rsi
+ state: banner-green
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BannerRevolution
+ name: revolution banner
+ description: A banner displaying revolution. Viva!
+ graph: BannersGraph
+ startNode: start
+ targetNode: BannerRevolutionNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Decoration/banner.rsi
+ state: banner_revolution
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: BannerSyndicate
+ name: syndicate banner
+ description: A banner from which, according to the syndicate, you should feel hatred for NT.
+ graph: BannersGraph
+ startNode: start
+ targetNode: BannerSyndicateNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Decoration/banner.rsi
+ state: banner_syndicate
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+# Altars
+- type: construction
+ id: AltarToolbox
+ name: toolbox altar
+ description: Altar of the Gods.
+ graph: AltarsGraph
+ startNode: start
+ targetNode: AltarToolboxNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Furniture/Altars/Gods/nanotrasen.rsi
+ state: toolbox
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: AltarConvertMaint
+ name: maint altar
+ description: Altar of the Gods.
+ graph: AltarsGraph
+ startNode: start
+ targetNode: AltarConvertMaintNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Furniture/Altars/Gods/convertaltar.rsi
+ state: maint
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: AltarConvertBlue
+ name: blue altar
+ description: Altar of the Gods.
+ graph: AltarsGraph
+ startNode: start
+ targetNode: AltarConvertBlueNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Furniture/Altars/Gods/convertaltar.rsi
+ state: blue
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: AltarConvertBurden
+ name: burden altar
+ description: Altar of the Gods.
+ graph: AltarsGraph
+ startNode: start
+ targetNode: AltarConvertBurdenNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Furniture/Altars/Gods/convertaltar.rsi
+ state: convertaltar
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: AltarConvertYellow
+ name: yellow altar
+ description: Altar of the Gods.
+ graph: AltarsGraph
+ startNode: start
+ targetNode: AltarConvertYellowNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Furniture/Altars/Gods/convertaltar.rsi
+ state: yellow
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: AltarConvertRed
+ name: red altar
+ description: Altar of the Gods.
+ graph: AltarsGraph
+ startNode: start
+ targetNode: AltarConvertRedNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Furniture/Altars/Gods/convertaltar.rsi
+ state: red
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: AltarConvertWhite
+ name: white altar
+ description: Altar of the Gods.
+ graph: AltarsGraph
+ startNode: start
+ targetNode: AltarConvertWhiteNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Furniture/Altars/Gods/convertaltar.rsi
+ state: white
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: AltarConvertOrange
+ name: orange altar
+ description: Altar of the Gods.
+ graph: AltarsGraph
+ startNode: start
+ targetNode: AltarConvertOrangeNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Furniture/Altars/Gods/convertaltar.rsi
+ state: orange
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: AltarTechnology
+ name: technology altar
+ description: Altar of the Gods.
+ graph: AltarsGraph
+ startNode: start
+ targetNode: AltarTechnologyNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Furniture/Altars/Gods/nanotrasen.rsi
+ state: technology
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: AltarNanotrasen
+ name: nanotrasen altar
+ description: Altar of the Gods.
+ graph: AltarsGraph
+ startNode: start
+ targetNode: AltarNanotrasenNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Furniture/Altars/Gods/nanotrasen.rsi
+ state: nanotrasen
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: AltarChaos
+ name: chaos altar
+ description: Altar of the Gods.
+ graph: AltarsGraph
+ startNode: start
+ targetNode: AltarChaosNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Furniture/Altars/Gods/nanotrasen.rsi
+ state: chaos
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: AltarDruid
+ name: druid altar
+ description: Altar of the Gods.
+ graph: AltarsGraph
+ startNode: start
+ targetNode: AltarDruidNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Furniture/Altars/Gods/nanotrasen.rsi
+ state: druid
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: AltarSpaceChristian
+ name: space-Christian altar
+ description: Altar of the Gods.
+ graph: AltarsGraph
+ startNode: start
+ targetNode: AltarSpaceChristianNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Furniture/Altars/Gods/nanotrasen.rsi
+ state: space-christian
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: AltarSatana
+ name: satanic altar
+ description: Altar of the Gods.
+ graph: AltarsGraph
+ startNode: start
+ targetNode: AltarSatanaNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Furniture/Altars/Gods/nanotrasen.rsi
+ state: satana
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ id: AltarConvertFestival
+ name: festival altar
+ description: Altar of the Gods.
+ graph: AltarsGraph
+ startNode: start
+ targetNode: AltarConvertFestivalNode
+ category: construction-category-furniture
+ icon:
+ sprite: Structures/Furniture/Altars/Gods/convertaltar.rsi
+ state: festival
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ conditions:
+ - !type:TileNotBlocked
diff --git a/Resources/Prototypes/_NF/Recipes/Construction/machines.yml b/Resources/Prototypes/_NF/Recipes/Construction/machines.yml
new file mode 100644
index 000000000000..312fe46d24b3
--- /dev/null
+++ b/Resources/Prototypes/_NF/Recipes/Construction/machines.yml
@@ -0,0 +1,13 @@
+- type: construction
+ name: computer (tabletop)
+ id: ConstructionComputerTabletop
+ graph: GraphComputerTabletop
+ startNode: start
+ targetNode: tabletop computer
+ category: construction-category-machines
+ description: A frame used to construct anything with a computer circuitboard.
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ icon:
+ sprite: _NF/Structures/Machines/computer_tabletop.rsi
+ state: computer_tabletop_frame
diff --git a/Resources/Prototypes/_NF/Recipes/Construction/structures.yml b/Resources/Prototypes/_NF/Recipes/Construction/structures.yml
index dd5fd22c6e7c..ead5e44462d4 100644
--- a/Resources/Prototypes/_NF/Recipes/Construction/structures.yml
+++ b/Resources/Prototypes/_NF/Recipes/Construction/structures.yml
@@ -46,5 +46,22 @@
icon:
sprite: _NF/Structures/Doors/secret_door_uranium.rsi
state: closed
+ conditions:
+ - !type:TileNotBlocked
+
+- type: construction
+ name: shuttle secret door
+ id: ShuttleSecretDoorConstruction
+ graph: ShuttleSecretDoorGraph
+ startNode: start
+ targetNode: ShuttleSecretDoorNode
+ category: construction-category-structures
+ description: A secret door for the wall.
+ objectType: Structure
+ placementMode: SnapgridCenter
+ canBuildInImpassable: false
+ icon:
+ sprite: _NF/Structures/Doors/secret_door_shuttle.rsi
+ state: closed
conditions:
- !type:TileNotBlocked
\ No newline at end of file
diff --git a/Resources/Prototypes/_NF/Recipes/Lathes/floortiles.yml b/Resources/Prototypes/_NF/Recipes/Lathes/floortiles.yml
new file mode 100644
index 000000000000..14efa48222a4
--- /dev/null
+++ b/Resources/Prototypes/_NF/Recipes/Lathes/floortiles.yml
@@ -0,0 +1,356 @@
+- type: latheRecipe
+ id: FloorTileItemSteel
+ result: FloorTileItemSteel
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemMetalDiamond
+ result: FloorTileItemMetalDiamond
+ completetime: 0.5
+ materials:
+ Steel: 50
+
+- type: latheRecipe
+ id: FloorTileItemWood
+ result: FloorTileItemWood
+ completetime: 0.5
+ materials:
+ Wood: 25
+
+- type: latheRecipe
+ id: FloorTileItemSteelCheckerLight
+ result: FloorTileItemSteelCheckerLight
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemSteelCheckerDark
+ result: FloorTileItemSteelCheckerDark
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemWhite
+ result: FloorTileItemWhite
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemDark
+ result: FloorTileItemDark
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemTechmaint
+ result: FloorTileItemTechmaint
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemFreezer
+ result: FloorTileItemFreezer
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemShowroom
+ result: FloorTileItemShowroom
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemGCircuit
+ result: FloorTileItemGCircuit
+ completetime: 0.5
+ materials:
+ Silver: 25
+
+- type: latheRecipe
+ id: FloorTileItemBCircuit
+ result: FloorTileItemBCircuit
+ completetime: 0.5
+ materials:
+ Silver: 25
+
+- type: latheRecipe
+ id: FloorTileItemGold
+ result: FloorTileItemGold
+ completetime: 0.5
+ materials:
+ Gold: 25
+
+- type: latheRecipe
+ id: FloorTileItemReinforced
+ result: FloorTileItemReinforced
+ completetime: 0.5
+ materials:
+ Plasteel: 25
+
+- type: latheRecipe
+ id: FloorTileItemMono
+ result: FloorTileItemMono
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemLino
+ result: FloorTileItemLino
+ completetime: 0.5
+ materials:
+ Plastic: 25
+
+- type: latheRecipe
+ id: FloorTileItemHydro
+ result: FloorTileItemHydro
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemLime
+ result: FloorTileItemLime
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemShuttleWhite
+ result: FloorTileItemShuttleWhite
+ completetime: 0.5
+ materials:
+ Silver: 25
+
+#- type: latheRecipe
+# id: FloorTileStackShuttleBlue
+# result: FloorTileStackShuttleBlue
+# completetime: 0.5
+# materials:
+# Silver: 25
+
+#- type: latheRecipe
+# id: FloorTileStackShuttleOrange
+# result: FloorTileStackShuttleOrange
+# completetime: 0.5
+# materials:
+# Silver: 25
+
+- type: latheRecipe
+ id: FloorTileItemShuttlePurple
+ result: FloorTileItemShuttlePurple
+ completetime: 0.5
+ materials:
+ Silver: 25
+
+#- type: latheRecipe
+# id: FloorTileStackShuttleRed
+# result: FloorTileStackShuttleRed
+# completetime: 0.5
+# materials:
+# Silver: 25
+
+- type: latheRecipe
+ id: FloorTileItemEighties
+ result: FloorTileItemEighties
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemArcadeBlue
+ result: FloorTileItemArcadeBlue
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemArcadeBlue2
+ result: FloorTileItemArcadeBlue2
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemArcadeRed
+ result: FloorTileItemArcadeRed
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemBoxing
+ result: FloorTileItemBoxing
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemGym
+ result: FloorTileItemGym
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemBlue
+ result: FloorTileItemBlue
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemMining
+ result: FloorTileItemMining
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemMiningDark
+ result: FloorTileItemMiningDark
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemMiningLight
+ result: FloorTileItemMiningLight
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemBar
+ result: FloorTileItemBar
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemClown
+ result: FloorTileItemClown
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemMime
+ result: FloorTileItemMime
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemKitchen
+ result: FloorTileItemKitchen
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemLaundry
+ result: FloorTileItemLaundry
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemSilver
+ result: FloorTileItemSilver
+ completetime: 0.5
+ materials:
+ Silver: 25
+
+- type: latheRecipe
+ id: FloorTileItemSteelMaint
+ result: FloorTileItemSteelMaint
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorTileItemGratingMaint
+ result: FloorTileItemGratingMaint
+ completetime: 0.5
+ materials:
+ Steel: 25
+
+- type: latheRecipe
+ id: FloorCarpetItemRed
+ result: FloorCarpetItemRed
+ completetime: 0.5
+ materials:
+ Cloth: 25
+
+- type: latheRecipe
+ id: FloorCarpetItemBlack
+ result: FloorCarpetItemBlack
+ completetime: 0.5
+ materials:
+ Cloth: 25
+
+- type: latheRecipe
+ id: FloorCarpetItemBlue
+ result: FloorCarpetItemBlue
+ completetime: 0.5
+ materials:
+ Cloth: 25
+
+- type: latheRecipe
+ id: FloorCarpetItemGreen
+ result: FloorCarpetItemGreen
+ completetime: 0.5
+ materials:
+ Cloth: 25
+
+- type: latheRecipe
+ id: FloorCarpetItemOrange
+ result: FloorCarpetItemOrange
+ completetime: 0.5
+ materials:
+ Cloth: 25
+
+- type: latheRecipe
+ id: FloorCarpetItemSkyBlue
+ result: FloorCarpetItemSkyBlue
+ completetime: 0.5
+ materials:
+ Cloth: 25
+
+- type: latheRecipe
+ id: FloorCarpetItemPurple
+ result: FloorCarpetItemPurple
+ completetime: 0.5
+ materials:
+ Cloth: 25
+
+- type: latheRecipe
+ id: FloorCarpetItemPink
+ result: FloorCarpetItemPink
+ completetime: 0.5
+ materials:
+ Cloth: 25
+
+- type: latheRecipe
+ id: FloorTileItemCarpetClown
+ result: FloorTileItemCarpetClown
+ completetime: 0.5
+ materials:
+ Cloth: 25
+
+- type: latheRecipe
+ id: FloorTileItemCarpetOffice
+ result: FloorTileItemCarpetOffice
+ completetime: 0.5
+ materials:
+ Cloth: 25
diff --git a/Resources/Prototypes/_NF/Roles/Jobs/Wildcards/pilot.yml b/Resources/Prototypes/_NF/Roles/Jobs/Wildcards/pilot.yml
index 089d9efe36a5..52c410ad80fd 100644
--- a/Resources/Prototypes/_NF/Roles/Jobs/Wildcards/pilot.yml
+++ b/Resources/Prototypes/_NF/Roles/Jobs/Wildcards/pilot.yml
@@ -32,7 +32,7 @@
ears: ClothingHeadsetAltPilot
belt: ClothingBeltPilotFilled
# pocket1: ClothingShoesBootsMag
- pocket2: ExtendedEmergencyOxygenTank
+ pocket2: ExtendedEmergencyOxygenTankFilled
innerClothingSkirt: ClothingUniformJumpsuitPilot #ClothingUniformJumpskirtPilot Doesn't exist yet
satchel: ClothingBackpackSatchelPilotFilled
duffelbag: ClothingBackpackDuffelPilotFilled
diff --git a/Resources/Prototypes/_NF/Shipyard/ceres.yml b/Resources/Prototypes/_NF/Shipyard/ceres.yml
new file mode 100644
index 000000000000..3c811c51a323
--- /dev/null
+++ b/Resources/Prototypes/_NF/Shipyard/ceres.yml
@@ -0,0 +1,30 @@
+- type: vessel
+ id: Ceres
+ name: NC Ceres
+ description: A medium-size, high-class restaurant ship with ample seating, integrated botany and a dining room for VIP guests
+ price: 47500
+ category: Medium
+ group: Civilian
+ shuttlePath: /Maps/_NF/Shuttles/ceres.yml
+
+- type: gameMap
+ id: Ceres
+ mapName: 'NC Ceres'
+ mapPath: /Maps/_NF/Shuttles/ceres.yml
+ minPlayers: 0
+ stations:
+ Ceres:
+ stationProto: StandardFrontierVessel
+ components:
+ - type: StationNameSetup
+ mapNameTemplate: 'Ceres {1}'
+ nameGenerator:
+ !type:NanotrasenNameGenerator
+ prefixCreator: '14'
+ - type: StationJobs
+ overflowJobs: []
+ availableJobs:
+ Botanist: [ 0, 0 ]
+ Chef: [ 0, 0 ]
+ ServiceWorker: [ 0, 0 ]
+ Pilot: [ 0, 0 ]
diff --git a/Resources/Prototypes/_NF/Shipyard/comet.yml b/Resources/Prototypes/_NF/Shipyard/comet.yml
index 885aad910b8e..1fc590d1a809 100644
--- a/Resources/Prototypes/_NF/Shipyard/comet.yml
+++ b/Resources/Prototypes/_NF/Shipyard/comet.yml
@@ -1,16 +1,26 @@
+# Author Info
+# GitHub: Shodhans
+# Discord: ???
+
+# Maintainer Info
+# GitHub: ???
+# Discord: ???
+
+# Shuttle Notes:
+#
- type: vessel
id: Comet
name: NT Comet
description: A mining and construction vessel intended to help build or repair quickly.
- price: 53000
+ price: 55000
category: Medium
group: Civilian
- shuttlePath: /Maps/Shuttles/comet.yml
+ shuttlePath: /Maps/_NF/Shuttles/comet.yml
- type: gameMap
id: Comet
mapName: 'NT Comet'
- mapPath: /Maps/Shuttles/comet.yml
+ mapPath: /Maps/_NF/Shuttles/comet.yml
minPlayers: 0
stations:
Comet:
@@ -25,4 +35,6 @@
overflowJobs: []
availableJobs:
StationEngineer: [ 0, 0 ]
- Passenger: [ 0, 0 ]
+ ChiefEngineer: [ 0, 0 ]
+ SalvageSpecialist: [ 0, 0 ]
+ Pilot: [ 0, 0 ]
diff --git a/Resources/Prototypes/_NF/Shipyard/disciple.yml b/Resources/Prototypes/_NF/Shipyard/disciple.yml
new file mode 100644
index 000000000000..a2ecc5195cc2
--- /dev/null
+++ b/Resources/Prototypes/_NF/Shipyard/disciple.yml
@@ -0,0 +1,36 @@
+# Author Info
+# GitHub: Nyozzl https://github.com/nyozzl
+# Discord: Nyozzl
+
+# Maintainer Info
+# GitHub: Nyozzl https://github.com/nyozzl
+# Discord: Nyozzl
+
+# Shuttle Notes:I liked the idea of a scrap church also 9kw is probably all thats needed to run it
+#
+- type: vessel
+ id: disciple
+ name: COU Disciple
+ description: A cheaply made amalgamation of religious ships. For the seasoned religious assistant.
+ price: 11300
+ category: Small
+ group: Scrap
+ shuttlePath: /Maps/_NF/Shuttles/disciple.yml
+
+- type: gameMap
+ id: disciple
+ mapName: 'COU Disciple'
+ mapPath: /Maps/_NF/Shuttles/disciple.yml
+ minPlayers: 0
+ stations:
+ disciple:
+ stationProto: StandardFrontierVessel
+ components:
+ - type: StationNameSetup
+ mapNameTemplate: 'Disciple {1}'
+ nameGenerator:
+ !type:NanotrasenNameGenerator
+ prefixCreator: '14'
+ - type: StationJobs
+ overflowJobs: []
+ availableJobs: {}
diff --git a/Resources/Prototypes/_NF/Shipyard/gasbender.yml b/Resources/Prototypes/_NF/Shipyard/gasbender.yml
index 71e5b204c34b..f7a08b419c46 100644
--- a/Resources/Prototypes/_NF/Shipyard/gasbender.yml
+++ b/Resources/Prototypes/_NF/Shipyard/gasbender.yml
@@ -12,7 +12,7 @@
id: gasbender
name: NT Gasbender
description: The Gasbender is a medium-sized engineering vessel outfitted for deep space construction projects. Features atmospherics setup with mixing/ignition chamber. Designed to work in pair with smaller salvage ship.
- price: 90100
+ price: 90500
category: Medium
group: Civilian
shuttlePath: /Maps/_NF/Shuttles/gasbender.yml
diff --git a/Resources/Prototypes/_NF/Shipyard/investigator.yml b/Resources/Prototypes/_NF/Shipyard/investigator.yml
index 4d545f456980..5516698df2fd 100644
--- a/Resources/Prototypes/_NF/Shipyard/investigator.yml
+++ b/Resources/Prototypes/_NF/Shipyard/investigator.yml
@@ -5,12 +5,12 @@
price: 46000
category: Small
group: Civilian
- shuttlePath: /Maps/Shuttles/investigator.yml
+ shuttlePath: /Maps/_NF/Shuttles/investigator.yml
- type: gameMap
id: Investigator
mapName: 'NR Investigator'
- mapPath: /Maps/Shuttles/investigator.yml
+ mapPath: /Maps/_NF/Shuttles/investigator.yml
minPlayers: 0
stations:
Investigator:
@@ -24,6 +24,6 @@
- type: StationJobs
overflowJobs: []
availableJobs:
+ Bartender: [ 0, 0 ]
SalvageSpecialist: [ 0, 0 ]
Scientist: [ 0, 0 ]
- Bartender: [ 0, 0 ]
diff --git a/Resources/Prototypes/_NF/Shipyard/legman.yml b/Resources/Prototypes/_NF/Shipyard/legman.yml
index cf87c9fdf18d..d4e31bd02b3c 100644
--- a/Resources/Prototypes/_NF/Shipyard/legman.yml
+++ b/Resources/Prototypes/_NF/Shipyard/legman.yml
@@ -12,7 +12,7 @@
id: Legman
name: NC Legman
description: A small maneuverable shuttle with low operational costs for reporters who want to be first on a scene.
- price: 13050
+ price: 11700
category: Small
group: Civilian
shuttlePath: /Maps/_NF/Shuttles/legman.yml
diff --git a/Resources/Prototypes/_NF/Shipyard/loader.yml b/Resources/Prototypes/_NF/Shipyard/loader.yml
index fa63cfcc30b4..4e8335f39aa5 100644
--- a/Resources/Prototypes/_NF/Shipyard/loader.yml
+++ b/Resources/Prototypes/_NF/Shipyard/loader.yml
@@ -1,3 +1,13 @@
+# Author Info
+# GitHub: SurfinNinja1
+# Discord: ???
+
+# Maintainer Info
+# GitHub: ???
+# Discord: ???
+
+# Shuttle Notes:
+#
- type: vessel
id: Loader
name: NC Loader
diff --git a/Resources/Prototypes/_NF/Shipyard/menace.yml b/Resources/Prototypes/_NF/Shipyard/menace.yml
new file mode 100644
index 000000000000..b5bd55acc132
--- /dev/null
+++ b/Resources/Prototypes/_NF/Shipyard/menace.yml
@@ -0,0 +1,36 @@
+# Author Info
+# GitHub: erhardsteinhauer
+# Discord: erhardsteinhauer
+
+# Maintainer Info
+# GitHub: erhardsteinhauer
+# Discord: erhardsteinhauer
+
+# Shuttle Notes:
+#
+- type: vessel
+ id: Menace
+ name: Menace
+ description: 'Mail is no longer an option: you either receive it or you die.'
+ price: 76000
+ category: Small
+ group: BlackMarket
+ shuttlePath: /Maps/_NF/Shuttles/menace.yml
+
+- type: gameMap
+ id: Menace
+ mapName: 'Menace'
+ mapPath: /Maps/_NF/Shuttles/menace.yml
+ minPlayers: 0
+ stations:
+ Menace:
+ stationProto: StandardFrontierVessel
+ components:
+ - type: StationNameSetup
+ mapNameTemplate: 'Menace {1}'
+ nameGenerator:
+ !type:NanotrasenNameGenerator
+ prefixCreator: '14'
+ - type: StationJobs
+ overflowJobs: []
+ availableJobs: {}
diff --git a/Resources/Prototypes/_NF/Shipyard/pheonix.yml b/Resources/Prototypes/_NF/Shipyard/phoenix.yml
similarity index 79%
rename from Resources/Prototypes/_NF/Shipyard/pheonix.yml
rename to Resources/Prototypes/_NF/Shipyard/phoenix.yml
index 5f07343ff0ea..6a5996a03523 100644
--- a/Resources/Prototypes/_NF/Shipyard/pheonix.yml
+++ b/Resources/Prototypes/_NF/Shipyard/phoenix.yml
@@ -1,19 +1,19 @@
- type: vessel
- id: Pheonix
+ id: phoenix
name: NR Phoenix
description: A research and salvage vessel designed for deep space exploration
- price: 62515
+ price: 60000
category: Medium
group: Civilian
- shuttlePath: /Maps/_NF/Shuttles/pheonix.yml
+ shuttlePath: /Maps/_NF/Shuttles/phoenix.yml
- type: gameMap
- id: Pheonix
+ id: phoenix
mapName: 'NR Phoenix'
- mapPath: /Maps/_NF/Shuttles/pheonix.yml
+ mapPath: /Maps/_NF/Shuttles/phoenix.yml
minPlayers: 0
stations:
- Pheonix:
+ phoenix:
stationProto: StandardFrontierVessel
components:
- type: StationNameSetup
@@ -28,3 +28,4 @@
Scientist: [ 0, 0 ]
ResearchDirector: [ 0, 0 ]
Borg: [ 0, 0 ]
+ Pilot: [ 0, 0 ]
diff --git a/Resources/Prototypes/_NF/Shipyard/pioneer.yml b/Resources/Prototypes/_NF/Shipyard/pioneer.yml
index 328a2f92f123..560be444eb60 100644
--- a/Resources/Prototypes/_NF/Shipyard/pioneer.yml
+++ b/Resources/Prototypes/_NF/Shipyard/pioneer.yml
@@ -12,7 +12,7 @@
id: Pioneer
name: NC Pioneer
description: A cargo container outfitted to be space-capable and equipped for salvaging and mining either on its own or as part of a fleet.
- price: 16500
+ price: 14650
category: Small
group: Civilian
shuttlePath: /Maps/_NF/Shuttles/pioneer.yml
diff --git a/Resources/Prototypes/_NF/Shipyard/placebo.yml b/Resources/Prototypes/_NF/Shipyard/placebo.yml
new file mode 100644
index 000000000000..f00cb6301b70
--- /dev/null
+++ b/Resources/Prototypes/_NF/Shipyard/placebo.yml
@@ -0,0 +1,27 @@
+- type: vessel
+ id: Placebo
+ name: NC Placebo
+ description: A small psychology vessel. Named after the famous Placebo effect
+ price: 20000
+ category: Small
+ group: Civilian
+ shuttlePath: /Maps/_NF/Shuttles/placebo.yml
+
+- type: gameMap
+ id: Placebo
+ mapName: 'NC Placebo'
+ mapPath: /Maps/_NF/Shuttles/placebo.yml
+ minPlayers: 0
+ stations:
+ Placebo:
+ stationProto: StandardFrontierVessel
+ components:
+ - type: StationNameSetup
+ mapNameTemplate: 'Placebo {1}'
+ nameGenerator:
+ !type:NanotrasenNameGenerator
+ prefixCreator: '14'
+ - type: StationJobs
+ overflowJobs: []
+ availableJobs:
+ Psychologist: [ 0, 0 ]
\ No newline at end of file
diff --git a/Resources/Prototypes/_NF/Shipyard/sparrow.yml b/Resources/Prototypes/_NF/Shipyard/sparrow.yml
new file mode 100644
index 000000000000..dbffdc97751a
--- /dev/null
+++ b/Resources/Prototypes/_NF/Shipyard/sparrow.yml
@@ -0,0 +1,38 @@
+# Author Info
+# GitHub: ???
+# Discord: ???
+
+# Maintainer Info
+# GitHub: ???
+# Discord: ???
+
+# Shuttle Notes:
+#
+- type: vessel
+ id: Sparrow
+ name: NR Sparrow
+ description: A small research and engineering vessel.
+ price: 37000 # +4800 from 15% markup
+ category: Small
+ group: Civilian
+ shuttlePath: /Maps/_NF/Shuttles/sparrow.yml
+
+- type: gameMap
+ id: Sparrow
+ mapName: 'NR Sparrow'
+ mapPath: /Maps/_NF/Shuttles/sparrow.yml
+ minPlayers: 0
+ stations:
+ Sparrow:
+ stationProto: StandardFrontierVessel
+ components:
+ - type: StationNameSetup
+ mapNameTemplate: 'Sparrow {1}'
+ nameGenerator:
+ !type:NanotrasenNameGenerator
+ prefixCreator: '14'
+ - type: StationJobs
+ overflowJobs: []
+ availableJobs:
+ StationEngineer: [ 0, 0 ]
+ Scientist: [ 0, 0 ]
diff --git a/Resources/Prototypes/_NF/Shipyard/stratos.yml b/Resources/Prototypes/_NF/Shipyard/stratos.yml
new file mode 100644
index 000000000000..afd364eca2ff
--- /dev/null
+++ b/Resources/Prototypes/_NF/Shipyard/stratos.yml
@@ -0,0 +1,41 @@
+# Author Info
+# GitHub: https://github.com/GreaseMonk
+# Discord: greasemonk
+
+# Maintainer Info
+# GitHub: https://github.com/GreaseMonk
+# Discord: greasemonk
+
+# Shuttle Notes:
+#
+- type: vessel
+ id: Stratos
+ name: NR Stratos
+ description: A medium sized research operations ship with salvage area and a bar.
+ price: 90000
+ category: Medium
+ group: Civilian
+ shuttlePath: /Maps/_NF/Shuttles/stratos.yml
+
+- type: gameMap
+ id: Stratos
+ mapName: 'NR Stratos'
+ mapPath: /Maps/_NF/Shuttles/stratos.yml
+ minPlayers: 0
+ stations:
+ Stratos:
+ stationProto: StandardFrontierVessel
+ components:
+ - type: StationNameSetup
+ mapNameTemplate: 'Stratos {1}'
+ nameGenerator:
+ !type:NanotrasenNameGenerator
+ prefixCreator: '14'
+ - type: StationJobs
+ overflowJobs: []
+ availableJobs:
+ Bartender: [ 0, 0 ]
+ SalvageSpecialist: [ 0, 0 ]
+ StationEngineer: [ 0, 0 ]
+ Scientist: [ 0, 0 ]
+ ResearchDirector: [ 0, 0 ]
diff --git a/Resources/Prototypes/_NF/Stacks/Materials/crystals.yml b/Resources/Prototypes/_NF/Stacks/Materials/crystals.yml
new file mode 100644
index 000000000000..24c113cdbbab
--- /dev/null
+++ b/Resources/Prototypes/_NF/Stacks/Materials/crystals.yml
@@ -0,0 +1,6 @@
+- type: stack
+ id: FrontierUplinkCoin
+ name: frontier uplink coin
+ icon: _NF/Objects/Specific/Security/frontieruplinkcoin.rsi
+ spawn: FrontierUplinkCoin1
+ itemSize: 1
diff --git a/Resources/Prototypes/_NF/Stacks/floor_tile_stacks.yml b/Resources/Prototypes/_NF/Stacks/floor_tile_stacks.yml
new file mode 100644
index 000000000000..4e1a06bc69b7
--- /dev/null
+++ b/Resources/Prototypes/_NF/Stacks/floor_tile_stacks.yml
@@ -0,0 +1,13 @@
+- type: stack
+ id: FloorTileSteelCheckerLight
+ name: steel light checker tile
+ spawn: FloorTileItemSteelCheckerLight
+ maxCount: 30
+ itemSize: 5
+
+- type: stack
+ id: FloorTileSteelCheckerDark
+ name: steel dark checker tile
+ spawn: FloorTileItemSteelCheckerDark
+ maxCount: 30
+ itemSize: 5
diff --git a/Resources/Prototypes/_NF/Store/categories.yml b/Resources/Prototypes/_NF/Store/categories.yml
new file mode 100644
index 000000000000..788f70db6256
--- /dev/null
+++ b/Resources/Prototypes/_NF/Store/categories.yml
@@ -0,0 +1,20 @@
+#security
+- type: storeCategory
+ id: UplinkSecurityBundles
+ name: store-category-bundles
+
+- type: storeCategory
+ id: UplinkSecurityHardsuits
+ name: store-category-sechardsuits
+
+- type: storeCategory
+ id: UplinkSecurityWeapons
+ name: store-category-secweapons
+
+- type: storeCategory
+ id: UplinkSecurityAmmo
+ name: store-category-secammo
+
+- type: storeCategory
+ id: UplinkSecurityUtility
+ name: store-category-secutility
diff --git a/Resources/Prototypes/_NF/Store/presets.yml b/Resources/Prototypes/_NF/Store/presets.yml
index 4fcbf2171b0a..bf8587e4491e 100644
--- a/Resources/Prototypes/_NF/Store/presets.yml
+++ b/Resources/Prototypes/_NF/Store/presets.yml
@@ -15,3 +15,14 @@
- UplinkPointless
currencyWhitelist:
- Telecrystal
+
+- type: storePreset
+ id: StorePresetSecurityUplink
+ storeName: NFSD Uplink
+ categories:
+ - UplinkSecurityHardsuits
+ - UplinkSecurityWeapons
+ - UplinkSecurityAmmo
+ - UplinkSecurityUtility
+ currencyWhitelist:
+ - FrontierUplinkCoin
diff --git a/Resources/Prototypes/_NF/currency.yml b/Resources/Prototypes/_NF/currency.yml
index 766b3fda603d..bcc947e0059b 100644
--- a/Resources/Prototypes/_NF/currency.yml
+++ b/Resources/Prototypes/_NF/currency.yml
@@ -4,3 +4,10 @@
cash:
1: SpaceCash
canWithdraw: true
+
+- type: currency
+ id: FrontierUplinkCoin
+ displayName: store-currency-display-security-telecrystal
+ cash:
+ 1: FrontierUplinkCoin1
+ canWithdraw: true
diff --git a/Resources/Prototypes/_NF/tags.yml b/Resources/Prototypes/_NF/tags.yml
index 6264405762b6..b0b582391e8e 100644
--- a/Resources/Prototypes/_NF/tags.yml
+++ b/Resources/Prototypes/_NF/tags.yml
@@ -54,3 +54,6 @@
- type: Tag
id: MailCapsule
+
+- type: Tag
+ id: SecurityUplink
diff --git a/Resources/Prototypes/_Park/benches.yml b/Resources/Prototypes/_Park/benches.yml
index aa939c8fae1e..292415ea01d0 100644
--- a/Resources/Prototypes/_Park/benches.yml
+++ b/Resources/Prototypes/_Park/benches.yml
@@ -21,6 +21,9 @@
components:
- type: Sprite
sprite: SimpleStation14/Structures/Furniture/Benches/parkbench_wooden.rsi
+ - type: Construction # Frontier
+ graph: BenchesGraph # Frontier
+ node: BenchParkMiddleNode # Frontier
- type: entity
id: BenchParkLeft
@@ -29,6 +32,9 @@
components:
- type: Sprite
state: left
+ - type: Construction # Frontier
+ graph: BenchesGraph # Frontier
+ node: BenchParkLeftNode # Frontier
- type: entity
id: BenchParkRight
@@ -37,6 +43,9 @@
components:
- type: Sprite
state: right
+ - type: Construction # Frontier
+ graph: BenchesGraph # Frontier
+ node: BenchParkRightNode # Frontier
# Bamboo benches
- type: entity
@@ -46,6 +55,9 @@
components:
- type: Sprite
sprite: SimpleStation14/Structures/Furniture/Benches/parkbench_bamboo.rsi
+ - type: Construction # Frontier
+ graph: BenchesGraph # Frontier
+ node: BenchParkBambooMiddleNode # Frontier
- type: entity
id: BenchParkBambooLeft
@@ -54,6 +66,9 @@
components:
- type: Sprite
state: left
+ - type: Construction # Frontier
+ graph: BenchesGraph # Frontier
+ node: BenchParkBambooLeftNode # Frontier
- type: entity
id: BenchParkBambooRight
@@ -62,6 +77,9 @@
components:
- type: Sprite
state: right
+ - type: Construction # Frontier
+ graph: BenchesGraph # Frontier
+ node: BenchParkBambooRightNode # Frontier
# Pews
- type: entity
@@ -71,6 +89,9 @@
components:
- type: Sprite
sprite: SimpleStation14/Structures/Furniture/Benches/pews.rsi
+ - type: Construction # Frontier
+ graph: BenchesGraph # Frontier
+ node: BenchPewMiddleNode # Frontier
- type: entity
id: BenchPewLeft
@@ -79,6 +100,9 @@
components:
- type: Sprite
state: left
+ - type: Construction # Frontier
+ graph: BenchesGraph # Frontier
+ node: BenchPewLeftNode # Frontier
- type: entity
id: BenchPewRight
@@ -87,6 +111,9 @@
components:
- type: Sprite
state: right
+ - type: Construction # Frontier
+ graph: BenchesGraph # Frontier
+ node: BenchPewRightNode # Frontier
# Steel benches
- type: entity
@@ -96,6 +123,9 @@
components:
- type: Sprite
sprite: SimpleStation14/Structures/Furniture/Benches/steel_bench.rsi
+ - type: Construction # Frontier
+ graph: BenchesGraph # Frontier
+ node: BenchSteelMiddleNode # Frontier
- type: entity
id: BenchSteelLeft
@@ -104,6 +134,9 @@
components:
- type: Sprite
state: left
+ - type: Construction # Frontier
+ graph: BenchesGraph # Frontier
+ node: BenchSteelLeftNode # Frontier
- type: entity
id: BenchSteelRight
@@ -112,6 +145,9 @@
components:
- type: Sprite
state: right
+ - type: Construction # Frontier
+ graph: BenchesGraph # Frontier
+ node: BenchSteelRightNode # Frontier
# White steel benches
- type: entity
@@ -121,6 +157,9 @@
components:
- type: Sprite
sprite: SimpleStation14/Structures/Furniture/Benches/steel_bench_white.rsi
+ - type: Construction # Frontier
+ graph: BenchesGraph # Frontier
+ node: BenchSteelWhiteMiddleNode # Frontier
- type: entity
id: BenchSteelWhiteLeft
@@ -129,6 +168,9 @@
components:
- type: Sprite
state: left
+ - type: Construction # Frontier
+ graph: BenchesGraph # Frontier
+ node: BenchSteelWhiteLeftNode # Frontier
- type: entity
id: BenchSteelWhiteRight
@@ -137,6 +179,9 @@
components:
- type: Sprite
state: right
+ - type: Construction # Frontier
+ graph: BenchesGraph # Frontier
+ node: BenchSteelWhiteRightNode # Frontier
# Standard sofa
- type: entity
@@ -146,6 +191,9 @@
components:
- type: Sprite
sprite: SimpleStation14/Structures/Furniture/Benches/sofa.rsi
+ - type: Construction # Frontier
+ graph: SofasGraph # Frontier
+ node: BenchSofaMiddleNode # Frontier
- type: entity
id: BenchSofaLeft
@@ -154,6 +202,9 @@
components:
- type: Sprite
state: left
+ - type: Construction # Frontier
+ graph: SofasGraph # Frontier
+ node: BenchSofaLeftNode # Frontier
- type: entity
id: BenchSofaRight
@@ -162,6 +213,9 @@
components:
- type: Sprite
state: right
+ - type: Construction # Frontier
+ graph: SofasGraph # Frontier
+ node: BenchSofaRightNode # Frontier
- type: entity
name: sofa
@@ -196,6 +250,9 @@
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/metalbreak.ogg
+ - type: Construction # Frontier
+ graph: SofasGraph # Frontier
+ node: BenchSofaCornerNode # Frontier
# Corp sofa
- type: entity
@@ -205,6 +262,9 @@
components:
- type: Sprite
sprite: SimpleStation14/Structures/Furniture/Benches/sofa_corp.rsi
+ - type: Construction # Frontier
+ graph: SofasGraph # Frontier
+ node: BenchSofaCorpMiddleNode # Frontier
- type: entity
id: BenchSofaCorpLeft
@@ -213,6 +273,9 @@
components:
- type: Sprite
state: left
+ - type: Construction # Frontier
+ graph: SofasGraph # Frontier
+ node: BenchSofaCorpLeftNode # Frontier
- type: entity
id: BenchSofaCorpRight
@@ -221,6 +284,9 @@
components:
- type: Sprite
state: right
+ - type: Construction # Frontier
+ graph: SofasGraph # Frontier
+ node: BenchSofaCorpRightNode # Frontier
- type: entity
name: grey sofa
@@ -255,3 +321,6 @@
- !type:PlaySoundBehavior
sound:
path: /Audio/Effects/metalbreak.ogg
+ - type: Construction # Frontier
+ graph: SofasGraph # Frontier
+ node: BenchSofaCorpCornerNode # Frontier
diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml
index cedcd7fad352..41c84bfec1b4 100644
--- a/Resources/Prototypes/tags.yml
+++ b/Resources/Prototypes/tags.yml
@@ -1197,15 +1197,3 @@
- type: Tag # Frontier
id: MothFood #Frontier
-
-- type: Tag # Frontier
- id: WeaponRanged # Frontier
-
-- type: Tag # Frontier
- id: WeaponLongarms # Frontier
-
-- type: Tag # Frontier
- id: WeaponShortArms # Frontier
-
-- type: Tag # Frontier
- id: WeaponMelee # Frontier
diff --git a/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state0.png
index 60d1c0421b3f..84f71e4833af 100644
Binary files a/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state0.png and b/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state0.png differ
diff --git a/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state1.png
index 1ae08dba8877..3655b4b9d159 100644
Binary files a/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state1.png and b/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state1.png differ
diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state0.png
index 8ad1f325b352..3e5ebf50361a 100644
Binary files a/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state0.png and b/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state0.png differ
diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state1.png
index e724d3b9f78d..7bd92db59f70 100644
Binary files a/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state1.png and b/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state1.png differ
diff --git a/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/state0.png
index facbfda3ade6..fa6f83797c15 100644
Binary files a/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/state0.png and b/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/state0.png differ
diff --git a/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/state1.png
index 3799df51bf92..c40b161092bf 100644
Binary files a/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/state1.png and b/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/state1.png differ
diff --git a/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state0.png
index eb9489ddb47b..cd8aca557970 100644
Binary files a/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state0.png and b/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state0.png differ
diff --git a/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state1.png
index 65254207165b..4130608cea1b 100644
Binary files a/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state1.png and b/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state1.png differ
diff --git a/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/state0.png
index 45b3c99189ff..dc5081de2ed0 100644
Binary files a/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/state0.png and b/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/state0.png differ
diff --git a/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/state1.png
index 5286b1e17e62..772c39f64193 100644
Binary files a/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/state1.png and b/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/state1.png differ
diff --git a/Resources/Textures/Structures/Windows/window_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/window_diagonal.rsi/state0.png
index df5805957d6b..39ffd5be1fd6 100644
Binary files a/Resources/Textures/Structures/Windows/window_diagonal.rsi/state0.png and b/Resources/Textures/Structures/Windows/window_diagonal.rsi/state0.png differ
diff --git a/Resources/Textures/Structures/Windows/window_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/window_diagonal.rsi/state1.png
index 83737b8cefe3..bb5136c8b008 100644
Binary files a/Resources/Textures/Structures/Windows/window_diagonal.rsi/state1.png and b/Resources/Textures/Structures/Windows/window_diagonal.rsi/state1.png differ
diff --git a/Resources/Textures/_NF/Actions/escapeinventory.rsi/cancel-escape.png b/Resources/Textures/_NF/Actions/escapeinventory.rsi/cancel-escape.png
new file mode 100644
index 000000000000..ce2db9ca81e9
Binary files /dev/null and b/Resources/Textures/_NF/Actions/escapeinventory.rsi/cancel-escape.png differ
diff --git a/Resources/Textures/_NF/Actions/escapeinventory.rsi/meta.json b/Resources/Textures/_NF/Actions/escapeinventory.rsi/meta.json
new file mode 100644
index 000000000000..0e9894db5084
--- /dev/null
+++ b/Resources/Textures/_NF/Actions/escapeinventory.rsi/meta.json
@@ -0,0 +1,14 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Duffelbag icon taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1 | Modified by Mnemotechnician (github)",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "cancel-escape"
+ }
+ ]
+}
diff --git a/Resources/Textures/_NF/Objects/Specific/Medical/hypobrigmedic.rsi/equipped-BELT.png b/Resources/Textures/_NF/Objects/Specific/Medical/hypobrigmedic.rsi/equipped-BELT.png
new file mode 100644
index 000000000000..dab595ca54dc
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Specific/Medical/hypobrigmedic.rsi/equipped-BELT.png differ
diff --git a/Resources/Textures/_NF/Objects/Specific/Medical/hypobrigmedic.rsi/hypo.png b/Resources/Textures/_NF/Objects/Specific/Medical/hypobrigmedic.rsi/hypo.png
new file mode 100644
index 000000000000..071b9f0b1a53
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Specific/Medical/hypobrigmedic.rsi/hypo.png differ
diff --git a/Resources/Textures/_NF/Objects/Specific/Medical/hypobrigmedic.rsi/inhand-left.png b/Resources/Textures/_NF/Objects/Specific/Medical/hypobrigmedic.rsi/inhand-left.png
new file mode 100644
index 000000000000..d8f2d290e4a4
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Specific/Medical/hypobrigmedic.rsi/inhand-left.png differ
diff --git a/Resources/Textures/_NF/Objects/Specific/Medical/hypobrigmedic.rsi/inhand-right.png b/Resources/Textures/_NF/Objects/Specific/Medical/hypobrigmedic.rsi/inhand-right.png
new file mode 100644
index 000000000000..d8f2d290e4a4
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Specific/Medical/hypobrigmedic.rsi/inhand-right.png differ
diff --git a/Resources/Textures/_NF/Objects/Specific/Medical/hypobrigmedic.rsi/meta.json b/Resources/Textures/_NF/Objects/Specific/Medical/hypobrigmedic.rsi/meta.json
new file mode 100644
index 000000000000..c06bee8412d7
--- /dev/null
+++ b/Resources/Textures/_NF/Objects/Specific/Medical/hypobrigmedic.rsi/meta.json
@@ -0,0 +1,26 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken from syndicate station from PR https://github.com/space-syndicate/space-station-14/pull/422, sprite modified by PuroSlavKing (Github)",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "hypo"
+ },
+ {
+ "name": "inhand-left",
+ "directions": 4
+ },
+ {
+ "name": "inhand-right",
+ "directions": 4
+ },
+ {
+ "name": "equipped-BELT",
+ "directions": 4
+ }
+ ]
+}
diff --git a/Resources/Textures/_NF/Objects/Specific/Medical/hypomini.rsi/equipped-BELT.png b/Resources/Textures/_NF/Objects/Specific/Medical/hypomini.rsi/equipped-BELT.png
new file mode 100644
index 000000000000..f3e05ec00f9e
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Specific/Medical/hypomini.rsi/equipped-BELT.png differ
diff --git a/Resources/Textures/_NF/Objects/Specific/Medical/hypomini.rsi/hypo.png b/Resources/Textures/_NF/Objects/Specific/Medical/hypomini.rsi/hypo.png
new file mode 100644
index 000000000000..1ce7af113bba
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Specific/Medical/hypomini.rsi/hypo.png differ
diff --git a/Resources/Textures/_NF/Objects/Specific/Medical/hypomini.rsi/inhand-left.png b/Resources/Textures/_NF/Objects/Specific/Medical/hypomini.rsi/inhand-left.png
new file mode 100644
index 000000000000..608fcd3b7eeb
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Specific/Medical/hypomini.rsi/inhand-left.png differ
diff --git a/Resources/Textures/_NF/Objects/Specific/Medical/hypomini.rsi/inhand-right.png b/Resources/Textures/_NF/Objects/Specific/Medical/hypomini.rsi/inhand-right.png
new file mode 100644
index 000000000000..608fcd3b7eeb
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Specific/Medical/hypomini.rsi/inhand-right.png differ
diff --git a/Resources/Textures/_NF/Objects/Specific/Medical/hypomini.rsi/meta.json b/Resources/Textures/_NF/Objects/Specific/Medical/hypomini.rsi/meta.json
new file mode 100644
index 000000000000..c1dd381d853d
--- /dev/null
+++ b/Resources/Textures/_NF/Objects/Specific/Medical/hypomini.rsi/meta.json
@@ -0,0 +1,26 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken from syndicate station from PR https://github.com/space-syndicate/space-station-14/pull/422, sprite modified by PuroSlavKing (Github), sprite recolored by MagnusCrowe (Github)",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "hypo"
+ },
+ {
+ "name": "inhand-left",
+ "directions": 4
+ },
+ {
+ "name": "inhand-right",
+ "directions": 4
+ },
+ {
+ "name": "equipped-BELT",
+ "directions": 4
+ }
+ ]
+}
diff --git a/Resources/Textures/_NF/Objects/Specific/Medical/hypominilimitededition.rsi/equipped-BELT.png b/Resources/Textures/_NF/Objects/Specific/Medical/hypominilimitededition.rsi/equipped-BELT.png
new file mode 100644
index 000000000000..58d8b21193ad
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Specific/Medical/hypominilimitededition.rsi/equipped-BELT.png differ
diff --git a/Resources/Textures/_NF/Objects/Specific/Medical/hypominilimitededition.rsi/hypo.png b/Resources/Textures/_NF/Objects/Specific/Medical/hypominilimitededition.rsi/hypo.png
new file mode 100644
index 000000000000..6c611ce35851
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Specific/Medical/hypominilimitededition.rsi/hypo.png differ
diff --git a/Resources/Textures/_NF/Objects/Specific/Medical/hypominilimitededition.rsi/inhand-left.png b/Resources/Textures/_NF/Objects/Specific/Medical/hypominilimitededition.rsi/inhand-left.png
new file mode 100644
index 000000000000..8536ea7b37ba
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Specific/Medical/hypominilimitededition.rsi/inhand-left.png differ
diff --git a/Resources/Textures/_NF/Objects/Specific/Medical/hypominilimitededition.rsi/inhand-right.png b/Resources/Textures/_NF/Objects/Specific/Medical/hypominilimitededition.rsi/inhand-right.png
new file mode 100644
index 000000000000..8536ea7b37ba
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Specific/Medical/hypominilimitededition.rsi/inhand-right.png differ
diff --git a/Resources/Textures/_NF/Objects/Specific/Medical/hypominilimitededition.rsi/meta.json b/Resources/Textures/_NF/Objects/Specific/Medical/hypominilimitededition.rsi/meta.json
new file mode 100644
index 000000000000..c1dd381d853d
--- /dev/null
+++ b/Resources/Textures/_NF/Objects/Specific/Medical/hypominilimitededition.rsi/meta.json
@@ -0,0 +1,26 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken from syndicate station from PR https://github.com/space-syndicate/space-station-14/pull/422, sprite modified by PuroSlavKing (Github), sprite recolored by MagnusCrowe (Github)",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "hypo"
+ },
+ {
+ "name": "inhand-left",
+ "directions": 4
+ },
+ {
+ "name": "inhand-right",
+ "directions": 4
+ },
+ {
+ "name": "equipped-BELT",
+ "directions": 4
+ }
+ ]
+}
diff --git a/Resources/Textures/_NF/Objects/Specific/Security/frontieruplinkcoin.rsi/frontieruplinkcoin.png b/Resources/Textures/_NF/Objects/Specific/Security/frontieruplinkcoin.rsi/frontieruplinkcoin.png
new file mode 100644
index 000000000000..8175921d4ba0
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Specific/Security/frontieruplinkcoin.rsi/frontieruplinkcoin.png differ
diff --git a/Resources/Textures/_NF/Objects/Specific/Security/frontieruplinkcoin.rsi/inhand-left.png b/Resources/Textures/_NF/Objects/Specific/Security/frontieruplinkcoin.rsi/inhand-left.png
new file mode 100644
index 000000000000..f6655bd5a728
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Specific/Security/frontieruplinkcoin.rsi/inhand-left.png differ
diff --git a/Resources/Textures/_NF/Objects/Specific/Security/frontieruplinkcoin.rsi/inhand-right.png b/Resources/Textures/_NF/Objects/Specific/Security/frontieruplinkcoin.rsi/inhand-right.png
new file mode 100644
index 000000000000..5c9c6d7103fc
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Specific/Security/frontieruplinkcoin.rsi/inhand-right.png differ
diff --git a/Resources/Textures/_NF/Objects/Specific/Security/frontieruplinkcoin.rsi/meta.json b/Resources/Textures/_NF/Objects/Specific/Security/frontieruplinkcoin.rsi/meta.json
new file mode 100644
index 000000000000..7dba2a7f4080
--- /dev/null
+++ b/Resources/Textures/_NF/Objects/Specific/Security/frontieruplinkcoin.rsi/meta.json
@@ -0,0 +1,22 @@
+{
+ "version": 1,
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Made by MagnusCrowe for Frontier Station 14",
+ "states": [
+ {
+ "name": "frontieruplinkcoin"
+ },
+ {
+ "name": "inhand-left",
+ "directions": 4
+ },
+ {
+ "name": "inhand-right",
+ "directions": 4
+ }
+ ]
+}
\ No newline at end of file
diff --git a/Resources/Textures/_NF/Objects/Specific/Service/vending_machine_restock.rsi/meta.json b/Resources/Textures/_NF/Objects/Specific/Service/vending_machine_restock.rsi/meta.json
index fbe9b13029e9..469f8ef10cbb 100644
--- a/Resources/Textures/_NF/Objects/Specific/Service/vending_machine_restock.rsi/meta.json
+++ b/Resources/Textures/_NF/Objects/Specific/Service/vending_machine_restock.rsi/meta.json
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
- "copyright": "Original source: https://github.com/tgstation/tgstation/blob/master/icons/obj/vending_restock.dmi @ commit 014c44ef6279beb02a5f3e76824439fa57181c22 - Additions and cleanup by @Vordenburg. LessLethalVend by @|Data_Redacted|",
+ "copyright": "Original source: https://github.com/tgstation/tgstation/blob/master/icons/obj/vending_restock.dmi @ commit 014c44ef6279beb02a5f3e76824439fa57181c22 - Additions and cleanup by @Vordenburg. LessLethalVend by @|Data_Redacted| pottedplant by @erhardsteinhauer based on @minnie6969 work",
"size": {
"x": 32,
"y": 32
@@ -18,6 +18,9 @@
},
{
"name": "refill_autotune"
+ },
+ {
+ "name": "refill_pottedplant"
}
]
}
diff --git a/Resources/Textures/_NF/Objects/Specific/Service/vending_machine_restock.rsi/refill_pottedplant.png b/Resources/Textures/_NF/Objects/Specific/Service/vending_machine_restock.rsi/refill_pottedplant.png
new file mode 100644
index 000000000000..f6a646f1d335
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Specific/Service/vending_machine_restock.rsi/refill_pottedplant.png differ
diff --git a/Resources/Textures/_NF/Structures/Furniture/altar_frame.rsi/altar_frame.png b/Resources/Textures/_NF/Structures/Furniture/altar_frame.rsi/altar_frame.png
new file mode 100644
index 000000000000..82b95e9f0625
Binary files /dev/null and b/Resources/Textures/_NF/Structures/Furniture/altar_frame.rsi/altar_frame.png differ
diff --git a/Resources/Textures/_NF/Structures/Furniture/altar_frame.rsi/meta.json b/Resources/Textures/_NF/Structures/Furniture/altar_frame.rsi/meta.json
new file mode 100644
index 000000000000..994410f558a3
--- /dev/null
+++ b/Resources/Textures/_NF/Structures/Furniture/altar_frame.rsi/meta.json
@@ -0,0 +1,14 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Based on https://github.com/TauCetiStation/TauCetiClassic/pull/5184/commits/7489ad4520ddf83968c467cd587bde2c821e10a6 | resprited by erhardsteinhauer (discord/github)",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "altar_frame"
+ }
+ ]
+}
diff --git a/Resources/Textures/_NF/Structures/Machines/VendingMachines/pottedplantvend.rsi/broken.png b/Resources/Textures/_NF/Structures/Machines/VendingMachines/pottedplantvend.rsi/broken.png
new file mode 100644
index 000000000000..824b22c5080d
Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/VendingMachines/pottedplantvend.rsi/broken.png differ
diff --git a/Resources/Textures/_NF/Structures/Machines/VendingMachines/pottedplantvend.rsi/deny-unshaded.png b/Resources/Textures/_NF/Structures/Machines/VendingMachines/pottedplantvend.rsi/deny-unshaded.png
new file mode 100644
index 000000000000..802d69ee8913
Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/VendingMachines/pottedplantvend.rsi/deny-unshaded.png differ
diff --git a/Resources/Textures/_NF/Structures/Machines/VendingMachines/pottedplantvend.rsi/eject-unshaded.png b/Resources/Textures/_NF/Structures/Machines/VendingMachines/pottedplantvend.rsi/eject-unshaded.png
new file mode 100644
index 000000000000..3516cd45347e
Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/VendingMachines/pottedplantvend.rsi/eject-unshaded.png differ
diff --git a/Resources/Textures/_NF/Structures/Machines/VendingMachines/pottedplantvend.rsi/meta.json b/Resources/Textures/_NF/Structures/Machines/VendingMachines/pottedplantvend.rsi/meta.json
new file mode 100644
index 000000000000..93fe9fbde608
--- /dev/null
+++ b/Resources/Textures/_NF/Structures/Machines/VendingMachines/pottedplantvend.rsi/meta.json
@@ -0,0 +1,38 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Sprites by @minnie (discord)",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "broken"
+ },
+ {
+ "name": "deny-unshaded",
+ "delays": [
+ [ 0.5, 0.1, 0.1 ]
+ ]
+ },
+ {
+ "name": "eject-unshaded",
+ "delays": [
+ [ 0.1, 0.2, 0.3, 0.4, 0.3, 0.2, 0.1 ]
+ ]
+ },
+ {
+ "name": "normal-unshaded",
+ "delays": [
+ [ 0.2, 0.2, 0.2 ]
+ ]
+ },
+ {
+ "name": "off"
+ },
+ {
+ "name": "panel"
+ }
+ ]
+}
diff --git a/Resources/Textures/_NF/Structures/Machines/VendingMachines/pottedplantvend.rsi/normal-unshaded.png b/Resources/Textures/_NF/Structures/Machines/VendingMachines/pottedplantvend.rsi/normal-unshaded.png
new file mode 100644
index 000000000000..ae2698f984c2
Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/VendingMachines/pottedplantvend.rsi/normal-unshaded.png differ
diff --git a/Resources/Textures/_NF/Structures/Machines/VendingMachines/pottedplantvend.rsi/off.png b/Resources/Textures/_NF/Structures/Machines/VendingMachines/pottedplantvend.rsi/off.png
new file mode 100644
index 000000000000..9821075f44b9
Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/VendingMachines/pottedplantvend.rsi/off.png differ
diff --git a/Resources/Textures/_NF/Structures/Machines/VendingMachines/pottedplantvend.rsi/panel.png b/Resources/Textures/_NF/Structures/Machines/VendingMachines/pottedplantvend.rsi/panel.png
new file mode 100644
index 000000000000..b35633cc98cf
Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/VendingMachines/pottedplantvend.rsi/panel.png differ
diff --git a/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/computer_board_exposed.png b/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/computer_board_exposed.png
new file mode 100644
index 000000000000..3e62d27ad382
Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/computer_board_exposed.png differ
diff --git a/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/computer_monitor_unscrewed.png b/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/computer_monitor_unscrewed.png
new file mode 100644
index 000000000000..757e566f61ba
Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/computer_monitor_unscrewed.png differ
diff --git a/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/computer_no_monitor.png b/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/computer_no_monitor.png
new file mode 100644
index 000000000000..7939a6be1713
Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/computer_no_monitor.png differ
diff --git a/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/computer_tabletop_frame.png b/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/computer_tabletop_frame.png
new file mode 100644
index 000000000000..ddebb3e98494
Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/computer_tabletop_frame.png differ
diff --git a/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/meta.json b/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/meta.json
index 958462964b80..9a04f303d254 100644
--- a/Resources/Textures/_NF/Structures/Machines/computer_tabletop.rsi/meta.json
+++ b/Resources/Textures/_NF/Structures/Machines/computer_tabletop.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/bd6873fd4dd6a61d7e46f1d75cd4d90f64c40894. comm_syndie made by Veritius, based on comm.",
+ "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bd6873fd4dd6a61d7e46f1d75cd4d90f64c40894. | Resprited by erhardsteinhauer (discord)",
"size": {
"x": 32,
"y": 32
@@ -11,10 +11,26 @@
"name": "broken_tabletop",
"directions": 4
},
+ {
+ "name": "computer_board_exposed",
+ "directions": 4
+ },
+ {
+ "name": "computer_monitor_unscrewed",
+ "directions": 4
+ },
+ {
+ "name": "computer_no_monitor",
+ "directions": 4
+ },
{
"name": "computer_tabletop",
"directions": 4
},
+ {
+ "name": "computer_tabletop_frame",
+ "directions": 4
+ },
{
"name": "generic_keyboard_tabletop",
"directions": 4
diff --git a/Resources/Textures/_NF/Structures/Machines/computers.rsi/contraband.png b/Resources/Textures/_NF/Structures/Machines/computers.rsi/contraband.png
new file mode 100644
index 000000000000..a490767b6acd
Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/computers.rsi/contraband.png differ
diff --git a/Resources/Textures/_NF/Structures/Machines/computers.rsi/meta.json b/Resources/Textures/_NF/Structures/Machines/computers.rsi/meta.json
index afe7311d10c4..b4c600840b4f 100644
--- a/Resources/Textures/_NF/Structures/Machines/computers.rsi/meta.json
+++ b/Resources/Textures/_NF/Structures/Machines/computers.rsi/meta.json
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
- "copyright": "shipyard_security and shipyard made by Potato1234_x, black market versions by terezi4real on github, medical versions by sungyandy",
+ "copyright": "shipyard_security and shipyard made by Potato1234_x, black market versions by terezi4real on github, medical versions by sungyandy, contraband by @gentlebutter",
"size": {
"x": 32,
"y": 32
@@ -150,6 +150,10 @@
{
"name": "telesci_key",
"directions": 4
+ },
+ {
+ "name": "contraband",
+ "directions": 4
}
]
}
diff --git a/Resources/Textures/_NF/Structures/Storage/closet.rsi/meta.json b/Resources/Textures/_NF/Structures/Storage/closet.rsi/meta.json
index 29037a148455..cf514cb0cb02 100644
--- a/Resources/Textures/_NF/Structures/Storage/closet.rsi/meta.json
+++ b/Resources/Textures/_NF/Structures/Storage/closet.rsi/meta.json
@@ -48,6 +48,9 @@
},
{
"name": "welded"
+ },
+ {
+ "name": "wooden_cabinet_icon"
},
{
"name": "sparking"
diff --git a/Resources/Textures/_NF/Structures/Storage/closet.rsi/wooden_cabinet_icon.png b/Resources/Textures/_NF/Structures/Storage/closet.rsi/wooden_cabinet_icon.png
new file mode 100644
index 000000000000..0de2fde7c7b2
Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/closet.rsi/wooden_cabinet_icon.png differ
diff --git a/Resources/Textures/_NF/Structures/Storage/plantbox.rsi/meta.json b/Resources/Textures/_NF/Structures/Storage/plantbox.rsi/meta.json
new file mode 100644
index 000000000000..e15111a58e96
--- /dev/null
+++ b/Resources/Textures/_NF/Structures/Storage/plantbox.rsi/meta.json
@@ -0,0 +1,17 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-4.0",
+ "copyright": "Made for Frontier by gentlebutter",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "plantbox"
+ },
+ {
+ "name": "plantbox-top"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/Resources/Textures/_NF/Structures/Storage/plantbox.rsi/plantbox-top.png b/Resources/Textures/_NF/Structures/Storage/plantbox.rsi/plantbox-top.png
new file mode 100644
index 000000000000..2a7b1fa96ebe
Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/plantbox.rsi/plantbox-top.png differ
diff --git a/Resources/Textures/_NF/Structures/Storage/plantbox.rsi/plantbox.png b/Resources/Textures/_NF/Structures/Storage/plantbox.rsi/plantbox.png
new file mode 100644
index 000000000000..5473f610bb35
Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/plantbox.rsi/plantbox.png differ
diff --git a/Resources/Textures/_NF/Structures/arcadiadrobe.rsi/normal-unshaded.png b/Resources/Textures/_NF/Structures/arcadiadrobe.rsi/normal-unshaded.png
index c541f4937e76..0cdb6f94a7f5 100644
Binary files a/Resources/Textures/_NF/Structures/arcadiadrobe.rsi/normal-unshaded.png and b/Resources/Textures/_NF/Structures/arcadiadrobe.rsi/normal-unshaded.png differ
diff --git a/Resources/Textures/_NF/Structures/contraband_pallet.rsi/base.png b/Resources/Textures/_NF/Structures/contraband_pallet.rsi/base.png
new file mode 100644
index 000000000000..679af9581676
Binary files /dev/null and b/Resources/Textures/_NF/Structures/contraband_pallet.rsi/base.png differ
diff --git a/Resources/Textures/_NF/Structures/contraband_pallet.rsi/meta.json b/Resources/Textures/_NF/Structures/contraband_pallet.rsi/meta.json
new file mode 100644
index 000000000000..be76fb040d33
--- /dev/null
+++ b/Resources/Textures/_NF/Structures/contraband_pallet.rsi/meta.json
@@ -0,0 +1,23 @@
+{
+ "version": 1,
+ "license": "CC-BY-NC-SA-3.0",
+ "copyright": "@gentlebutter on discord",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "base",
+ "delays": [
+ [
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2
+ ]
+ ]
+ }
+ ]
+}