diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringNavMapControl.cs b/Content.Client/Medical/CrewMonitoring/CrewMonitoringNavMapControl.cs index fcecbad465a..c5c4c33446e 100644 --- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringNavMapControl.cs +++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringNavMapControl.cs @@ -1,6 +1,7 @@ using Content.Client.Pinpointer.UI; using Robust.Client.Graphics; using Robust.Client.UserInterface.Controls; +using Robust.Shared.GameObjects; // Frontier modification namespace Content.Client.Medical.CrewMonitoring; @@ -63,7 +64,9 @@ protected override void Draw(DrawingHandleScreen handle) if (!LocalizedNames.TryGetValue(netEntity, out var name)) name = "Unknown"; - var message = name + "\nLocation: [x = " + MathF.Round(blip.Coordinates.X) + ", y = " + MathF.Round(blip.Coordinates.Y) + "]"; + // Text location of the blip will display GPS coordinates for the purpose of being able to find a person via GPS + // Previously it displayed coordinates relative to the center of the station, which had no use. + var message = name + "\nLocation: [x = " + MathF.Round(blip.MapCoordinates.X) + ", y = " + MathF.Round(blip.MapCoordinates.Y) + "]"; // Frontier modification _trackedEntityLabel.Text = message; _trackedEntityPanel.Visible = true; diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs index 645243b0a3a..57190f6d99e 100644 --- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs +++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs @@ -27,6 +27,7 @@ public sealed partial class CrewMonitoringWindow : FancyWindow private readonly IEntityManager _entManager; private readonly IPrototypeManager _prototypeManager; private readonly SpriteSystem _spriteSystem; + private readonly SharedTransformSystem _transformSystem; // Frontier modification private NetEntity? _trackedEntity; private bool _tryToScrollToListFocus; @@ -39,6 +40,7 @@ public CrewMonitoringWindow(string stationName, EntityUid? mapUid) _entManager = IoCManager.Resolve(); _prototypeManager = IoCManager.Resolve(); _spriteSystem = _entManager.System(); + _transformSystem = _entManager.System(); // Frontier modification _blipTexture = _spriteSystem.Frame0(new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_circle.png"))); @@ -149,7 +151,7 @@ public void ShowSensors(List sensors, EntityUid monitor, Entit // Show monitor on nav map if (monitorCoords != null && _blipTexture != null) { - NavMap.TrackedEntities[_entManager.GetNetEntity(monitor)] = new NavMapBlip(monitorCoords.Value, _blipTexture, Color.Cyan, true, false); + NavMap.TrackedEntities[_entManager.GetNetEntity(monitor)] = new NavMapBlip(monitorCoords.Value, monitorCoords.Value.ToMap(_entManager, _transformSystem), _blipTexture, Color.Cyan, true, false); // Frontier modification } } @@ -273,10 +275,13 @@ private void PopulateDepartmentList(IEnumerable departmentSens jobContainer.AddChild(jobIcon); } - // Job name + // Job name area + // Frontier modification + // Made in its name appear location name as its much more convenient + // While job icons should do good enough job of conveying job var jobLabel = new Label() { - Text = sensor.Job, + Text = sensor.LocationName, HorizontalExpand = true, ClipText = true, }; @@ -289,6 +294,7 @@ private void PopulateDepartmentList(IEnumerable departmentSens NavMap.TrackedEntities.TryAdd(sensor.SuitSensorUid, new NavMapBlip (coordinates.Value, + coordinates.Value.ToMap(_entManager, _transformSystem), // Frontier modification _blipTexture, (_trackedEntity == null || sensor.SuitSensorUid == _trackedEntity) ? Color.LimeGreen : Color.LimeGreen * Color.DimGray, sensor.SuitSensorUid == _trackedEntity)); @@ -355,6 +361,7 @@ private void UpdateSensorsTable(NetEntity? currTrackedEntity, NetEntity? prevTra { data = new NavMapBlip (data.Coordinates, + data.Coordinates.ToMap(_entManager, _transformSystem), // Frontier modification data.Texture, (currTrackedEntity == null || castSensor.SuitSensorUid == currTrackedEntity) ? Color.LimeGreen : Color.LimeGreen * Color.DimGray, castSensor.SuitSensorUid == currTrackedEntity); diff --git a/Content.Client/Pinpointer/UI/NavMapControl.cs b/Content.Client/Pinpointer/UI/NavMapControl.cs index 3b426e73d89..28e6a05b09d 100644 --- a/Content.Client/Pinpointer/UI/NavMapControl.cs +++ b/Content.Client/Pinpointer/UI/NavMapControl.cs @@ -642,14 +642,16 @@ protected Vector2 GetOffset() public struct NavMapBlip { public EntityCoordinates Coordinates; + public MapCoordinates MapCoordinates; //Frontier modification public Texture Texture; public Color Color; public bool Blinks; public bool Selectable; - public NavMapBlip(EntityCoordinates coordinates, Texture texture, Color color, bool blinks, bool selectable = true) + public NavMapBlip(EntityCoordinates coordinates, MapCoordinates mapCoordinates, Texture texture, Color color, bool blinks, bool selectable = true) //Frontier modification { Coordinates = coordinates; + MapCoordinates = mapCoordinates; // Frontier modification Texture = texture; Color = color; Blinks = blinks; diff --git a/Content.Client/Power/PowerMonitoringWindow.xaml.cs b/Content.Client/Power/PowerMonitoringWindow.xaml.cs index edc0eaa18a8..eeea8b2aef8 100644 --- a/Content.Client/Power/PowerMonitoringWindow.xaml.cs +++ b/Content.Client/Power/PowerMonitoringWindow.xaml.cs @@ -18,6 +18,7 @@ public sealed partial class PowerMonitoringWindow : FancyWindow private readonly IEntityManager _entManager; private readonly SpriteSystem _spriteSystem; private readonly IGameTiming _gameTiming; + private readonly SharedTransformSystem _transformSystem; // Frontier modification private const float BlinkFrequency = 1f; @@ -39,6 +40,7 @@ public PowerMonitoringWindow(PowerMonitoringConsoleBoundUserInterface userInterf RobustXamlLoader.Load(this); _entManager = IoCManager.Resolve(); _gameTiming = IoCManager.Resolve(); + _transformSystem = _entManager.System(); // Frontier modification _spriteSystem = _entManager.System(); _owner = owner; @@ -166,7 +168,7 @@ public void ShowEntites if (monitorCoords != null && mon != null) { var texture = _spriteSystem.Frame0(new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_circle.png"))); - var blip = new NavMapBlip(monitorCoords.Value, texture, Color.Cyan, true, false); + var blip = new NavMapBlip(monitorCoords.Value, monitorCoords.Value.ToMap(_entManager, _transformSystem), texture, Color.Cyan, true, false); // Frontier modification NavMap.TrackedEntities[mon.Value] = blip; } @@ -233,7 +235,7 @@ private void AddTrackedEntityToNavMap(NetEntity netEntity, PowerMonitoringDevice if (_focusEntity != null && usedEntity != _focusEntity && !entitiesOfInterest.Contains(usedEntity.Value)) modulator = Color.DimGray; - var blip = new NavMapBlip(coords, _spriteSystem.Frame0(texture), color * modulator, blink); + var blip = new NavMapBlip(coords, coords.ToMap(_entManager, _transformSystem), _spriteSystem.Frame0(texture), color * modulator, blink); //Frontier modification NavMap.TrackedEntities[netEntity] = blip; } diff --git a/Content.Server/Construction/NodeEntities/BoardNodeEntity.cs b/Content.Server/Construction/NodeEntities/BoardNodeEntity.cs index 28c25eef04d..3e73ffde3e1 100644 --- a/Content.Server/Construction/NodeEntities/BoardNodeEntity.cs +++ b/Content.Server/Construction/NodeEntities/BoardNodeEntity.cs @@ -31,7 +31,7 @@ public sealed partial class BoardNodeEntity : IGraphNodeEntity // Frontier - adds tabletop variants if (args.EntityManager.TryGetComponent(container.Owner, out ConstructionComponent? constructionComponent) - && constructionComponent.Graph == "GraphComputerTabletop" + && constructionComponent.Graph == "ComputerTabletop" && args.EntityManager.TryGetComponent(board, out ComputerTabletopBoardComponent? tabletopComputer)) { return tabletopComputer.Prototype; diff --git a/Content.Server/Medical/CrewMonitoring/CrewMonitoringServerSystem.cs b/Content.Server/Medical/CrewMonitoring/CrewMonitoringServerSystem.cs index bff7f1565a1..887165330f7 100644 --- a/Content.Server/Medical/CrewMonitoring/CrewMonitoringServerSystem.cs +++ b/Content.Server/Medical/CrewMonitoring/CrewMonitoringServerSystem.cs @@ -3,7 +3,8 @@ using Content.Server.DeviceNetwork.Systems; using Content.Server.Medical.SuitSensors; using Content.Server.Power.Components; -using Content.Server.Station.Systems; +//using Content.Server.Station.Systems; +using Robust.Shared.Map; // Frontier modification using Content.Shared.DeviceNetwork; using Content.Shared.Medical.SuitSensor; using Robust.Shared.Timing; @@ -15,7 +16,7 @@ public sealed class CrewMonitoringServerSystem : EntitySystem [Dependency] private readonly SuitSensorSystem _sensors = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly DeviceNetworkSystem _deviceNetworkSystem = default!; - [Dependency] private readonly StationSystem _stationSystem = default!; + //[Dependency] private readonly StationSystem _stationSystem = default!; // Frontier modification private const float UpdateRate = 3f; private float _updateDiff; @@ -66,16 +67,18 @@ public override void Update(float frameTime) } /// - /// Returns the address of the currently active server for the given station id if there is one + /// Returns the address of the currently active server for the given map (instead of station id) if there is one /// - public bool TryGetActiveServerAddress(EntityUid stationId, out string? address) + //public bool TryGetActiveServerAddress(EntityUid stationId, out string? address) // Frontier modification + public bool TryGetActiveServerAddress(MapId map, out string? address) // Frontier modification { - var servers = EntityQueryEnumerator(); + var servers = EntityQueryEnumerator(); // Frontier modification (EntityUid id, CrewMonitoringServerComponent server, DeviceNetworkComponent device)? last = default; - while (servers.MoveNext(out var uid, out var server, out var device)) + while (servers.MoveNext(out var uid, out var server, out var device, out var xform)) // Frontier modification { - if (!_stationSystem.GetOwningStation(uid)?.Equals(stationId) ?? true) + //if (!_stationSystem.GetOwningStation(uid)?.Equals(stationId) ?? true) + if (xform.MapID != map) //Frontier modification continue; if (!server.Available) diff --git a/Content.Server/Medical/SuitSensors/SuitSensorComponent.cs b/Content.Server/Medical/SuitSensors/SuitSensorComponent.cs index 9079655c80c..c7bd961e2cb 100644 --- a/Content.Server/Medical/SuitSensors/SuitSensorComponent.cs +++ b/Content.Server/Medical/SuitSensors/SuitSensorComponent.cs @@ -59,13 +59,15 @@ public sealed partial class SuitSensorComponent : Component [DataField("nextUpdate", customTypeSerializer:typeof(TimeOffsetSerializer))] [AutoPausedField] public TimeSpan NextUpdate = TimeSpan.Zero; - + + /* -- Frontier modification /// /// The station this suit sensor belongs to. If it's null the suit didn't spawn on a station and the sensor doesn't work. /// [DataField("station")] public EntityUid? StationId = null; - + */ + /// /// The server the suit sensor sends it state to. /// The suit sensor will try connecting to a new server when no server is connected. diff --git a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs index 94ecf5fd0e7..2c4819b9b99 100644 --- a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs +++ b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs @@ -6,7 +6,7 @@ using Content.Server.GameTicking; using Content.Server.Medical.CrewMonitoring; using Content.Server.Popups; -using Content.Server.Station.Systems; +//using Content.Server.Station.Systems; // Frontier modification using Content.Shared.Damage; using Content.Shared.DeviceNetwork; using Content.Shared.Emp; @@ -20,6 +20,8 @@ using Robust.Shared.Map; using Robust.Shared.Random; using Robust.Shared.Timing; +using System.Numerics; //Frontier modification +using Content.Server.Salvage.Expeditions; // Frontier modification namespace Content.Server.Medical.SuitSensors; @@ -33,12 +35,13 @@ public sealed class SuitSensorSystem : EntitySystem [Dependency] private readonly MobStateSystem _mobStateSystem = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; - [Dependency] private readonly StationSystem _stationSystem = default!; + //[Dependency] private readonly StationSystem _stationSystem = default!; // Frontier modification + [Dependency] private readonly MetaDataSystem _metaData = default!; // Frontier modification public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnPlayerSpawn); + //SubscribeLocalEvent(OnPlayerSpawn); // Frontier modification SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnEquipped); SubscribeLocalEvent(OnUnequipped); @@ -55,9 +58,10 @@ public override void Update(float frameTime) base.Update(frameTime); var curTime = _gameTiming.CurTime; - var sensors = EntityManager.EntityQueryEnumerator(); + //var sensors = EntityManager.EntityQueryEnumerator(); // Frontier modification + var sensors = EntityQueryEnumerator(); // Frontier modification - while (sensors.MoveNext(out var uid, out var sensor, out var device)) + while (sensors.MoveNext(out var uid, out var sensor, out var device, out var xform)) // Frontier modification { if (device.TransmitFrequency is null) continue; @@ -66,8 +70,10 @@ public override void Update(float frameTime) if (curTime < sensor.NextUpdate) continue; + /* -- Frontier modification if (!CheckSensorAssignedStation(uid, sensor)) continue; + */ // TODO: This would cause imprecision at different tick rates. sensor.NextUpdate = curTime + sensor.UpdateRate; @@ -80,8 +86,10 @@ public override void Update(float frameTime) //Retrieve active server address if the sensor isn't connected to a server if (sensor.ConnectedServer == null) { - if (!_monitoringServerSystem.TryGetActiveServerAddress(sensor.StationId!.Value, out var address)) + //if (!_monitoringServerSystem.TryGetActiveServerAddress(sensor.StationId!.Value, out var address)) // Frontier modification + if (!_monitoringServerSystem.TryGetActiveServerAddress(xform.MapID, out var address)) // Frontier modification continue; + sensor.ConnectedServer = address; } @@ -100,6 +108,7 @@ public override void Update(float frameTime) } } + /* -- Frontier modification /// /// Checks whether the sensor is assigned to a station or not /// and tries to assign an unassigned sensor to a station if it's currently on a grid @@ -139,11 +148,14 @@ private void RecursiveSensor(EntityUid uid, EntityUid stationUid, EntityQuery(); + var userLocationName = Loc.GetString("suit-sensor-location-unknown"); // Frontier modification if (_idCardSystem.TryFindIdCard(sensor.User.Value, out var card)) { @@ -346,7 +360,8 @@ public void SetSensor(EntityUid uid, SuitSensorMode mode, EntityUid? userUid = n totalDamage = damageable.TotalDamage.Int(); // finally, form suit sensor status - var status = new SuitSensorStatus(GetNetEntity(uid), userName, userJob, userJobIcon, userJobDepartments); + // will additonally check the grid and name if it exists, as well if its expedition + var status = new SuitSensorStatus(GetNetEntity(uid), userName, userJob, userJobIcon, userJobDepartments, userLocationName); switch (sensor.Mode) { case SuitSensorMode.SensorBinary: @@ -355,6 +370,32 @@ public void SetSensor(EntityUid uid, SuitSensorMode mode, EntityUid? userUid = n case SuitSensorMode.SensorVitals: status.IsAlive = isAlive; status.TotalDamage = totalDamage; + string locationName; // Frontier modification + + //Frontier modification + if (transform.GridUid != null) + { + if(TryComp(transform.GridUid.Value, out var salvageComp)) + { + locationName = Loc.GetString("suit-sensor-location-expedition"); + } + else + { + var meta = MetaData(transform.GridUid.Value); + + locationName = meta.EntityName; + } + } + else if (transform.MapUid != null) + { + locationName = Loc.GetString("suit-sensor-location-space"); // Frontier modification + } + else + { + locationName = Loc.GetString("suit-sensor-location-unknown"); // Frontier modification + } + + status.LocationName = locationName; //Frontier modification break; case SuitSensorMode.SensorCords: status.IsAlive = isAlive; @@ -364,21 +405,49 @@ public void SetSensor(EntityUid uid, SuitSensorMode mode, EntityUid? userUid = n if (transform.GridUid != null) { - coordinates = new EntityCoordinates(transform.GridUid.Value, + + coordinates = new EntityCoordinates(transform.GridUid.Value, _transform.GetInvWorldMatrix(xformQuery.GetComponent(transform.GridUid.Value), xformQuery) .Transform(_transform.GetWorldPosition(transform, xformQuery))); + /* + coordinates = new EntityCoordinates(uid, + new Vector2(transform.WorldPosition.X, transform.WorldPosition.Y)); //Frontier modification + */ + + // Frontier modification + /// Checks if sensor is present on expedition grid + if(TryComp(transform.GridUid.Value, out var salvageComp)) + { + locationName = Loc.GetString("suit-sensor-location-expedition"); + } + else + { + var meta = MetaData(transform.GridUid.Value); + + locationName = meta.EntityName; + } } else if (transform.MapUid != null) { + coordinates = new EntityCoordinates(transform.MapUid.Value, _transform.GetWorldPosition(transform, xformQuery)); + /* + coordinates = new EntityCoordinates(uid, + new Vector2(transform.WorldPosition.X, transform.WorldPosition.Y)); //Frontier modification + */ + + locationName = Loc.GetString("suit-sensor-location-space"); // Frontier modification } else { coordinates = EntityCoordinates.Invalid; + + locationName = Loc.GetString("suit-sensor-location-unknown"); // Frontier modification } status.Coordinates = GetNetCoordinates(coordinates); + status.LocationName = locationName; //Frontier modification break; } @@ -405,6 +474,8 @@ public NetworkPayload SuitSensorToPacket(SuitSensorStatus status) payload.Add(SuitSensorConstants.NET_TOTAL_DAMAGE, status.TotalDamage); if (status.Coordinates != null) payload.Add(SuitSensorConstants.NET_COORDINATES, status.Coordinates); + if (status.LocationName != null) + payload.Add(SuitSensorConstants.NET_LOCATION_NAME, status.LocationName); return payload; } @@ -427,12 +498,13 @@ public NetworkPayload SuitSensorToPacket(SuitSensorStatus status) if (!payload.TryGetValue(SuitSensorConstants.NET_JOB_DEPARTMENTS, out List? jobDepartments)) return null; if (!payload.TryGetValue(SuitSensorConstants.NET_IS_ALIVE, out bool? isAlive)) return null; if (!payload.TryGetValue(SuitSensorConstants.NET_SUIT_SENSOR_UID, out NetEntity suitSensorUid)) return null; + if (!payload.TryGetValue(SuitSensorConstants.NET_LOCATION_NAME, out string? location)) return null; // Frontier modification - // try get total damage and cords (optionals) + // try get total damage and cords and location name (optionals) payload.TryGetValue(SuitSensorConstants.NET_TOTAL_DAMAGE, out int? totalDamage); payload.TryGetValue(SuitSensorConstants.NET_COORDINATES, out NetCoordinates? coords); - var status = new SuitSensorStatus(suitSensorUid, name, job, jobIcon, jobDepartments) + var status = new SuitSensorStatus(suitSensorUid, name, job, jobIcon, jobDepartments, location) { IsAlive = isAlive.Value, TotalDamage = totalDamage, diff --git a/Content.Server/Nyanotrasen/Carrying/CarryingSystem.cs b/Content.Server/Nyanotrasen/Carrying/CarryingSystem.cs index 58e2f80d3cc..9351900d3e1 100644 --- a/Content.Server/Nyanotrasen/Carrying/CarryingSystem.cs +++ b/Content.Server/Nyanotrasen/Carrying/CarryingSystem.cs @@ -1,6 +1,7 @@ using System.Numerics; using System.Threading; using Content.Server.DoAfter; +using Content.Server.Inventory; using Content.Server.Resist; using Content.Server.Popups; using Content.Server.Item.PseudoItem; @@ -21,6 +22,7 @@ using Content.Shared.Pulling.Components; using Content.Shared.Standing; using Content.Shared.ActionBlocker; +using Content.Shared.Inventory.VirtualItem; using Content.Shared.Item; using Content.Shared.Item.PseudoItem; using Content.Shared.Mind.Components; @@ -45,6 +47,7 @@ public sealed class CarryingSystem : EntitySystem [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly MovementSpeedModifierSystem _movementSpeed = default!; [Dependency] private readonly PseudoItemSystem _pseudoItem = default!; + [Dependency] private readonly VirtualItemSystem _virtualItemSystem = default!; public override void Initialize() { @@ -116,7 +119,13 @@ private void OnVirtualItemDeleted(EntityUid uid, CarryingComponent component, Vi /// private void OnThrow(EntityUid uid, CarryingComponent component, BeforeThrowEvent args) { - args.ThrowStrength = 5f; + if (!TryComp(args.ItemUid, out var virtItem) || !HasComp(virtItem.BlockingEntity)) + return; + + args.ItemUid = virtItem.BlockingEntity; + + // var multiplier = _contests.MassContest(uid, virtItem.BlockingEntity); + // args.ThrowStrength = 5f * multiplier; } private void OnParentChanged(EntityUid uid, CarryingComponent component, ref EntParentChangedMessage args) @@ -164,7 +173,7 @@ private void OnMoveInput(EntityUid uid, BeingCarriedComponent component, ref Mov if (_actionBlockerSystem.CanInteract(uid, component.Carrier)) { - _escapeInventorySystem.AttemptEscape(uid, component.Carrier, escape, 1); + _escapeInventorySystem.AttemptEscape(uid, component.Carrier, escape); } } @@ -256,6 +265,9 @@ private void Carry(EntityUid carrier, EntityUid carried) var carriedComp = EnsureComp(carried); EnsureComp(carried); + _virtualItemSystem.TrySpawnVirtualItemInHand(carried, carrier); + _virtualItemSystem.TrySpawnVirtualItemInHand(carried, carrier); + carryingComp.Carried = carried; carriedComp.Carrier = carrier; @@ -272,18 +284,19 @@ public void DropCarried(EntityUid carrier, EntityUid carried) Transform(carried).AttachToGridOrMap(); _standingState.Stand(carried); _movementSpeed.RefreshMovementSpeedModifiers(carrier); + _virtualItemSystem.DeleteInHandsMatching(carrier, carried); } private void ApplyCarrySlowdown(EntityUid carrier, EntityUid carried) { - var massRatio = 1; - - if (massRatio == 0) - massRatio = 1; - - var massRatioSq = Math.Pow(massRatio, 2); - var modifier = (1 - (0.15 / massRatioSq)); - modifier = Math.Max(0.1, modifier); + // Carrying slowdown made static as a part of removing mass contests + // var massRatio = _contests.MassContest(carrier, carried); + // if (massRatio == 0) + // massRatio = 1; + // var massRatioSq = Math.Pow(massRatio, 2); + // var modifier = (1 - (0.15 / massRatioSq)); + // modifier = Math.Max(0.1, modifier); + var modifier = 0.7f; // 30% slowdown while carrying var slowdownComp = EnsureComp(carrier); _slowdown.SetModifier(carrier, (float) modifier, (float) modifier, slowdownComp); } @@ -323,9 +336,17 @@ public override void Update(float frameTime) if (carrier is not { Valid: true } || carried is not { Valid: true }) continue; + // SOMETIMES - when an entity is inserted into disposals, or a cryosleep chamber - it can get re-parented without a proper reparent event + // when this happens, it needs to be dropped because it leads to weird behavior + if (Transform(carried).ParentUid != carrier) + { + DropCarried(carrier, carried); + 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)) + if (!xform.LocalPosition.Equals(Vector2.Zero)) { xform.LocalPosition = Vector2.Zero; } @@ -335,11 +356,11 @@ public override void Update(float frameTime) public TimeSpan GetPickupDuration(EntityUid carrier, EntityUid carried) { - TimeSpan length = TimeSpan.FromSeconds(3); + TimeSpan length = TimeSpan.FromSeconds(6); // The default was 3 seconds; with the removal of mass contests was increased to 6 to make it less abusable - var mod = 1; - if (mod != 0) - length /= mod; + // var mod = _contests.MassContest(carrier, carried); + // if (mod != 0) + // length /= mod; return length; } diff --git a/Content.Server/Paper/PaperSystem.cs b/Content.Server/Paper/PaperSystem.cs index 1a906b251b7..7907c2db79b 100644 --- a/Content.Server/Paper/PaperSystem.cs +++ b/Content.Server/Paper/PaperSystem.cs @@ -116,18 +116,8 @@ private void OnInteractUsing(EntityUid uid, PaperComponent paperComp, InteractUs var editable = paperComp.StampedBy.Count == 0 || _tagSystem.HasTag(args.Used, "WriteIgnoreStamps"); if (_tagSystem.HasTag(args.Used, "Write") && editable) { - bool write = true; - - if (TryComp(args.Used, out var penComp)) - { - // If a pen in sign mod, dont try to write. - if (penComp.Pen == PenMode.PenSign) - { - write = false; - } - } - - if (write) + if (TryComp(args.Used, out var penComp) && penComp.Pen == PenMode.PenSign); + else // Frontier - Else the rest { var writeEvent = new PaperWriteEvent(uid, args.User); RaiseLocalEvent(args.Used, ref writeEvent); @@ -145,37 +135,16 @@ private void OnInteractUsing(EntityUid uid, PaperComponent paperComp, InteractUs // If a stamp, attempt to stamp paper if (TryComp(args.Used, out var stampComp) && TryStamp(uid, GetStampInfo(stampComp), stampComp.StampState, paperComp)) { - var actionOther = "stamps"; - var actionSelf = "stamp"; - - if (stampComp.StampedPersonal) - { - stampComp.StampedIdUser = args.User; - - var userName = Loc.GetString("stamp-component-unknown-name"); - var userJob = Loc.GetString("stamp-component-unknown-job"); - if (_idCardSystem.TryFindIdCard(stampComp.StampedIdUser!.Value, out var card)) - { - if (card.Comp.FullName != null) - userName = card.Comp.FullName; - if (card.Comp.JobTitle != null) - userJob = card.Comp.JobTitle; - } - //string stampedName = userJob + " - " + userName; - string stampedName = userName; - stampComp.StampedName = stampedName; - - actionOther = "signs"; - actionSelf = "sign"; - } + if (stampComp.StampedPersonal) // Frontier + stampComp.StampedName = Loc.GetString("stamp-component-signee-name", ("user", args.User)); // Frontier // successfully stamped, play popup var stampPaperOtherMessage = Loc.GetString("paper-component-action-stamp-paper-other", - ("action", actionOther), ("user", args.User), ("target", args.Target), ("stamp", args.Used)); + ("user", args.User), ("target", args.Target), ("stamp", args.Used)); _popupSystem.PopupEntity(stampPaperOtherMessage, args.User, Filter.PvsExcept(args.User, entityManager: EntityManager), true); var stampPaperSelfMessage = Loc.GetString("paper-component-action-stamp-paper-self", - ("action", actionSelf), ("target", args.Target), ("stamp", args.Used)); + ("target", args.Target), ("stamp", args.Used)); _popupSystem.PopupEntity(stampPaperSelfMessage, args.User, args.User); _audio.PlayPvs(stampComp.Sound, uid); @@ -275,20 +244,8 @@ private void OnHandPickUp(EntityUid uid, StampComponent stampComp, GotEquippedHa { if (stampComp.StampedPersonal) { - stampComp.StampedIdUser = args.User; - - var userName = Loc.GetString("stamp-component-unknown-name"); - var userJob = Loc.GetString("stamp-component-unknown-job"); - if (_idCardSystem.TryFindIdCard(stampComp.StampedIdUser!.Value, out var card)) - { - if (card.Comp.FullName != null) - userName = card.Comp.FullName; - if (card.Comp.JobTitle != null) - userJob = card.Comp.JobTitle; - } - //string stampedName = userJob + " - " + userName; - string stampedName = userName; - stampComp.StampedName = stampedName; + if (stampComp.StampedPersonal) // Frontier + stampComp.StampedName = Loc.GetString("stamp-component-signee-name", ("user", args.User)); // Frontier } } diff --git a/Content.Server/Research/Systems/ResearchSystem.Client.cs b/Content.Server/Research/Systems/ResearchSystem.Client.cs index 1edd5d14bef..d6faea23d50 100644 --- a/Content.Server/Research/Systems/ResearchSystem.Client.cs +++ b/Content.Server/Research/Systems/ResearchSystem.Client.cs @@ -58,20 +58,17 @@ private void OnClientRegistrationChanged(EntityUid uid, ResearchClientComponent private void OnClientMapInit(EntityUid uid, ResearchClientComponent component, MapInitEvent args) { - // 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 () => + var maybeGrid = Transform(uid).GridUid; + if (maybeGrid is { } grid) { - await Task.Delay(TimeSpan.FromSeconds(10)); + var servers = new HashSet>(); + _lookup.GetChildEntities(grid, servers); - var allServers = EntityQuery(true).ToArray(); - if (allServers.Length > 0) + foreach (var server in servers) { - RegisterClient(uid, allServers[0].Owner, component, allServers[0]); - UnregisterClient(uid, component); + RegisterClient(uid, server, component); } - }); + } } private void OnClientShutdown(EntityUid uid, ResearchClientComponent component, ComponentShutdown args) @@ -89,12 +86,11 @@ private void UpdateClientInterface(EntityUid uid, ResearchClientComponent? compo if (!Resolve(uid, ref component, false)) return; - if (!TryGetClientServer(uid, out _, out var serverComponent, component)) - return; + TryGetClientServer(uid, out _, out var serverComponent, component); var names = GetNFServerNames(uid); var state = new ResearchClientBoundInterfaceState(names.Length, names, - GetNFServerIds(uid), component.ConnectedToServer ? serverComponent.Id : -1); + GetNFServerIds(uid), serverComponent?.Id ?? -1); _uiSystem.TrySetUiState(uid, ResearchClientUiKey.Key, state); } diff --git a/Content.Server/Research/Systems/ResearchSystem.cs b/Content.Server/Research/Systems/ResearchSystem.cs index 852657f038a..fb7e09cb1d6 100644 --- a/Content.Server/Research/Systems/ResearchSystem.cs +++ b/Content.Server/Research/Systems/ResearchSystem.cs @@ -23,6 +23,7 @@ public sealed partial class ResearchSystem : SharedResearchSystem [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly RadioSystem _radio = default!; [Dependency] private readonly StationSystem _station = default!; + [Dependency] private readonly EntityLookupSystem _lookup = default!; public override void Initialize() { diff --git a/Content.Server/Resist/EscapeInventorySystem.cs b/Content.Server/Resist/EscapeInventorySystem.cs index ed16f8881a0..ba6b08d9f0f 100644 --- a/Content.Server/Resist/EscapeInventorySystem.cs +++ b/Content.Server/Resist/EscapeInventorySystem.cs @@ -10,6 +10,7 @@ using Content.Shared.Interaction.Events; using Content.Shared.Inventory; using Content.Shared.Movement.Events; +using Content.Shared.Movement.Systems; using Content.Shared.Resist; using Content.Shared.Storage; using Robust.Shared.Containers; diff --git a/Content.Shared/Access/Systems/AccessReaderSystem.cs b/Content.Shared/Access/Systems/AccessReaderSystem.cs index 6d97fb750b1..ba1bba519a7 100644 --- a/Content.Shared/Access/Systems/AccessReaderSystem.cs +++ b/Content.Shared/Access/Systems/AccessReaderSystem.cs @@ -78,8 +78,10 @@ private void OnLinkAttempt(EntityUid uid, AccessReaderComponent component, LinkA private void OnEmagged(EntityUid uid, AccessReaderComponent reader, ref GotEmaggedEvent args) { - if (!reader.BreakOnEmag) - return; + //if (!reader.BreakOnEmag) // Frontier + // return; // Frontier + if (reader.ImmuneToEmag) // Frontier + return; // Frontier args.Handled = true; reader.Enabled = false; reader.AccessLog.Clear(); diff --git a/Content.Shared/Doors/Systems/SharedDoorSystem.cs b/Content.Shared/Doors/Systems/SharedDoorSystem.cs index 6a2a25f614b..1aa73b03aa7 100644 --- a/Content.Shared/Doors/Systems/SharedDoorSystem.cs +++ b/Content.Shared/Doors/Systems/SharedDoorSystem.cs @@ -22,6 +22,7 @@ using Robust.Shared.Timing; using Robust.Shared.Audio.Systems; using Robust.Shared.Network; +using Content.Shared.Emag.Components; // Frontier - Added DEMUG namespace Content.Shared.Doors.Systems; @@ -82,6 +83,7 @@ public override void Initialize() SubscribeLocalEvent(OnPryTimeModifier); SubscribeLocalEvent(OnEmagged); + SubscribeLocalEvent(OnUnEmagged); // Frontier - Added DEMUG } protected virtual void OnComponentInit(Entity ent, ref ComponentInit args) @@ -137,6 +139,23 @@ private void OnEmagged(EntityUid uid, DoorComponent door, ref GotEmaggedEvent ar } } + private void OnUnEmagged(EntityUid uid, DoorComponent door, ref GotUnEmaggedEvent args) // Frontier - Added DEMUG + { + if (TryComp(uid, out var airlockComponent)) + { + if (HasComp(uid)) + { + if (TryComp(uid, out var doorBoltComponent)) + { + SetBoltsDown((uid, doorBoltComponent), !doorBoltComponent.BoltsDown, null, true); + SetState(uid, DoorState.Closing, door); + } + Audio.PlayPredicted(door.SparkSound, uid, args.UserUid, AudioParams.Default.WithVolume(8)); + args.Handled = true; + } + } + } + #region StateManagement private void OnHandleState(Entity ent, ref AfterAutoHandleStateEvent args) { diff --git a/Content.Shared/Lock/LockSystem.cs b/Content.Shared/Lock/LockSystem.cs index d89a4aebcec..bda4af90d62 100644 --- a/Content.Shared/Lock/LockSystem.cs +++ b/Content.Shared/Lock/LockSystem.cs @@ -267,6 +267,7 @@ private void OnUnEmagged(EntityUid uid, LockComponent component, ref GotUnEmagge if (HasComp(uid)) { _audio.PlayPredicted(component.UnlockSound, uid, null, AudioParams.Default.WithVolume(-5)); + _appearanceSystem.SetData(uid, LockVisuals.Locked, true); //EnsureComp(uid); //Literally addes the lock as a tell it was emagged component.Locked = true; args.Handled = true; diff --git a/Content.Shared/Medical/SuitSensor/SharedSuitSensor.cs b/Content.Shared/Medical/SuitSensor/SharedSuitSensor.cs index 07e0eca33bd..34d7d221649 100644 --- a/Content.Shared/Medical/SuitSensor/SharedSuitSensor.cs +++ b/Content.Shared/Medical/SuitSensor/SharedSuitSensor.cs @@ -6,13 +6,14 @@ namespace Content.Shared.Medical.SuitSensor; [Serializable, NetSerializable] public sealed class SuitSensorStatus { - public SuitSensorStatus(NetEntity suitSensorUid, string name, string job, string jobIcon, List jobDepartments) + public SuitSensorStatus(NetEntity suitSensorUid, string name, string job, string jobIcon, List jobDepartments, string locationName) { SuitSensorUid = suitSensorUid; Name = name; Job = job; JobIcon = jobIcon; JobDepartments = jobDepartments; + LocationName = locationName; } public TimeSpan Timestamp; @@ -24,6 +25,7 @@ public SuitSensorStatus(NetEntity suitSensorUid, string name, string job, string public bool IsAlive; public int? TotalDamage; public NetCoordinates? Coordinates; + public string LocationName; } [Serializable, NetSerializable] @@ -60,6 +62,7 @@ public static class SuitSensorConstants public const string NET_TOTAL_DAMAGE = "vitals"; public const string NET_COORDINATES = "coords"; public const string NET_SUIT_SENSOR_UID = "uid"; + public const string NET_LOCATION_NAME = "location"; // Frontier modification ///Used by the CrewMonitoringServerSystem to send the status of all connected suit sensors to each crew monitor public const string NET_STATUS_COLLECTION = "suit-status-collection"; diff --git a/Content.Shared/Paper/PenComponent.cs b/Content.Shared/Paper/PenComponent.cs index b4e6269cf23..84fc6863757 100644 --- a/Content.Shared/Paper/PenComponent.cs +++ b/Content.Shared/Paper/PenComponent.cs @@ -17,12 +17,12 @@ public PenStatus(NetEntity penUid) public enum PenMode : byte { /// - /// Sensor doesn't send any information about owner + /// Frontier - The normal mode of a pen. /// PenWrite = 0, /// - /// Sensor sends only binary status (alive/dead) + /// Frontier - The sign mode of a pen. /// PenSign = 1, } diff --git a/Content.Shared/Paper/StampComponent.cs b/Content.Shared/Paper/StampComponent.cs index 5588537b5ea..cc788cca592 100644 --- a/Content.Shared/Paper/StampComponent.cs +++ b/Content.Shared/Paper/StampComponent.cs @@ -55,7 +55,7 @@ public sealed partial class StampComponent : Component public SoundSpecifier? Sound = null; /// - /// The stamp using the person name on it + /// Frontier - The stamp using the person name on it /// [DataField("stampedPersonal")] public bool StampedPersonal = false; diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index e55535af0e7..121ab6d20a6 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -3639,3 +3639,107 @@ Entries: message: Now you can make a sawn-off PKA. But should you though? id: 4862 time: '2024-03-08T17:55:56.0000000+00:00' +- author: ThatOneGoblin25 + changes: + - type: Remove + message: RCD and Ammo have been removed from the Eagle. + id: 4863 + time: '2024-03-11T05:47:20.0000000+00:00' +- author: Qulibly + changes: + - type: Tweak + message: Tweaked crew monitors with new QoL features + id: 4864 + time: '2024-03-11T23:03:50.0000000+00:00' +- author: Mnemotechnician + changes: + - type: Fix + message: Carrying now works correctly (once again). + - type: Tweak + message: >- + Carrying was slightly nerfed as it no longer depends on your body + strength. + id: 4865 + time: '2024-03-11T23:20:49.0000000+00:00' +- author: Wolfking6116 + changes: + - type: Add + message: >- + Scientists in the Sector have discovered new ways to refine ground up + Artifact fragments to make them more potent. + - type: Tweak + message: >- + It's been discovered that the quality of xenoartifacts has been + degrading with excessive excavation. + id: 4866 + time: '2024-03-11T23:31:50.0000000+00:00' +- author: Leander + changes: + - type: Tweak + message: Server Rules have been updated in relation to the station safezone. + id: 4867 + time: '2024-03-14T22:47:33.0000000+00:00' +- author: cite2000 + changes: + - type: Add + message: NFSD medical ship "Whiskey" + id: 4868 + time: '2024-03-16T21:53:36.0000000+00:00' +- author: Cu1r + changes: + - type: Add + message: Added the UAC Canister to the scrapyard for purchase. + id: 4869 + time: '2024-03-17T08:29:25.0000000+00:00' +- author: Letholldus + changes: + - type: Fix + message: >- + Adjusts the price of the NC Hauler from 49,500 to 60,000 to cost what it + should. + id: 4870 + time: '2024-03-17T10:21:37.0000000+00:00' +- author: MagnusCrowe + changes: + - type: Remove + message: Opportunity temporarily removed. + id: 4871 + time: '2024-03-18T13:42:10.0000000+00:00' +- author: Leander + changes: + - type: Tweak + message: smugglers and pirates are no longer in the same team. + id: 4872 + time: '2024-03-18T16:30:56.0000000+00:00' +- author: dvir01 + changes: + - type: Tweak + message: >- + Pen sign is back, signing is now based on your name and not your ID + name. + id: 4873 + time: '2024-03-18T16:35:36.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Add + message: Hardsuits and softsuits can be researched and fabricated. + - type: Add + message: Added salvage techfab machine. + - type: Add + message: >- + Added Botany and Mailcarrier EVA suits. Print one on your service fab + today! + - type: Tweak + message: Hardsuits and softsuits can be recycled. + id: 4874 + time: '2024-03-18T16:45:02.0000000+00:00' +- author: arimah + changes: [] + id: 4875 + time: '2024-03-18T16:46:12.0000000+00:00' +- author: ThatOneGoblin25 + changes: + - type: Add + message: Liberation Station now offers slug rounds. + id: 4876 + time: '2024-03-18T18:39:07.0000000+00:00' diff --git a/Resources/Locale/en-US/_NF/chemicals/chemicals.ftl b/Resources/Locale/en-US/_NF/chemicals/chemicals.ftl new file mode 100644 index 00000000000..7bcdabacc18 --- /dev/null +++ b/Resources/Locale/en-US/_NF/chemicals/chemicals.ftl @@ -0,0 +1,2 @@ +reagent-name-rawartifexium = raw artifexium +reagent-desc-rawartifexium = A raw mixture of microscopic artifact fragments and a strong acid. It has the ability to activate artifacts. It looks like it could be refined further to be more potent. diff --git a/Resources/Locale/en-US/_NF/medical/suit-sensor.ftl b/Resources/Locale/en-US/_NF/medical/suit-sensor.ftl new file mode 100644 index 00000000000..ea74f4a0507 --- /dev/null +++ b/Resources/Locale/en-US/_NF/medical/suit-sensor.ftl @@ -0,0 +1,5 @@ +## Components + +suit-sensor-location-unknown = Unidentified Location +suit-sensor-location-space = In Space +suit-sensor-location-expedition = On Expedition \ No newline at end of file diff --git a/Resources/Locale/en-US/_NF/paper/stamp-component.ftl b/Resources/Locale/en-US/_NF/paper/stamp-component.ftl index d5c439dce56..93bf418f785 100644 --- a/Resources/Locale/en-US/_NF/paper/stamp-component.ftl +++ b/Resources/Locale/en-US/_NF/paper/stamp-component.ftl @@ -1,7 +1,6 @@ ## Components -stamp-component-unknown-name = Unknown -stamp-component-unknown-job = No job +stamp-component-signee-name = {$user} stamp-component-stamped-name-psychologist = Psychologist stamp-component-stamped-name-lawyer = Lawyer diff --git a/Resources/Locale/en-US/_NF/research/technologies.ftl b/Resources/Locale/en-US/_NF/research/technologies.ftl index 664336427c0..6e8955a4d8b 100644 --- a/Resources/Locale/en-US/_NF/research/technologies.ftl +++ b/Resources/Locale/en-US/_NF/research/technologies.ftl @@ -1,3 +1,8 @@ research-techology-advanced-personal-propulsion = Advanced Personal Propulsion -research-technology-rapid-construction = Rapid Construction -research-technology-adv-rapid-construction = Advanced Rapid Construction +research-technology-hardsuits-basic = Basic Hardsuits +research-technology-hardsuits-specialized = Specialized Hardsuits +research-technology-hardsuits-advanced = Advanced Hardsuits +research-technology-hardsuits-experimental-industrial = Experimental Salvager Hardsuit +research-technology-hardsuits-armored = Armored Hardsuits +research-technology-hardsuits-armored-advanced = Advanced Armored Hardsuits +research-technology-hardsuits-experimental-rd = Experimental Research Hardsuit diff --git a/Resources/Locale/en-US/lathe/lathe-categories.ftl b/Resources/Locale/en-US/lathe/lathe-categories.ftl index a7261c2b511..6b1917d8351 100644 --- a/Resources/Locale/en-US/lathe/lathe-categories.ftl +++ b/Resources/Locale/en-US/lathe/lathe-categories.ftl @@ -6,3 +6,4 @@ lathe-category-parts = Parts lathe-category-robotics = Robotics lathe-category-tools = Tools lathe-category-weapons = Weapons +lathe-category-evasuits = EVA diff --git a/Resources/Locale/en-US/paper/paper-component.ftl b/Resources/Locale/en-US/paper/paper-component.ftl index 689dea665f3..5a86e06cdd1 100644 --- a/Resources/Locale/en-US/paper/paper-component.ftl +++ b/Resources/Locale/en-US/paper/paper-component.ftl @@ -8,5 +8,7 @@ paper-component-examine-detail-has-words = {CAPITALIZE(THE($paper))} has somethi # Shown when paper with stamps examined paper-component-examine-detail-stamped-by = {CAPITALIZE(THE($paper))} {CONJUGATE-HAVE($paper)} been stamped by: {$stamps}. -paper-component-action-stamp-paper-other = {CAPITALIZE(THE($user))} {$action} {THE($target)} with {THE($stamp)}. -paper-component-action-stamp-paper-self = You {$action} {THE($target)} with {THE($stamp)}. +paper-component-action-stamp-paper-other = {CAPITALIZE(THE($user))} stamps {THE($target)} with {THE($stamp)}. +paper-component-action-stamp-paper-self = You stamp {THE($target)} with {THE($stamp)}. + +paper-ui-save-button = Save ({$keybind}) \ No newline at end of file diff --git a/Resources/Maps/_NF/Shuttles/Security/whiskey.yml b/Resources/Maps/_NF/Shuttles/Security/whiskey.yml new file mode 100644 index 00000000000..b88121c1ee5 --- /dev/null +++ b/Resources/Maps/_NF/Shuttles/Security/whiskey.yml @@ -0,0 +1,3814 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 36: FloorDarkOffset + 46: FloorGlass + 92: FloorSteel + 111: FloorWhite + 120: FloorWhitePlastic + 124: Lattice + 125: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5156326,-0.46875 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: JAAAAAAAJAAAAAAAJAAAAAAAfQAAAAAAJAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfAAAAAAALgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAADeAAAAAACeAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAABeAAAAAACeAAAAAADeAAAAAAAeAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAADeAAAAAACeAAAAAADeAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAADeAAAAAACeAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAADeAAAAAACeAAAAAAAeAAAAAACeAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAADeAAAAAACeAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAADeAAAAAACeAAAAAABeAAAAAADeAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADXAAAAAABXAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfAAAAAAALgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAfAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAJAAAAAAAfQAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAfAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADfAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeAAAAAADeAAAAAADeAAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAADeAAAAAAAeAAAAAAAeAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeAAAAAAAeAAAAAABeAAAAAAAeAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAeAAAAAADfQAAAAAAeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeAAAAAADeAAAAAABeAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeAAAAAADeAAAAAABeAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeAAAAAAAeAAAAAADeAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: fQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: BrickTileWhiteBox + decals: + 56: 2,3 + - node: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + decals: + 2: 0,15 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 23: -1,6 + 24: 0,6 + 25: 1,6 + 26: 0,7 + 27: 0,5 + - node: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + decals: + 36: 0,8 + 37: 0,9 + 38: 0,10 + 39: 0,11 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale + decals: + 3: 0,14 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 76: 0,3 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale + decals: + 9: -3,11 + 10: 3,11 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + decals: + 29: -3,7 + 30: 3,7 + 63: -2,7 + 64: -1,7 + 65: 1,7 + 66: 2,7 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale + decals: + 55: 0,-5 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale180 + decals: + 4: 0,13 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 75: 0,-3 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale180 + decals: + 17: -3,9 + 18: 3,9 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + decals: + 33: 3,5 + 58: -3,5 + 59: -2,5 + 60: -1,5 + 61: 1,5 + 62: 2,5 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + decals: + 54: 0,-7 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + decals: + 15: -4,10 + 16: 2,10 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + decals: + 57: -4,6 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale270 + decals: + 53: -1,-6 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + decals: + 21: -2,10 + 22: 4,10 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + decals: + 35: 4,6 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + decals: + 52: 1,-6 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 78: -1,2 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 80: 1,-2 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 79: -1,-2 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 77: 1,2 + - node: + color: '#EFB34196' + id: StandClearGreyscale + decals: + 81: -4,1 + 82: -4,-1 + 83: 4,-1 + 84: 4,1 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale + decals: + 0: -1,14 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 69: -2,2 + 70: -1,3 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale + decals: + 13: -4,11 + 14: 2,11 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale + decals: + 31: -4,7 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale + decals: + 46: -4,-5 + 47: 3,-5 + 48: -1,-5 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 5: 1,13 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 73: 2,-2 + 74: 1,-3 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 19: -2,9 + 20: 4,9 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 34: 4,5 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 49: -3,-6 + 50: 1,-7 + 51: 4,-6 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 1: -1,13 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 67: -2,-2 + 68: -1,-3 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 11: -4,9 + 12: 2,9 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 32: -4,5 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 43: -1,-7 + 44: -4,-6 + 45: 3,-6 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 6: 1,14 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 71: 1,3 + 72: 2,2 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 7: -2,11 + 8: 4,11 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 28: 4,7 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 40: 1,-5 + 41: 4,-5 + 42: -3,-5 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,-1: + 0: 65535 + -1,-1: + 0: 65535 + -1,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 30719 + 1,0: + 0: 4915 + 1,1: + 0: 13107 + 1,2: + 0: 13107 + 1,3: + 0: 19 + 0,-3: + 0: 4096 + 0,-2: + 0: 65535 + 1,-2: + 0: 13105 + 1,-1: + 0: 13075 + -2,-2: + 0: 34944 + -2,-1: + 0: 34824 + -1,-2: + 0: 65535 + -2,0: + 0: 2184 + -2,1: + 0: 34952 + -2,2: + 0: 34952 + -2,3: + 0: 8 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 52479 + 0,4: + 0: 19 + -1,4: + 0: 8 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: BecomesStation + id: Whiskey +- proto: AirlockExternalGlass + entities: + - uid: 176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 485 + - uid: 177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 485 + - uid: 178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 485 + - uid: 179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 485 +- proto: AirlockGlassShuttle + entities: + - uid: 8 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 2 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 +- proto: AirlockSecurityLocked + entities: + - uid: 49 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,12.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 79 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - type: Apc + hasAccess: True + lastExternalState: Good + lastChargeState: Full + - uid: 191 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 81 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - uid: 315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - uid: 316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 434 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 470 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 501 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - uid: 502 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 503 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 504 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 505 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1 + - uid: 506 + components: + - type: Transform + pos: -4.5,12.5 + parent: 1 + - uid: 507 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 509 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 510 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 511 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 1 + - uid: 512 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1 + - uid: 513 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 514 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1 + - uid: 515 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 516 + components: + - type: Transform + pos: -3.5,13.5 + parent: 1 + - uid: 517 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 518 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1 + - uid: 519 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 +- proto: BedsheetBrigmedic + entities: + - uid: 53 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 +- proto: BenchSteelWhiteLeft + entities: + - uid: 372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - type: Physics + bodyType: Static + - uid: 392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: BenchSteelWhiteMiddle + entities: + - uid: 395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - type: Physics + bodyType: Static + - uid: 396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: BenchSteelWhiteRight + entities: + - uid: 479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - type: Physics + bodyType: Static + - uid: 488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: BookSecurity + entities: + - uid: 477 + components: + - type: Transform + pos: 0.47616482,-2.4413009 + parent: 1 +- proto: BookshelfFilled + entities: + - uid: 468 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 +- proto: BoxBodyBag + entities: + - uid: 46 + components: + - type: Transform + pos: 3.4799356,11.539728 + parent: 1 +- proto: BoxLighttube + entities: + - uid: 103 + components: + - type: Transform + pos: -2.2566786,-5.673751 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 39 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: 1.5,14.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 481 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 +- proto: CableHV + entities: + - uid: 99 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 +- proto: CableMV + entities: + - uid: 35 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1 +- proto: CandyBowl + entities: + - uid: 489 + components: + - type: Transform + pos: -0.50640726,7.557986 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 1 +- proto: chem_master + entities: + - uid: 272 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 +- proto: ComputerRadar + entities: + - uid: 270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,14.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 83 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 +- proto: ComputerStationRecords + entities: + - uid: 266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,14.5 + parent: 1 +- proto: CrateMaterialPlasma + entities: + - uid: 107 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CryoPod + entities: + - uid: 246 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 447 + components: + - type: Transform + pos: -3.7510986,5.7831163 + parent: 1 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 472 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 + - uid: 480 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 +- proto: DrinkDoctorsDelightGlass + entities: + - uid: 483 + components: + - type: Transform + pos: -1.6133347,10.464858 + parent: 1 +- proto: EmergencyLight + entities: + - uid: 450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 451 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,9.5 + parent: 1 + - uid: 453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,13.5 + parent: 1 + - uid: 454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 52 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 +- proto: FaxMachineShip + entities: + - uid: 181 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1 +- proto: FireAlarm + entities: + - uid: 482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,10.5 + parent: 1 + - type: DeviceList + devices: + - 446 + - 445 + - 111 + - 444 + - 443 + - 449 + - type: AtmosDevice + joinedGrid: 1 + - uid: 484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - type: DeviceList + devices: + - 442 + - 440 + - 439 + - 441 + - 437 + - 436 + - 435 + - 438 + - type: AtmosDevice + joinedGrid: 1 +- proto: FirelockEdge + entities: + - uid: 111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 +- proto: FirelockGlass + entities: + - uid: 435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + - uid: 436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + - uid: 437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + - uid: 438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + - uid: 441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + - uid: 442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 + - uid: 443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,8.5 + parent: 1 + - uid: 444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,8.5 + parent: 1 + - uid: 445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + - uid: 446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + - uid: 449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,12.5 + parent: 1 +- proto: FoodBoxDonut + entities: + - uid: 467 + components: + - type: Transform + pos: 0.5319689,1.4083452 + parent: 1 +- proto: FoodGumball + entities: + - uid: 493 + components: + - type: Transform + pos: -0.7008517,7.4746523 + parent: 1 + - uid: 496 + components: + - type: Transform + pos: -0.33974057,7.4468746 + parent: 1 +- proto: FoodLollipop + entities: + - uid: 490 + components: + - type: Transform + pos: -0.72862947,7.669097 + parent: 1 + - uid: 491 + components: + - type: Transform + pos: -0.50640726,7.669097 + parent: 1 + - uid: 492 + components: + - type: Transform + pos: -0.31196284,7.6413193 + parent: 1 +- proto: GasAnalyzer + entities: + - uid: 406 + components: + - type: Transform + pos: -3.2785935,5.6706004 + parent: 1 +- proto: GasFilter + entities: + - uid: 100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#00FFFFFF' +- proto: GasMixerFlipped + entities: + - uid: 391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + - type: GasMixer + inletTwoConcentration: 0.78 + inletOneConcentration: 0.22 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasOutletInjector + entities: + - uid: 497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 251 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 258 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeFourway + entities: + - uid: 377 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 417 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 378 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 380 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 382 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 383 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 384 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 385 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 397 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 401 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 402 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 403 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 414 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 415 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 416 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 418 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 419 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 420 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 421 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 422 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 424 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 425 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 426 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 427 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 428 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 430 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 413 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 306 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 361 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPressurePump + entities: + - uid: 170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#00FFFFFF' +- proto: GasThermoMachineFreezer + entities: + - uid: 334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#00FFFFFF' + - type: AtmosDevice + joinedGrid: 1 +- proto: GasVentPump + entities: + - uid: 358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,9.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 404 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasVentScrubber + entities: + - uid: 360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,10.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GravityGeneratorMini + entities: + - uid: 102 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 +- proto: Grille + entities: + - uid: 9 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + - uid: 30 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + - uid: 32 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + - uid: 115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1 + - uid: 117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,7.5 + parent: 1 + - uid: 118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,9.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1 + - uid: 120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,11.5 + parent: 1 + - uid: 121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + - uid: 122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + - uid: 123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 1 + - uid: 124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 1 + - uid: 125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 1 + - uid: 126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,11.5 + parent: 1 + - uid: 139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 1 + - uid: 143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 1 + - uid: 144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,11.5 + parent: 1 + - uid: 157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 + - uid: 173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + - uid: 260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,14.5 + parent: 1 + - uid: 261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,15.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1 + - uid: 263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,15.5 + parent: 1 + - uid: 264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1 + - uid: 265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 1 + - uid: 317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - uid: 319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,15.5 + parent: 1 + - uid: 320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,16.5 + parent: 1 + - uid: 321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,16.5 + parent: 1 + - uid: 322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,15.5 + parent: 1 + - uid: 338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,17.5 + parent: 1 +- proto: GyroscopeSecurity + entities: + - uid: 366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 1 +- proto: HyperlinkBookChemistry + entities: + - uid: 277 + components: + - type: Transform + pos: -3.711504,9.562804 + parent: 1 +- proto: KitchenReagentGrinder + entities: + - uid: 280 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 +- proto: LargeBeaker + entities: + - uid: 281 + components: + - type: Transform + pos: -3.3368373,9.550544 + parent: 1 +- proto: LightReplacer + entities: + - uid: 104 + components: + - type: Transform + pos: -2.7254286,-5.267501 + parent: 1 +- proto: LockerBrigmedicFilled + entities: + - uid: 355 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 356 + components: + - type: Transform + pos: 4.5,10.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: LockerChemistryFilled + entities: + - uid: 274 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 +- proto: LockerEvidence + entities: + - uid: 192 + components: + - type: Transform + pos: 2.5,11.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 +- proto: MedicalBed + entities: + - uid: 78 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 +- proto: MedicalTechFab + entities: + - uid: 473 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 +- proto: MedkitOxygenFilled + entities: + - uid: 353 + components: + - type: Transform + pos: 2.5716128,5.7559834 + parent: 1 +- proto: MedkitRadiationFilled + entities: + - uid: 351 + components: + - type: Transform + pos: 2.5438352,5.2907057 + parent: 1 +- proto: MedkitToxinFilled + entities: + - uid: 352 + components: + - type: Transform + pos: 2.5368907,5.5545945 + parent: 1 +- proto: NetworkConfigurator + entities: + - uid: 393 + components: + - type: Transform + pos: -3.5754685,5.4206004 + parent: 1 + - type: NetworkConfigurator + linkModeActive: False +- proto: NitrogenCanister + entities: + - uid: 62 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: OxygenCanister + entities: + - uid: 40 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: PaperBin5 + entities: + - uid: 47 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 +- proto: PlastitaniumWindow + entities: + - uid: 12 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + - uid: 28 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + - uid: 127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + - uid: 128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1 + - uid: 129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,7.5 + parent: 1 + - uid: 130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,9.5 + parent: 1 + - uid: 131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1 + - uid: 132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,11.5 + parent: 1 + - uid: 133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 1 + - uid: 135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,11.5 + parent: 1 + - uid: 136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,11.5 + parent: 1 + - uid: 174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + - uid: 175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + - uid: 314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - uid: 323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 + - uid: 324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,14.5 + parent: 1 + - uid: 325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,15.5 + parent: 1 + - uid: 326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,15.5 + parent: 1 + - uid: 327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,16.5 + parent: 1 + - uid: 328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,16.5 + parent: 1 + - uid: 329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,16.5 + parent: 1 + - uid: 330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,15.5 + parent: 1 + - uid: 331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,15.5 + parent: 1 + - uid: 332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1 + - uid: 333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: 0.5,17.5 + parent: 1 +- proto: PlushieTrystan + entities: + - uid: 520 + components: + - type: Transform + pos: 0.52549624,-0.3086419 + parent: 1 +- proto: PortableGeneratorPacmanShuttle + entities: + - uid: 381 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static + - uid: 390 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 486 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 +- proto: PosterLegitSMEpi + entities: + - uid: 354 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 +- proto: PosterLegitSMFires + entities: + - uid: 494 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 +- proto: PosterLegitSMMeth + entities: + - uid: 487 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 +- proto: PosterLegitSMPiping + entities: + - uid: 495 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 +- proto: PosterLegitSMPoisoning + entities: + - uid: 108 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 +- proto: PottedPlant11 + entities: + - uid: 478 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: PowerCellRecharger + entities: + - uid: 105 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - uid: 456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - uid: 457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 1 + - uid: 458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 1 + - uid: 459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 1 + - uid: 460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + - uid: 461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 1 + - uid: 462 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 1 + - uid: 464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,13.5 + parent: 1 +- proto: RollerBedSpawnFolded + entities: + - uid: 475 + components: + - type: Transform + pos: -3.535509,0.65760666 + parent: 1 + - uid: 476 + components: + - type: Transform + pos: 4.4758663,0.65760666 + parent: 1 +- proto: SignalButton + entities: + - uid: 485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,12.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 178: + - Pressed: DoorBolt + 179: + - Pressed: DoorBolt + 176: + - Pressed: DoorBolt + 177: + - Pressed: DoorBolt +- proto: SignChemistry2 + entities: + - uid: 278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,8.5 + parent: 1 +- proto: SinkStemlessWater + entities: + - uid: 465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 63 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 +- proto: SpawnPointBrigmedic + entities: + - uid: 267 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 +- proto: SpawnPointLatejoin + entities: + - uid: 471 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 309 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 +- proto: SuitStorageBrigmedic + entities: + - uid: 268 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1 +- proto: TableCounterMetal + entities: + - uid: 180 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1 + - uid: 275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 1 + - uid: 276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 1 + - uid: 279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,9.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 +- proto: TableReinforcedGlass + entities: + - uid: 252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + - uid: 253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 1 + - uid: 466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 474 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 +- proto: ThrusterSecurity + entities: + - uid: 335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + - uid: 336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + - uid: 339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + - uid: 340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 1 + - uid: 341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 1 + - uid: 342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: -3.5,13.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - uid: 348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 +- proto: VendingMachineChemicals + entities: + - uid: 273 + components: + - type: Transform + pos: -3.5,11.5 + parent: 1 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 208 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 +- proto: VendingMachineWallMedical + entities: + - uid: 350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 1 +- proto: WallPlastitanium + entities: + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + - uid: 14 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 18 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - uid: 19 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - uid: 24 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + - uid: 25 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 + - uid: 26 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 27 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + - uid: 31 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 1 + - uid: 33 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 41 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 43 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 48 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + - uid: 51 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 1 + - uid: 57 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + - uid: 58 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 + - uid: 59 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 + - uid: 60 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 1 + - uid: 61 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 1 + - uid: 66 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 1 + - uid: 68 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + - uid: 69 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 1 + - uid: 70 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 + - uid: 71 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + - uid: 72 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + - uid: 73 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + - uid: 74 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1 + - uid: 87 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 92 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - uid: 93 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 94 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - uid: 112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + - uid: 113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,8.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,12.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,12.5 + parent: 1 + - uid: 155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,12.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 1 + - uid: 158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,12.5 + parent: 1 + - uid: 159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,12.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,12.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,12.5 + parent: 1 + - uid: 163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,11.5 + parent: 1 + - uid: 164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,10.5 + parent: 1 + - uid: 165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 + - uid: 166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 1 + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1 + - uid: 168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 448 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 +- proto: WallPlastitaniumDiagonal + entities: + - uid: 95 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - uid: 96 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 98 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + - uid: 114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,12.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: -4.5,12.5 + parent: 1 + - uid: 169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 1 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 +- proto: WarpPointShip + entities: + - uid: 3 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + - uid: 255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 +... diff --git a/Resources/Maps/_NF/Shuttles/canister.yml b/Resources/Maps/_NF/Shuttles/canister.yml new file mode 100644 index 00000000000..8c56737c9f6 --- /dev/null +++ b/Resources/Maps/_NF/Shuttles/canister.yml @@ -0,0 +1,787 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 124: Lattice + 125: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.52213657,-0.49262553 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: fQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + 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: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 2: -1,1 + 11: -2,0 + 12: -1,0 + 13: 0,0 + 14: 1,0 + 15: 0,1 + 16: -1,-1 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 3: 0,1 + 4: -1,0 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 5: 0,0 + 6: -1,-1 + 7: -2,0 + - node: + cleanable: True + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 8: 0,-1 + 9: 1,0 + 10: 2,0 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 0: 0,2 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 1: -1,2 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 4983 + 1: 9216 + -1,0: + 1: 16898 + 0: 36076 + 0,-1: + 0: 28928 + 1: 544 + -1,-1: + 0: 59392 + 1: 1088 + 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: Canister +- proto: AirAlarm + entities: + - uid: 62 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - type: DeviceList + devices: + - 35 + - 36 + - type: AtmosDevice + joinedGrid: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 16 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 42 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 29 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 15 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 28 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 +- proto: CableHV + entities: + - uid: 17 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 +- proto: CableMV + entities: + - uid: 9 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 23 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 +- proto: Chair + entities: + - uid: 22 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 21 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 +- proto: CigarSpent + entities: + - uid: 89 + components: + - type: Transform + pos: -0.71816957,1.9718587 + parent: 1 +- proto: ClosetWall + entities: + - uid: 81 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + moles: + - 1.8978093 + - 7.139378 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 56 + - 82 + - 83 +- proto: ClothingOuterCoatJensen + entities: + - uid: 56 + components: + - type: Transform + parent: 81 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Cobweb1 + entities: + - uid: 52 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 +- proto: ComputerTabletopShuttle + entities: + - uid: 26 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: ComputerTabletopStationRecords + entities: + - uid: 40 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 +- proto: EmergencyLight + entities: + - uid: 78 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 30 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 32 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 34 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraight + entities: + - uid: 31 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 37 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 36 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 62 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 35 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 62 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GravityGeneratorMini + entities: + - uid: 27 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 +- proto: Grille + entities: + - uid: 48 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 +- proto: GrilleDiagonal + entities: + - uid: 59 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 +- proto: PortableGeneratorPacmanShuttle + entities: + - uid: 50 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static +- proto: Poweredlight + entities: + - uid: 33 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 69 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + - uid: 72 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 1 +- proto: RandomSpawner + entities: + - uid: 13 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 +- proto: SheetPlasma1 + entities: + - uid: 83 + components: + - type: Transform + parent: 81 + - type: Stack + count: 5 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SmallGyroscope + entities: + - uid: 18 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 +- proto: SpawnPointLatejoin + entities: + - uid: 54 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 2 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 +- proto: Table + entities: + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 +- proto: Thruster + entities: + - uid: 11 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + - uid: 38 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 60 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 +- proto: ToyFigurineAtmosTech + entities: + - uid: 53 + components: + - type: Transform + pos: -0.061842978,2.0317187 + parent: 1 +- proto: WallSolid + entities: + - uid: 5 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 +- proto: WallSolidDiagonal + entities: + - uid: 64 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - uid: 85 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 +- proto: WallSolidRust + entities: + - uid: 3 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 +- proto: WarpPointShip + entities: + - uid: 10 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: Window + entities: + - uid: 19 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 +- proto: WindowDiagonal + entities: + - uid: 7 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 47 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 +- proto: WindowDirectional + entities: + - uid: 43 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 +- proto: Wrench + entities: + - uid: 82 + components: + - type: Transform + parent: 81 + - type: Physics + canCollide: False + - type: InsideEntityStorage +... diff --git a/Resources/Maps/Shuttles/condor.yml b/Resources/Maps/_NF/Shuttles/condor.yml similarity index 53% rename from Resources/Maps/Shuttles/condor.yml rename to Resources/Maps/_NF/Shuttles/condor.yml index d6c3743da23..92d492d1f95 100644 --- a/Resources/Maps/Shuttles/condor.yml +++ b/Resources/Maps/_NF/Shuttles/condor.yml @@ -3,63 +3,64 @@ meta: postmapinit: false tilemap: 0: Space - 27: FloorDark - 84: FloorSteel - 92: FloorSteelMono - 96: FloorTechMaint - 112: Lattice - 113: Plating + 30: FloorDark + 92: FloorSteel + 103: FloorSteelMono + 107: FloorTechMaint + 124: Lattice + 125: Plating entities: - proto: "" entities: - uid: 281 components: - type: MetaData - - pos: 0.22312418,1.0179756 + - type: Transform + pos: 0.22312418,1.0179756 parent: invalid - type: Transform - - chunks: + - type: MapGrid + chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAA version: 6 0,0: ind: 0,0 - tiles: cQAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAABGwAAAAAAGwAAAAACGwAAAAAAcQAAAAAAGwAAAAADGwAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAABHgAAAAAAHgAAAAACHgAAAAAAfQAAAAAAHgAAAAADHgAAAAABfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABXAAAAAAAXAAAAAADfQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAAAXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAVAAAAAABXAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAABcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAABcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAADcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADcQAAAAAAVAAAAAAAVAAAAAADXAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAAAGwAAAAACcQAAAAAAGwAAAAADGwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAACGwAAAAACGwAAAAABGwAAAAABGwAAAAAAGwAAAAABGwAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAACfQAAAAAAXAAAAAABZwAAAAAAZwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAABfQAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAABXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADXAAAAAACXAAAAAADXAAAAAABfQAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAACXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADXAAAAAADXAAAAAADXAAAAAABfQAAAAAAXAAAAAAAXAAAAAACXAAAAAABXAAAAAACXAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAACXAAAAAADfQAAAAAAXAAAAAAAXAAAAAABXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAACXAAAAAADfQAAAAAAXAAAAAAAXAAAAAADZwAAAAABfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAACfQAAAAAAHgAAAAADHgAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAACHgAAAAABHgAAAAABHgAAAAAAHgAAAAABHgAAAAABfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,1: ind: 0,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 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: 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: @@ -183,8 +184,8 @@ entities: decals: 59: 6,-9 60: 7,-4 - type: DecalGrid - - version: 2 + - type: GridAtmosphere + version: 2 data: tiles: -1,-1: @@ -359,21 +360,21 @@ entities: - 0 - 0 chunkSize: 4 - type: GridAtmosphere - type: GasTileOverlay - type: RadiationGridResistance - - id: Condor - type: BecomesStation + - type: BecomesStation + id: Condor - type: SpreaderGrid - proto: AirAlarm entities: - uid: 717 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,4.5 parent: 281 - type: Transform - - devices: + - type: DeviceList + devices: - 184 - 718 - 719 @@ -383,1850 +384,1862 @@ entities: - 723 - 722 - 721 - type: DeviceList + - type: AtmosDevice + joinedGrid: 281 - proto: AirCanister entities: - uid: 650 components: - - pos: 7.5,-8.5 + - type: Transform + pos: 7.5,-8.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - proto: AirlockAtmosphericsGlass entities: - uid: 632 components: - - pos: 4.5,4.5 + - type: Transform + pos: 4.5,4.5 parent: 281 - type: Transform - proto: AirlockCommandGlass entities: - uid: 697 components: - - pos: 8.5,-0.5 + - type: Transform + pos: 8.5,-0.5 parent: 281 - type: Transform - proto: AirlockEngineeringGlass entities: - uid: 633 components: - - pos: 4.5,1.5 + - type: Transform + pos: 4.5,1.5 parent: 281 - type: Transform - uid: 634 components: - - pos: 5.5,-2.5 + - type: Transform + pos: 5.5,-2.5 parent: 281 - type: Transform - proto: AirlockExternalGlass entities: - uid: 119 components: - - pos: 4.5,8.5 + - type: Transform + pos: 4.5,8.5 parent: 281 - type: Transform - uid: 123 components: - - pos: 4.5,10.5 + - type: Transform + pos: 4.5,10.5 parent: 281 - type: Transform - uid: 253 components: - - pos: 5.5,-9.5 + - type: Transform + pos: 5.5,-9.5 parent: 281 - type: Transform - uid: 341 components: - - pos: 3.5,-9.5 + - type: Transform + pos: 3.5,-9.5 parent: 281 - type: Transform - proto: AirlockGlassShuttle entities: - uid: 320 components: - - pos: 3.5,-11.5 + - type: Transform + pos: 3.5,-11.5 parent: 281 - type: Transform - uid: 635 components: - - pos: 5.5,-11.5 + - type: Transform + pos: 5.5,-11.5 parent: 281 - type: Transform - proto: AirlockScienceGlass entities: - uid: 352 components: - - pos: 4.5,-6.5 + - type: Transform + pos: 4.5,-6.5 parent: 281 - type: Transform - uid: 355 components: - - pos: 4.5,-7.5 + - type: Transform + pos: 4.5,-7.5 parent: 281 - type: Transform - uid: 629 components: - - pos: 0.5,-0.5 + - type: Transform + pos: 0.5,-0.5 parent: 281 - type: Transform - uid: 630 components: - - pos: 3.5,-2.5 + - type: Transform + pos: 3.5,-2.5 parent: 281 - type: Transform - proto: AirSensor entities: - uid: 721 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 4.5,3.5 parent: 281 - type: Transform - uid: 722 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-0.5 parent: 281 - type: Transform - uid: 723 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-0.5 parent: 281 - type: Transform - proto: APCBasic entities: - uid: 575 components: - - pos: 5.5,8.5 + - type: Transform + pos: 5.5,8.5 parent: 281 - type: Transform - uid: 616 components: - - pos: 2.5,1.5 + - type: Transform + pos: 2.5,1.5 parent: 281 - type: Transform - uid: 764 components: - - pos: 6.5,-2.5 + - type: Transform + pos: 6.5,-2.5 parent: 281 - type: Transform - uid: 765 components: - - pos: 2.5,-2.5 + - type: Transform + pos: 2.5,-2.5 parent: 281 - type: Transform - proto: AtmosDeviceFanTiny entities: - uid: 628 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,-0.5 parent: 281 - type: Transform - uid: 651 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,-11.5 parent: 281 - type: Transform - uid: 652 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 5.5,-11.5 parent: 281 - type: Transform - proto: AtmosFixBlockerMarker entities: - uid: 734 components: - - pos: 9.5,14.5 + - type: Transform + pos: 9.5,14.5 parent: 281 - type: Transform - uid: 735 components: - - pos: 9.5,13.5 + - type: Transform + pos: 9.5,13.5 parent: 281 - type: Transform - proto: AtmosFixShuttleNitrogenMarker entities: - - uid: 730 + - uid: 278 components: - - pos: -0.5,14.5 + - type: Transform + pos: -0.5,13.5 parent: 281 - type: Transform - - uid: 731 + - uid: 279 components: - - pos: -0.5,13.5 + - type: Transform + pos: -0.5,14.5 parent: 281 - type: Transform - proto: AtmosFixShuttleOxygenMarker entities: - - uid: 728 + - uid: 325 components: - - pos: 1.5,14.5 + - type: Transform + pos: 1.5,14.5 parent: 281 - type: Transform - - uid: 729 + - uid: 535 components: - - pos: 1.5,13.5 + - type: Transform + pos: 1.5,13.5 parent: 281 - type: Transform - proto: AtmosFixShuttlePlasmaMarker entities: - - uid: 732 + - uid: 536 components: - - pos: 7.5,14.5 + - type: Transform + pos: 7.5,13.5 parent: 281 - type: Transform - - uid: 733 + - uid: 668 components: - - pos: 7.5,13.5 + - type: Transform + pos: 7.5,14.5 parent: 281 - type: Transform - proto: Autolathe entities: - uid: 357 components: - - pos: 9.5,-5.5 + - type: Transform + pos: 9.5,-5.5 parent: 281 - type: Transform - proto: BlastDoorOpen entities: - uid: 16 components: - - pos: -2.5,-0.5 - parent: 281 - type: Transform - - state: Closed - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - links: + - type: Transform + pos: -2.5,-0.5 + parent: 281 + - type: Door + state: Closed + - type: Occluder + enabled: True + - type: Physics + canCollide: True + - type: Airtight + airBlocked: True + - type: DeviceLinkSink + links: - 736 - type: DeviceLinkSink - proto: BoxFolderBase entities: - uid: 618 components: - - pos: 1.4059263,-4.0083656 + - type: Transform + pos: 1.4059263,-4.0083656 parent: 281 - type: Transform - uid: 619 components: - - pos: 1.7182992,-4.363144 + - type: Transform + pos: 1.7182992,-4.363144 parent: 281 - type: Transform - proto: BoxLatexGloves entities: - uid: 713 components: - - pos: 2.279059,-8.298996 + - type: Transform + pos: 2.279059,-8.298996 parent: 281 - type: Transform - proto: BoxMouthSwab entities: - uid: 676 components: - - pos: 0.2698599,-5.259469 + - type: Transform + pos: 0.2698599,-5.259469 parent: 281 - type: Transform - uid: 710 components: - - pos: 1.3595983,-4.3783197 + - type: Transform + pos: 1.3595983,-4.3783197 parent: 281 - type: Transform - proto: BoxSterileMask entities: - uid: 714 components: - - pos: 2.6198297,-8.398334 + - type: Transform + pos: 2.6198297,-8.398334 parent: 281 - type: Transform - proto: CableApcExtension entities: - uid: 576 components: - - pos: 5.5,8.5 + - type: Transform + pos: 5.5,8.5 parent: 281 - type: Transform - uid: 577 components: - - pos: 4.5,8.5 + - type: Transform + pos: 4.5,8.5 parent: 281 - type: Transform - uid: 578 components: - - pos: 4.5,9.5 + - type: Transform + pos: 4.5,9.5 parent: 281 - type: Transform - uid: 579 components: - - pos: 4.5,10.5 + - type: Transform + pos: 4.5,10.5 parent: 281 - type: Transform - uid: 580 components: - - pos: 4.5,11.5 + - type: Transform + pos: 4.5,11.5 parent: 281 - type: Transform - uid: 581 components: - - pos: 4.5,12.5 + - type: Transform + pos: 4.5,12.5 parent: 281 - type: Transform - uid: 582 components: - - pos: 4.5,13.5 + - type: Transform + pos: 4.5,13.5 parent: 281 - type: Transform - uid: 583 components: - - pos: 4.5,14.5 + - type: Transform + pos: 4.5,14.5 parent: 281 - type: Transform - uid: 584 components: - - pos: 4.5,15.5 + - type: Transform + pos: 4.5,15.5 parent: 281 - type: Transform - uid: 585 components: - - pos: 4.5,16.5 + - type: Transform + pos: 4.5,16.5 parent: 281 - type: Transform - uid: 586 components: - - pos: 4.5,17.5 + - type: Transform + pos: 4.5,17.5 parent: 281 - type: Transform - uid: 587 components: - - pos: 3.5,11.5 + - type: Transform + pos: 3.5,11.5 parent: 281 - type: Transform - uid: 588 components: - - pos: 2.5,11.5 + - type: Transform + pos: 2.5,11.5 parent: 281 - type: Transform - uid: 589 components: - - pos: 1.5,11.5 + - type: Transform + pos: 1.5,11.5 parent: 281 - type: Transform - uid: 590 components: - - pos: 0.5,11.5 + - type: Transform + pos: 0.5,11.5 parent: 281 - type: Transform - uid: 591 components: - - pos: -0.5,11.5 + - type: Transform + pos: -0.5,11.5 parent: 281 - type: Transform - uid: 592 components: - - pos: -1.5,11.5 + - type: Transform + pos: -1.5,11.5 parent: 281 - type: Transform - uid: 593 components: - - pos: -2.5,11.5 + - type: Transform + pos: -2.5,11.5 parent: 281 - type: Transform - uid: 594 components: - - pos: 5.5,11.5 + - type: Transform + pos: 5.5,11.5 parent: 281 - type: Transform - uid: 595 components: - - pos: 6.5,11.5 + - type: Transform + pos: 6.5,11.5 parent: 281 - type: Transform - uid: 596 components: - - pos: 7.5,11.5 + - type: Transform + pos: 7.5,11.5 parent: 281 - type: Transform - uid: 597 components: - - pos: 8.5,11.5 + - type: Transform + pos: 8.5,11.5 parent: 281 - type: Transform - uid: 598 components: - - pos: 9.5,11.5 + - type: Transform + pos: 9.5,11.5 parent: 281 - type: Transform - uid: 599 components: - - pos: 10.5,11.5 + - type: Transform + pos: 10.5,11.5 parent: 281 - type: Transform - uid: 600 components: - - pos: 11.5,11.5 + - type: Transform + pos: 11.5,11.5 parent: 281 - type: Transform - uid: 601 components: - - pos: 3.5,17.5 + - type: Transform + pos: 3.5,17.5 parent: 281 - type: Transform - uid: 602 components: - - pos: 2.5,17.5 + - type: Transform + pos: 2.5,17.5 parent: 281 - type: Transform - uid: 603 components: - - pos: 1.5,17.5 + - type: Transform + pos: 1.5,17.5 parent: 281 - type: Transform - uid: 604 components: - - pos: 0.5,17.5 + - type: Transform + pos: 0.5,17.5 parent: 281 - type: Transform - uid: 605 components: - - pos: -0.5,17.5 + - type: Transform + pos: -0.5,17.5 parent: 281 - type: Transform - uid: 606 components: - - pos: -1.5,17.5 + - type: Transform + pos: -1.5,17.5 parent: 281 - type: Transform - uid: 607 components: - - pos: -2.5,17.5 + - type: Transform + pos: -2.5,17.5 parent: 281 - type: Transform - uid: 608 components: - - pos: 5.5,17.5 + - type: Transform + pos: 5.5,17.5 parent: 281 - type: Transform - uid: 609 components: - - pos: 6.5,17.5 + - type: Transform + pos: 6.5,17.5 parent: 281 - type: Transform - uid: 610 components: - - pos: 7.5,17.5 + - type: Transform + pos: 7.5,17.5 parent: 281 - type: Transform - uid: 611 components: - - pos: 8.5,17.5 + - type: Transform + pos: 8.5,17.5 parent: 281 - type: Transform - uid: 612 components: - - pos: 9.5,17.5 + - type: Transform + pos: 9.5,17.5 parent: 281 - type: Transform - uid: 613 components: - - pos: 10.5,17.5 + - type: Transform + pos: 10.5,17.5 parent: 281 - type: Transform - uid: 614 components: - - pos: 11.5,17.5 + - type: Transform + pos: 11.5,17.5 parent: 281 - type: Transform - uid: 681 components: - - pos: 2.5,1.5 + - type: Transform + pos: 2.5,1.5 parent: 281 - type: Transform - uid: 682 components: - - pos: 3.5,0.5 + - type: Transform + pos: 3.5,0.5 parent: 281 - type: Transform - uid: 767 components: - - pos: 6.5,-2.5 + - type: Transform + pos: 6.5,-2.5 parent: 281 - type: Transform - uid: 768 components: - - pos: 6.5,-3.5 + - type: Transform + pos: 6.5,-3.5 parent: 281 - type: Transform - uid: 769 components: - - pos: 6.5,-4.5 + - type: Transform + pos: 6.5,-4.5 parent: 281 - type: Transform - uid: 770 components: - - pos: 6.5,-5.5 + - type: Transform + pos: 6.5,-5.5 parent: 281 - type: Transform - uid: 771 components: - - pos: 6.5,-6.5 + - type: Transform + pos: 6.5,-6.5 parent: 281 - type: Transform - uid: 772 components: - - pos: 6.5,-7.5 + - type: Transform + pos: 6.5,-7.5 parent: 281 - type: Transform - uid: 773 components: - - pos: 6.5,-8.5 + - type: Transform + pos: 6.5,-8.5 parent: 281 - type: Transform - uid: 774 components: - - pos: 7.5,-6.5 + - type: Transform + pos: 7.5,-6.5 parent: 281 - type: Transform - uid: 775 components: - - pos: 8.5,-6.5 + - type: Transform + pos: 8.5,-6.5 parent: 281 - type: Transform - uid: 776 components: - - pos: 9.5,-6.5 + - type: Transform + pos: 9.5,-6.5 parent: 281 - type: Transform - uid: 777 components: - - pos: 9.5,-7.5 + - type: Transform + pos: 9.5,-7.5 parent: 281 - type: Transform - uid: 778 components: - - pos: 5.5,-8.5 + - type: Transform + pos: 5.5,-8.5 parent: 281 - type: Transform - uid: 779 components: - - pos: 5.5,-9.5 + - type: Transform + pos: 5.5,-9.5 parent: 281 - type: Transform - uid: 780 components: - - pos: 5.5,-10.5 + - type: Transform + pos: 5.5,-10.5 parent: 281 - type: Transform - uid: 781 components: - - pos: 2.5,-2.5 + - type: Transform + pos: 2.5,-2.5 parent: 281 - type: Transform - uid: 782 components: - - pos: 2.5,-3.5 + - type: Transform + pos: 2.5,-3.5 parent: 281 - type: Transform - uid: 783 components: - - pos: 2.5,-4.5 + - type: Transform + pos: 2.5,-4.5 parent: 281 - type: Transform - uid: 784 components: - - pos: 2.5,-5.5 + - type: Transform + pos: 2.5,-5.5 parent: 281 - type: Transform - uid: 785 components: - - pos: 2.5,-6.5 + - type: Transform + pos: 2.5,-6.5 parent: 281 - type: Transform - uid: 786 components: - - pos: 2.5,-7.5 + - type: Transform + pos: 2.5,-7.5 parent: 281 - type: Transform - uid: 787 components: - - pos: 2.5,-8.5 + - type: Transform + pos: 2.5,-8.5 parent: 281 - type: Transform - uid: 788 components: - - pos: 3.5,-8.5 + - type: Transform + pos: 3.5,-8.5 parent: 281 - type: Transform - uid: 789 components: - - pos: 3.5,-9.5 + - type: Transform + pos: 3.5,-9.5 parent: 281 - type: Transform - uid: 790 components: - - pos: 3.5,-10.5 + - type: Transform + pos: 3.5,-10.5 parent: 281 - type: Transform - uid: 791 components: - - pos: 1.5,-6.5 + - type: Transform + pos: 1.5,-6.5 parent: 281 - type: Transform - uid: 792 components: - - pos: 0.5,-6.5 + - type: Transform + pos: 0.5,-6.5 parent: 281 - type: Transform - uid: 793 components: - - pos: -0.5,-6.5 + - type: Transform + pos: -0.5,-6.5 parent: 281 - type: Transform - uid: 794 components: - - pos: -0.5,-7.5 + - type: Transform + pos: -0.5,-7.5 parent: 281 - type: Transform - uid: 795 components: - - pos: -0.5,-5.5 + - type: Transform + pos: -0.5,-5.5 parent: 281 - type: Transform - uid: 797 components: - - pos: 2.5,-0.5 + - type: Transform + pos: 2.5,-0.5 parent: 281 - type: Transform - uid: 798 components: - - pos: 1.5,-0.5 + - type: Transform + pos: 1.5,-0.5 parent: 281 - type: Transform - uid: 799 components: - - pos: 0.5,-0.5 + - type: Transform + pos: 0.5,-0.5 parent: 281 - type: Transform - uid: 800 components: - - pos: -0.5,-0.5 + - type: Transform + pos: -0.5,-0.5 parent: 281 - type: Transform - uid: 801 components: - - pos: -1.5,-0.5 + - type: Transform + pos: -1.5,-0.5 parent: 281 - type: Transform - uid: 802 components: - - pos: 2.5,0.5 + - type: Transform + pos: 2.5,0.5 parent: 281 - type: Transform - uid: 803 components: - - pos: 6.5,-2.5 + - type: Transform + pos: 6.5,-2.5 parent: 281 - type: Transform - uid: 804 components: - - pos: 6.5,-1.5 + - type: Transform + pos: 6.5,-1.5 parent: 281 - type: Transform - uid: 805 components: - - pos: 6.5,-0.5 + - type: Transform + pos: 6.5,-0.5 parent: 281 - type: Transform - uid: 806 components: - - pos: 6.5,0.5 + - type: Transform + pos: 6.5,0.5 parent: 281 - type: Transform - uid: 807 components: - - pos: 7.5,-0.5 + - type: Transform + pos: 7.5,-0.5 parent: 281 - type: Transform - uid: 808 components: - - pos: 8.5,-0.5 + - type: Transform + pos: 8.5,-0.5 parent: 281 - type: Transform - uid: 809 components: - - pos: 9.5,-0.5 + - type: Transform + pos: 9.5,-0.5 parent: 281 - type: Transform - uid: 810 components: - - pos: 10.5,-0.5 + - type: Transform + pos: 10.5,-0.5 parent: 281 - type: Transform - uid: 811 components: - - pos: 3.5,-0.5 + - type: Transform + pos: 3.5,-0.5 parent: 281 - type: Transform - uid: 812 components: - - pos: 5.5,-0.5 + - type: Transform + pos: 5.5,-0.5 parent: 281 - type: Transform - uid: 813 components: - - pos: 5.5,8.5 + - type: Transform + pos: 5.5,8.5 parent: 281 - type: Transform - uid: 814 components: - - pos: 4.5,8.5 + - type: Transform + pos: 4.5,8.5 parent: 281 - type: Transform - uid: 815 components: - - pos: 4.5,7.5 + - type: Transform + pos: 4.5,7.5 parent: 281 - type: Transform - uid: 816 components: - - pos: 4.5,6.5 + - type: Transform + pos: 4.5,6.5 parent: 281 - type: Transform - uid: 817 components: - - pos: 4.5,5.5 + - type: Transform + pos: 4.5,5.5 parent: 281 - type: Transform - uid: 818 components: - - pos: 3.5,5.5 + - type: Transform + pos: 3.5,5.5 parent: 281 - type: Transform - uid: 819 components: - - pos: 2.5,5.5 + - type: Transform + pos: 2.5,5.5 parent: 281 - type: Transform - uid: 820 components: - - pos: 1.5,5.5 + - type: Transform + pos: 1.5,5.5 parent: 281 - type: Transform - uid: 821 components: - - pos: 1.5,4.5 + - type: Transform + pos: 1.5,4.5 parent: 281 - type: Transform - uid: 822 components: - - pos: 0.5,4.5 + - type: Transform + pos: 0.5,4.5 parent: 281 - type: Transform - uid: 823 components: - - pos: -0.5,4.5 + - type: Transform + pos: -0.5,4.5 parent: 281 - type: Transform - uid: 824 components: - - pos: -1.5,4.5 + - type: Transform + pos: -1.5,4.5 parent: 281 - type: Transform - uid: 825 components: - - pos: 5.5,5.5 + - type: Transform + pos: 5.5,5.5 parent: 281 - type: Transform - uid: 826 components: - - pos: 6.5,5.5 + - type: Transform + pos: 6.5,5.5 parent: 281 - type: Transform - uid: 827 components: - - pos: 7.5,5.5 + - type: Transform + pos: 7.5,5.5 parent: 281 - type: Transform - uid: 828 components: - - pos: 7.5,4.5 + - type: Transform + pos: 7.5,4.5 parent: 281 - type: Transform - uid: 829 components: - - pos: 8.5,4.5 + - type: Transform + pos: 8.5,4.5 parent: 281 - type: Transform - uid: 830 components: - - pos: 9.5,4.5 + - type: Transform + pos: 9.5,4.5 parent: 281 - type: Transform - uid: 831 components: - - pos: 10.5,4.5 + - type: Transform + pos: 10.5,4.5 parent: 281 - type: Transform - uid: 832 components: - - pos: 10.5,5.5 + - type: Transform + pos: 10.5,5.5 parent: 281 - type: Transform - uid: 833 components: - - pos: 10.5,6.5 + - type: Transform + pos: 10.5,6.5 parent: 281 - type: Transform - uid: 834 components: - - pos: 10.5,7.5 + - type: Transform + pos: 10.5,7.5 parent: 281 - type: Transform - uid: 835 components: - - pos: 10.5,8.5 + - type: Transform + pos: 10.5,8.5 parent: 281 - type: Transform - uid: 836 components: - - pos: -1.5,5.5 + - type: Transform + pos: -1.5,5.5 parent: 281 - type: Transform - uid: 837 components: - - pos: -1.5,6.5 + - type: Transform + pos: -1.5,6.5 parent: 281 - type: Transform - uid: 838 components: - - pos: -1.5,7.5 + - type: Transform + pos: -1.5,7.5 parent: 281 - type: Transform - uid: 839 components: - - pos: -1.5,8.5 + - type: Transform + pos: -1.5,8.5 parent: 281 - type: Transform - uid: 840 components: - - pos: -0.5,8.5 + - type: Transform + pos: -0.5,8.5 parent: 281 - type: Transform - uid: 841 components: - - pos: 0.5,8.5 + - type: Transform + pos: 0.5,8.5 parent: 281 - type: Transform - uid: 842 components: - - pos: 1.5,8.5 + - type: Transform + pos: 1.5,8.5 parent: 281 - type: Transform - uid: 843 components: - - pos: 2.5,8.5 + - type: Transform + pos: 2.5,8.5 parent: 281 - type: Transform - uid: 844 components: - - pos: 9.5,8.5 + - type: Transform + pos: 9.5,8.5 parent: 281 - type: Transform - uid: 845 components: - - pos: 8.5,8.5 + - type: Transform + pos: 8.5,8.5 parent: 281 - type: Transform - uid: 846 components: - - pos: 7.5,8.5 + - type: Transform + pos: 7.5,8.5 parent: 281 - type: Transform - uid: 847 components: - - pos: 6.5,8.5 + - type: Transform + pos: 6.5,8.5 parent: 281 - type: Transform - proto: CableHV entities: - uid: 451 components: - - pos: -3.5,19.5 + - type: Transform + pos: -3.5,19.5 parent: 281 - type: Transform - uid: 452 components: - - pos: -2.5,19.5 + - type: Transform + pos: -2.5,19.5 parent: 281 - type: Transform - uid: 453 components: - - pos: -1.5,19.5 + - type: Transform + pos: -1.5,19.5 parent: 281 - type: Transform - uid: 454 components: - - pos: -0.5,19.5 + - type: Transform + pos: -0.5,19.5 parent: 281 - type: Transform - uid: 455 components: - - pos: 0.5,19.5 + - type: Transform + pos: 0.5,19.5 parent: 281 - type: Transform - uid: 456 components: - - pos: 1.5,19.5 + - type: Transform + pos: 1.5,19.5 parent: 281 - type: Transform - uid: 457 components: - - pos: 2.5,19.5 + - type: Transform + pos: 2.5,19.5 parent: 281 - type: Transform - uid: 458 components: - - pos: 3.5,19.5 + - type: Transform + pos: 3.5,19.5 parent: 281 - type: Transform - uid: 459 components: - - pos: -3.5,17.5 + - type: Transform + pos: -3.5,17.5 parent: 281 - type: Transform - uid: 460 components: - - pos: -2.5,17.5 + - type: Transform + pos: -2.5,17.5 parent: 281 - type: Transform - uid: 461 components: - - pos: -1.5,17.5 + - type: Transform + pos: -1.5,17.5 parent: 281 - type: Transform - uid: 462 components: - - pos: -0.5,17.5 + - type: Transform + pos: -0.5,17.5 parent: 281 - type: Transform - uid: 463 components: - - pos: 0.5,17.5 + - type: Transform + pos: 0.5,17.5 parent: 281 - type: Transform - uid: 464 components: - - pos: 1.5,17.5 + - type: Transform + pos: 1.5,17.5 parent: 281 - type: Transform - uid: 465 components: - - pos: 2.5,17.5 + - type: Transform + pos: 2.5,17.5 parent: 281 - type: Transform - uid: 466 components: - - pos: 3.5,17.5 + - type: Transform + pos: 3.5,17.5 parent: 281 - type: Transform - uid: 467 components: - - pos: 5.5,19.5 + - type: Transform + pos: 5.5,19.5 parent: 281 - type: Transform - uid: 468 components: - - pos: 6.5,19.5 + - type: Transform + pos: 6.5,19.5 parent: 281 - type: Transform - uid: 469 components: - - pos: 7.5,19.5 + - type: Transform + pos: 7.5,19.5 parent: 281 - type: Transform - uid: 470 components: - - pos: 8.5,19.5 + - type: Transform + pos: 8.5,19.5 parent: 281 - type: Transform - uid: 471 components: - - pos: 9.5,19.5 + - type: Transform + pos: 9.5,19.5 parent: 281 - type: Transform - uid: 472 components: - - pos: 10.5,19.5 + - type: Transform + pos: 10.5,19.5 parent: 281 - type: Transform - uid: 473 components: - - pos: 11.5,19.5 + - type: Transform + pos: 11.5,19.5 parent: 281 - type: Transform - uid: 474 components: - - pos: 12.5,19.5 + - type: Transform + pos: 12.5,19.5 parent: 281 - type: Transform - uid: 475 components: - - pos: 5.5,17.5 + - type: Transform + pos: 5.5,17.5 parent: 281 - type: Transform - uid: 476 components: - - pos: 6.5,17.5 + - type: Transform + pos: 6.5,17.5 parent: 281 - type: Transform - uid: 477 components: - - pos: 7.5,17.5 + - type: Transform + pos: 7.5,17.5 parent: 281 - type: Transform - uid: 478 components: - - pos: 8.5,17.5 + - type: Transform + pos: 8.5,17.5 parent: 281 - type: Transform - uid: 479 components: - - pos: 9.5,17.5 + - type: Transform + pos: 9.5,17.5 parent: 281 - type: Transform - uid: 480 components: - - pos: 10.5,17.5 + - type: Transform + pos: 10.5,17.5 parent: 281 - type: Transform - uid: 481 components: - - pos: 11.5,17.5 + - type: Transform + pos: 11.5,17.5 parent: 281 - type: Transform - uid: 482 components: - - pos: 12.5,17.5 + - type: Transform + pos: 12.5,17.5 parent: 281 - type: Transform - uid: 483 components: - - pos: 4.5,19.5 + - type: Transform + pos: 4.5,19.5 parent: 281 - type: Transform - uid: 484 components: - - pos: 4.5,18.5 + - type: Transform + pos: 4.5,18.5 parent: 281 - type: Transform - uid: 485 components: - - pos: 4.5,17.5 + - type: Transform + pos: 4.5,17.5 parent: 281 - type: Transform - uid: 486 components: - - pos: 4.5,16.5 + - type: Transform + pos: 4.5,16.5 parent: 281 - type: Transform - uid: 487 components: - - pos: 4.5,15.5 + - type: Transform + pos: 4.5,15.5 parent: 281 - type: Transform - uid: 488 components: - - pos: 4.5,14.5 + - type: Transform + pos: 4.5,14.5 parent: 281 - type: Transform - uid: 489 components: - - pos: 4.5,13.5 + - type: Transform + pos: 4.5,13.5 parent: 281 - type: Transform - uid: 490 components: - - pos: 4.5,12.5 + - type: Transform + pos: 4.5,12.5 parent: 281 - type: Transform - uid: 491 components: - - pos: 4.5,11.5 + - type: Transform + pos: 4.5,11.5 parent: 281 - type: Transform - uid: 492 components: - - pos: 4.5,10.5 + - type: Transform + pos: 4.5,10.5 parent: 281 - type: Transform - uid: 493 components: - - pos: 4.5,9.5 + - type: Transform + pos: 4.5,9.5 parent: 281 - type: Transform - uid: 494 components: - - pos: 4.5,8.5 + - type: Transform + pos: 4.5,8.5 parent: 281 - type: Transform - uid: 495 components: - - pos: 4.5,7.5 + - type: Transform + pos: 4.5,7.5 parent: 281 - type: Transform - uid: 496 components: - - pos: 4.5,6.5 + - type: Transform + pos: 4.5,6.5 parent: 281 - type: Transform - uid: 497 components: - - pos: 4.5,5.5 + - type: Transform + pos: 4.5,5.5 parent: 281 - type: Transform - uid: 498 components: - - pos: 5.5,5.5 + - type: Transform + pos: 5.5,5.5 parent: 281 - type: Transform - uid: 499 components: - - pos: 6.5,5.5 + - type: Transform + pos: 6.5,5.5 parent: 281 - type: Transform - uid: 500 components: - - pos: 7.5,5.5 + - type: Transform + pos: 7.5,5.5 parent: 281 - type: Transform - uid: 501 components: - - pos: 7.5,4.5 + - type: Transform + pos: 7.5,4.5 parent: 281 - type: Transform - uid: 510 components: - - pos: -2.5,16.5 + - type: Transform + pos: -2.5,16.5 parent: 281 - type: Transform - uid: 511 components: - - pos: -2.5,15.5 + - type: Transform + pos: -2.5,15.5 parent: 281 - type: Transform - uid: 512 components: - - pos: -2.5,14.5 + - type: Transform + pos: -2.5,14.5 parent: 281 - type: Transform - uid: 513 components: - - pos: -2.5,13.5 + - type: Transform + pos: -2.5,13.5 parent: 281 - type: Transform - uid: 514 components: - - pos: -2.5,12.5 + - type: Transform + pos: -2.5,12.5 parent: 281 - type: Transform - uid: 515 components: - - pos: 11.5,16.5 + - type: Transform + pos: 11.5,16.5 parent: 281 - type: Transform - uid: 516 components: - - pos: 11.5,15.5 + - type: Transform + pos: 11.5,15.5 parent: 281 - type: Transform - uid: 517 components: - - pos: 11.5,14.5 + - type: Transform + pos: 11.5,14.5 parent: 281 - type: Transform - uid: 518 components: - - pos: 11.5,13.5 + - type: Transform + pos: 11.5,13.5 parent: 281 - type: Transform - uid: 519 components: - - pos: 11.5,12.5 + - type: Transform + pos: 11.5,12.5 parent: 281 - type: Transform - uid: 520 components: - - pos: 11.5,11.5 + - type: Transform + pos: 11.5,11.5 parent: 281 - type: Transform - uid: 521 components: - - pos: 10.5,11.5 + - type: Transform + pos: 10.5,11.5 parent: 281 - type: Transform - uid: 522 components: - - pos: 9.5,11.5 + - type: Transform + pos: 9.5,11.5 parent: 281 - type: Transform - uid: 523 components: - - pos: 8.5,11.5 + - type: Transform + pos: 8.5,11.5 parent: 281 - type: Transform - uid: 524 components: - - pos: 7.5,11.5 + - type: Transform + pos: 7.5,11.5 parent: 281 - type: Transform - uid: 525 components: - - pos: 6.5,11.5 + - type: Transform + pos: 6.5,11.5 parent: 281 - type: Transform - uid: 526 components: - - pos: 5.5,11.5 + - type: Transform + pos: 5.5,11.5 parent: 281 - type: Transform - uid: 527 components: - - pos: 3.5,11.5 + - type: Transform + pos: 3.5,11.5 parent: 281 - type: Transform - uid: 528 components: - - pos: 2.5,11.5 + - type: Transform + pos: 2.5,11.5 parent: 281 - type: Transform - uid: 529 components: - - pos: 1.5,11.5 + - type: Transform + pos: 1.5,11.5 parent: 281 - type: Transform - uid: 530 components: - - pos: 0.5,11.5 + - type: Transform + pos: 0.5,11.5 parent: 281 - type: Transform - uid: 531 components: - - pos: -0.5,11.5 + - type: Transform + pos: -0.5,11.5 parent: 281 - type: Transform - uid: 532 components: - - pos: -1.5,11.5 + - type: Transform + pos: -1.5,11.5 parent: 281 - type: Transform - uid: 533 components: - - pos: -2.5,11.5 + - type: Transform + pos: -2.5,11.5 parent: 281 - type: Transform - uid: 537 components: - - pos: 8.5,4.5 + - type: Transform + pos: 8.5,4.5 parent: 281 - type: Transform - uid: 538 components: - - pos: 3.5,5.5 + - type: Transform + pos: 3.5,5.5 parent: 281 - type: Transform - uid: 539 components: - - pos: 2.5,5.5 + - type: Transform + pos: 2.5,5.5 parent: 281 - type: Transform - uid: 540 components: - - pos: 1.5,5.5 + - type: Transform + pos: 1.5,5.5 parent: 281 - type: Transform - uid: 541 components: - - pos: 1.5,4.5 + - type: Transform + pos: 1.5,4.5 parent: 281 - type: Transform - uid: 546 components: - - pos: 9.5,4.5 + - type: Transform + pos: 9.5,4.5 parent: 281 - type: Transform - uid: 547 components: - - pos: 10.5,4.5 + - type: Transform + pos: 10.5,4.5 parent: 281 - type: Transform - proto: CableMV entities: - uid: 548 components: - - pos: 10.5,4.5 + - type: Transform + pos: 10.5,4.5 parent: 281 - type: Transform - uid: 549 components: - - pos: 10.5,5.5 + - type: Transform + pos: 10.5,5.5 parent: 281 - type: Transform - uid: 550 components: - - pos: 9.5,5.5 + - type: Transform + pos: 9.5,5.5 parent: 281 - type: Transform - uid: 551 components: - - pos: 8.5,5.5 + - type: Transform + pos: 8.5,5.5 parent: 281 - type: Transform - uid: 552 components: - - pos: 7.5,5.5 + - type: Transform + pos: 7.5,5.5 parent: 281 - type: Transform - uid: 553 components: - - pos: 6.5,5.5 + - type: Transform + pos: 6.5,5.5 parent: 281 - type: Transform - uid: 554 components: - - pos: 5.5,5.5 + - type: Transform + pos: 5.5,5.5 parent: 281 - type: Transform - uid: 555 components: - - pos: 4.5,5.5 + - type: Transform + pos: 4.5,5.5 parent: 281 - type: Transform - uid: 556 components: - - pos: 4.5,6.5 + - type: Transform + pos: 4.5,6.5 parent: 281 - type: Transform - uid: 557 components: - - pos: 4.5,7.5 + - type: Transform + pos: 4.5,7.5 parent: 281 - type: Transform - uid: 558 components: - - pos: 4.5,8.5 + - type: Transform + pos: 4.5,8.5 parent: 281 - type: Transform - uid: 559 components: - - pos: 5.5,8.5 + - type: Transform + pos: 5.5,8.5 parent: 281 - type: Transform - uid: 560 components: - - pos: 4.5,4.5 + - type: Transform + pos: 4.5,4.5 parent: 281 - type: Transform - uid: 561 components: - - pos: 4.5,3.5 + - type: Transform + pos: 4.5,3.5 parent: 281 - type: Transform - uid: 562 components: - - pos: 4.5,2.5 + - type: Transform + pos: 4.5,2.5 parent: 281 - type: Transform - uid: 563 components: - - pos: 4.5,1.5 + - type: Transform + pos: 4.5,1.5 parent: 281 - type: Transform - uid: 564 components: - - pos: 4.5,0.5 + - type: Transform + pos: 4.5,0.5 parent: 281 - type: Transform - uid: 565 components: - - pos: 4.5,-0.5 + - type: Transform + pos: 4.5,-0.5 parent: 281 - type: Transform - uid: 566 components: - - pos: 4.5,-1.5 + - type: Transform + pos: 4.5,-1.5 parent: 281 - type: Transform - uid: 567 components: - - pos: 3.5,-1.5 + - type: Transform + pos: 3.5,-1.5 parent: 281 - type: Transform - uid: 568 components: - - pos: 2.5,-1.5 + - type: Transform + pos: 2.5,-1.5 parent: 281 - type: Transform - uid: 569 components: - - pos: 1.5,-1.5 + - type: Transform + pos: 1.5,-1.5 parent: 281 - type: Transform - uid: 570 components: - - pos: 1.5,-2.5 + - type: Transform + pos: 1.5,-2.5 parent: 281 - type: Transform - uid: 571 components: - - pos: 5.5,-1.5 + - type: Transform + pos: 5.5,-1.5 parent: 281 - type: Transform - uid: 572 components: - - pos: 6.5,-1.5 + - type: Transform + pos: 6.5,-1.5 parent: 281 - type: Transform - uid: 573 components: - - pos: 6.5,-2.5 + - type: Transform + pos: 6.5,-2.5 parent: 281 - type: Transform - uid: 574 components: - - pos: 3.5,-2.5 + - type: Transform + pos: 3.5,-2.5 parent: 281 - type: Transform - uid: 622 components: - - pos: 2.5,0.5 + - type: Transform + pos: 2.5,0.5 parent: 281 - type: Transform - uid: 742 components: - - pos: 2.5,1.5 + - type: Transform + pos: 2.5,1.5 parent: 281 - type: Transform - uid: 766 components: - - pos: 2.5,-2.5 + - type: Transform + pos: 2.5,-2.5 parent: 281 - type: Transform - uid: 796 components: - - pos: 3.5,0.5 + - type: Transform + pos: 3.5,0.5 parent: 281 - type: Transform - proto: CableTerminal entities: - uid: 545 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,4.5 parent: 281 - type: Transform - proto: Catwalk entities: - uid: 231 components: - - pos: -3.5,18.5 + - type: Transform + pos: -3.5,18.5 parent: 281 - type: Transform - uid: 373 components: - - pos: -2.5,18.5 + - type: Transform + pos: -2.5,18.5 parent: 281 - type: Transform - uid: 374 components: - - pos: -1.5,18.5 + - type: Transform + pos: -1.5,18.5 parent: 281 - type: Transform - uid: 375 components: - - pos: -0.5,18.5 + - type: Transform + pos: -0.5,18.5 parent: 281 - type: Transform - uid: 376 components: - - pos: 0.5,18.5 + - type: Transform + pos: 0.5,18.5 parent: 281 - type: Transform - uid: 377 components: - - pos: 1.5,18.5 + - type: Transform + pos: 1.5,18.5 parent: 281 - type: Transform - uid: 378 components: - - pos: 2.5,18.5 + - type: Transform + pos: 2.5,18.5 parent: 281 - type: Transform - uid: 379 components: - - pos: 3.5,18.5 + - type: Transform + pos: 3.5,18.5 parent: 281 - type: Transform - uid: 380 components: - - pos: 4.5,18.5 + - type: Transform + pos: 4.5,18.5 parent: 281 - type: Transform - uid: 381 components: - - pos: 5.5,18.5 + - type: Transform + pos: 5.5,18.5 parent: 281 - type: Transform - uid: 382 components: - - pos: 6.5,18.5 + - type: Transform + pos: 6.5,18.5 parent: 281 - type: Transform - uid: 383 components: - - pos: 7.5,18.5 + - type: Transform + pos: 7.5,18.5 parent: 281 - type: Transform - uid: 384 components: - - pos: 8.5,18.5 + - type: Transform + pos: 8.5,18.5 parent: 281 - type: Transform - uid: 385 components: - - pos: 9.5,18.5 + - type: Transform + pos: 9.5,18.5 parent: 281 - type: Transform - uid: 386 components: - - pos: 10.5,18.5 + - type: Transform + pos: 10.5,18.5 parent: 281 - type: Transform - uid: 387 components: - - pos: 11.5,18.5 + - type: Transform + pos: 11.5,18.5 parent: 281 - type: Transform - uid: 388 components: - - pos: 12.5,18.5 + - type: Transform + pos: 12.5,18.5 parent: 281 - type: Transform - uid: 389 components: - - pos: 4.5,19.5 + - type: Transform + pos: 4.5,19.5 parent: 281 - type: Transform - uid: 390 components: - - pos: 4.5,17.5 + - type: Transform + pos: 4.5,17.5 parent: 281 - type: Transform - uid: 391 components: - - pos: 4.5,16.5 + - type: Transform + pos: 4.5,16.5 parent: 281 - type: Transform - uid: 392 components: - - pos: 4.5,15.5 + - type: Transform + pos: 4.5,15.5 parent: 281 - type: Transform - uid: 393 components: - - pos: 4.5,14.5 + - type: Transform + pos: 4.5,14.5 parent: 281 - type: Transform - uid: 394 components: - - pos: 4.5,13.5 + - type: Transform + pos: 4.5,13.5 parent: 281 - type: Transform - uid: 395 components: - - pos: 4.5,12.5 + - type: Transform + pos: 4.5,12.5 parent: 281 - type: Transform - uid: 396 components: - - pos: 4.5,11.5 + - type: Transform + pos: 4.5,11.5 parent: 281 - type: Transform - uid: 397 components: - - pos: 3.5,11.5 + - type: Transform + pos: 3.5,11.5 parent: 281 - type: Transform - uid: 398 components: - - pos: 2.5,11.5 + - type: Transform + pos: 2.5,11.5 parent: 281 - type: Transform - uid: 399 components: - - pos: 2.5,10.5 + - type: Transform + pos: 2.5,10.5 parent: 281 - type: Transform - uid: 400 components: - - pos: 1.5,10.5 + - type: Transform + pos: 1.5,10.5 parent: 281 - type: Transform - uid: 401 components: - - pos: 0.5,10.5 + - type: Transform + pos: 0.5,10.5 parent: 281 - type: Transform - uid: 403 components: - - pos: -1.5,11.5 + - type: Transform + pos: -1.5,11.5 parent: 281 - type: Transform - uid: 404 components: - - pos: 0.5,11.5 + - type: Transform + pos: 0.5,11.5 parent: 281 - type: Transform - uid: 405 components: - - pos: 1.5,11.5 + - type: Transform + pos: 1.5,11.5 parent: 281 - type: Transform - uid: 406 components: - - pos: 5.5,11.5 + - type: Transform + pos: 5.5,11.5 parent: 281 - type: Transform - uid: 407 components: - - pos: 6.5,11.5 + - type: Transform + pos: 6.5,11.5 parent: 281 - type: Transform - uid: 408 components: - - pos: 6.5,10.5 + - type: Transform + pos: 6.5,10.5 parent: 281 - type: Transform - uid: 409 components: - - pos: 7.5,11.5 + - type: Transform + pos: 7.5,11.5 parent: 281 - type: Transform - uid: 410 components: - - pos: 7.5,10.5 + - type: Transform + pos: 7.5,10.5 parent: 281 - type: Transform - uid: 411 components: - - pos: 8.5,11.5 + - type: Transform + pos: 8.5,11.5 parent: 281 - type: Transform - uid: 412 components: - - pos: 8.5,10.5 + - type: Transform + pos: 8.5,10.5 parent: 281 - type: Transform - uid: 413 components: - - pos: 9.5,11.5 + - type: Transform + pos: 9.5,11.5 parent: 281 - type: Transform - uid: 414 components: - - pos: 9.5,10.5 + - type: Transform + pos: 9.5,10.5 parent: 281 - type: Transform - uid: 415 components: - - pos: 10.5,11.5 + - type: Transform + pos: 10.5,11.5 parent: 281 - type: Transform - uid: 416 components: - - pos: 10.5,10.5 + - type: Transform + pos: 10.5,10.5 parent: 281 - type: Transform - uid: 417 components: - - pos: -0.5,11.5 + - type: Transform + pos: -0.5,11.5 parent: 281 - type: Transform - uid: 418 components: - - pos: -1.5,10.5 + - type: Transform + pos: -1.5,10.5 parent: 281 - type: Transform - uid: 419 components: - - pos: -0.5,10.5 + - type: Transform + pos: -0.5,10.5 parent: 281 - type: Transform - uid: 656 components: - - pos: 3.5,5.5 + - type: Transform + pos: 3.5,5.5 parent: 281 - type: Transform - uid: 657 components: - - pos: 3.5,6.5 + - type: Transform + pos: 3.5,6.5 parent: 281 - type: Transform - uid: 658 components: - - pos: 3.5,7.5 + - type: Transform + pos: 3.5,7.5 parent: 281 - type: Transform - uid: 659 components: - - pos: 4.5,5.5 + - type: Transform + pos: 4.5,5.5 parent: 281 - type: Transform - uid: 660 components: - - pos: 4.5,6.5 + - type: Transform + pos: 4.5,6.5 parent: 281 - type: Transform - uid: 661 components: - - pos: 4.5,7.5 + - type: Transform + pos: 4.5,7.5 parent: 281 - type: Transform - uid: 662 components: - - pos: 5.5,5.5 + - type: Transform + pos: 5.5,5.5 parent: 281 - type: Transform - uid: 663 components: - - pos: 5.5,6.5 + - type: Transform + pos: 5.5,6.5 parent: 281 - type: Transform - uid: 664 components: - - pos: 5.5,7.5 + - type: Transform + pos: 5.5,7.5 parent: 281 - type: Transform - proto: ChairOfficeLight entities: - uid: 647 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,-6.5 parent: 281 - type: Transform - uid: 649 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,-0.5 parent: 281 - type: Transform - proto: ChairPilotSeat entities: - uid: 366 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-0.5 parent: 281 - type: Transform - proto: CircuitImprinter entities: - uid: 358 components: - - pos: 8.5,-7.5 + - type: Transform + pos: 8.5,-7.5 parent: 281 - type: Transform - proto: ClosetRadiationSuitFilled entities: - uid: 854 components: - - pos: 3.5,0.5 + - type: Transform + pos: 3.5,0.5 parent: 281 - type: Transform - proto: ClothingHandsGlovesColorYellow entities: - uid: 860 components: - - pos: -1.5744241,8.588845 + - type: Transform + pos: -1.5744241,8.588845 parent: 281 - type: Transform - proto: ComputerAnalysisConsole entities: - uid: 361 components: - - pos: 1.5,0.5 + - type: Transform + pos: 1.5,0.5 parent: 281 - type: Transform - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 372: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - type: DeviceLinkSource - proto: ComputerResearchAndDevelopment entities: - uid: 371 components: - - pos: 2.5,0.5 - parent: 281 - type: Transform -- proto: ComputerShuttle - entities: - - uid: 278 - components: - - pos: 9.5,0.5 + - type: Transform + pos: 2.5,0.5 parent: 281 - type: Transform - proto: ComputerSolarControl entities: - uid: 542 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,4.5 parent: 281 - type: Transform -- proto: ComputerStationRecords +- proto: ComputerTabletopShuttle entities: - - uid: 325 + - uid: 733 + components: + - type: Transform + pos: 9.5,0.5 + parent: 281 +- proto: ComputerTabletopStationRecords + entities: + - uid: 732 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,-0.5 parent: 281 - type: Transform - proto: DefibrillatorCabinetFilled entities: - uid: 857 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,-4.5 parent: 281 - type: Transform - proto: EngineeringTechFab entities: - uid: 727 components: - - pos: 0.5,4.5 + - type: Transform + pos: 0.5,4.5 + parent: 281 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 parent: 281 - type: Transform - proto: FaxMachineShip entities: - uid: 617 components: - - pos: 1.5,-3.5 + - type: Transform + pos: 1.5,-3.5 parent: 281 - type: Transform - proto: FireAlarm entities: - uid: 724 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,3.5 parent: 281 - type: Transform - - devices: + - type: DeviceList + devices: - 701 - 690 - 699 @@ -2237,1448 +2250,1515 @@ entities: - 707 - 706 - 705 - type: DeviceList + - type: AtmosDevice + joinedGrid: 281 - proto: FireAxeCabinetFilled entities: - uid: 716 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,4.5 parent: 281 - type: Transform - proto: FirelockEdge entities: - uid: 690 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,7.5 parent: 281 - type: Transform - uid: 699 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,6.5 parent: 281 - type: Transform - uid: 700 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,5.5 parent: 281 - type: Transform - uid: 701 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,7.5 parent: 281 - type: Transform - uid: 702 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,6.5 parent: 281 - type: Transform - uid: 703 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,5.5 parent: 281 - type: Transform - uid: 868 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-1.5 parent: 281 - type: Transform - uid: 869 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-0.5 parent: 281 - type: Transform - uid: 870 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,0.5 parent: 281 - type: Transform - uid: 871 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,0.5 parent: 281 - type: Transform - uid: 872 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,-0.5 parent: 281 - type: Transform - uid: 873 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,-1.5 parent: 281 - type: Transform - proto: FirelockGlass entities: - uid: 704 components: - - pos: 4.5,4.5 + - type: Transform + pos: 4.5,4.5 parent: 281 - type: Transform - uid: 705 components: - - pos: 3.5,-2.5 + - type: Transform + pos: 3.5,-2.5 parent: 281 - type: Transform - uid: 706 components: - - pos: 5.5,-2.5 + - type: Transform + pos: 5.5,-2.5 parent: 281 - type: Transform - uid: 707 components: - - pos: 4.5,1.5 + - type: Transform + pos: 4.5,1.5 parent: 281 - type: Transform - proto: GasAnalyzer entities: - uid: 740 components: - - pos: -1.412372,8.422175 + - type: Transform + pos: -1.412372,8.422175 parent: 281 - type: Transform - proto: GasFilterFlipped entities: - uid: 171 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,6.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 281 + - type: AtmosPipeColor + color: '#990000FF' - uid: 187 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,6.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 193 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,6.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 194 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,6.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - proto: GasMixerFlipped entities: - uid: 180 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,5.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 281 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasOutletInjector entities: - uid: 224 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,14.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 225 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,14.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 226 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,14.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 227 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,14.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - proto: GasPassiveVent entities: - uid: 192 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,6.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 220 components: - - pos: -0.5,13.5 + - type: Transform + pos: -0.5,13.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 221 components: - - pos: 1.5,13.5 + - type: Transform + pos: 1.5,13.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 222 components: - - pos: 7.5,13.5 + - type: Transform + pos: 7.5,13.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 223 components: - - pos: 9.5,13.5 + - type: Transform + pos: 9.5,13.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 623 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,0.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 281 + - type: AtmosPipeColor + color: '#990000FF' - uid: 624 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-1.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - proto: GasPipeBend entities: - uid: 173 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,4.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 174 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,6.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 178 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,5.5 parent: 281 - type: Transform - uid: 216 components: - - pos: 8.5,14.5 + - type: Transform + pos: 8.5,14.5 parent: 281 - type: Transform - uid: 217 components: - - pos: 10.5,14.5 + - type: Transform + pos: 10.5,14.5 parent: 281 - type: Transform - uid: 218 components: - - pos: 2.5,14.5 + - type: Transform + pos: 2.5,14.5 parent: 281 - type: Transform - uid: 219 components: - - pos: 0.5,14.5 + - type: Transform + pos: 0.5,14.5 parent: 281 - type: Transform - uid: 256 components: - - pos: 5.5,4.5 + - type: Transform + pos: 5.5,4.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 264 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 5.5,-3.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 344 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,-6.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 638 components: - - pos: 7.5,-6.5 + - type: Transform + pos: 7.5,-6.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeFourway entities: - uid: 251 components: - - pos: 4.5,-4.5 + - type: Transform + pos: 4.5,-4.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeStraight entities: - uid: 104 components: - - pos: 1.5,11.5 + - type: Transform + pos: 1.5,11.5 parent: 281 - type: Transform - uid: 108 components: - - pos: -0.5,11.5 + - type: Transform + pos: -0.5,11.5 parent: 281 - type: Transform - uid: 114 components: - - pos: -0.5,12.5 + - type: Transform + pos: -0.5,12.5 parent: 281 - type: Transform - uid: 130 components: - - pos: -0.5,10.5 + - type: Transform + pos: -0.5,10.5 parent: 281 - type: Transform - uid: 133 components: - - pos: -0.5,9.5 + - type: Transform + pos: -0.5,9.5 parent: 281 - type: Transform - uid: 134 components: - - pos: 1.5,12.5 + - type: Transform + pos: 1.5,12.5 parent: 281 - type: Transform - uid: 143 components: - - pos: 1.5,10.5 + - type: Transform + pos: 1.5,10.5 parent: 281 - type: Transform - uid: 144 components: - - pos: 1.5,9.5 + - type: Transform + pos: 1.5,9.5 parent: 281 - type: Transform - uid: 145 components: - - pos: 7.5,12.5 + - type: Transform + pos: 7.5,12.5 parent: 281 - type: Transform - uid: 146 components: - - pos: 7.5,11.5 + - type: Transform + pos: 7.5,11.5 parent: 281 - type: Transform - uid: 147 components: - - pos: 7.5,10.5 + - type: Transform + pos: 7.5,10.5 parent: 281 - type: Transform - uid: 148 components: - - pos: 7.5,9.5 + - type: Transform + pos: 7.5,9.5 parent: 281 - type: Transform - uid: 149 components: - - pos: 9.5,12.5 + - type: Transform + pos: 9.5,12.5 parent: 281 - type: Transform - uid: 150 components: - - pos: 9.5,11.5 + - type: Transform + pos: 9.5,11.5 parent: 281 - type: Transform - uid: 151 components: - - pos: 9.5,10.5 + - type: Transform + pos: 9.5,10.5 parent: 281 - type: Transform - uid: 152 components: - - pos: 9.5,9.5 + - type: Transform + pos: 9.5,9.5 parent: 281 - type: Transform - uid: 156 components: - - pos: -1.5,5.5 + - type: Transform + pos: -1.5,5.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 157 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,8.5 parent: 281 - type: Transform - uid: 158 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,9.5 parent: 281 - type: Transform - uid: 159 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,10.5 parent: 281 - type: Transform - uid: 160 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,11.5 parent: 281 - type: Transform - uid: 161 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,12.5 parent: 281 - type: Transform - uid: 162 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,13.5 parent: 281 - type: Transform - uid: 163 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,13.5 parent: 281 - type: Transform - uid: 164 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,12.5 parent: 281 - type: Transform - uid: 165 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,11.5 parent: 281 - type: Transform - uid: 166 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,10.5 parent: 281 - type: Transform - uid: 167 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,9.5 parent: 281 - type: Transform - uid: 168 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,8.5 parent: 281 - type: Transform - uid: 172 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,6.5 parent: 281 - type: Transform - uid: 175 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,6.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 176 components: - - pos: -0.5,6.5 + - type: Transform + pos: -0.5,6.5 parent: 281 - type: Transform - uid: 177 components: - - pos: 1.5,6.5 + - type: Transform + pos: 1.5,6.5 parent: 281 - type: Transform - uid: 179 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,5.5 parent: 281 - type: Transform - uid: 181 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,5.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 182 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,5.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 185 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,6.5 parent: 281 - type: Transform - uid: 186 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,6.5 parent: 281 - type: Transform - uid: 188 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,6.5 parent: 281 - type: Transform - uid: 189 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,6.5 parent: 281 - type: Transform - uid: 190 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,6.5 parent: 281 - type: Transform - uid: 191 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 11.5,6.5 parent: 281 - type: Transform - uid: 201 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,6.5 parent: 281 - type: Transform - uid: 202 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,6.5 parent: 281 - type: Transform - uid: 203 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,6.5 parent: 281 - type: Transform - uid: 204 components: - - pos: 10.5,8.5 + - type: Transform + pos: 10.5,8.5 parent: 281 - type: Transform - uid: 205 components: - - pos: 10.5,9.5 + - type: Transform + pos: 10.5,9.5 parent: 281 - type: Transform - uid: 206 components: - - pos: 10.5,10.5 + - type: Transform + pos: 10.5,10.5 parent: 281 - type: Transform - uid: 207 components: - - pos: 10.5,11.5 + - type: Transform + pos: 10.5,11.5 parent: 281 - type: Transform - uid: 208 components: - - pos: 10.5,12.5 + - type: Transform + pos: 10.5,12.5 parent: 281 - type: Transform - uid: 209 components: - - pos: 10.5,13.5 + - type: Transform + pos: 10.5,13.5 parent: 281 - type: Transform - uid: 210 components: - - pos: 8.5,13.5 + - type: Transform + pos: 8.5,13.5 parent: 281 - type: Transform - uid: 211 components: - - pos: 8.5,12.5 + - type: Transform + pos: 8.5,12.5 parent: 281 - type: Transform - uid: 212 components: - - pos: 8.5,11.5 + - type: Transform + pos: 8.5,11.5 parent: 281 - type: Transform - uid: 213 components: - - pos: 8.5,10.5 + - type: Transform + pos: 8.5,10.5 parent: 281 - type: Transform - uid: 214 components: - - pos: 8.5,9.5 + - type: Transform + pos: 8.5,9.5 parent: 281 - type: Transform - uid: 215 components: - - pos: 8.5,8.5 + - type: Transform + pos: 8.5,8.5 parent: 281 - type: Transform - uid: 228 components: - - pos: -0.5,3.5 + - type: Transform + pos: -0.5,3.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 230 components: - - pos: -0.5,1.5 + - type: Transform + pos: -0.5,1.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 241 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,4.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 242 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,3.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 243 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,2.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 244 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,1.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 245 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,0.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 247 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,-1.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 248 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,-2.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 249 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,-3.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 257 components: - - pos: 5.5,3.5 + - type: Transform + pos: 5.5,3.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 258 components: - - pos: 5.5,2.5 + - type: Transform + pos: 5.5,2.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 259 components: - - pos: 5.5,1.5 + - type: Transform + pos: 5.5,1.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 260 components: - - pos: 5.5,0.5 + - type: Transform + pos: 5.5,0.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 262 components: - - pos: 5.5,-1.5 + - type: Transform + pos: 5.5,-1.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 263 components: - - pos: 5.5,-2.5 + - type: Transform + pos: 5.5,-2.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 270 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,4.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 271 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,4.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 272 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,4.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 273 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,4.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 274 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,4.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 321 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-4.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 343 components: - - pos: 4.5,-5.5 + - type: Transform + pos: 4.5,-5.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 625 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,-1.5 parent: 281 - type: Transform - uid: 636 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,-6.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 637 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-6.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 641 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-6.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 720 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,-0.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeTJunction entities: - uid: 154 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,7.5 parent: 281 - type: Transform - uid: 155 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,7.5 parent: 281 - type: Transform - uid: 169 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,7.5 parent: 281 - type: Transform - uid: 170 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,7.5 parent: 281 - type: Transform - uid: 183 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,5.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 197 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,7.5 parent: 281 - type: Transform - uid: 198 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,7.5 parent: 281 - type: Transform - uid: 199 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,7.5 parent: 281 - type: Transform - uid: 200 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,7.5 parent: 281 - type: Transform - uid: 229 components: - - pos: -0.5,4.5 + - type: Transform + pos: -0.5,4.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 246 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,-0.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 261 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,-0.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 265 components: - - pos: 6.5,-3.5 + - type: Transform + pos: 6.5,-3.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 267 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,-5.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPort entities: - uid: 63 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,5.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 266 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,-3.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 281 + - type: AtmosPipeColor + color: '#990000FF' - uid: 276 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,5.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 627 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,-1.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 642 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,-8.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 643 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-8.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - proto: GasPressurePump entities: - uid: 626 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-1.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 639 components: - - pos: 7.5,-7.5 + - type: Transform + pos: 7.5,-7.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 281 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 640 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-7.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 281 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasRecyclerMachineCircuitboard entities: - uid: 737 components: - - pos: -1.6286558,7.590664 + - type: Transform + pos: -1.6286558,7.590664 parent: 281 - type: Transform - proto: GasValve entities: - uid: 115 components: - - pos: -0.5,2.5 + - type: Transform + pos: -0.5,2.5 parent: 281 - type: Transform - - open: False - type: GasValve - - color: '#990000FF' - type: AtmosPipeColor + - type: GasValve + open: False + - type: AtmosDevice + joinedGrid: 281 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasVentPump entities: - uid: 184 components: - - pos: 4.5,6.5 + - type: Transform + pos: 4.5,6.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 281 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 252 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,-4.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 281 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 715 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,-4.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 281 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 719 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,-0.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 281 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasVentScrubber entities: - uid: 644 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,-5.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 281 + - type: AtmosPipeColor + color: '#990000FF' - uid: 718 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,-0.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 281 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasVolumePump entities: - uid: 66 components: - - pos: 1.5,8.5 + - type: Transform + pos: 1.5,8.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 153 components: - - pos: -0.5,8.5 + - type: Transform + pos: -0.5,8.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 195 components: - - pos: 7.5,8.5 + - type: Transform + pos: 7.5,8.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 196 components: - - pos: 9.5,8.5 + - type: Transform + pos: 9.5,8.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - proto: GravityGeneratorMini entities: - uid: 620 components: - - pos: -1.5,4.5 + - type: Transform + pos: -1.5,4.5 parent: 281 - type: Transform - proto: Grille entities: - uid: 10 components: - - pos: -2.5,-1.5 + - type: Transform + pos: -2.5,-1.5 parent: 281 - type: Transform - uid: 11 components: - - pos: -2.5,0.5 + - type: Transform + pos: -2.5,0.5 parent: 281 - type: Transform - uid: 12 components: - - pos: -0.5,1.5 + - type: Transform + pos: -0.5,1.5 parent: 281 - type: Transform - uid: 13 components: - - pos: -0.5,-2.5 + - type: Transform + pos: -0.5,-2.5 parent: 281 - type: Transform - uid: 14 components: - - pos: 0.5,0.5 + - type: Transform + pos: 0.5,0.5 parent: 281 - type: Transform - uid: 15 components: - - pos: 0.5,-1.5 + - type: Transform + pos: 0.5,-1.5 parent: 281 - type: Transform - uid: 25 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,3.5 parent: 281 - type: Transform - uid: 29 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,4.5 parent: 281 - type: Transform - uid: 30 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,5.5 parent: 281 - type: Transform - uid: 32 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,2.5 parent: 281 - type: Transform - uid: 42 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,7.5 parent: 281 - type: Transform - uid: 43 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,8.5 parent: 281 - type: Transform - uid: 46 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,9.5 parent: 281 - type: Transform - uid: 47 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,9.5 parent: 281 - type: Transform - uid: 48 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,9.5 parent: 281 - type: Transform - uid: 51 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,1.5 parent: 281 - type: Transform - uid: 52 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,4.5 parent: 281 - type: Transform - uid: 62 components: - - pos: 5.5,4.5 + - type: Transform + pos: 5.5,4.5 parent: 281 - type: Transform - uid: 71 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,9.5 parent: 281 - type: Transform - uid: 72 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,9.5 parent: 281 - type: Transform - uid: 73 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,9.5 parent: 281 - type: Transform - uid: 79 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,8.5 parent: 281 - type: Transform - uid: 80 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,7.5 parent: 281 - type: Transform - uid: 88 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,5.5 parent: 281 - type: Transform - uid: 89 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,4.5 parent: 281 - type: Transform - uid: 94 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,2.5 parent: 281 - type: Transform - uid: 97 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,1.5 parent: 281 - type: Transform - uid: 139 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,12.5 parent: 281 - type: Transform - uid: 140 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,12.5 parent: 281 - type: Transform - uid: 141 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,12.5 parent: 281 - type: Transform - uid: 142 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,12.5 parent: 281 - type: Transform - uid: 254 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-5.5 parent: 281 - type: Transform - uid: 255 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,-5.5 parent: 281 - type: Transform - uid: 268 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-6.5 parent: 281 - type: Transform - uid: 269 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-7.5 parent: 281 - type: Transform - uid: 277 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,1.5 parent: 281 - type: Transform - uid: 280 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,3.5 parent: 281 - type: Transform - uid: 288 components: - - pos: 11.5,0.5 + - type: Transform + pos: 11.5,0.5 parent: 281 - type: Transform - uid: 289 components: - - pos: 11.5,-1.5 + - type: Transform + pos: 11.5,-1.5 parent: 281 - type: Transform - uid: 290 components: - - pos: 9.5,-2.5 + - type: Transform + pos: 9.5,-2.5 parent: 281 - type: Transform - uid: 297 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,-8.5 parent: 281 - type: Transform - uid: 298 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 281 - type: Transform - uid: 314 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,-8.5 parent: 281 - type: Transform - uid: 319 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,-4.5 parent: 281 - type: Transform - uid: 326 components: - - pos: 11.5,-0.5 + - type: Transform + pos: 11.5,-0.5 parent: 281 - type: Transform - uid: 327 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,-6.5 parent: 281 - type: Transform - uid: 328 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,-7.5 parent: 281 - type: Transform - uid: 335 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,-10.5 parent: 281 - type: Transform - uid: 336 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-10.5 parent: 281 - type: Transform - uid: 337 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,-10.5 parent: 281 - type: Transform - uid: 345 components: - - pos: 8.5,0.5 + - type: Transform + pos: 8.5,0.5 parent: 281 - type: Transform - uid: 346 components: - - pos: 4.5,-4.5 + - type: Transform + pos: 4.5,-4.5 parent: 281 - type: Transform - uid: 348 components: - - pos: 8.5,-1.5 + - type: Transform + pos: 8.5,-1.5 parent: 281 - type: Transform - uid: 349 components: - - pos: 4.5,-3.5 + - type: Transform + pos: 4.5,-3.5 parent: 281 - type: Transform - proto: Gyroscope entities: - uid: 621 components: - - pos: -0.5,4.5 - parent: 281 - type: Transform -- proto: HolofanProjector - entities: - - uid: 739 - components: - - pos: 5.4176764,2.5590343 + - type: Transform + pos: -0.5,4.5 parent: 281 - type: Transform - proto: IntercomScience entities: - uid: 367 components: - - pos: 10.5,1.5 + - type: Transform + pos: 10.5,1.5 parent: 281 - type: Transform - uid: 369 components: - - pos: 3.5,8.5 + - type: Transform + pos: 3.5,8.5 parent: 281 - type: Transform - uid: 370 components: - - pos: 4.5,-5.5 + - type: Transform + pos: 4.5,-5.5 parent: 281 - type: Transform - proto: LockerAtmosphericsFilled entities: - uid: 354 components: - - pos: 3.5,3.5 + - type: Transform + pos: 3.5,3.5 parent: 281 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -3695,40 +3775,15 @@ entities: - 0 - 0 - 0 - type: EntityStorage -- proto: LockerCaptainFilledHardsuit - entities: - - uid: 668 - components: - - pos: 9.5,-1.5 - parent: 281 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - proto: LockerChiefEngineerFilled entities: - uid: 667 components: - - pos: 7.5,-1.5 + - type: Transform + pos: 7.5,-1.5 parent: 281 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -3745,15 +3800,15 @@ entities: - 0 - 0 - 0 - type: EntityStorage - proto: LockerEngineerFilled entities: - uid: 353 components: - - pos: 3.5,2.5 + - type: Transform + pos: 3.5,2.5 parent: 281 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -3770,15 +3825,22 @@ entities: - 0 - 0 - 0 - type: EntityStorage +- proto: LockerPilotFilled + entities: + - uid: 672 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 281 - proto: LockerResearchDirectorFilled entities: - uid: 364 components: - - pos: 6.5,-1.5 + - type: Transform + pos: 6.5,-1.5 parent: 281 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -3795,967 +3857,946 @@ entities: - 0 - 0 - 0 - type: EntityStorage - proto: LockerScienceFilled entities: - uid: 631 components: - - pos: 1.5,-8.5 + - type: Transform + pos: 1.5,-8.5 parent: 281 - type: Transform - proto: MachineArtifactAnalyzer entities: - uid: 372 components: - - pos: -1.5,-0.5 + - type: Transform + pos: -1.5,-0.5 parent: 281 - type: Transform - - links: + - type: DeviceLinkSink + links: - 361 - type: DeviceLinkSink -- proto: MonkeyCubeBox - entities: - - uid: 368 - components: - - pos: 1.6604456,-4.181382 - parent: 281 - type: Transform - proto: PartRodMetal entities: - uid: 726 components: - - pos: 5.455698,3.631572 + - type: Transform + pos: 5.455698,3.631572 parent: 281 - type: Transform - proto: PlasmaReinforcedWindowDirectional entities: - uid: 17 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -3.5,-1.5 parent: 281 - type: Transform - uid: 18 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 281 - type: Transform - uid: 250 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,-3.5 parent: 281 - type: Transform - uid: 282 components: - - pos: -0.5,2.5 + - type: Transform + pos: -0.5,2.5 parent: 281 - type: Transform -- proto: PortableGeneratorPacman +- proto: PortableGeneratorPacmanShuttle entities: - - uid: 535 + - uid: 673 components: - - anchored: True - pos: 7.5,4.5 + - type: Transform + pos: 8.5,4.5 parent: 281 - type: Transform - - storage: - Plasma: 1500 - type: MaterialStorage - - bodyType: Static - type: Physics - - type: InsertingMaterialStorage - - uid: 536 + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static + - uid: 674 components: - - anchored: True - pos: 8.5,4.5 + - type: Transform + pos: 7.5,4.5 parent: 281 - type: Transform - - storage: - Plasma: 1500 - type: MaterialStorage - - bodyType: Static - type: Physics - - type: InsertingMaterialStorage + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static - proto: PortableScrubber entities: - uid: 645 components: - - pos: 7.5,-3.5 + - type: Transform + pos: 7.5,-3.5 parent: 281 - type: Transform - proto: PowerCellRecharger entities: - uid: 689 components: - - pos: 9.5,-7.5 + - type: Transform + pos: 9.5,-7.5 parent: 281 - type: Transform - proto: Poweredlight entities: - uid: 745 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-1.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 746 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,3.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 747 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-3.5 parent: 281 - type: Transform - uid: 748 components: - - pos: 6.5,-3.5 + - type: Transform + pos: 6.5,-3.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 749 components: - - pos: 2.5,-3.5 + - type: Transform + pos: 2.5,-3.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 750 components: - - pos: 1.5,-10.5 + - type: Transform + pos: 1.5,-10.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 751 components: - - pos: 7.5,-10.5 + - type: Transform + pos: 7.5,-10.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 752 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-8.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 753 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,-8.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 754 components: - - pos: 0.5,11.5 + - type: Transform + pos: 0.5,11.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 755 components: - - pos: 8.5,11.5 + - type: Transform + pos: 8.5,11.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 756 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,4.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 757 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,4.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 758 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,6.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 759 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,6.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 760 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,15.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 761 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,15.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 762 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,14.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - proto: PoweredlightLED entities: - uid: 744 components: - - pos: -1.5,0.5 + - type: Transform + pos: -1.5,0.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - proto: PoweredSmallLight entities: - uid: 763 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,3.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 862 components: - - pos: 1.5,14.5 + - type: Transform + pos: 1.5,14.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 863 components: - - pos: -0.5,14.5 + - type: Transform + pos: -0.5,14.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 864 components: - - pos: 7.5,14.5 + - type: Transform + pos: 7.5,14.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 865 components: - - pos: 9.5,14.5 + - type: Transform + pos: 9.5,14.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - proto: Protolathe entities: - uid: 653 components: - - pos: 8.5,-5.5 + - type: Transform + pos: 8.5,-5.5 parent: 281 - type: Transform - proto: Rack entities: - uid: 687 components: - - pos: 5.5,3.5 + - type: Transform + pos: 5.5,3.5 parent: 281 - type: Transform - uid: 688 components: - - pos: 5.5,2.5 + - type: Transform + pos: 5.5,2.5 parent: 281 - type: Transform -- proto: RCD - entities: - - uid: 858 - components: - - pos: 10.386675,0.5819994 - parent: 281 - type: Transform -- proto: RCDAmmo - entities: - - uid: 859 - components: - - pos: 10.606187,0.5966339 - parent: 281 - type: Transform - proto: ReinforcedPlasmaWindow entities: - uid: 19 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,-1.5 parent: 281 - type: Transform - uid: 20 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,0.5 parent: 281 - type: Transform - uid: 21 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-2.5 parent: 281 - type: Transform - uid: 22 components: - - pos: -0.5,1.5 + - type: Transform + pos: -0.5,1.5 parent: 281 - type: Transform - uid: 135 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,12.5 parent: 281 - type: Transform - uid: 136 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,12.5 parent: 281 - type: Transform - uid: 137 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,12.5 parent: 281 - type: Transform - uid: 138 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,12.5 parent: 281 - type: Transform - proto: ReinforcedWindow entities: - uid: 23 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,0.5 parent: 281 - type: Transform - uid: 24 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,-1.5 parent: 281 - type: Transform - uid: 26 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,3.5 parent: 281 - type: Transform - uid: 33 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,2.5 parent: 281 - type: Transform - uid: 38 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,7.5 parent: 281 - type: Transform - uid: 39 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,8.5 parent: 281 - type: Transform - uid: 44 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,5.5 parent: 281 - type: Transform - uid: 45 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,4.5 parent: 281 - type: Transform - uid: 53 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,4.5 parent: 281 - type: Transform - uid: 54 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,1.5 parent: 281 - type: Transform - uid: 61 components: - - pos: 5.5,4.5 + - type: Transform + pos: 5.5,4.5 parent: 281 - type: Transform - uid: 67 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,9.5 parent: 281 - type: Transform - uid: 68 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,9.5 parent: 281 - type: Transform - uid: 70 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,9.5 parent: 281 - type: Transform - uid: 74 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,9.5 parent: 281 - type: Transform - uid: 75 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,9.5 parent: 281 - type: Transform - uid: 76 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,9.5 parent: 281 - type: Transform - uid: 77 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,8.5 parent: 281 - type: Transform - uid: 78 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,7.5 parent: 281 - type: Transform - uid: 90 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,3.5 parent: 281 - type: Transform - uid: 91 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,5.5 parent: 281 - type: Transform - uid: 92 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,4.5 parent: 281 - type: Transform - uid: 93 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,1.5 parent: 281 - type: Transform - uid: 96 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,1.5 parent: 281 - type: Transform - uid: 98 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,2.5 parent: 281 - type: Transform - uid: 286 components: - - pos: 11.5,-0.5 + - type: Transform + pos: 11.5,-0.5 parent: 281 - type: Transform - uid: 287 components: - - pos: 11.5,-1.5 + - type: Transform + pos: 11.5,-1.5 parent: 281 - type: Transform - uid: 299 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-7.5 parent: 281 - type: Transform - uid: 304 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-5.5 parent: 281 - type: Transform - uid: 316 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-6.5 parent: 281 - type: Transform - uid: 318 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 281 - type: Transform - uid: 324 components: - - pos: 11.5,0.5 + - type: Transform + pos: 11.5,0.5 parent: 281 - type: Transform - uid: 329 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,-8.5 parent: 281 - type: Transform - uid: 330 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,-4.5 parent: 281 - type: Transform - uid: 331 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,-5.5 parent: 281 - type: Transform - uid: 332 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,-6.5 parent: 281 - type: Transform - uid: 333 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,-7.5 parent: 281 - type: Transform - uid: 334 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,-8.5 parent: 281 - type: Transform - uid: 338 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,-10.5 parent: 281 - type: Transform - uid: 339 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,-10.5 parent: 281 - type: Transform - uid: 340 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-10.5 parent: 281 - type: Transform - uid: 350 components: - - pos: 8.5,0.5 + - type: Transform + pos: 8.5,0.5 parent: 281 - type: Transform - uid: 351 components: - - pos: 8.5,-1.5 + - type: Transform + pos: 8.5,-1.5 parent: 281 - type: Transform - uid: 365 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,-2.5 parent: 281 - type: Transform - proto: ResearchAndDevelopmentServer entities: - uid: 356 components: - - pos: -0.5,-5.5 + - type: Transform + pos: -0.5,-5.5 parent: 281 - type: Transform - proto: ScienceTechFab entities: - uid: 359 components: - - pos: -0.5,-6.5 + - type: Transform + pos: -0.5,-6.5 parent: 281 - type: Transform - proto: SheetPlasma entities: - uid: 360 components: - - pos: -1.574004,8.16611 + - type: Transform + pos: -1.574004,8.16611 + parent: 281 +- proto: SheetSteel + entities: + - uid: 671 + components: + - type: Transform + pos: 5.512085,2.6151545 parent: 281 - type: Transform - proto: SignalButton entities: - uid: 648 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-2.5 parent: 281 - type: Transform - uid: 736 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-2.5 parent: 281 - type: Transform - - state: True - type: SignalSwitch - - linkedPorts: + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: 16: - Pressed: Toggle - type: DeviceLinkSource - - proto: SignFlammable entities: - uid: 852 components: - - pos: -1.5,12.5 + - type: Transform + pos: -1.5,12.5 parent: 281 - type: Transform - uid: 853 components: - - pos: 10.5,12.5 + - type: Transform + pos: 10.5,12.5 parent: 281 - type: Transform - proto: SMESBasic entities: - uid: 544 components: - - pos: 9.5,4.5 + - type: Transform + pos: 9.5,4.5 parent: 281 - type: Transform - proto: SolarPanel entities: - uid: 402 components: - - pos: -3.5,19.5 + - type: Transform + pos: -3.5,19.5 parent: 281 - type: Transform - uid: 420 components: - - pos: -2.5,19.5 + - type: Transform + pos: -2.5,19.5 parent: 281 - type: Transform - uid: 421 components: - - pos: -1.5,19.5 + - type: Transform + pos: -1.5,19.5 parent: 281 - type: Transform - uid: 422 components: - - pos: -0.5,19.5 + - type: Transform + pos: -0.5,19.5 parent: 281 - type: Transform - uid: 423 components: - - pos: 0.5,19.5 + - type: Transform + pos: 0.5,19.5 parent: 281 - type: Transform - uid: 424 components: - - pos: 1.5,19.5 + - type: Transform + pos: 1.5,19.5 parent: 281 - type: Transform - uid: 425 components: - - pos: 2.5,19.5 + - type: Transform + pos: 2.5,19.5 parent: 281 - type: Transform - uid: 426 components: - - pos: 3.5,19.5 + - type: Transform + pos: 3.5,19.5 parent: 281 - type: Transform - uid: 427 components: - - pos: -3.5,17.5 + - type: Transform + pos: -3.5,17.5 parent: 281 - type: Transform - uid: 428 components: - - pos: -2.5,17.5 + - type: Transform + pos: -2.5,17.5 parent: 281 - type: Transform - uid: 429 components: - - pos: -1.5,17.5 + - type: Transform + pos: -1.5,17.5 parent: 281 - type: Transform - uid: 430 components: - - pos: -0.5,17.5 + - type: Transform + pos: -0.5,17.5 parent: 281 - type: Transform - uid: 431 components: - - pos: 0.5,17.5 + - type: Transform + pos: 0.5,17.5 parent: 281 - type: Transform - uid: 432 components: - - pos: 1.5,17.5 + - type: Transform + pos: 1.5,17.5 parent: 281 - type: Transform - uid: 433 components: - - pos: 2.5,17.5 + - type: Transform + pos: 2.5,17.5 parent: 281 - type: Transform - uid: 434 components: - - pos: 3.5,17.5 + - type: Transform + pos: 3.5,17.5 parent: 281 - type: Transform - uid: 435 components: - - pos: 5.5,19.5 + - type: Transform + pos: 5.5,19.5 parent: 281 - type: Transform - uid: 436 components: - - pos: 6.5,19.5 + - type: Transform + pos: 6.5,19.5 parent: 281 - type: Transform - uid: 437 components: - - pos: 7.5,19.5 + - type: Transform + pos: 7.5,19.5 parent: 281 - type: Transform - uid: 438 components: - - pos: 8.5,19.5 + - type: Transform + pos: 8.5,19.5 parent: 281 - type: Transform - uid: 439 components: - - pos: 9.5,19.5 + - type: Transform + pos: 9.5,19.5 parent: 281 - type: Transform - uid: 440 components: - - pos: 10.5,19.5 + - type: Transform + pos: 10.5,19.5 parent: 281 - type: Transform - uid: 441 components: - - pos: 11.5,19.5 + - type: Transform + pos: 11.5,19.5 parent: 281 - type: Transform - uid: 442 components: - - pos: 12.5,19.5 + - type: Transform + pos: 12.5,19.5 parent: 281 - type: Transform - uid: 443 components: - - pos: 5.5,17.5 + - type: Transform + pos: 5.5,17.5 parent: 281 - type: Transform - uid: 444 components: - - pos: 6.5,17.5 + - type: Transform + pos: 6.5,17.5 parent: 281 - type: Transform - uid: 445 components: - - pos: 7.5,17.5 + - type: Transform + pos: 7.5,17.5 parent: 281 - type: Transform - uid: 446 components: - - pos: 8.5,17.5 + - type: Transform + pos: 8.5,17.5 parent: 281 - type: Transform - uid: 447 components: - - pos: 9.5,17.5 + - type: Transform + pos: 9.5,17.5 parent: 281 - type: Transform - uid: 448 components: - - pos: 10.5,17.5 + - type: Transform + pos: 10.5,17.5 parent: 281 - type: Transform - uid: 449 components: - - pos: 11.5,17.5 + - type: Transform + pos: 11.5,17.5 parent: 281 - type: Transform - uid: 450 components: - - pos: 12.5,17.5 + - type: Transform + pos: 12.5,17.5 parent: 281 - type: Transform - uid: 502 components: - - pos: -2.5,15.5 + - type: Transform + pos: -2.5,15.5 parent: 281 - type: Transform - uid: 503 components: - - pos: -2.5,14.5 + - type: Transform + pos: -2.5,14.5 parent: 281 - type: Transform - uid: 504 components: - - pos: -2.5,13.5 + - type: Transform + pos: -2.5,13.5 parent: 281 - type: Transform - uid: 505 components: - - pos: -2.5,12.5 + - type: Transform + pos: -2.5,12.5 parent: 281 - type: Transform - uid: 506 components: - - pos: 11.5,15.5 + - type: Transform + pos: 11.5,15.5 parent: 281 - type: Transform - uid: 507 components: - - pos: 11.5,14.5 + - type: Transform + pos: 11.5,14.5 parent: 281 - type: Transform - uid: 508 components: - - pos: 11.5,13.5 + - type: Transform + pos: 11.5,13.5 parent: 281 - type: Transform - uid: 509 components: - - pos: 11.5,12.5 + - type: Transform + pos: 11.5,12.5 parent: 281 - type: Transform - proto: SolarTracker entities: - uid: 534 components: - - pos: 4.5,19.5 + - type: Transform + pos: 4.5,19.5 parent: 281 - type: Transform - proto: SpawnPointAtmos entities: - uid: 867 components: - - pos: 4.5,3.5 + - type: Transform + pos: 4.5,3.5 parent: 281 - type: Transform - proto: SpawnPointChiefEngineer entities: - uid: 874 components: - - pos: 6.5,-0.5 + - type: Transform + pos: 6.5,-0.5 parent: 281 - type: Transform - proto: SpawnPointLatejoin entities: - uid: 678 components: - - pos: 3.5,-0.5 + - type: Transform + pos: 3.5,-0.5 parent: 281 - type: Transform - uid: 679 components: - - pos: 4.5,-0.5 + - type: Transform + pos: 4.5,-0.5 parent: 281 - type: Transform - uid: 680 components: - - pos: 5.5,-0.5 + - type: Transform + pos: 5.5,-0.5 parent: 281 - type: Transform - proto: SpawnPointResearchDirector entities: - uid: 866 components: - - pos: 7.5,-0.5 + - type: Transform + pos: 7.5,-0.5 parent: 281 - type: Transform - proto: SpawnPointScientist entities: - uid: 875 components: - - pos: 2.5,-0.5 + - type: Transform + pos: 2.5,-0.5 parent: 281 - type: Transform - proto: SpawnPointStationEngineer entities: - uid: 876 components: - - pos: 4.5,2.5 + - type: Transform + pos: 4.5,2.5 parent: 281 - type: Transform - proto: SubstationBasic entities: - uid: 543 components: - - pos: 10.5,4.5 + - type: Transform + pos: 10.5,4.5 parent: 281 - type: Transform - proto: SuitStorageAtmos entities: - uid: 709 components: - - pos: -1.5,6.5 + - type: Transform + pos: -1.5,6.5 parent: 281 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -4772,15 +4813,15 @@ entities: - 0 - 0 - 0 - type: EntityStorage - proto: SuitStorageCE entities: - uid: 712 components: - - pos: 7.5,0.5 + - type: Transform + pos: 7.5,0.5 parent: 281 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -4797,15 +4838,15 @@ entities: - 0 - 0 - 0 - type: EntityStorage - proto: SuitStorageEngi entities: - uid: 711 components: - - pos: -1.5,5.5 + - type: Transform + pos: -1.5,5.5 parent: 281 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -4822,15 +4863,15 @@ entities: - 0 - 0 - 0 - type: EntityStorage - proto: SuitStorageRD entities: - uid: 363 components: - - pos: 6.5,0.5 + - type: Transform + pos: 6.5,0.5 parent: 281 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -4847,808 +4888,844 @@ entities: - 0 - 0 - 0 - type: EntityStorage - proto: Syringe entities: - uid: 856 components: - - pos: 0.5918114,-5.4350786 + - type: Transform + pos: 0.5918114,-5.4350786 parent: 281 - type: Transform - proto: TableGlass entities: - uid: 285 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-3.5 parent: 281 - type: Transform - uid: 291 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-4.5 parent: 281 - type: Transform - uid: 665 components: - - pos: 2.5,-8.5 + - type: Transform + pos: 2.5,-8.5 parent: 281 - type: Transform - uid: 677 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-5.5 parent: 281 - type: Transform - proto: TableReinforced entities: - uid: 283 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,-1.5 parent: 281 - type: Transform - uid: 284 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,0.5 parent: 281 - type: Transform - uid: 654 components: - - pos: 9.5,-7.5 + - type: Transform + pos: 9.5,-7.5 + parent: 281 + - uid: 669 + components: + - type: Transform + pos: 9.5,0.5 + parent: 281 + - uid: 670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-0.5 parent: 281 - type: Transform - uid: 691 components: - - pos: -1.5,8.5 + - type: Transform + pos: -1.5,8.5 parent: 281 - type: Transform - uid: 692 components: - - pos: -1.5,7.5 + - type: Transform + pos: -1.5,7.5 parent: 281 - type: Transform - proto: ThermomachineHeaterMachineCircuitBoard entities: - uid: 738 components: - - pos: -1.4440717,7.789339 + - type: Transform + pos: -1.4440717,7.789339 parent: 281 - type: Transform - proto: Thruster entities: - uid: 684 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,-3.5 parent: 281 - type: Transform - uid: 685 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,-9.5 parent: 281 - type: Transform - uid: 686 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-9.5 parent: 281 - type: Transform - uid: 693 components: - - pos: 12.5,3.5 + - type: Transform + pos: 12.5,3.5 parent: 281 - type: Transform - uid: 694 components: - - pos: -3.5,3.5 + - type: Transform + pos: -3.5,3.5 parent: 281 - type: Transform - uid: 695 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,-10.5 parent: 281 - type: Transform - uid: 696 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-10.5 parent: 281 - type: Transform - uid: 698 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-3.5 parent: 281 - type: Transform +- proto: VariantCubeBox + entities: + - uid: 368 + components: + - type: Transform + pos: 1.6604456,-4.181382 + parent: 281 - proto: VendingMachineAtmosDrobe entities: - uid: 708 components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,8.5 + - type: Transform + pos: 10.5,8.5 parent: 281 - type: Transform - proto: VendingMachineEngiDrobe entities: - uid: 743 components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,8.5 + - type: Transform + pos: 9.5,8.5 parent: 281 - type: Transform - proto: VendingMachineEngivend entities: - uid: 683 components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,-3.5 + - type: Transform + pos: 6.5,-3.5 parent: 281 - type: Transform - proto: VendingMachineSciDrobe entities: - uid: 855 components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,-3.5 + - type: Transform + pos: 2.5,-3.5 parent: 281 - type: Transform - proto: VendingMachineTankDispenserEVA entities: - uid: 655 components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,8.5 + - type: Transform + pos: 6.5,8.5 parent: 281 - type: Transform - proto: VendingMachineVendomat entities: - uid: 615 components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,-6.5 + - type: Transform + pos: 9.5,-6.5 parent: 281 - type: Transform - proto: WallReinforced entities: - uid: 1 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,14.5 parent: 281 - type: Transform - uid: 2 components: - - pos: -2.5,1.5 + - type: Transform + pos: -2.5,1.5 parent: 281 - type: Transform - uid: 3 components: - - pos: -2.5,-2.5 + - type: Transform + pos: -2.5,-2.5 parent: 281 - type: Transform - uid: 4 components: - - pos: -1.5,-2.5 + - type: Transform + pos: -1.5,-2.5 parent: 281 - type: Transform - uid: 5 components: - - pos: 0.5,-2.5 + - type: Transform + pos: 0.5,-2.5 parent: 281 - type: Transform - uid: 6 components: - - pos: 1.5,-2.5 + - type: Transform + pos: 1.5,-2.5 parent: 281 - type: Transform - uid: 7 components: - - pos: 1.5,1.5 + - type: Transform + pos: 1.5,1.5 parent: 281 - type: Transform - uid: 8 components: - - pos: 0.5,1.5 + - type: Transform + pos: 0.5,1.5 parent: 281 - type: Transform - uid: 9 components: - - pos: -1.5,1.5 + - type: Transform + pos: -1.5,1.5 parent: 281 - type: Transform - uid: 27 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,3.5 parent: 281 - type: Transform - uid: 28 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,3.5 parent: 281 - type: Transform - uid: 31 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,6.5 parent: 281 - type: Transform - uid: 34 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,1.5 parent: 281 - type: Transform - uid: 35 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,3.5 parent: 281 - type: Transform - uid: 36 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,3.5 parent: 281 - type: Transform - uid: 37 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,3.5 parent: 281 - type: Transform - uid: 40 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,9.5 parent: 281 - type: Transform - uid: 41 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,9.5 parent: 281 - type: Transform - uid: 49 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,9.5 parent: 281 - type: Transform - uid: 50 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,4.5 parent: 281 - type: Transform - uid: 55 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,9.5 parent: 281 - type: Transform - uid: 56 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,8.5 parent: 281 - type: Transform - uid: 57 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,10.5 parent: 281 - type: Transform - uid: 58 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,10.5 parent: 281 - type: Transform - uid: 59 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,9.5 parent: 281 - type: Transform - uid: 60 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,8.5 parent: 281 - type: Transform - uid: 64 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,3.5 parent: 281 - type: Transform - uid: 69 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,9.5 parent: 281 - type: Transform - uid: 81 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,9.5 parent: 281 - type: Transform - uid: 82 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,9.5 parent: 281 - type: Transform - uid: 83 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,6.5 parent: 281 - type: Transform - uid: 84 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,3.5 parent: 281 - type: Transform - uid: 85 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,3.5 parent: 281 - type: Transform - uid: 86 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,3.5 parent: 281 - type: Transform - uid: 87 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,3.5 parent: 281 - type: Transform - uid: 95 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,1.5 parent: 281 - type: Transform - uid: 99 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,15.5 parent: 281 - type: Transform - uid: 100 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,15.5 parent: 281 - type: Transform - uid: 101 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,15.5 parent: 281 - type: Transform - uid: 102 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,15.5 parent: 281 - type: Transform - uid: 103 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,15.5 parent: 281 - type: Transform - uid: 105 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,14.5 parent: 281 - type: Transform - uid: 106 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,13.5 parent: 281 - type: Transform - uid: 107 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,12.5 parent: 281 - type: Transform - uid: 109 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,14.5 parent: 281 - type: Transform - uid: 110 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,13.5 parent: 281 - type: Transform - uid: 111 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,12.5 parent: 281 - type: Transform - uid: 112 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,13.5 parent: 281 - type: Transform - uid: 113 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,12.5 parent: 281 - type: Transform - uid: 116 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,14.5 parent: 281 - type: Transform - uid: 117 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,13.5 parent: 281 - type: Transform - uid: 118 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,12.5 parent: 281 - type: Transform - uid: 120 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,14.5 parent: 281 - type: Transform - uid: 121 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,13.5 parent: 281 - type: Transform - uid: 122 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,12.5 parent: 281 - type: Transform - uid: 124 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,14.5 parent: 281 - type: Transform - uid: 125 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,13.5 parent: 281 - type: Transform - uid: 126 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,12.5 parent: 281 - type: Transform - uid: 127 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,15.5 parent: 281 - type: Transform - uid: 128 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,15.5 parent: 281 - type: Transform - uid: 129 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,15.5 parent: 281 - type: Transform - uid: 131 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,15.5 parent: 281 - type: Transform - uid: 132 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,15.5 parent: 281 - type: Transform - uid: 232 components: - - pos: 7.5,1.5 + - type: Transform + pos: 7.5,1.5 parent: 281 - type: Transform - uid: 233 components: - - pos: 8.5,1.5 + - type: Transform + pos: 8.5,1.5 parent: 281 - type: Transform - uid: 234 components: - - pos: 10.5,1.5 + - type: Transform + pos: 10.5,1.5 parent: 281 - type: Transform - uid: 235 components: - - pos: 11.5,1.5 + - type: Transform + pos: 11.5,1.5 parent: 281 - type: Transform - uid: 236 components: - - pos: 11.5,-2.5 + - type: Transform + pos: 11.5,-2.5 parent: 281 - type: Transform - uid: 237 components: - - pos: 10.5,-2.5 + - type: Transform + pos: 10.5,-2.5 parent: 281 - type: Transform - uid: 238 components: - - pos: 8.5,-2.5 + - type: Transform + pos: 8.5,-2.5 parent: 281 - type: Transform - uid: 239 components: - - pos: 7.5,-2.5 + - type: Transform + pos: 7.5,-2.5 parent: 281 - type: Transform - uid: 275 components: - - pos: 6.5,4.5 + - type: Transform + pos: 6.5,4.5 parent: 281 - type: Transform - uid: 292 components: - - pos: 0.5,-3.5 + - type: Transform + pos: 0.5,-3.5 parent: 281 - type: Transform - uid: 293 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,-8.5 parent: 281 - type: Transform - uid: 294 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-4.5 parent: 281 - type: Transform - uid: 295 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,-3.5 parent: 281 - type: Transform - uid: 296 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-4.5 parent: 281 - type: Transform - uid: 300 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,-4.5 parent: 281 - type: Transform - uid: 301 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,-8.5 parent: 281 - type: Transform - uid: 302 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,-4.5 parent: 281 - type: Transform - uid: 303 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-8.5 parent: 281 - type: Transform - uid: 305 components: - - pos: 1.5,-9.5 + - type: Transform + pos: 1.5,-9.5 parent: 281 - type: Transform - uid: 306 components: - - pos: 2.5,-9.5 + - type: Transform + pos: 2.5,-9.5 parent: 281 - type: Transform - uid: 307 components: - - pos: 2.5,-11.5 + - type: Transform + pos: 2.5,-11.5 parent: 281 - type: Transform - uid: 308 components: - - pos: 6.5,-11.5 + - type: Transform + pos: 6.5,-11.5 parent: 281 - type: Transform - uid: 309 components: - - pos: 4.5,-11.5 + - type: Transform + pos: 4.5,-11.5 parent: 281 - type: Transform - uid: 310 components: - - pos: 4.5,-9.5 + - type: Transform + pos: 4.5,-9.5 parent: 281 - type: Transform - uid: 311 components: - - pos: 6.5,-9.5 + - type: Transform + pos: 6.5,-9.5 parent: 281 - type: Transform - uid: 312 components: - - pos: 7.5,-9.5 + - type: Transform + pos: 7.5,-9.5 parent: 281 - type: Transform - uid: 313 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-9.5 parent: 281 - type: Transform - uid: 315 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-8.5 parent: 281 - type: Transform - uid: 317 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,-9.5 parent: 281 - type: Transform - proto: WallSolid entities: - uid: 65 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,-2.5 parent: 281 - type: Transform - uid: 240 components: - - pos: 6.5,-2.5 + - type: Transform + pos: 6.5,-2.5 parent: 281 - type: Transform - uid: 323 components: - - pos: 4.5,-2.5 + - type: Transform + pos: 4.5,-2.5 parent: 281 - type: Transform - uid: 347 components: - - pos: 4.5,-5.5 + - type: Transform + pos: 4.5,-5.5 parent: 281 - type: Transform - uid: 666 components: - - pos: 4.5,-8.5 + - type: Transform + pos: 4.5,-8.5 parent: 281 - type: Transform - proto: WarningN2 entities: - uid: 849 components: - - pos: -0.5,12.5 + - type: Transform + pos: -0.5,12.5 parent: 281 - type: Transform - proto: WarningO2 entities: - uid: 848 components: - - pos: 1.5,12.5 + - type: Transform + pos: 1.5,12.5 parent: 281 - type: Transform - proto: WarningPlasma entities: - uid: 850 components: - - pos: 7.5,12.5 + - type: Transform + pos: 7.5,12.5 parent: 281 - type: Transform - proto: WarningWaste entities: - uid: 851 components: - - pos: 9.5,12.5 + - type: Transform + pos: 9.5,12.5 parent: 281 - type: Transform - proto: WarpPointShip entities: - uid: 861 components: - - pos: 4.5,0.5 + - type: Transform + pos: 4.5,0.5 parent: 281 - type: Transform - - location: Condor - type: WarpPoint + - type: WarpPoint + location: Condor - proto: WaterCooler entities: - uid: 741 components: - - pos: 7.5,8.5 + - type: Transform + pos: 7.5,8.5 parent: 281 - type: Transform - proto: WeaponCapacitorRecharger entities: - uid: 362 components: - - pos: 10.5,-1.5 + - type: Transform + pos: 10.5,-1.5 parent: 281 - type: Transform - proto: WelderIndustrial entities: - uid: 877 components: - - pos: -1.6056741,8.182595 + - type: Transform + pos: -1.6056741,8.182595 parent: 281 - type: Transform - proto: WeldingFuelTankFull entities: - uid: 646 components: - - pos: 2.5,8.5 + - type: Transform + pos: 2.5,8.5 parent: 281 - type: Transform - proto: Window entities: - uid: 322 components: - - pos: 4.5,-3.5 + - type: Transform + pos: 4.5,-3.5 parent: 281 - type: Transform - uid: 342 components: - - pos: 4.5,-4.5 + - type: Transform + pos: 4.5,-4.5 + parent: 281 +- proto: WindowFrostedDirectional + entities: + - uid: 675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 281 + - uid: 725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 281 + - uid: 728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,0.5 + parent: 281 + - uid: 729 + components: + - type: Transform + pos: 9.5,2.5 + parent: 281 + - uid: 730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-3.5 parent: 281 - type: Transform ... diff --git a/Resources/Maps/_NF/Shuttles/disciple.yml b/Resources/Maps/_NF/Shuttles/disciple.yml index 993bbeeb788..7504c286eb5 100644 --- a/Resources/Maps/_NF/Shuttles/disciple.yml +++ b/Resources/Maps/_NF/Shuttles/disciple.yml @@ -5,9 +5,9 @@ tilemap: 0: Space 20: FloorBrokenWood 46: FloorGlass - 119: FloorWood - 121: Lattice - 122: Plating + 121: FloorWood + 124: Lattice + 125: Plating entities: - proto: "" entities: @@ -22,19 +22,19 @@ entities: chunks: 0,0: ind: 0,0 - tiles: dwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAEegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAEfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAFAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAdwAAAAABFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAdwAAAAACdwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAFAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAeQAAAAABFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAeQAAAAACeQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAeQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 - type: Broadphase - type: Physics @@ -60,58 +60,80 @@ entities: 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: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 72: -2,2 + 73: -1,2 + 74: -1,3 + 75: 0,2 + 76: 0,4 + 77: 0,0 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 78: 1,4 + 79: -4,1 + 80: -4,1 + 81: -2,-1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 82: -3,-1 + 83: -3,-1 + 84: 0,-2 + 85: 0,-3 - 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 + 44: 0,1 + 45: 0,-1 + 46: 3,-2 + 47: 2,-1 + 48: -4,1 + 49: -3,-1 + 50: -2,-2 + 51: -2,-1 + 52: -2,5 + 53: -2,4 + 54: 1,3 + 55: 1,4 + 56: 2,4 + 57: -3,5 + 58: -1,0 + 59: 2,-2 + 60: 0,-2 + 61: 1,-2 + 62: 0,-3 + 63: 2,0 + 64: 2,1 + 65: 3,1 + 66: 3,2 + 67: 2,2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnEndN + decals: + 86: -2,6 - node: + cleanable: True color: '#FFFFFFFF' - id: WarnBox + id: WarnEndS decals: - 37: -2,6 + 87: -2,5 - type: GridAtmosphere version: 2 data: @@ -131,7 +153,7 @@ entities: 0: 1 1: 272 -2,0: - 0: 2184 + 0: 34952 -2,1: 1: 136 -1,1: @@ -187,8 +209,6 @@ entities: entities: - uid: 112 components: - - type: MetaData - flags: InContainer - type: Transform parent: 156 - type: InstantAction @@ -366,8 +386,6 @@ entities: entities: - uid: 97 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,4.5 parent: 1 @@ -628,15 +646,15 @@ entities: - uid: 131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,1.5 + pos: 2.5,2.5 parent: 1 - proto: ComputerTabletopStationRecords entities: - uid: 130 components: - type: Transform - pos: 2.5,2.5 + rot: -1.5707963267948966 rad + pos: 3.5,1.5 parent: 1 - proto: Crematorium entities: @@ -720,7 +738,7 @@ entities: - uid: 86 components: - type: Transform - pos: -1.4739913,5.6859937 + pos: -1.522803,5.701881 parent: 1 - proto: FoodBreadMoldy entities: @@ -846,6 +864,11 @@ entities: - type: Transform pos: 1.5,3.5 parent: 1 + - uid: 176 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 - proto: Grille entities: - uid: 24 @@ -964,7 +987,7 @@ entities: - uid: 156 components: - type: Transform - pos: -1.5916386,5.548739 + pos: -2.5866327,5.701881 parent: 1 - type: HandheldLight toggleActionEntity: 112 @@ -1018,22 +1041,16 @@ entities: 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 @@ -1042,8 +1059,6 @@ entities: entities: - uid: 109 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -1.5,-1.5 @@ -1152,8 +1167,6 @@ entities: entities: - uid: 47 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,0.5 parent: 1 @@ -1252,15 +1265,11 @@ entities: 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 @@ -1268,116 +1277,86 @@ entities: 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 @@ -1417,151 +1396,109 @@ entities: 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 diff --git a/Resources/Maps/_NF/Shuttles/eagle.yml b/Resources/Maps/_NF/Shuttles/eagle.yml index 78c6bd2f6b3..03c013a53dc 100644 --- a/Resources/Maps/_NF/Shuttles/eagle.yml +++ b/Resources/Maps/_NF/Shuttles/eagle.yml @@ -4071,20 +4071,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,6.5 parent: 1 -- proto: RCD - entities: - - uid: 632 - components: - - type: Transform - pos: -5.5,-0.5 - parent: 1 -- proto: RCDAmmo - entities: - - uid: 633 - components: - - type: Transform - pos: -5.5,-0.5 - parent: 1 - proto: SheetPlasma entities: - uid: 73 diff --git a/Resources/Maps/_NF/Shuttles/knuckleverse.yml b/Resources/Maps/_NF/Shuttles/knuckleverse.yml new file mode 100644 index 00000000000..4286d5d87fe --- /dev/null +++ b/Resources/Maps/_NF/Shuttles/knuckleverse.yml @@ -0,0 +1,4645 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 19: FloorBoxing + 20: FloorBrokenWood + 30: FloorDark + 32: FloorDarkDiagonalMini + 37: FloorDarkPavement + 46: FloorGlass + 71: FloorOldConcrete + 109: FloorWhite + 115: FloorWhiteOffset + 118: FloorWhitePlastic + 119: FloorWood + 121: Lattice + 122: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -38.49696,-16.659546 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: egAAAAAAeQAAAAAAeQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAFAAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAFAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: eQAAAAAAegAAAAAAbQAAAAAAbQAAAAAAegAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAegAAAAAAegAAAAAAbQAAAAAAdgAAAAAAegAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAARwAAAAAARwAAAAAAdwAAAAAAHgAAAAAAHgAAAAAAbQAAAAAAHgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAARwAAAAAAdwAAAAAAdwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAARwAAAAAAdwAAAAABdwAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAARwAAAAAAdwAAAAAAdwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAARwAAAAAAdwAAAAAAdwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAARwAAAAAAdwAAAAAAdwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAARwAAAAAARwAAAAAARwAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAegAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAARwAAAAAARwAAAAABRwAAAAAALgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAALgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAALgAAAAAAeQAAAAAAegAAAAAAcwAAAAAAcwAAAAAAcwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAcwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAegAAAAAAegAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: '#00AAFFFF' + id: BrickTileWhiteLineS + decals: + 77: -14,3 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 78: -13,7 + 79: -14,7 + 80: -14,4 + 81: -14,3 + 82: -13,3 + 83: -6,-2 + 84: -17,1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 8: -3,0 + 9: -3,7 + 10: -2,7 + 11: -1,7 + 12: -1,8 + 13: -3,8 + 14: -3,4 + 15: -3,5 + 16: -5,0 + 17: -5,-1 + 18: -4,-2 + 19: -4,-1 + 20: -4,0 + 27: -3,-2 + 28: -9,-1 + 29: -15,5 + 30: -14,5 + 31: -17,3 + 32: -14,8 + 34: -15,4 + 35: -15,3 + 36: -16,4 + 37: -17,4 + 38: -17,5 + 39: -16,5 + 40: -13,5 + 41: -15,6 + 42: -14,6 + 43: -16,6 + 44: -17,6 + 45: -13,8 + 46: -15,7 + 47: -16,7 + 53: -2,6 + 54: 0,6 + 55: 1,6 + 56: 1,5 + 57: 0,5 + 58: -1,5 + 59: -2,5 + 60: -2,4 + 61: -1,4 + 62: 0,4 + 63: 1,4 + 64: 1,3 + 65: -2,2 + 66: -1,2 + 67: 0,2 + 68: 1,2 + 69: 2,2 + 70: 2,3 + 71: 2,4 + 72: 2,5 + 73: 2,7 + 74: 2,6 + 75: 1,7 + 76: 0,7 + 85: -5,15 + 86: -6,15 + 87: -7,15 + 88: -8,15 + 89: -9,15 + 90: -10,15 + 91: -10,16 + 92: -9,16 + 93: -8,16 + 94: -7,16 + 95: -6,16 + 96: -5,16 + 97: -13,0 + 98: -14,0 + 99: -14,1 + 100: -14,2 + 101: -11,-2 + 102: -11,-1 + 103: -12,-2 + 104: -9,-5 + 105: -8,-5 + 106: -7,-5 + 107: -6,-5 + 108: -10,12 + 109: -10,13 + 110: -11,12 + 111: -11,13 + 113: -1,1 + 114: -2,1 + 115: -11,10 + 116: -9,10 + 117: -8,10 + 118: -7,10 + 119: -6,10 + 120: -5,10 + 121: -2,10 + 122: -8,11 + 123: -8,12 + 124: -8,13 + 125: -4,12 + 126: -6,12 + 127: -5,12 + 128: -5,13 + 129: -6,13 + 130: -13,10 + 131: -12,10 + 132: -10,10 + 133: -7,11 + 134: -7,12 + 135: -7,13 + 136: -9,12 + 137: -8,12 + 138: -4,10 + 139: -3,10 + 143: -2,3 + 144: -1,3 + 145: 0,3 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 26: -3,-2 + 48: -14,5 + 49: -16,5 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 21: -3,3 + 33: -15,3 + 50: -15,4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 22: -3,5 + 25: -9,-1 + 51: -15,5 + 140: -2,0 + 142: -9,-2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 23: -3,2 + 24: -5,-1 + 52: -13,8 + 141: -1,0 + - node: + color: '#FFFFFFFF' + id: OldConcreteTrimLineE + decals: + 0: -4,4 + 1: -4,5 + 2: -4,6 + 3: -4,7 + 4: -4,8 + 5: -4,3 + 6: -4,2 + 7: -4,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 112: -2,1 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65521 + 1: 14 + -2,0: + 0: 65535 + -1,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 31 + 1: 288 + -4,0: + 1: 1 + 0: 65534 + -4,1: + 0: 65535 + -4,2: + 0: 52463 + 1: 528 + -4,3: + 1: 132 + 0: 8 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -3,2: + 0: 65535 + -3,3: + 0: 61439 + 1: 4096 + -2,1: + 0: 65535 + -2,2: + 0: 65535 + -2,3: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 4919 + 1: 8264 + -5,0: + 1: 12 + 0: 52416 + -5,1: + 0: 52428 + -5,2: + 0: 12 + -4,-1: + 1: 1536 + 0: 59520 + -3,-1: + 0: 65532 + 1: 2 + -3,-2: + 0: 52224 + -2,-2: + 0: 65280 + -2,-1: + 0: 65535 + -1,-1: + 1: 2049 + 0: 63344 + 0,-1: + 1: 256 + 0: 4096 + -3,4: + 0: 3822 + -2,4: + 0: 4095 + -1,4: + 0: 273 + 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: 2 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1 + - type: DeviceList + devices: + - 367 + - 366 + - 368 + - 363 + - 270 + - 269 + - 362 + - 271 + - type: AtmosDevice + joinedGrid: 1 + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,13.5 + parent: 1 + - type: DeviceList + devices: + - 272 + - 365 + - 361 + - 364 + - 269 + - 270 + - type: AtmosDevice + joinedGrid: 1 +- proto: AirCanister + entities: + - uid: 4 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: Airlock + entities: + - uid: 5 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 6 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,9.5 + parent: 1 + - uid: 7 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-1.5 + parent: 1 + - uid: 104 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,9.5 + parent: 1 +- proto: AirlockCommand + entities: + - uid: 8 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,14.5 + parent: 1 + - type: Door + secondsUntilStateChange: -6957.07 + state: Opening +- proto: AirlockEngineering + entities: + - uid: 9 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,12.5 + parent: 1 +- proto: AirlockExternal + entities: + - uid: 10 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 11 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-3.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 12 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1 +- proto: AirlockMaint + entities: + - uid: 15 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,12.5 + parent: 1 + - type: Door + secondsUntilStateChange: -2498.8562 + state: Opening +- proto: APCBasic + entities: + - uid: 16 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,15.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: -13.5,9.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 19 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 22 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -1.5,13.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -2.5,15.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -11.5,15.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -12.5,13.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -13.5,12.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -14.5,10.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -15.5,9.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -15.5,0.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -16.5,0.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -17.5,0.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 1 +- proto: BarSignTheBirdCage + entities: + - uid: 44 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 +- proto: BedsheetMedical + entities: + - uid: 45 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,0.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,0.5 + parent: 1 +- proto: BoozeDispenser + entities: + - uid: 47 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 +- proto: BoxingBell + entities: + - uid: 48 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 1 +- proto: BrokenBottle + entities: + - uid: 49 + components: + - type: Transform + pos: -2.2459297,3.7117987 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 50 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -5.5,12.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -4.5,12.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -5.5,12.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -13.5,9.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -13.5,8.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -13.5,7.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -13.5,6.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -13.5,5.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: -14.5,5.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -15.5,5.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: -15.5,5.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: -15.5,4.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -15.5,3.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -15.5,2.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -15.5,2.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -13.5,2.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -12.5,2.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: -8.5,10.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: -9.5,10.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: -10.5,10.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: -8.5,15.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: -14.5,3.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: -13.5,3.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: -13.5,2.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: -13.5,1.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: -13.5,0.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: -16.5,2.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: -9.5,15.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: -7.5,15.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: -5.5,15.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: -4.5,15.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: -6.5,15.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: -6.5,14.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 447 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 +- proto: CableHV + entities: + - uid: 138 + components: + - type: Transform + pos: -9.5,13.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: -10.5,13.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: -10.5,12.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: -8.5,13.5 + parent: 1 +- proto: CableMV + entities: + - uid: 145 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: -8.5,10.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: -9.5,10.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: -10.5,10.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: -11.5,10.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: -12.5,10.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: -12.5,9.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -12.5,8.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: -13.5,8.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -13.5,9.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -10.5,14.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: -7.5,12.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: -5.5,15.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -8.5,12.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: -8.5,13.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: -6.5,14.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: -3.5,17.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -6.5,15.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: -4.5,15.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,13.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,16.5 + parent: 1 + - uid: 187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,16.5 + parent: 1 +- proto: CigaretteSpent + entities: + - uid: 188 + components: + - type: Transform + pos: -10.277779,-0.80158806 + parent: 1 + - uid: 189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.168404,-1.442213 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -8.349766,-0.039014816 + parent: 1 +- proto: CigarGoldSpent + entities: + - uid: 191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.634842,-1.6467209 + parent: 1 +- proto: CigarSpent + entities: + - uid: 192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.840279,-1.770338 + parent: 1 + - uid: 193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.039795,15.324729 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: -4.0433273,0.110946655 + parent: 1 + - uid: 195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.9914474,5.9788036 + parent: 1 +- proto: CigPackRed + entities: + - uid: 196 + components: + - type: Transform + pos: -5.179821,16.692709 + parent: 1 +- proto: ClothingHandsGlovesBoxingBlue + entities: + - uid: 197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.815319,7.6857004 + parent: 1 + - uid: 198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.799694,7.2482004 + parent: 1 +- proto: ClothingHandsGlovesBoxingGreen + entities: + - uid: 199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.487194,7.6700754 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.346569,7.2794504 + parent: 1 +- proto: ClothingHandsGlovesBoxingRed + entities: + - uid: 201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.248817,5.6701593 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.186317,5.2482843 + parent: 1 +- proto: ClothingHandsGlovesBoxingYellow + entities: + - uid: 203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.764442,5.7014093 + parent: 1 + - uid: 204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.764442,5.3264093 + parent: 1 +- proto: ClothingUniformJumpsuitCasualBlue + entities: + - uid: 205 + components: + - type: Transform + pos: -16.80597,4.705227 + parent: 1 +- proto: ClothingUniformJumpsuitPsychologist + entities: + - uid: 206 + components: + - type: Transform + pos: -16.852844,4.408352 + parent: 1 +- proto: Cobweb2 + entities: + - uid: 207 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 +- proto: ComputerTabletopRadar + entities: + - uid: 208 + components: + - type: Transform + pos: -7.5,17.5 + parent: 1 +- proto: ComputerTabletopShuttle + entities: + - uid: 209 + components: + - type: Transform + pos: -6.5,17.5 + parent: 1 +- proto: ComputerTabletopStationRecords + entities: + - uid: 210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,16.5 + parent: 1 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,1.5 + parent: 1 +- proto: DrinkBeerBottleFull + entities: + - uid: 212 + components: + - type: Transform + pos: -10.958,-0.6096668 + parent: 1 +- proto: DrinkEnergyDrinkCan + entities: + - uid: 213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.283836,2.7889214 + parent: 1 + - uid: 214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.283836,2.6014214 + parent: 1 + - uid: 215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.283836,2.3514214 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.283836,2.1951714 + parent: 1 +- proto: DrinkGoldenCup + entities: + - uid: 217 + components: + - type: Transform + pos: -16.315453,4.7543736 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: -16.355827,4.4262486 + parent: 1 +- proto: DrinkShaker + entities: + - uid: 219 + components: + - type: Transform + pos: 2.500061,5.4633293 + parent: 1 +- proto: EmergencyLight + entities: + - uid: 142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,15.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: -16.5,7.5 + parent: 1 + - uid: 227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,5.5 + parent: 1 + - uid: 228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,4.5 + parent: 1 + - uid: 232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,11.5 + parent: 1 + - uid: 233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,12.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 +- proto: FaxMachineShip + entities: + - uid: 240 + components: + - type: Transform + pos: -5.5,17.5 + parent: 1 +- proto: FenceMetalCorner + entities: + - uid: 241 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,1.5 + parent: 1 + - uid: 243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,8.5 + parent: 1 + - uid: 244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 +- proto: FenceMetalGate + entities: + - uid: 245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,4.5 + parent: 1 + - uid: 246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,6.5 + parent: 1 + - type: Door + secondsUntilStateChange: -30112.76 + state: Opening +- proto: FenceMetalStraight + entities: + - uid: 247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,2.5 + parent: 1 + - uid: 248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,6.5 + parent: 1 + - uid: 249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1 + - uid: 250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 1 + - uid: 251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 1 + - uid: 252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,7.5 + parent: 1 + - uid: 253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 + - uid: 254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - uid: 255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + - uid: 256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + - uid: 257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + - uid: 258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,1.5 + parent: 1 + - uid: 259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: -10.5,5.5 + parent: 1 + - uid: 262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,7.5 + parent: 1 + - uid: 263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,8.5 + parent: 1 + - uid: 264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,8.5 + parent: 1 + - uid: 265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,8.5 + parent: 1 + - uid: 266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,8.5 + parent: 1 + - uid: 267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1 + - uid: 268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1 +- proto: Firelock + entities: + - uid: 269 + components: + - type: Transform + pos: -12.5,9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - uid: 270 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - uid: 271 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 1 + - uid: 272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,14.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 +- proto: FoodSnackEnergy + entities: + - uid: 273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.728836,2.6801424 + parent: 1 + - uid: 274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.744461,2.3207674 + parent: 1 + - uid: 275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.367756,2.6951714 + parent: 1 + - uid: 276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.352131,2.1951714 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 278 + components: + - type: Transform + pos: -7.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 285 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 287 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 290 + components: + - type: Transform + pos: -12.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraight + entities: + - uid: 292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 295 + components: + - type: Transform + pos: -7.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 300 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 302 + components: + - type: Transform + pos: -16.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 303 + components: + - type: Transform + pos: -16.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 304 + components: + - type: Transform + pos: -16.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 311 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 312 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 313 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 314 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 315 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 321 + components: + - type: Transform + pos: -12.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 322 + components: + - type: Transform + pos: -12.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 323 + components: + - type: Transform + pos: -12.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 331 + components: + - type: Transform + pos: -16.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 332 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 337 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 338 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeTJunction + entities: + - uid: 354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 356 + components: + - type: Transform + pos: -6.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPort + entities: + - uid: 360 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,15.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,12.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,15.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GravityGeneratorMini + entities: + - uid: 369 + components: + - type: Transform + pos: -4.5,17.5 + parent: 1 +- proto: Grille + entities: + - uid: 370 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 371 + components: + - type: Transform + pos: -9.5,18.5 + parent: 1 + - uid: 372 + components: + - type: Transform + pos: -10.5,17.5 + parent: 1 + - uid: 373 + components: + - type: Transform + pos: -4.5,18.5 + parent: 1 + - uid: 374 + components: + - type: Transform + pos: -10.5,18.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: -6.5,18.5 + parent: 1 + - uid: 376 + components: + - type: Transform + pos: -3.5,17.5 + parent: 1 + - uid: 377 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 379 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 380 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 381 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 382 + components: + - type: Transform + pos: -5.5,18.5 + parent: 1 + - uid: 383 + components: + - type: Transform + pos: -3.5,18.5 + parent: 1 + - uid: 384 + components: + - type: Transform + pos: -8.5,18.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: -7.5,18.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 386 + components: + - type: Transform + pos: -9.5,17.5 + parent: 1 +- proto: HospitalCurtains + entities: + - uid: 387 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,2.5 + parent: 1 + - uid: 388 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,6.5 + parent: 1 + - type: Door + secondsUntilStateChange: -24811.93 + state: Opening + - uid: 389 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,4.5 + parent: 1 +- proto: LightBulbBroken + entities: + - uid: 390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5251389,0.63520813 + parent: 1 +- proto: LockerBoozeFilled + entities: + - uid: 391 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 +- proto: LockerPilotFilled + entities: + - uid: 141 + components: + - type: Transform + pos: -9.5,16.5 + parent: 1 +- proto: LuxuryPen + entities: + - uid: 487 + components: + - type: Transform + pos: -8.579712,17.084736 + parent: 1 +- proto: Matchbox + entities: + - uid: 393 + components: + - type: Transform + pos: -5.632946,16.645834 + parent: 1 +- proto: MatchstickSpent + entities: + - uid: 394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.61792,16.60598 + parent: 1 + - uid: 395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.96167,15.746604 + parent: 1 + - uid: 396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.0452156,7.3168955 + parent: 1 + - uid: 397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.6449776,-1.0814991 + parent: 1 +- proto: MedicalBed + entities: + - uid: 398 + components: + - type: Transform + pos: -13.5,0.5 + parent: 1 + - uid: 399 + components: + - type: Transform + pos: -12.5,0.5 + parent: 1 +- proto: MedkitBruteFilled + entities: + - uid: 143 + components: + - type: Transform + pos: -12.270641,1.615612 + parent: 1 +- proto: MedkitFilled + entities: + - uid: 401 + components: + - type: Transform + pos: -12.80164,1.6445293 + parent: 1 +- proto: Mirror + entities: + - uid: 402 + components: + - type: Transform + pos: -10.5,0.5 + parent: 1 +- proto: MopBucketFull + entities: + - uid: 403 + components: + - type: Transform + pos: -3.4354095,12.454241 + parent: 1 +- proto: MopItem + entities: + - uid: 404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.8171577,13.529375 + parent: 1 +- proto: PaperBin20 + entities: + - uid: 405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - uid: 406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,17.5 + parent: 1 +- proto: PortableGeneratorPacmanShuttle + entities: + - uid: 407 + components: + - type: Transform + pos: -10.5,12.5 + parent: 1 + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static + - uid: 408 + components: + - type: Transform + pos: -10.5,13.5 + parent: 1 + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static +- proto: PosterContrabandPunchShit + entities: + - uid: 409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,7.5 + parent: 1 + - uid: 411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,6.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: -9.5,10.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: -12.5,1.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: -9.5,13.5 + parent: 1 + - uid: 416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,3.5 + parent: 1 + - uid: 417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,3.5 + parent: 1 + - uid: 418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,15.5 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,15.5 + parent: 1 + - uid: 421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + - uid: 422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 + - uid: 423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - uid: 424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-1.5 + parent: 1 + - uid: 425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 1 + - uid: 426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,7.5 + parent: 1 + - uid: 427 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - uid: 428 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,13.5 + parent: 1 + - uid: 430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,13.5 + parent: 1 + - uid: 431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 1 + - uid: 432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 +- proto: PoweredSmallLightEmpty + entities: + - uid: 433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 1 +- proto: Rack + entities: + - uid: 434 + components: + - type: Transform + pos: -12.5,1.5 + parent: 1 + - uid: 435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,5.5 + parent: 1 + - uid: 436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,4.5 + parent: 1 + - uid: 437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,7.5 + parent: 1 + - uid: 438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,7.5 + parent: 1 + - uid: 439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,2.5 + parent: 1 + - uid: 440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,2.5 + parent: 1 + - uid: 441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,13.5 + parent: 1 +- proto: RandomDrinkGlass + entities: + - uid: 442 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 +- proto: RandomPosterAny + entities: + - uid: 443 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 444 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 445 + components: + - type: Transform + pos: -10.5,11.5 + parent: 1 + - uid: 446 + components: + - type: Transform + pos: -15.5,8.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 448 + components: + - type: Transform + pos: -10.5,17.5 + parent: 1 + - uid: 449 + components: + - type: Transform + pos: -6.5,18.5 + parent: 1 + - uid: 450 + components: + - type: Transform + pos: -8.5,18.5 + parent: 1 + - uid: 451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 1 + - uid: 452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 1 + - uid: 453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 1 + - uid: 454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 1 + - uid: 455 + components: + - type: Transform + pos: -10.5,18.5 + parent: 1 + - uid: 456 + components: + - type: Transform + pos: -4.5,18.5 + parent: 1 + - uid: 457 + components: + - type: Transform + pos: -9.5,18.5 + parent: 1 + - uid: 458 + components: + - type: Transform + pos: -7.5,18.5 + parent: 1 + - uid: 459 + components: + - type: Transform + pos: -5.5,18.5 + parent: 1 + - uid: 460 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 461 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 1 + - uid: 462 + components: + - type: Transform + pos: -3.5,18.5 + parent: 1 + - uid: 463 + components: + - type: Transform + pos: -3.5,17.5 + parent: 1 +- proto: ShardGlass + entities: + - uid: 464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.91503906,5.5988417 + parent: 1 +- proto: SignEngine + entities: + - uid: 103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,13.5 + parent: 1 +- proto: SignMedical + entities: + - uid: 465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,2.5 + parent: 1 +- proto: SinkWide + entities: + - uid: 466 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 467 + components: + - type: Transform + pos: -9.5,13.5 + parent: 1 +- proto: SoapHomemade + entities: + - uid: 468 + components: + - type: Transform + pos: -3.7077827,13.274853 + parent: 1 +- proto: soda_dispenser + entities: + - uid: 469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 +- proto: SpawnPointBartender + entities: + - uid: 470 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 +- proto: SpawnPointBoxer + entities: + - uid: 471 + components: + - type: Transform + pos: -16.5,6.5 + parent: 1 +- proto: SpawnPointJanitor + entities: + - uid: 472 + components: + - type: Transform + pos: -4.5,12.5 + parent: 1 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 473 + components: + - type: Transform + pos: -13.5,1.5 + parent: 1 +- proto: SpawnPointPilot + entities: + - uid: 474 + components: + - type: Transform + pos: -5.5,15.5 + parent: 1 +- proto: SprayBottleWater + entities: + - uid: 475 + components: + - type: Transform + pos: -3.2234077,13.649853 + parent: 1 +- proto: Stairs + entities: + - uid: 476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,4.5 + parent: 1 + - uid: 477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,6.5 + parent: 1 +- proto: SteelBench + entities: + - uid: 478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,5.5 + parent: 1 + - uid: 479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,4.5 + parent: 1 + - uid: 480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,4.5 + parent: 1 + - uid: 481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,5.5 + parent: 1 +- proto: Stool + entities: + - uid: 482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 1 + - uid: 483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,0.5 + parent: 1 + - uid: 484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 1 + - uid: 485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 1 + - uid: 486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 1 + - uid: 488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 1 +- proto: StoolBar + entities: + - uid: 489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 1 + - uid: 490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - uid: 491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + - uid: 492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + - uid: 493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - uid: 494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 495 + components: + - type: Transform + pos: -8.5,13.5 + parent: 1 +- proto: SuitStorageWallmountEVA + entities: + - uid: 496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,11.5 + parent: 1 + - type: Physics + canCollide: False +- proto: Table + entities: + - uid: 497 + components: + - type: Transform + pos: -8.5,17.5 + parent: 1 + - uid: 498 + components: + - type: Transform + pos: -7.5,17.5 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: -6.5,17.5 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: -5.5,17.5 + parent: 1 + - uid: 501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,16.5 + parent: 1 + - uid: 502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,16.5 + parent: 1 +- proto: TableWood + entities: + - uid: 155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1 + - uid: 503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 1 + - uid: 504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - uid: 505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - uid: 506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + - uid: 507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - uid: 508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - uid: 509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 1 + - uid: 510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + - uid: 511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 +- proto: Thruster + entities: + - uid: 512 + components: + - type: Transform + pos: -2.5,15.5 + parent: 1 + - uid: 513 + components: + - type: Transform + pos: -11.5,15.5 + parent: 1 + - uid: 514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,0.5 + parent: 1 + - uid: 515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,0.5 + parent: 1 + - uid: 516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-1.5 + parent: 1 + - uid: 517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + - uid: 519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 1 + - uid: 520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 +- proto: ToiletDirtyWater + entities: + - uid: 522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 1 +- proto: ToyFigurineBoxer + entities: + - uid: 523 + components: + - type: Transform + pos: 0.43748474,6.684057 + parent: 1 +- proto: TrashBag + entities: + - uid: 524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.539795,13.533486 + parent: 1 + - uid: 525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.461155,13.317894 + parent: 1 +- proto: UniformShortsRed + entities: + - uid: 526 + components: + - type: Transform + pos: -14.737095,7.6867657 + parent: 1 + - uid: 527 + components: + - type: Transform + pos: -14.75272,7.3586407 + parent: 1 + - uid: 528 + components: + - type: Transform + pos: -14.78397,7.2492657 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: -14.75272,7.5148907 + parent: 1 +- proto: UniformShortsRedWithTop + entities: + - uid: 530 + components: + - type: Transform + pos: -14.36858,7.6075754 + parent: 1 + - uid: 531 + components: + - type: Transform + pos: -14.36858,7.4669504 + parent: 1 + - uid: 532 + components: + - type: Transform + pos: -14.37722,7.349349 + parent: 1 + - uid: 533 + components: + - type: Transform + pos: -14.36858,7.6700754 + parent: 1 +- proto: VendingMachineBooze + entities: + - uid: 534 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 +- proto: VendingMachineBoxingDrobe + entities: + - uid: 535 + components: + - type: Transform + pos: -16.5,7.5 + parent: 1 +- proto: VendingMachineCigs + entities: + - uid: 536 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 +- proto: WallReinforced + entities: + - uid: 537 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,16.5 + parent: 1 + - uid: 538 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,16.5 + parent: 1 + - uid: 539 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 540 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + - uid: 541 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 542 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 543 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + - uid: 544 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 545 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,10.5 + parent: 1 + - uid: 546 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 547 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,14.5 + parent: 1 + - uid: 548 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,9.5 + parent: 1 + - uid: 549 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-0.5 + parent: 1 + - uid: 550 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,1.5 + parent: 1 + - uid: 551 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,4.5 + parent: 1 + - uid: 552 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,1.5 + parent: 1 + - uid: 553 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,1.5 + parent: 1 + - uid: 554 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-4.5 + parent: 1 + - uid: 555 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 556 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,15.5 + parent: 1 + - uid: 557 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-5.5 + parent: 1 + - uid: 558 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 559 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-0.5 + parent: 1 + - uid: 560 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 561 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,9.5 + parent: 1 + - uid: 562 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 563 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,8.5 + parent: 1 + - uid: 564 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 565 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,11.5 + parent: 1 + - uid: 566 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,0.5 + parent: 1 + - uid: 567 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,8.5 + parent: 1 + - uid: 568 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-2.5 + parent: 1 + - uid: 569 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,8.5 + parent: 1 + - uid: 570 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,7.5 + parent: 1 + - uid: 571 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 572 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,6.5 + parent: 1 + - uid: 573 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-1.5 + parent: 1 + - uid: 574 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-2.5 + parent: 1 + - uid: 575 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,5.5 + parent: 1 + - uid: 576 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 577 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,13.5 + parent: 1 + - uid: 578 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,11.5 + parent: 1 + - uid: 579 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,15.5 + parent: 1 + - uid: 580 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,12.5 + parent: 1 + - uid: 581 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 582 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,14.5 + parent: 1 + - uid: 583 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,12.5 + parent: 1 + - uid: 584 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,12.5 + parent: 1 + - uid: 585 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 586 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 587 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,3.5 + parent: 1 + - uid: 588 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 589 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 590 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,11.5 + parent: 1 + - uid: 591 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 592 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - uid: 593 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,14.5 + parent: 1 + - uid: 594 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,11.5 + parent: 1 + - uid: 595 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,10.5 + parent: 1 + - uid: 596 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,12.5 + parent: 1 + - uid: 597 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,2.5 + parent: 1 + - uid: 598 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 599 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 600 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,1.5 + parent: 1 + - uid: 601 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-0.5 + parent: 1 + - uid: 602 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 603 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,8.5 + parent: 1 + - uid: 604 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-0.5 + parent: 1 + - uid: 605 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - uid: 606 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 607 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-3.5 + parent: 1 + - uid: 608 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-5.5 + parent: 1 + - uid: 609 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-2.5 + parent: 1 + - uid: 610 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-4.5 + parent: 1 + - uid: 611 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 612 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,11.5 + parent: 1 +- proto: WallSolid + entities: + - uid: 613 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,9.5 + parent: 1 + - uid: 614 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,9.5 + parent: 1 + - uid: 615 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,9.5 + parent: 1 + - uid: 616 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,9.5 + parent: 1 + - uid: 617 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,9.5 + parent: 1 + - uid: 618 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,9.5 + parent: 1 + - uid: 619 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,14.5 + parent: 1 + - uid: 620 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,13.5 + parent: 1 + - uid: 621 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,3.5 + parent: 1 + - uid: 622 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,2.5 + parent: 1 + - uid: 623 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,2.5 + parent: 1 + - uid: 624 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,14.5 + parent: 1 + - uid: 625 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,14.5 + parent: 1 + - uid: 626 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,14.5 + parent: 1 + - uid: 627 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 1 + - uid: 628 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,1.5 + parent: 1 + - uid: 629 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,11.5 + parent: 1 + - uid: 630 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1 + - uid: 631 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,9.5 + parent: 1 + - uid: 632 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,8.5 + parent: 1 + - uid: 633 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,11.5 + parent: 1 + - uid: 634 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + - uid: 635 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,14.5 + parent: 1 + - uid: 636 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,11.5 + parent: 1 + - uid: 637 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,11.5 + parent: 1 + - uid: 638 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + - uid: 639 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,7.5 + parent: 1 + - uid: 640 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,2.5 + parent: 1 + - uid: 641 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,5.5 + parent: 1 + - uid: 642 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 1 + - uid: 643 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,13.5 + parent: 1 + - uid: 644 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,11.5 + parent: 1 + - uid: 645 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,11.5 + parent: 1 + - uid: 646 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,0.5 + parent: 1 + - uid: 647 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1 + - uid: 648 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 1 +- proto: WallSolidDiagonal + entities: + - uid: 649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 1 + - uid: 650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + - uid: 651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,0.5 + parent: 1 + - uid: 652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 653 + components: + - type: Transform + pos: -15.5,9.5 + parent: 1 + - uid: 654 + components: + - type: Transform + pos: -14.5,10.5 + parent: 1 + - uid: 655 + components: + - type: Transform + pos: -13.5,12.5 + parent: 1 + - uid: 656 + components: + - type: Transform + pos: -12.5,13.5 + parent: 1 + - uid: 657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 + - uid: 658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + - uid: 659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 1 + - uid: 660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 +- proto: WarpPointShip + entities: + - uid: 661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,5.5 + parent: 1 +- proto: Windoor + entities: + - uid: 662 + components: + - type: Transform + pos: -13.5,3.5 + parent: 1 +- proto: Wrench + entities: + - uid: 663 + components: + - type: Transform + pos: -3.9668999,12.734992 + parent: 1 +... diff --git a/Resources/Maps/_NF/Shuttles/mccargo.yml b/Resources/Maps/_NF/Shuttles/mccargo.yml index f52681ce97f..986f61d7899 100644 --- a/Resources/Maps/_NF/Shuttles/mccargo.yml +++ b/Resources/Maps/_NF/Shuttles/mccargo.yml @@ -5,11 +5,11 @@ tilemap: 0: Space 14: FloorBar 77: FloorRGlass - 105: FloorTechMaint - 113: FloorWhiteMini - 114: FloorWhiteMono - 121: Lattice - 122: Plating + 107: FloorTechMaint + 115: FloorWhiteMini + 116: FloorWhiteMono + 124: Lattice + 125: Plating entities: - proto: "" entities: @@ -24,27 +24,27 @@ entities: chunks: 0,0: ind: 0,0 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAegAAAAAADgAAAAAADgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAaQAAAAAADgAAAAAADgAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAegAAAAAAegAAAAAAcgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAegAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAegAAAAAAcgAAAAAAcgAAAAAAegAAAAAAcgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAegAAAAAAcgAAAAAAcgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAegAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAcgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAfQAAAAAADgAAAAAADgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAawAAAAAADgAAAAAADgAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAdAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAdAAAAAAAdAAAAAAAfQAAAAAAdAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAdAAAAAAAdAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAdAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAdAAAAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAADgAAAAAADgAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAADgAAAAAADgAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAADgAAAAAADgAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAADgAAAAAADgAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAADgAAAAAADgAAAAAADgAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAADgAAAAAADgAAAAAADgAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAADgAAAAAADgAAAAAADgAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAADgAAAAAADgAAAAAADgAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,1: ind: 0,1 - tiles: egAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -917,8 +917,6 @@ entities: entities: - uid: 27 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,14.5 parent: 1 @@ -927,8 +925,6 @@ entities: - 805 - uid: 193 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -3.5,2.5 @@ -938,8 +934,6 @@ entities: - 173 - uid: 300 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,3.5 @@ -949,15 +943,11 @@ entities: - 730 - uid: 301 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,9.5 parent: 1 - uid: 843 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -2.5,4.5 @@ -1084,8 +1074,6 @@ entities: entities: - uid: 412 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,9.5 parent: 1 @@ -1184,23 +1172,17 @@ entities: entities: - uid: 60 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 6.5,9.5 parent: 1 - uid: 210 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,3.5 parent: 1 - uid: 633 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,14.5 @@ -1232,8 +1214,6 @@ entities: entities: - uid: 863 components: - - type: MetaData - flags: InContainer - type: Transform parent: 862 - type: Physics @@ -1513,11 +1493,6 @@ entities: - type: Transform pos: -10.5,1.5 parent: 1 - - uid: 1055 - components: - - type: Transform - pos: 4.5,-6.5 - parent: 1 - uid: 1056 components: - type: Transform @@ -1734,6 +1709,14 @@ entities: parent: 1 - type: Physics bodyType: Static +- proto: BlockGameArcade + entities: + - uid: 276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 1 - proto: BorgCharger entities: - uid: 329 @@ -1746,8 +1729,6 @@ entities: entities: - uid: 164 components: - - type: MetaData - flags: InContainer - type: Transform parent: 405 - type: Physics @@ -2923,8 +2904,6 @@ entities: entities: - uid: 704 components: - - type: MetaData - flags: InContainer - type: Transform parent: 1081 - type: Physics @@ -3029,11 +3008,11 @@ entities: parent: 1 - proto: DefibrillatorCabinetFilled entities: - - uid: 766 + - uid: 184 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-5.5 + rot: -1.5707963267948966 rad + pos: 8.5,2.5 parent: 1 - proto: DeskBell entities: @@ -3426,7 +3405,6 @@ entities: - uid: 1083 components: - type: MetaData - flags: InContainer desc: A sweet, carbonated soft drink. Caffeine free. name: cola glass - type: Transform @@ -3446,8 +3424,8 @@ entities: - type: TransformableContainer transformed: True currentReagent: - metamorphicSprite: null - meltingPoint: null + metamorphicChangeColor: True + id: Cola flavor: soda flavorMinimum: 0.1 slippery: True @@ -3513,8 +3491,8 @@ entities: volume: 0 attenuation: LinearDistanceClamped collection: FootstepWater - id: Cola name: reagent-name-cola + metamorphicFillBaseName: null group: Drinks parent: - BaseSoda @@ -3524,6 +3502,9 @@ entities: color: '#422912FF' specificHeat: 1 boilingPoint: null + meltingPoint: null + metamorphicSprite: null + metamorphicMaxFillLevels: 0 recognizable: True - type: Physics canCollide: False @@ -3789,8 +3770,6 @@ entities: entities: - uid: 706 components: - - type: MetaData - flags: InContainer - type: Transform parent: 1081 - type: Physics @@ -3836,8 +3815,6 @@ entities: entities: - uid: 707 components: - - type: MetaData - flags: InContainer - type: Transform parent: 1081 - type: Physics @@ -3900,8 +3877,6 @@ entities: entities: - uid: 902 components: - - type: MetaData - flags: InContainer - type: Transform parent: 1081 - type: Physics @@ -3955,11 +3930,6 @@ entities: - type: Transform pos: -6.244554,1.794488 parent: 1 - - uid: 795 - components: - - type: Transform - pos: -6.338304,1.606988 - parent: 1 - uid: 860 components: - type: Transform @@ -3997,11 +3967,6 @@ entities: - type: Transform pos: -6.859103,1.7711829 parent: 1 - - uid: 787 - components: - - type: Transform - pos: -6.9736867,1.5940995 - parent: 1 - proto: GasPassiveVent entities: - uid: 347 @@ -4713,6 +4678,19 @@ entities: - type: Transform pos: -11.5,0.5 parent: 1 +- proto: GrilleDiagonal + entities: + - uid: 529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,16.5 + parent: 1 + - uid: 691 + components: + - type: Transform + pos: -4.5,16.5 + parent: 1 - proto: GunSafeShuttleCaptain entities: - uid: 405 @@ -4866,18 +4844,18 @@ entities: parent: 1 - proto: KitchenDeepFryer entities: - - uid: 184 + - uid: 334 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,6.5 + pos: 4.5,5.5 parent: 1 - proto: KitchenElectricGrill entities: - - uid: 929 + - uid: 774 components: - type: Transform - pos: 4.5,5.5 + pos: 0.5,7.5 parent: 1 - proto: KitchenKnife entities: @@ -4900,10 +4878,10 @@ entities: parent: 1 - proto: KitchenReagentGrinder entities: - - uid: 268 + - uid: 346 components: - type: Transform - pos: 0.5,7.5 + pos: 4.5,6.5 parent: 1 - proto: KitchenSpike entities: @@ -5100,14 +5078,6 @@ entities: - type: Transform pos: -8.5,2.5 parent: 1 -- proto: PosterContrabandSunkist - entities: - - uid: 346 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,2.5 - parent: 1 - proto: PowerCellRecharger entities: - uid: 767 @@ -5120,207 +5090,142 @@ entities: entities: - uid: 33 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -8.5,3.5 parent: 1 - uid: 110 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -1.5,10.5 parent: 1 - - uid: 207 + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + - uid: 201 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,12.5 + pos: -8.5,1.5 parent: 1 - - uid: 227 + - uid: 207 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 9.5,1.5 + rot: 1.5707963267948966 rad + pos: 6.5,12.5 parent: 1 - uid: 262 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 4.5,16.5 parent: 1 - uid: 273 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-4.5 parent: 1 - uid: 287 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 3.5,14.5 parent: 1 + - uid: 288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 - uid: 397 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -8.5,8.5 parent: 1 - uid: 428 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-4.5 parent: 1 - uid: 441 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 448 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,1.5 - parent: 1 - - uid: 691 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,8.5 - parent: 1 - uid: 720 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,8.5 parent: 1 - uid: 721 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -1.5,2.5 parent: 1 - uid: 722 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -1.5,8.5 parent: 1 - uid: 746 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,3.5 parent: 1 - - uid: 804 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,11.5 - parent: 1 - - uid: 833 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-4.5 - parent: 1 - uid: 959 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-7.5 parent: 1 - uid: 960 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -11.5,-2.5 parent: 1 - uid: 961 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-7.5 parent: 1 - uid: 962 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 12.5,-2.5 parent: 1 - proto: PoweredlightColoredBlack entities: - - uid: 445 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,5.5 - parent: 1 - - uid: 779 + - uid: 227 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 9.5,9.5 + rot: -1.5707963267948966 rad + pos: 7.5,7.5 parent: 1 - - uid: 788 + - uid: 256 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 9.5,6.5 + rot: 3.141592653589793 rad + pos: 9.5,8.5 parent: 1 - - uid: 1007 + - uid: 445 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 7.5,8.5 + rot: 3.141592653589793 rad + pos: 9.5,5.5 parent: 1 - proto: Rack entities: @@ -5429,44 +5334,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,10.5 parent: 1 -- proto: RandomArcade - entities: - - uid: 447 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-4.5 - parent: 1 - - uid: 535 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-4.5 - parent: 1 -- proto: RandomDrinkBottle - entities: - - uid: 712 - components: - - type: Transform - pos: 2.5,-1.5 - parent: 1 - - uid: 761 - components: - - type: Transform - pos: -1.5,-1.5 - parent: 1 -- proto: RandomSnacks - entities: - - uid: 762 - components: - - type: Transform - pos: -5.5,-2.5 - parent: 1 - - uid: 829 - components: - - type: Transform - pos: 6.5,-2.5 - parent: 1 - proto: ReinforcedWindow entities: - uid: 28 @@ -5629,6 +5496,19 @@ entities: - type: Transform pos: 10.5,8.5 parent: 1 +- proto: ReinforcedWindowDiagonal + entities: + - uid: 438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,16.5 + parent: 1 + - uid: 528 + components: + - type: Transform + pos: -4.5,16.5 + parent: 1 - proto: SeedExtractor entities: - uid: 104 @@ -5670,6 +5550,14 @@ entities: - type: DeviceLinkSink links: - 455 + - uid: 263 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 770 - uid: 337 components: - type: Transform @@ -5856,14 +5744,6 @@ entities: - type: DeviceLinkSink links: - 770 - - uid: 774 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 1 - - type: DeviceLinkSink - links: - - 770 - uid: 775 components: - type: Transform @@ -6077,14 +5957,14 @@ entities: - Pressed: Toggle 773: - Pressed: Toggle - 774: - - Pressed: Toggle 775: - Pressed: Toggle 776: - Pressed: Toggle 777: - Pressed: Toggle + 263: + - Pressed: Toggle - uid: 805 components: - type: Transform @@ -6344,6 +6224,14 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,5.5 parent: 1 +- proto: SpaceVillainArcadeFilled + entities: + - uid: 268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 1 - proto: SpawnMobCow entities: - uid: 230 @@ -6457,9 +6345,9 @@ entities: - type: Transform pos: -8.5,11.5 parent: 1 -- proto: SuitStorageWallmountEVA +- proto: SuitStorageWallmountPilot entities: - - uid: 976 + - uid: 318 components: - type: Transform pos: 3.5,15.5 @@ -6596,12 +6484,6 @@ entities: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 138 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,5.5 - parent: 1 - uid: 139 components: - type: Transform @@ -6886,13 +6768,6 @@ entities: - type: Transform pos: -5.35921,7.836001 parent: 1 -- proto: ToySpawner - entities: - - uid: 764 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 1 - proto: VendingMachineBooze entities: - uid: 801 @@ -7173,857 +7048,652 @@ entities: parent: 1 - proto: WallReinforced entities: - - uid: 201 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,15.5 - parent: 1 - uid: 203 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,15.5 parent: 1 - uid: 297 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -8.5,-6.5 parent: 1 - uid: 315 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,12.5 parent: 1 - uid: 316 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,11.5 parent: 1 - uid: 317 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,10.5 parent: 1 - uid: 319 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,9.5 parent: 1 - uid: 321 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,8.5 parent: 1 - uid: 322 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,7.5 parent: 1 - uid: 323 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-8.5 parent: 1 - uid: 328 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,6.5 parent: 1 - uid: 418 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,5.5 parent: 1 - uid: 423 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,4.5 parent: 1 - uid: 424 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,2.5 parent: 1 - uid: 427 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,3.5 parent: 1 + - uid: 431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,15.5 + parent: 1 + - uid: 432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,10.5 + parent: 1 - uid: 437 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,15.5 parent: 1 - uid: 521 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -3.5,-5.5 parent: 1 - uid: 525 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,-8.5 parent: 1 - uid: 526 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -4.5,-6.5 parent: 1 - uid: 527 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 4.5,-5.5 parent: 1 - - uid: 529 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,10.5 - parent: 1 - uid: 544 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 10.5,4.5 parent: 1 - uid: 546 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 10.5,3.5 parent: 1 - uid: 548 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 10.5,2.5 parent: 1 - uid: 561 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-8.5 parent: 1 - uid: 594 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 3.5,15.5 parent: 1 - uid: 597 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 4.5,15.5 parent: 1 - uid: 606 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,15.5 parent: 1 - uid: 607 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 10.5,1.5 parent: 1 - uid: 609 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 10.5,-5.5 parent: 1 - uid: 610 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 11.5,-3.5 parent: 1 - uid: 617 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 9.5,-6.5 parent: 1 - uid: 623 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,-6.5 parent: 1 - uid: 625 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 10.5,-4.5 parent: 1 - uid: 627 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,15.5 parent: 1 - uid: 631 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,15.5 parent: 1 - uid: 638 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,13.5 parent: 1 - uid: 639 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 1.5,15.5 parent: 1 - uid: 641 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,14.5 parent: 1 - uid: 655 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 10.5,7.5 parent: 1 - uid: 709 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,-5.5 parent: 1 - uid: 718 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,-4.5 parent: 1 - uid: 731 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 11.5,0.5 parent: 1 - uid: 732 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -10.5,-3.5 parent: 1 - uid: 734 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,1.5 parent: 1 - uid: 735 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -10.5,0.5 parent: 1 - uid: 889 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,15.5 parent: 1 - uid: 903 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,-8.5 parent: 1 - uid: 907 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,-3.5 parent: 1 - uid: 908 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,0.5 parent: 1 - uid: 909 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,-3.5 parent: 1 - uid: 910 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,0.5 parent: 1 +- proto: WallReinforcedDiagonal + entities: + - uid: 65 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 1 + - uid: 435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-4.5 + parent: 1 + - uid: 447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-6.5 + parent: 1 + - uid: 448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-6.5 + parent: 1 + - uid: 535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 1 + - uid: 545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,1.5 + parent: 1 + - uid: 549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1 + - uid: 550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 1 + - uid: 595 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1 + - uid: 611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 1 + - uid: 712 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - uid: 736 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1 + - uid: 761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 1 + - uid: 762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 1 + - uid: 764 + components: + - type: Transform + pos: -9.5,15.5 + parent: 1 + - uid: 766 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1 - proto: WallSolid entities: - uid: 10 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,4.5 parent: 1 - uid: 29 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,2.5 parent: 1 - uid: 30 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,2.5 parent: 1 - uid: 37 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,9.5 parent: 1 - uid: 40 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,9.5 parent: 1 - uid: 42 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,9.5 parent: 1 - uid: 43 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,9.5 parent: 1 - uid: 54 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,11.5 parent: 1 - uid: 55 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,10.5 parent: 1 - uid: 66 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,13.5 parent: 1 - uid: 71 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 8.5,2.5 parent: 1 - uid: 82 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 2.5,9.5 parent: 1 - uid: 101 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,2.5 parent: 1 - uid: 132 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,2.5 parent: 1 - uid: 133 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,2.5 parent: 1 - uid: 134 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,2.5 parent: 1 - uid: 135 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,2.5 parent: 1 - uid: 195 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -2.5,3.5 parent: 1 - uid: 224 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 9.5,2.5 parent: 1 - uid: 250 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,12.5 parent: 1 - uid: 261 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,4.5 parent: 1 - uid: 270 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 9.5,10.5 parent: 1 - uid: 279 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,10.5 parent: 1 - uid: 284 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,4.5 parent: 1 - uid: 290 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 5.5,11.5 parent: 1 - uid: 369 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 8.5,9.5 parent: 1 - uid: 384 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,9.5 parent: 1 - uid: 420 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,5.5 parent: 1 - uid: 421 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,4.5 parent: 1 - uid: 453 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 4.5,13.5 parent: 1 - uid: 572 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,10.5 parent: 1 - uid: 574 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,6.5 parent: 1 - uid: 589 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,7.5 parent: 1 - uid: 590 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,8.5 parent: 1 - uid: 605 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,9.5 parent: 1 - uid: 644 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 9.5,7.5 parent: 1 - uid: 656 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 8.5,6.5 parent: 1 - uid: 664 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 7.5,9.5 parent: 1 - uid: 665 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 8.5,7.5 parent: 1 - uid: 688 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -2.5,5.5 parent: 1 - uid: 810 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,13.5 parent: 1 - uid: 811 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,13.5 parent: 1 - uid: 814 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,13.5 parent: 1 - uid: 963 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,8.5 parent: 1 - uid: 964 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,7.5 parent: 1 -- proto: WallSolidDiagonal - entities: - - uid: 65 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 1 - - uid: 116 - components: - - type: Transform - pos: -4.5,16.5 - parent: 1 - - uid: 256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-6.5 - parent: 1 - - uid: 263 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-5.5 - parent: 1 - - uid: 276 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,16.5 - parent: 1 - - uid: 288 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 1 - - uid: 318 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,0.5 - parent: 1 - - uid: 334 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,1.5 - parent: 1 - - uid: 431 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 1 - - uid: 432 - components: - - type: Transform - pos: -4.5,-5.5 - parent: 1 - - uid: 435 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-6.5 - parent: 1 - - uid: 438 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-6.5 - parent: 1 - - uid: 528 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,0.5 - parent: 1 - - uid: 545 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-4.5 - parent: 1 - - uid: 549 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 1 - - uid: 550 - components: - - type: Transform - pos: -10.5,1.5 - parent: 1 - - uid: 595 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-3.5 - parent: 1 - - uid: 611 - components: - - type: Transform - pos: -9.5,15.5 - parent: 1 - - uid: 736 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-4.5 - parent: 1 - proto: WarpPointShip entities: - uid: 327 diff --git a/Resources/Maps/_NF/Shuttles/mcdelivery.yml b/Resources/Maps/_NF/Shuttles/mcdelivery.yml index aa371a6c091..7b36537e2a3 100644 --- a/Resources/Maps/_NF/Shuttles/mcdelivery.yml +++ b/Resources/Maps/_NF/Shuttles/mcdelivery.yml @@ -3,9 +3,9 @@ meta: postmapinit: false tilemap: 0: Space - 105: FloorTechMaint - 121: Lattice - 122: Plating + 107: FloorTechMaint + 124: Lattice + 125: Plating entities: - proto: "" entities: @@ -20,19 +20,19 @@ entities: chunks: 0,0: ind: 0,0 - tiles: aQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: awAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -174,10 +174,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + temperature: 293.14993 moles: - - 23.57087 - - 88.67137 + - 21.6852 + - 81.57766 - 0 - 0 - 0 @@ -354,6 +354,40 @@ entities: parent: 1 - proto: ClosetWall entities: + - uid: 18 + components: + - type: MetaData + name: fuel wall closet + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 71 + - 68 - uid: 23 components: - type: Transform @@ -422,8 +456,6 @@ entities: entities: - uid: 89 components: - - type: MetaData - flags: InContainer - type: Transform parent: 23 - type: Physics @@ -456,21 +488,11 @@ entities: entities: - uid: 108 components: - - type: MetaData - flags: InContainer - type: Transform parent: 23 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: FuelDispenser - entities: - - uid: 18 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,3.5 - parent: 1 - proto: GasPassiveVent entities: - uid: 37 @@ -602,8 +624,17 @@ entities: - uid: 68 components: - type: Transform - pos: 1.4952204,3.0674624 - parent: 1 + parent: 18 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 71 + components: + - type: Transform + parent: 18 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: NoticeBoardNF entities: - uid: 96 @@ -624,16 +655,12 @@ entities: entities: - uid: 9 components: - - type: MetaData - flags: InContainer - type: Transform parent: 96 - type: Physics canCollide: False - uid: 39 components: - - type: MetaData - flags: InContainer - type: Transform parent: 96 - type: Physics @@ -667,8 +694,6 @@ entities: entities: - uid: 44 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 1.5,2.5 @@ -834,66 +859,48 @@ entities: entities: - uid: 10 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-0.5 parent: 1 - uid: 12 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,0.5 parent: 1 - uid: 14 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,1.5 parent: 1 - uid: 15 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,2.5 parent: 1 - uid: 47 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 1 - uid: 59 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,2.5 parent: 1 - uid: 66 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,3.5 parent: 1 - uid: 87 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-0.5 parent: 1 - uid: 107 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,3.5 parent: 1 @@ -944,8 +951,6 @@ entities: entities: - uid: 67 components: - - type: MetaData - flags: InContainer - type: Transform parent: 23 - type: Physics diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/ammo.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/ammo.yml index d040d305777..4d3babb4da1 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/ammo.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/ammo.yml @@ -8,6 +8,7 @@ MagazineBoxLightRiflePractice: 15 MagazineBoxLightRifleRubber: 15 WeaponShotgunDoubleBarreled: 15 + BoxShotgunSlug: 15 BoxLethalshot: 15 BoxBeanbag: 15 BoxShellTranquilizer: 15 diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml index b208e31f995..4d48db1ad85 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml @@ -92,7 +92,11 @@ tags: - Hardsuit - WhitelistChameleon - + - type: PhysicalComposition # Frontier + materialComposition: + Durathread: 300 + Cloth: 100 + Steel: 100 - type: entity abstract: true @@ -111,6 +115,10 @@ - type: HeldSpeedModifier - type: Item size: Huge + - type: PhysicalComposition # Frontier + materialComposition: + Durathread: 100 + Cloth: 100 - type: entity parent: ClothingOuterBase diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml index 5ea58bef356..8ad8343f5cc 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml @@ -110,7 +110,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 20 + maxVol: 30 reagents: - ReagentId: Nutriment Quantity: 8 @@ -621,7 +621,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 12 + maxVol: 30 reagents: - ReagentId: Nutriment Quantity: 7 @@ -652,7 +652,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 12 + maxVol: 20 reagents: - ReagentId: Nutriment Quantity: 1 @@ -680,7 +680,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 20 + maxVol: 25 reagents: - ReagentId: Nutriment Quantity: 3 @@ -767,7 +767,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 12 + maxVol: 25 reagents: - ReagentId: Nutriment Quantity: 5 @@ -796,7 +796,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 17 + maxVol: 30 reagents: - ReagentId: Nutriment Quantity: 5 @@ -1136,7 +1136,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 20 + maxVol: 30 reagents: - ReagentId: Nutriment Quantity: 10 @@ -1277,7 +1277,7 @@ - type: SolutionContainerManager solutions: food: - maxVol: 30 + maxVol: 35 reagents: - ReagentId: Nutriment Quantity: 6 diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml index 7a41ea404fa..82092f50855 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml @@ -279,6 +279,18 @@ - type: PhysicalComposition materialComposition: Steel: 25 + - type: Pen # Frontier + mode: PenWrite # Frontier + - type: Stamp + stampedColor: "#000001" + stampState: "paper_stamp-generic" + stampedPersonal: true + stampedBorderless: true + sound: + path: /Audio/_NF/Items/Pen/pen_sign.ogg + params: + volume: -2 + maxDistance: 5 - type: entity parent: Pen @@ -294,18 +306,6 @@ damage: types: Piercing: 3 - - type: Pen - mode: PenWrite - - type: Stamp - stampedColor: "#000001" - stampState: "paper_stamp-generic" - stampedPersonal: true - stampedBorderless: true - sound: - path: /Audio/_NF/Items/Pen/pen_sign.ogg - params: - volume: -2 - maxDistance: 5 - type: StaticPrice price: 1 @@ -386,18 +386,6 @@ - type: Sprite sprite: Objects/Misc/bureaucracy.rsi state: pen_hop - - type: Pen - mode: PenWrite - - type: Stamp - stampedColor: "#000001" - stampState: "paper_stamp-generic" - stampedPersonal: true - stampedBorderless: true - sound: - path: /Audio/_NF/Items/Pen/pen_sign.ogg - params: - volume: -2 - maxDistance: 5 - type: StaticPrice price: 10 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/item_artifacts.yml b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/item_artifacts.yml index e5f7a5ec3e4..ad03fda0011 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/item_artifacts.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/item_artifacts.yml @@ -156,8 +156,8 @@ - type: Extractable juiceSolution: reagents: - - ReagentId: Artifexium - Quantity: 10 + - ReagentId: RawArtifexium # Frontier + Quantity: 1 # Frontier - type: StaticPrice price: 0 - type: Stack diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 57432e76112..e4e23c8ddc8 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -161,6 +161,14 @@ - CellRechargerCircuitboard - BorgChargerCircuitboard - WeaponCapacitorRechargerCircuitboard + # Frontier Start + - Durathread + - Plasteel + - ClothingOuterSuitEmergency + - ClothingHeadHelmetEVA + - ClothingHeadHelmetEVALarge + - ClothingOuterHardsuitEVA + # Frontier End - type: EmagLatheRecipes emagStaticRecipes: - CartridgePistol @@ -175,6 +183,11 @@ - MagazineBoxRifle - MagazineBoxLightRifle - GrenadeBlast + # Frontier Start + - ClothingHeadHelmetCosmonaut + - ClothingHeadHelmetSyndicate + - ClothingOuterHardsuitSyndicate + # Frontier End emagDynamicRecipes: - CartridgePistolRubber - CartridgeMagnumRubber @@ -336,6 +349,26 @@ - DeviceQuantumSpinInverter - UtilityBeltChiefEngineer - JetpackVoid + # Frontier Start + - ClothingShoesBootsMagAdv + - ClothingOuterHardsuitBasic + - ClothingOuterHardsuitAtmos + - ClothingOuterHardsuitEngineering + - ClothingOuterHardsuitSpatio + - ClothingOuterHardsuitSalvage + - ClothingOuterHardsuitClown + - ClothingOuterHardsuitMime + - ClothingOuterHardsuitCap + - ClothingOuterHardsuitEngineeringWhite + - ClothingOuterHardsuitMedical + - ClothingOuterHardsuitRd + - ClothingOuterHardsuitLuxury + - ClothingOuterHardsuitMercenary + - ClothingOuterHardsuitPilot + - ClothingOuterHardsuitMaximPrototype + - ClothingHeadHelmetAncient + - ClothingOuterHardsuitAncientEVA + # Frontier End - type: EmagLatheRecipes emagDynamicRecipes: - ExplosivePayload @@ -343,6 +376,10 @@ - WeaponAdvancedLaser - WeaponLaserCannon - WeaponXrayCannon + # Frontier Start + - ClothingOuterHardsuitPirateEVA + - ClothingOuterHardsuitSundie + # Frontier End - type: entity id: ProtolatheHyperConvection @@ -394,7 +431,10 @@ - UniformPrinterMachineCircuitboard - FloorGreenCircuit - FloorBlueCircuit - - TilePrinterNFMachineCircuitboard # Frontier + # Frontier Start + - TilePrinterNFMachineCircuitboard + - SalvageTechFabCircuitboardNF + # Frontier End dynamicRecipes: - ThermomachineFreezerMachineCircuitBoard - HellfireFreezerMachineCircuitBoard @@ -703,7 +743,13 @@ - ShellShotgunPractice - WeaponLaserCarbinePractice - WeaponDisablerPractice - - ThrusterSecurityMachineCircuitboard # Frontier + # Frontier Start + - ThrusterSecurityMachineCircuitboard + - ClothingOuterSuitEmergency + - ClothingHeadHelmetEVA + - ClothingHeadHelmetEVALarge + - ClothingOuterHardsuitEVAPrisoner + # Frontier End dynamicRecipes: - CartridgeLightRifleIncendiary - CartridgeMagnumIncendiary @@ -758,6 +804,12 @@ - ShuttleGunPerforatorCircuitboard - ShuttleGunFriendshipCircuitboard - ShuttleGunDusterCircuitboard + # Frontier Start + - ClothingOuterHardsuitSecurity + - ClothingOuterHardsuitSecuritypatrol + - ClothingOuterHardsuitWarden + - ClothingOuterHardsuitBrigmedic + # Frontier End - type: MaterialStorage whitelist: tags: @@ -868,6 +920,10 @@ - Saw - Hemostat - ClothingEyesGlassesChemical + # Frontier Start + - ClothingOuterSuitEmergency + - ClothingOuterHardsuitVoidParamed + # Frontier End dynamicRecipes: - ChemicalPayload - CryostasisBeaker @@ -875,6 +931,9 @@ - SyringeBluespace - Jug - SyringeCryostasis + # Frontier Start + - ClothingOuterHardsuitMedical + # Frontier End - type: Machine board: MedicalTechFabCircuitboard - type: StealTarget diff --git a/Resources/Prototypes/Nyanotrasen/Catalog/Fills/Vending/Inventories/maildrobe.yml b/Resources/Prototypes/Nyanotrasen/Catalog/Fills/Vending/Inventories/maildrobe.yml index d625270b790..d2faa8f8bd5 100644 --- a/Resources/Prototypes/Nyanotrasen/Catalog/Fills/Vending/Inventories/maildrobe.yml +++ b/Resources/Prototypes/Nyanotrasen/Catalog/Fills/Vending/Inventories/maildrobe.yml @@ -2,6 +2,7 @@ id: MailDrobeInventory startingInventory: WeaponMailLake: 1 # Frontier + ClothingOuterEVASuitMailman: 2 # Frontier BoxMailCapsulePrimed: 2 # Frontier ClothingBackpackMessengerMailman: 2 # Frontier ClothingUniformJumpsuitMailCarrier: 2 diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/lathe.yml index b917980e5b4..d5d89cef66a 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/lathe.yml @@ -48,6 +48,10 @@ - CableMVStack - CableHVStack - NodeScanner + # Frontier Start + - ClothingOuterHardsuitBasic + - ClothingOuterHardsuitRd + # Frontier End - type: MaterialStorage whitelist: tags: @@ -87,7 +91,7 @@ runningState: icon staticRecipes: #Frontier - MailCapsule #Frontier - - SprayBottle #Frontier, moved this ones from dynamicRecipes, so the service fab wouldn't need a server for basic stuff + - SprayBottle #Frontier, moved some recipes from dynamicRecipes, so the service fab wouldn't need a server for the basic stuff - FlashlightLantern - FireExtinguisher - LightTube @@ -98,33 +102,46 @@ - CableStack - CableMVStack - CableHVStack + - LightReplacer + - MopBucket + - TrashBag + - Bucket + - MopItem + - WetFloorSign + # Frontier Start + - ClothingOuterSuitEmergency + - ClothingHeadHelmetEVA + - ClothingOuterHardsuitEVA + - ClothingOuterEVASuitHydro + - ClothingOuterEVASuitMailman + # Frontier end dynamicRecipes: - KitchenKnife - ButchCleaver - - LightReplacer - Holoprojector - TrashBagOfHolding - MopAdvanced - HydroponicsToolScythe - HydroponicsToolHatchet - - MopBucket - SynthesizerInstrument - - TrashBag - - WetFloorSign - MiniHoe - HydroponicsToolScythe - HydroponicsToolHatchet - Spade - Clippers - Shovel # Below is shared with other lathes - - Bucket - - MopItem - SheetSteel - SheetPlasteel - SheetPlasma - SheetGlass1 - SheetRGlass - SheetPlastic + # Frontier Start + - ClothingOuterHardsuitBasic + - ClothingOuterHardsuitPilot + - ClothingOuterHardsuitClown + - ClothingOuterHardsuitMime + # Frontier end - type: MaterialStorage whitelist: tags: @@ -163,6 +180,12 @@ - type: Lathe idleState: icon runningState: icon + # Frontier Start + staticRecipes: + - ClothingOuterSuitEmergency + - ClothingHeadHelmetEVA + - ClothingOuterHardsuitEVA + # Frontier end dynamicRecipes: - Flash - MicroManipulatorStockPart @@ -206,6 +229,14 @@ - CableStack - CableMVStack - CableHVStack + # Frontier Start + - ClothingOuterHardsuitBasic + - ClothingOuterHardsuitAtmos + - ClothingOuterHardsuitEngineering + - ClothingOuterHardsuitEngineeringWhite + - ClothingHeadHelmetAncient + - ClothingOuterHardsuitAncientEVA + # Frontier end - type: MaterialStorage whitelist: tags: diff --git a/Resources/Prototypes/Recipes/Lathes/categories.yml b/Resources/Prototypes/Recipes/Lathes/categories.yml index 8faa67af1b3..d03bbaa8161 100644 --- a/Resources/Prototypes/Recipes/Lathes/categories.yml +++ b/Resources/Prototypes/Recipes/Lathes/categories.yml @@ -29,3 +29,7 @@ - type: latheCategory id: Weapons name: lathe-category-weapons + +- type: latheCategory # Frontier + id: EVASuits + name: lathe-category-evasuits diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/medical.yml b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/medical.yml index aaa217a6e37..8b13cc29c40 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/medical.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/medical.yml @@ -17,8 +17,9 @@ - id: ClothingMaskSterile - id: ClothingBeltMedicalEMTFilled # Frontier - id: MedkitFilled # Frontier - - id: NitrogenTankFilled # Frontier - - id: OxygenTankFilled # Frontier +# - id: NitrogenTankFilled # Frontier +# - id: OxygenTankFilled # Frontier + - id: AirTankFilled #Frontier - id: ClothingMaskBreathMedical # Frontier - id: JetpackMiniFilled # Frontier - id: HandheldGPSBasic # Frontier diff --git a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/flatpackvend.yml b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/flatpackvend.yml index e4a145363ef..ec27b26aa9e 100644 --- a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/flatpackvend.yml +++ b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/flatpackvend.yml @@ -11,6 +11,7 @@ CircuitImprinterFlatpack: 6 ScienceTechFabFlatpack: 4 EngineeringTechFabFlatpack: 4 + SalvageTechfabNFFlatpack: 4 ServiceTechFabFlatpack: 4 MedicalTechFabFlatpack: 4 MaterialReclaimerFlatpack: 4 diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/_NF/Entities/Clothing/Head/hardsuit-helmets.yml index b9afa667b89..7d691db92cb 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Head/hardsuit-helmets.yml @@ -70,3 +70,42 @@ - type: PressureProtection highPressureMultiplier: 0.1 lowPressureMultiplier: 1000 + +# MAXIM helmet, but with light +- type: entity + parent: [ ClothingHeadHelmetHardsuitMaxim, ClothingHeadHardsuitWithLightBase ] + id: ClothingHeadHelmetHardsuitMaximPrototype + noSpawn: true + name: experimental salvager helmet + description: A predication of decay washes over your mind. + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hardsuits/maxim_prototype.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hardsuits/maxim_prototype.rsi + - type: PointLight # Luxury Hardsuit Light + radius: 7 + energy: 3 + +# Funny meme jokes ha-ha so funny: off-brand blood-red hardsuit helmet +- type: entity + parent: ClothingHeadHelmetHardsuitSyndie + id: ClothingHeadHelmetHardsuitSundie + noSpawn: true + name: sundicate crimson-red hardsuit helmet + description: A heavily armored helmet designed for work in special operations. Manufactored in Twinwine Colony by Goreblox Looters LLC. + components: + - type: Sprite + sprite: Clothing/Head/Hardsuits/syndicate.rsi + color: orange + - type: Clothing + sprite: Clothing/Head/Hardsuits/syndicate.rsi + - type: PointLight + color: darkgreen + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 1.05 + Heat: 1.1 diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Head/softsuit-helmets.yml b/Resources/Prototypes/_NF/Entities/Clothing/Head/softsuit-helmets.yml new file mode 100644 index 00000000000..2f5ac8ca070 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Clothing/Head/softsuit-helmets.yml @@ -0,0 +1,31 @@ +- type: entity + parent: ClothingHeadEVAHelmetBase + id: ClothingHeadEVAHelmetHydro + name: botanist EVA helmet + noSpawn: true + components: + - type: BreathMask + - type: Sprite + sprite: _NF/Clothing/Head/Helmets/eva_hydro.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Helmets/eva_hydro.rsi + - type: Tag + tags: + - HelmetEVA + - WhitelistChameleon + +- type: entity + parent: ClothingHeadEVAHelmetBase + id: ClothingHeadEVAHelmetMailman + name: mailcarrier EVA helmet + noSpawn: true + components: + - type: BreathMask + - type: Sprite + sprite: _NF/Clothing/Head/Helmets/eva_mailman.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Helmets/eva_mailman.rsi + - type: Tag + tags: + - HelmetEVA + - WhitelistChameleon diff --git a/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/hardsuits.yml index fe91f6719b8..240ff7ab0c0 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/hardsuits.yml @@ -92,3 +92,57 @@ clothingPrototype: ClothingHeadHelmetHardsuitPilot - type: StaticPrice price: 195 + +# MAXIM Nerfed: mining hardsuit stats, but slightly worse expl and piercing res, better caustic res, better movement speed +- type: entity + parent: ClothingOuterHardsuitMaxim + id: ClothingOuterHardsuitMaximPrototype + name: experimental salvager hardsuit + description: Fire. Heat. These things forge great weapons, they also forge great salvagers. + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Hardsuits/maxim_prototype.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Hardsuits/maxim_prototype.rsi + - type: ExplosionResistance + damageCoefficient: 0.6 + - type: Armor + modifiers: + coefficients: + Blunt: 0.7 + Slash: 0.7 + Piercing: 0.6 + Heat: 0.8 + Radiation: 0.3 + Caustic: 0.5 + - type: ClothingSpeedModifier + walkModifier: 0.9 + sprintModifier: 0.8 + - type: HeldSpeedModifier + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitMaximPrototype + +# Funny meme jokes ha-ha: off-brand blood-red hardsuit +- type: entity + parent: ClothingOuterHardsuitSyndie + id: ClothingOuterHardsuitSundie + name: sundicate crimson-red hardsuit + description: A heavily armored hardsuit designed for work in special operations. Manufactored in Twinwine Colony by Goreblox Looters LLC. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Hardsuits/syndicate.rsi + color: orange + - type: Clothing + sprite: Clothing/OuterClothing/Hardsuits/syndicate.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.90 + Slash: 0.90 + Piercing: 1.1 + Heat: 1.5 + Radiation: 1.5 + Caustic: 1.5 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitSundie + - type: Contraband diff --git a/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/softsuits.yml b/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/softsuits.yml new file mode 100644 index 00000000000..ecb96d4636a --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/softsuits.yml @@ -0,0 +1,45 @@ +- type: entity + parent: ClothingOuterEVASuitBase + id: ClothingOuterEVASuitHydro + name: botanist EVA suit + description: An emergency EVA suit with a built-in helmet commonly issued to hydroponics workers. + components: + - type: Tag + tags: + - SuitEVA + - WhitelistChameleon + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Suits/eva_hydro.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Suits/eva_hydro.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadEVAHelmetHydro + slot: head + - type: ContainerContainer + containers: + toggleable-clothing: !type:ContainerSlot {} + - type: StaticPrice + price: 65 + +- type: entity + parent: ClothingOuterEVASuitBase + id: ClothingOuterEVASuitMailman + name: mailcarrier EVA suit + description: An emergency EVA suit with a built-in helmet commonly issued to hydroponics workers. + components: + - type: Tag + tags: + - SuitEVA + - WhitelistChameleon + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Suits/eva_mailman.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Suits/eva_mailman.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadEVAHelmetMailman + slot: head + - type: ContainerContainer + containers: + toggleable-clothing: !type:ContainerSlot {} + - type: StaticPrice + price: 65 diff --git a/Resources/Prototypes/_NF/Entities/Objects/Devices/flatpacks.yml b/Resources/Prototypes/_NF/Entities/Objects/Devices/flatpacks.yml index 9ee5905789c..130ca791544 100644 --- a/Resources/Prototypes/_NF/Entities/Objects/Devices/flatpacks.yml +++ b/Resources/Prototypes/_NF/Entities/Objects/Devices/flatpacks.yml @@ -349,6 +349,15 @@ layers: - state: supply_gun +- type: entity + parent: OreProcessorFlatpack + id: SalvageTechfabNFFlatpack + name: salvage techfab flatpack + description: A flatpack used for constructing a salvage techfab. + components: + - type: Flatpack + entity: SalvageTechfabNF + # Consoles - type: entity parent: BaseNFFlatpack diff --git a/Resources/Prototypes/_NF/Entities/Objects/Devices/production.yml b/Resources/Prototypes/_NF/Entities/Objects/Devices/production.yml index 5824d991440..4a03755ec0d 100644 --- a/Resources/Prototypes/_NF/Entities/Objects/Devices/production.yml +++ b/Resources/Prototypes/_NF/Entities/Objects/Devices/production.yml @@ -67,3 +67,24 @@ Manipulator: 2 materialRequirements: Glass: 1 + +- type: entity + id: SalvageTechFabCircuitboardNF + parent: BaseMachineCircuitboard + name: salvage techfab machine board + description: A machine printed circuit board for a salvage techfab + components: + - type: Sprite + state: supply + - type: MachineBoard + prototype: SalvageTechfabNF + requirements: + MatterBin: 2 + Manipulator: 2 + tagRequirements: + GlassBeaker: + Amount: 2 + DefaultPrototype: Beaker + ExamineName: Glass Beaker + - type: StaticPrice + price: 200 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 d95743bab8b..dd4634f23b6 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_tabletop.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_tabletop.yml @@ -1,45 +1,10 @@ -# Base structures -- type: entity - id: BaseStructureComputerTabletop - suffix: Tabletop - abstract: true - components: - - type: Sprite - sprite: _NF/Structures/Machines/computer_tabletop.rsi - drawdepth: SmallObjects - 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: generic - - map: ["computerLayerKeys"] - sprite: Structures/Machines/computers.rsi - state: generic_keys - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeAabb - bounds: "-0.45,-0.45,0.45,0.45" - density: 60 - mask: - - Impassable - - LowImpassable -# - TabletopMachineMask -# layer: -# - TabletopMachineLayer - # Computers: Base Game - type: entity parent: [BaseStructureComputerTabletop, ComputerAlert] id: ComputerTabletopAlert components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -61,6 +26,7 @@ components: - type: Sprite sprite: _NF/Structures/Machines/computer_tabletop.rsi + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -79,6 +45,7 @@ id: ComputerTabletopShuttle components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -98,6 +65,7 @@ id: ComputerTabletopShuttleSyndie components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -118,6 +86,7 @@ noSpawn: true components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -138,6 +107,7 @@ noSpawn: true components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -157,6 +127,7 @@ id: ComputerTabletopIFF components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -177,6 +148,7 @@ suffix: Syndicate, Tabletop components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -196,6 +168,7 @@ id: ComputerTabletopPowerMonitoring components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -215,6 +188,7 @@ id: ComputerTabletopMedicalRecords components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -234,6 +208,7 @@ id: ComputerTabletopCriminalRecords components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -253,6 +228,7 @@ id: ComputerTabletopStationRecords components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -272,6 +248,7 @@ id: ComputerTabletopCrewMonitoring components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -291,6 +268,7 @@ id: ComputerTabletopResearchAndDevelopment components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -310,6 +288,7 @@ id: ComputerTabletopAnalysisConsole components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -329,6 +308,7 @@ id: ComputerTabletopId components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -349,6 +329,7 @@ components: - type: Sprite sprite: _NF/Structures/Machines/computer_tabletop.rsi + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] state: computer_tabletop @@ -366,6 +347,7 @@ id: ComputerTabletopComms components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -385,6 +367,7 @@ id: SyndicateComputerTabletopComms components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -404,6 +387,7 @@ id: ComputerTabletopSolarControl components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -423,6 +407,7 @@ id: ComputerTabletopRadar components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -443,6 +428,7 @@ noSpawn: true components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -462,6 +448,7 @@ id: ComputerTabletopCargoOrders components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -481,6 +468,7 @@ id: ComputerTabletopCargoBounty components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -500,6 +488,7 @@ id: ComputerTabletopCloningConsole components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -519,6 +508,7 @@ id: ComputerTabletopSalvageExpedition components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -538,6 +528,7 @@ id: ComputerTabletopSurveillanceCameraMonitor components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -557,6 +548,7 @@ id: ComputerTabletopSurveillanceWirelessCameraMonitor components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -576,6 +568,7 @@ id: ComputerTabletopMassMedia components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -597,6 +590,7 @@ noSpawn: true components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -618,6 +612,7 @@ id: ComputerTabletopShipyard components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -638,6 +633,7 @@ abstract: true components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -657,6 +653,7 @@ id: ComputerTabletopShipyardSecurity components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -676,6 +673,7 @@ id: ComputerTabletopShipyardBlackMarket components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -695,6 +693,7 @@ id: ComputerTabletopShipyardExpedition components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -714,6 +713,7 @@ id: ComputerTabletopShipyardScrap components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -734,6 +734,7 @@ suffix: High, Tabletop components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -754,6 +755,7 @@ suffix: Normal, Tabletop components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -774,6 +776,7 @@ suffix: Low, Tabletop components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -794,6 +797,7 @@ suffix: VeryLow, Tabletop components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -813,6 +817,7 @@ id: ComputerTabletopStationAdminBankATM components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi @@ -832,6 +837,7 @@ id: ComputerTabletopContrabandPalletConsole components: - type: Sprite + drawdepth: SmallObjects layers: - map: ["computerLayerBody"] sprite: _NF/Structures/Machines/computer_tabletop.rsi diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/frame_tabletop.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/frame_tabletop.yml index 1d93b8d1cf3..a794a96a074 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/frame_tabletop.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/frame_tabletop.yml @@ -1,10 +1,69 @@ - type: entity - parent: ComputerFrame + id: BaseStructureComputerTabletop + parent: BaseStructure + suffix: Tabletop + abstract: true + components: + - type: Physics + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.35,0.25,0.35" + density: 190 + mask: + - TabletopMachineMask + layer: + - TabletopMachineLayer + - type: InteractionOutline + - type: Rotatable + - type: Anchorable + - type: Construction + graph: ComputerTabletop + node: frameUnsecured + - type: Sprite + sprite: _NF/Structures/Machines/computer_tabletop.rsi + drawdepth: SmallObjects + 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: generic + - map: [ "computerLayerKeys" ] + sprite: Structures/Machines/computers.rsi + state: generic_keys + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Electronic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + - !type:ChangeConstructionNodeBehavior + node: monitorBroken + - !type:DoActsBehavior + acts: ["Destruction"] + - type: StaticPrice + price: 100 + +- type: entity + parent: BaseStructureComputerTabletop name: computer id: ComputerTabletopFrame components: - type: Construction - graph: GraphComputerTabletop + graph: ComputerTabletop node: frameUnsecured containers: - board diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/lathe.yml index c245aa04de3..2d21228f006 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/lathe.yml @@ -227,3 +227,140 @@ - type: EmagLatheRecipes emagStaticRecipes: - MaterialSheetMeat + +- type: entity + parent: Protolathe + id: SalvageTechfabNF + name: salvage techfab + description: Prints equipment for salvagers. + components: + - type: Sprite + netsync: false + sprite: Structures/Machines/techfab.rsi + layers: + - state: icon + map: ["enum.LatheVisualLayers.IsRunning"] + - state: cargo + - state: unlit + shader: unshaded + map: ["enum.PowerDeviceVisualLayers.Powered"] + - state: inserting + map: ["enum.MaterialStorageVisualLayers.Inserting"] + - state: panel + map: ["enum.WiresVisualLayers.MaintenancePanel"] + - type: Machine + board: SalvageTechFabCircuitboardNF + - type: Lathe + idleState: icon + runningState: icon + staticRecipes: + - Durathread + - Plasteel + - SheetSteel + - SheetPlasteel + - SheetPlasma + - SheetGlass1 + - SheetRGlass + - SheetPlastic + - ClothingOuterSuitEmergency + - ClothingHeadHelmetEVA + - ClothingOuterHardsuitEVA + - Wirecutter + - Signaller + - Screwdriver + - Welder + - Wrench + - Crowbar + - Multitool + - NetworkConfigurator + - FlashlightLantern + - HandheldGPSBasic + - TRayScanner + - AirTank + - GasAnalyzer + - ClothingBeltSalvageWebbing + - Pickaxe + - AppraisalTool + - HandLabeler + - LightTube + - SodiumLightTube + - ExteriorLightTube + - LightBulb + - DrinkMugMetal + - PowerCellSmall + - PowerCellMedium + - EmergencyRollerBedSpawnFolded + - CableStack + - ConveyorBeltAssembly + - DoorElectronics + - StationMapElectronics + - CellRechargerCircuitboard + - BorgChargerCircuitboard + - WeaponCapacitorRechargerCircuitboard + - RadioHandheld + - Floodlight + - FlareLathe + - GlowstickBlue + - GlowstickBase + - GlowstickPurple + - GlowstickRedLathe + - GlowstickYellow + dynamicRecipes: + - MiningDrill + - Bucket + - MopItem + - SprayBottle + - FireExtinguisher + - LightTube + - LightBulb + - CableStack + - CableMVStack + - CableHVStack + - Signaller + - PowerCellMedium + - PowerCellHigh + - PowerCellMicroreactor + - WeaponCrusher + - WeaponCrusherDagger + - WeaponCrusherGlaive + - WeaponProtoKineticAccelerator + - WeaponTetherGun + - WeaponGrapplingGun + - ClothingBackpackHolding + - ClothingBackpackSatchelHolding + - ClothingBackpackDuffelHolding + - ClothingBackpackMessengerHolding + - OreBagOfHolding + - WelderExperimental + - JawsOfLife + - JetpackVoid + - ClothingOuterHardsuitBasic + - ClothingOuterHardsuitSpatio + - ClothingOuterHardsuitSalvage + - ClothingOuterHardsuitLuxury + - ClothingOuterHardsuitMaximPrototype + - ClothingHeadHelmetAncient + - ClothingOuterHardsuitAncientEVA + - type: EmagLatheRecipes + emagStaticRecipes: + - CartridgePistol + - CartridgeMagnum + - ShellShotgun + - ShellShotgunFlare + - ShellTranquilizer + - CartridgeLightRifle + - CartridgeRifle + - MagazineBoxPistol + - MagazineBoxMagnum + - MagazineBoxRifle + - MagazineBoxLightRifle + - GrenadeBlast + - ClothingHeadHelmetCosmonaut + - ClothingHeadHelmetSyndicate + - ClothingOuterHardsuitSyndicate + - type: MaterialStorage + whitelist: + tags: + - Sheet + - RawMaterial + - Ingot diff --git a/Resources/Prototypes/_NF/Reagents/chemicals.yml b/Resources/Prototypes/_NF/Reagents/chemicals.yml new file mode 100644 index 00000000000..16871afe058 --- /dev/null +++ b/Resources/Prototypes/_NF/Reagents/chemicals.yml @@ -0,0 +1,22 @@ +- type: reagent + id: RawArtifexium + name: reagent-name-rawartifexium + desc: reagent-desc-rawartifexium + flavor: metallic + physicalDesc: reagent-physical-desc-crystalline + color: "#776291" + metabolisms: + Poison: + effects: + - !type:HealthChange + damage: + types: + Caustic: 2 + reactiveEffects: + Acidic: + methods: [ Touch ] + effects: + - !type:ActivateArtifact + conditions: + - !type:ReagentThreshold + min: 5 diff --git a/Resources/Prototypes/_NF/Recipes/Construction/Graphs/machines/computer_tabletop.yml b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/machines/computer_tabletop.yml index 5e9198b04b6..5cc27fc1e69 100644 --- a/Resources/Prototypes/_NF/Recipes/Construction/Graphs/machines/computer_tabletop.yml +++ b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/machines/computer_tabletop.yml @@ -1,5 +1,5 @@ - type: constructionGraph - id: GraphComputerTabletop + id: ComputerTabletop start: start graph: - node: start diff --git a/Resources/Prototypes/_NF/Recipes/Construction/machines.yml b/Resources/Prototypes/_NF/Recipes/Construction/machines.yml index 312fe46d24b..ff303800b5a 100644 --- a/Resources/Prototypes/_NF/Recipes/Construction/machines.yml +++ b/Resources/Prototypes/_NF/Recipes/Construction/machines.yml @@ -1,7 +1,7 @@ - type: construction name: computer (tabletop) id: ConstructionComputerTabletop - graph: GraphComputerTabletop + graph: ComputerTabletop startNode: start targetNode: tabletop computer category: construction-category-machines diff --git a/Resources/Prototypes/_NF/Recipes/Lathes/electronics.yml b/Resources/Prototypes/_NF/Recipes/Lathes/electronics.yml index 42b5ffdd168..f89ddffe3e3 100644 --- a/Resources/Prototypes/_NF/Recipes/Lathes/electronics.yml +++ b/Resources/Prototypes/_NF/Recipes/Lathes/electronics.yml @@ -37,3 +37,11 @@ materials: Steel: 700 Glass: 900 + +- type: latheRecipe + id: SalvageTechFabCircuitboardNF + result: SalvageTechFabCircuitboardNF + completetime: 4 + materials: + Steel: 800 + Glass: 900 diff --git a/Resources/Prototypes/_NF/Recipes/Lathes/eva.yml b/Resources/Prototypes/_NF/Recipes/Lathes/eva.yml new file mode 100644 index 00000000000..91d3cb9bc19 --- /dev/null +++ b/Resources/Prototypes/_NF/Recipes/Lathes/eva.yml @@ -0,0 +1,428 @@ + +# Cloth: 300 +# Steel: 50 +# Plastic: 50 +# Gold: 100 +# Silver: 100 + +# Raw mats +- type: latheRecipe + id: Durathread + result: MaterialDurathread1 + completetime: 0.2 + materials: + Plastic: 100 + Cloth: 100 + +- type: latheRecipe + id: Plasteel + result: SheetPlasteel1 + completetime: 0.2 + materials: + Plastic: 100 + Steel: 100 + +# Softsuits +- type: latheRecipe + id: ClothingOuterSuitEmergency + result: ClothingOuterSuitEmergency + category: EVASuits + completetime: 4 + materials: + Steel: 150 + Cloth: 100 + Durathread: 300 + +- type: latheRecipe + id: ClothingOuterEVASuitHydro + result: ClothingOuterEVASuitHydro + category: EVASuits + completetime: 4 + materials: + Steel: 150 + Cloth: 100 + Durathread: 300 + +- type: latheRecipe + id: ClothingOuterEVASuitMailman + result: ClothingOuterEVASuitMailman + category: EVASuits + completetime: 4 + materials: + Steel: 150 + Cloth: 100 + Durathread: 300 + +- type: latheRecipe + id: ClothingHeadHelmetEVA + result: ClothingHeadHelmetEVA + category: EVASuits + completetime: 4 + materials: + Glass: 200 + Steel: 300 + Cloth: 50 + Durathread: 50 + +- type: latheRecipe + id: ClothingHeadHelmetEVALarge + result: ClothingHeadHelmetEVALarge + category: EVASuits + completetime: 4 + materials: + Glass: 200 + Steel: 300 + Cloth: 50 + Durathread: 50 + +- type: latheRecipe + id: ClothingOuterHardsuitEVA + result: ClothingOuterHardsuitEVA + category: EVASuits + completetime: 4 + materials: + Steel: 150 + Cloth: 100 + Durathread: 300 + +- type: latheRecipe + id: ClothingOuterHardsuitVoidParamed + result: ClothingOuterHardsuitVoidParamed + category: EVASuits + completetime: 4 + materials: + Plastic: 1000 + Steel: 1000 + Cloth: 300 + Durathread: 2500 + Silver: 1000 + +- type: latheRecipe + id: ClothingOuterHardsuitEVAPrisoner + result: ClothingOuterHardsuitEVAPrisoner + category: EVASuits + completetime: 4 + materials: + Steel: 150 + Cloth: 100 + Durathread: 300 + +- type: latheRecipe # Probably should be available via T2-T3 + id: ClothingHeadHelmetAncient + result: ClothingHeadHelmetAncient + category: EVASuits + completetime: 4 + materials: + Glass: 500 + Plasteel: 500 + Durathread: 100 + +- type: latheRecipe # Probably should be available via T2-T3 + id: ClothingOuterHardsuitAncientEVA + result: ClothingOuterHardsuitAncientEVA + category: EVASuits + completetime: 4 + materials: + Glass: 500 + Plasteel: 1500 + Durathread: 2500 + +- type: latheRecipe # idk EMAG + id: ClothingHeadHelmetCosmonaut + result: ClothingHeadHelmetCosmonaut + category: EVASuits + completetime: 4 + materials: + Glass: 200 + Steel: 300 + Cloth: 50 + Durathread: 50 + +- type: latheRecipe # EMAG + id: ClothingHeadHelmetSyndicate + result: ClothingHeadHelmetSyndicate + category: EVASuits + completetime: 4 + materials: + Glass: 200 + Steel: 300 + Cloth: 50 + Durathread: 50 + +- type: latheRecipe # EMAG + id: ClothingOuterHardsuitSyndicate + result: ClothingOuterHardsuitSyndicate + category: EVASuits + completetime: 4 + materials: + Steel: 200 + Cloth: 300 + Durathread: 600 + +# Basic hardsuits (T1 research) +- type: latheRecipe + id: ClothingOuterHardsuitBasic + result: ClothingOuterHardsuitBasic + category: EVASuits + completetime: 4 + materials: + Glass: 300 + Steel: 2000 + Cloth: 300 + Durathread: 1500 + Silver: 1000 + +# Departmental hardsuits (T2 research) +- type: latheRecipe + id: ClothingOuterHardsuitAtmos + result: ClothingOuterHardsuitAtmos + category: EVASuits + completetime: 4 + materials: + Glass: 500 + Plastic: 2000 + Steel: 2000 + Durathread: 2000 + Silver: 1500 + Gold: 1000 + +- type: latheRecipe + id: ClothingOuterHardsuitEngineering + result: ClothingOuterHardsuitEngineering + category: EVASuits + completetime: 4 + materials: + Glass: 500 + Plastic: 2000 + Steel: 2000 + Durathread: 2000 + Silver: 1500 + Gold: 1000 + +- type: latheRecipe + id: ClothingOuterHardsuitSpatio + result: ClothingOuterHardsuitSpatio + category: EVASuits + completetime: 4 + materials: + Glass: 500 + Plastic: 2000 + Steel: 2000 + Durathread: 2000 + Silver: 1500 + Gold: 1000 + +- type: latheRecipe + id: ClothingOuterHardsuitSalvage + result: ClothingOuterHardsuitSalvage + category: EVASuits + completetime: 4 + materials: + Glass: 500 + Plastic: 2000 + Steel: 2000 + Durathread: 2000 + Silver: 1500 + Gold: 1000 + +- type: latheRecipe + id: ClothingOuterHardsuitClown + result: ClothingOuterHardsuitClown + category: EVASuits + completetime: 4 + materials: + Glass: 500 + Plastic: 2000 + Steel: 2000 + Durathread: 2000 + Silver: 1500 + Gold: 1000 + +- type: latheRecipe + id: ClothingOuterHardsuitMime + result: ClothingOuterHardsuitMime + category: EVASuits + completetime: 4 + materials: + Glass: 500 + Plastic: 2000 + Steel: 2000 + Durathread: 2000 + Silver: 1500 + Gold: 1000 + +- type: latheRecipe # EMAG (honestly, not particularly good stats on this one) + id: ClothingOuterHardsuitPirateEVA + result: ClothingOuterHardsuitPirateEVA + category: EVASuits + completetime: 4 + materials: + Glass: 500 + Plasteel: 1500 + Durathread: 2000 + Silver: 500 + +- type: latheRecipe + id: ClothingOuterHardsuitPilot + result: ClothingOuterHardsuitPilot + category: EVASuits + completetime: 4 + materials: + Glass: 500 + Plastic: 2000 + Steel: 2000 + Durathread: 2000 + Silver: 1500 + Gold: 1000 + +- type: latheRecipe + id: ClothingOuterHardsuitMercenary + result: ClothingOuterHardsuitMercenary + category: EVASuits + completetime: 4 + materials: + Glass: 500 + Plasteel: 2000 + Durathread: 2000 + Silver: 2000 + Gold: 1000 + +- type: latheRecipe + id: ClothingOuterHardsuitSecuritypatrol + result: ClothingOuterHardsuitSecuritypatrol + category: EVASuits + completetime: 4 + materials: + Glass: 500 + Plasteel: 2000 + Durathread: 2000 + Silver: 2000 + Gold: 1000 + +- type: latheRecipe + id: ClothingOuterHardsuitBrigmedic + result: ClothingOuterHardsuitBrigmedic + category: EVASuits + completetime: 4 + materials: + Glass: 500 + Plasteel: 2000 + Durathread: 2000 + Silver: 2000 + Gold: 1000 + +# Departmental heads hardsuits (T3 research) +- type: latheRecipe + id: ClothingOuterHardsuitCap + result: ClothingOuterHardsuitCap + category: EVASuits + completetime: 4 + materials: + Glass: 500 + Plasteel: 2000 + Durathread: 2000 + Gold: 2000 + +- type: latheRecipe + id: ClothingOuterHardsuitEngineeringWhite + result: ClothingOuterHardsuitEngineeringWhite + category: EVASuits + completetime: 4 + materials: + Glass: 500 + Plastic: 2000 + Steel: 1000 + Plasteel: 1000 + Durathread: 2000 + Silver: 1500 + Gold: 1000 + +- type: latheRecipe + id: ClothingOuterHardsuitMedical + result: ClothingOuterHardsuitMedical + category: EVASuits + completetime: 4 + materials: + Glass: 500 + Plastic: 2000 + Steel: 1000 + Plasteel: 1000 + Durathread: 2000 + Silver: 1500 + Gold: 1000 + +- type: latheRecipe + id: ClothingOuterHardsuitRd + result: ClothingOuterHardsuitRd + category: EVASuits + completetime: 4 + materials: + Glass: 500 + Plastic: 2000 + Plasteel: 3000 + Durathread: 2000 + Silver: 1000 + Gold: 2000 + +- type: latheRecipe + id: ClothingOuterHardsuitLuxury + result: ClothingOuterHardsuitLuxury + category: EVASuits + completetime: 4 + materials: + Glass: 500 + Plasteel: 1000 + Durathread: 2000 + Silver: 500 + Gold: 2000 + +- type: latheRecipe + id: ClothingOuterHardsuitMaximPrototype + result: ClothingOuterHardsuitMaximPrototype + category: EVASuits + completetime: 4 + materials: + Glass: 500 + Plastic: 2000 + Plasteel: 3000 + Durathread: 2000 + Silver: 1000 + Gold: 2000 + +# Better security hardsuits (T3 Research) + +- type: latheRecipe + id: ClothingOuterHardsuitSecurity + result: ClothingOuterHardsuitSecurity + category: EVASuits + completetime: 4 + materials: + Glass: 500 + Plasteel: 2000 + Durathread: 2000 + Silver: 2000 + Gold: 1000 + +- type: latheRecipe + id: ClothingOuterHardsuitWarden + result: ClothingOuterHardsuitWarden + category: EVASuits + completetime: 4 + materials: + Glass: 500 + Plasteel: 2000 + Durathread: 2000 + Silver: 1000 + Gold: 2000 + +- type: latheRecipe # EMAG, meme + id: ClothingOuterHardsuitSundie + result: ClothingOuterHardsuitSundie + category: EVASuits + completetime: 8 + materials: + Glass: 500 + Plasteel: 2000 + Durathread: 2000 + Silver: 1000 + Gold: 2000 diff --git a/Resources/Prototypes/_NF/Recipes/Lathes/misc.yml b/Resources/Prototypes/_NF/Recipes/Lathes/misc.yml index 22e1f9605f7..d77243c10fa 100644 --- a/Resources/Prototypes/_NF/Recipes/Lathes/misc.yml +++ b/Resources/Prototypes/_NF/Recipes/Lathes/misc.yml @@ -12,4 +12,79 @@ completetime: 1 materials: Glass: 100 - Plastic: 100 \ No newline at end of file + Plastic: 100 + +# Salvage Techfab +- type: latheRecipe + id: RadioHandheld + result: RadioHandheld + completetime: 1 + category: Tools + materials: + Plastic: 500 + +- type: latheRecipe + id: Floodlight + result: Floodlight + completetime: 1 + category: Tools + materials: + Glass: 500 + Plastic: 1000 + Steel: 1500 + +- type: latheRecipe + id: FlareLathe + result: Flare + completetime: 0.5 + category: Tools + materials: + Steel: 150 + +- type: latheRecipe + id: GlowstickBlue + result: GlowstickBlue + completetime: 0.5 + category: Tools + materials: + Plastic: 50 + +- type: latheRecipe + id: GlowstickBase + result: GlowstickBase + completetime: 0.5 + category: Tools + materials: + Plastic: 50 + +- type: latheRecipe + id: GlowstickPurple + result: GlowstickPurple + completetime: 0.5 + category: Tools + materials: + Plastic: 50 + +- type: latheRecipe + id: GlowstickRedLathe + result: GlowstickRed + completetime: 0.5 + category: Tools + materials: + Plastic: 50 + +- type: latheRecipe + id: GlowstickYellow + result: GlowstickYellow + completetime: 0.5 + category: Tools + materials: + Plastic: 50 + +- type: latheRecipe + id: ClothingBeltSalvageWebbing + result: ClothingBeltSalvageWebbing + completetime: 1 + category: Tools + materials: + Steel: 500 diff --git a/Resources/Prototypes/_NF/Recipes/Reactions/chemicals.yml b/Resources/Prototypes/_NF/Recipes/Reactions/chemicals.yml new file mode 100644 index 00000000000..a8dd0d2e844 --- /dev/null +++ b/Resources/Prototypes/_NF/Recipes/Reactions/chemicals.yml @@ -0,0 +1,52 @@ +- type: reaction + id: ArtifexiumIchor # rare recipe + reactants: + RawArtifexium: + amount: 1 + Ichor: + amount: 1 + products: + Artifexium: 4 + +- type: reaction + id: ArtifexiumCarpoToxin # uncommon recipe + reactants: + RawArtifexium: + amount: 1 + CarpoToxin: + amount: 2 + products: + Artifexium: 2 + +- type: reaction + id: ArtifexiumHonk # common recipe + reactants: + RawArtifexium: + amount: 1 + Honk: + amount: 14 + products: + Artifexium: 2 + +- type: reaction + id: ArtifexiumNutriment # pain + reactants: + RawArtifexium: + amount: 2 + Nutriment: + amount: 8 + products: + Potassium: 4 + +# the above and below recipes makes it so both require seperation from 'BananiumOre' after grinding +# if it's done lazily by mixing all together it causes an explosion and wastes artifexium. + +- type: reaction + id: ArtifexiumVitamin # suffering + reactants: + RawArtifexium: + amount: 1 + Vitamin: + amount: 2 + products: + Water: 2 diff --git a/Resources/Prototypes/_NF/Research/arsenal.yml b/Resources/Prototypes/_NF/Research/arsenal.yml new file mode 100644 index 00000000000..36e140cd61d --- /dev/null +++ b/Resources/Prototypes/_NF/Research/arsenal.yml @@ -0,0 +1,37 @@ +# Tier 2 + +- type: technology + id: HardsuitsArmored + name: research-technology-hardsuits-armored + icon: + sprite: _NF/Clothing/OuterClothing/Hardsuits/mercenary.rsi + state: icon + discipline: Arsenal + tier: 2 + cost: 15000 + recipeUnlocks: + - ClothingOuterHardsuitSecuritypatrol + - ClothingOuterHardsuitMercenary + - ClothingOuterHardsuitSundie + - ClothingOuterHardsuitPirateEVA + technologyPrerequisites: + - AdvancedRiotControl + - HardsuitsAdvanced + +# Tier 3 + +- type: technology + id: HardsuitsArmoredAdvanced + name: research-technology-hardsuits-armored-advanced + icon: + sprite: Clothing/OuterClothing/Hardsuits/security.rsi + state: icon + discipline: Arsenal + tier: 3 + cost: 25000 + recipeUnlocks: + - ClothingOuterHardsuitSecurity + - ClothingOuterHardsuitWarden + - ClothingOuterHardsuitBrigmedic + technologyPrerequisites: + - HardsuitsArmored diff --git a/Resources/Prototypes/_NF/Research/experimental.yml b/Resources/Prototypes/_NF/Research/experimental.yml new file mode 100644 index 00000000000..ec5d7f6e209 --- /dev/null +++ b/Resources/Prototypes/_NF/Research/experimental.yml @@ -0,0 +1,15 @@ +# Tier 3 + +- type: technology + id: HardsuitsExperimentalRD + name: research-technology-hardsuits-experimental-rd + icon: + sprite: Clothing/OuterClothing/Hardsuits/rd.rsi + state: icon + discipline: Experimental + tier: 3 + cost: 15000 + recipeUnlocks: + - ClothingOuterHardsuitRd + technologyPrerequisites: + - HardsuitsArmored diff --git a/Resources/Prototypes/_NF/Research/industrial.yml b/Resources/Prototypes/_NF/Research/industrial.yml index 4ba2138bb30..794d9d3b1c5 100644 --- a/Resources/Prototypes/_NF/Research/industrial.yml +++ b/Resources/Prototypes/_NF/Research/industrial.yml @@ -1,32 +1,70 @@ # Tier 1 +- type: technology + id: HardsuitsBasic + name: research-technology-hardsuits-basic + icon: + sprite: Clothing/OuterClothing/Hardsuits/basic.rsi + state: icon + discipline: Industrial + tier: 1 + cost: 5000 + recipeUnlocks: + - ClothingOuterHardsuitBasic + +- type: technology + id: HardsuitsSpecialized + name: research-technology-hardsuits-specialized + icon: + sprite: Clothing/OuterClothing/Hardsuits/engineering.rsi + state: icon + discipline: Industrial + tier: 1 + cost: 10000 + recipeUnlocks: + - ClothingOuterHardsuitAtmos + - ClothingOuterHardsuitEngineering + - ClothingOuterHardsuitSpatio + - ClothingOuterHardsuitSalvage + - ClothingOuterHardsuitClown + - ClothingOuterHardsuitMime + - ClothingOuterHardsuitPilot + technologyPrerequisites: + - HardsuitsBasic + # Tier 2 - type: technology - id: RapidConstruction - name: research-technology-rapid-construction + id: HardsuitsAdvanced + name: research-technology-hardsuits-advanced icon: - sprite: Objects/Tools/rcd.rsi - state: icon-shipyard + sprite: Clothing/OuterClothing/Hardsuits/engineering-white.rsi + state: icon discipline: Industrial tier: 2 cost: 10000 recipeUnlocks: - - ShipyardRCD - - ShipyardRCDAmmo + - ClothingOuterHardsuitCap + - ClothingOuterHardsuitEngineeringWhite + - ClothingOuterHardsuitMedical + - ClothingOuterHardsuitLuxury + technologyPrerequisites: + - HardsuitsSpecialized # Tier 3 - type: technology - id: AdvRapidConstruction - name: research-technology-adv-rapid-construction + id: HardsuitsExperimentalIndustrial + name: research-technology-hardsuits-experimental-industrial icon: - sprite: Objects/Tools/rcd.rsi + sprite: Clothing/OuterClothing/Hardsuits/maxim.rsi state: icon discipline: Industrial tier: 3 - cost: 20000 + cost: 15000 recipeUnlocks: - - RCD - - RCDAmmo - - BorgModuleRCD + - ClothingOuterHardsuitMaximPrototype + - ClothingHeadHelmetAncient + - ClothingOuterHardsuitAncientEVA + technologyPrerequisites: + - HardsuitsAdvanced diff --git a/Resources/Prototypes/_NF/Shipyard/Security/opportunity.yml b/Resources/Prototypes/_NF/Shipyard/Security/opportunity.yml index 472dfa64764..d4437f1c2bf 100644 --- a/Resources/Prototypes/_NF/Shipyard/Security/opportunity.yml +++ b/Resources/Prototypes/_NF/Shipyard/Security/opportunity.yml @@ -1,27 +1,27 @@ -- type: vessel - id: Opportunity - name: NSF Opportunity - description: A medium expeditionary prison vessel capable of incarcerating up to 4 criminals. The ship is capable of planetfall and mining operations. Find a reliable crew of prison guards to help you keep your prisoners in line. - price: 70000 - category: Medium - group: Security - shuttlePath: /Maps/_NF/Shuttles/Security/opportunity.yml +# - type: vessel + # id: Opportunity + # name: NSF Opportunity + # description: A medium expeditionary prison vessel capable of incarcerating up to 4 criminals. The ship is capable of planetfall and mining operations. Find a reliable crew of prison guards to help you keep your prisoners in line. + # price: 70000 + # category: Medium + # group: Security + # shuttlePath: /Maps/_NF/Shuttles/Security/opportunity.yml -- type: gameMap - id: Opportunity - mapName: 'NSF Opportunity' - mapPath: /Maps/_NF/Shuttles/Security/opportunity.yml - minPlayers: 0 - stations: - Opportunity: - stationProto: StandardFrontierSecurityExpeditionVessel - components: - - type: StationNameSetup - mapNameTemplate: 'Opportunity {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - - type: StationJobs - overflowJobs: [] - availableJobs: - Prisoner: [ 0, 0 ] +# - type: gameMap + # id: Opportunity + # mapName: 'NSF Opportunity' + # mapPath: /Maps/_NF/Shuttles/Security/opportunity.yml + # minPlayers: 0 + # stations: + # Opportunity: + # stationProto: StandardFrontierSecurityExpeditionVessel + # components: + # - type: StationNameSetup + # mapNameTemplate: 'Opportunity {1}' + # nameGenerator: + # !type:NanotrasenNameGenerator + # prefixCreator: '14' + # - type: StationJobs + # overflowJobs: [] + # availableJobs: + # Prisoner: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/canister.yml b/Resources/Prototypes/_NF/Shipyard/canister.yml new file mode 100644 index 00000000000..f6d79438753 --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/canister.yml @@ -0,0 +1,31 @@ +# Author Info +# GitHub: Cu1r (https://github.com/Cu1r/) +# Discord: cu1r +# +- type: vessel + id: Canister + name: UAC Canister + description: Whatever you're bringing, it won't fit. Seats two. Gravity included. + price: 8000 + category: Small + group: Scrap + shuttlePath: /Maps/_NF/Shuttles/canister.yml + +- type: gameMap + id: Canister + mapName: 'UAC Canister' + mapPath: /Maps/_NF/Shuttles/canister.yml + minPlayers: 0 + stations: + Canister: + stationProto: StandardFrontierVessel + components: + - type: StationNameSetup + mapNameTemplate: 'Canister {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: + Pilot: [ 0, 0 ] \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Shipyard/condor.yml b/Resources/Prototypes/_NF/Shipyard/condor.yml index 435bb9d7a0b..25492692f01 100644 --- a/Resources/Prototypes/_NF/Shipyard/condor.yml +++ b/Resources/Prototypes/_NF/Shipyard/condor.yml @@ -5,12 +5,12 @@ price: 72890 category: Medium group: Civilian - shuttlePath: /Maps/Shuttles/condor.yml + shuttlePath: /Maps/_NF/Shuttles/condor.yml - type: gameMap id: Condor mapName: 'NR Condor' - mapPath: /Maps/Shuttles/condor.yml + mapPath: /Maps/_NF/Shuttles/condor.yml minPlayers: 0 stations: Condor: diff --git a/Resources/Prototypes/_NF/Shipyard/disciple.yml b/Resources/Prototypes/_NF/Shipyard/disciple.yml index a2ecc5195cc..26e78764a38 100644 --- a/Resources/Prototypes/_NF/Shipyard/disciple.yml +++ b/Resources/Prototypes/_NF/Shipyard/disciple.yml @@ -10,7 +10,7 @@ # - type: vessel id: disciple - name: COU Disciple + name: NSV Disciple description: A cheaply made amalgamation of religious ships. For the seasoned religious assistant. price: 11300 category: Small diff --git a/Resources/Prototypes/_NF/Shipyard/hauler.yml b/Resources/Prototypes/_NF/Shipyard/hauler.yml index 7abce9784ca..129ffe4d489 100644 --- a/Resources/Prototypes/_NF/Shipyard/hauler.yml +++ b/Resources/Prototypes/_NF/Shipyard/hauler.yml @@ -2,7 +2,7 @@ id: hauler name: NC Hauler description: A medium sized vessel specializing in long-haul salvage, mining, and cargo operations. - price: 49500 + price: 60000 category: Medium group: Civilian shuttlePath: /Maps/_NF/Shuttles/hauler.yml diff --git a/Resources/Prototypes/_NF/Shipyard/knuckleverse.yml b/Resources/Prototypes/_NF/Shipyard/knuckleverse.yml new file mode 100644 index 00000000000..f0a533767bc --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/knuckleverse.yml @@ -0,0 +1,31 @@ +- type: vessel + id: KnuckleVerse + name: SSC KnuckleVerse + description: KnuckleVerse is a ship for organizing box matches. It has a boxing ring and a bar. It might need a bit of cleaning. + price: 36500 + category: Medium + group: Civilian + shuttlePath: /Maps/_NF/Shuttles/knuckleverse.yml + +- type: gameMap + id: KnuckleVerse + mapName: 'KnuckleVerse' + mapPath: /Maps/_NF/Shuttles/knuckleverse.yml + minPlayers: 0 + stations: + KnuckleVerse: + stationProto: StandardFrontierVessel + components: + - type: StationNameSetup + mapNameTemplate: 'KnuckleVerse {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: + Janitor: [ 0, 0 ] + Bartender: [ 0, 0 ] + MedicalDoctor: [ 0, 0 ] + Pilot: [ 0, 0 ] + Boxer: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/whiskey.yml b/Resources/Prototypes/_NF/Shipyard/whiskey.yml new file mode 100644 index 00000000000..f16b4c597f5 --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/whiskey.yml @@ -0,0 +1,26 @@ +- type: vessel + id: Whiskey + name: NSF Whiskey + description: A heavy duty NSFD rescue ship, suited for one to two brigmedics and a pilot. + price: 55000 + category: Medium + group: Security + shuttlePath: /Maps/_NF/Shuttles/Security/whiskey.yml + +- type: gameMap + id: Whiskey + mapName: 'NSF Whiskey' + mapPath: /Maps/_NF/Shuttles/Security/whiskey.yml + minPlayers: 0 + stations: + Whiskey: + stationProto: StandardFrontierVessel + components: + - type: StationNameSetup + mapNameTemplate: 'Whiskey {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: {} diff --git a/Resources/ServerInfo/Rules.txt b/Resources/ServerInfo/Rules.txt index 3f13372f098..f348d3988fa 100644 --- a/Resources/ServerInfo/Rules.txt +++ b/Resources/ServerInfo/Rules.txt @@ -1,75 +1,86 @@ -[color=#ff0000]You must be 17 or older to play. Users under 17 will be banned immediately.[/color] +[head=3][color=#ff0000]You must be 17 or older to play. Users under 17 will be banned immediately.[/head][/color] -[color=#ff0000]Frontier Station is a Medium Roleplay server. Try to immerse yourself into your character. This includes doing your job as a station or ship crew member and delegating tasks that are outside of that description, or striking out upon space as a Captain of your ship. This does not imply you’re forced to play the whole round; Frontier Station is designed with pop-in-and-out gameplay in mind, where some players will come and go but their bank account remains persistent across server restarts.[/color] +[color=#99ff99]Frontier Station is a Medium Roleplay server. Try to immerse yourself into your character. This includes doing your job as a station or ship crew member and delegating tasks that are outside of that description, or striking out upon space as a Captain of your ship. This does not imply you’re forced to play the whole round; Frontier Station is designed with pop-in-and-out gameplay in mind, where some players will come and go but their bank account remains persistent across server restarts.[/color] -[color=#a4885c]0.[/color] Admins can disregard any and all of these rules if they deem it in the best interest of the current round, server, and/or community at large. - - They will of course be held fully accountable for their actions if they exercise this privilege. +[color=#a4885c][head=3]0. Admins can disregard any and all of these rules if they deem it in the best interest of the current round, server, and/or community at large.[/head][/color] + • They will of course be held fully accountable for their actions if they exercise this privilege. -[color=#a4885c]0.1.[/color] All of these rules apply as they are intended. - - Every example of a rule break cannot be defined as written, therefore, enforcement of the rules is subject to staff interpretation of the rule's intention. +[color=#a4885c][head=3]0.1. All of these rules apply as they are intended.[/head][/color] + • Every example of a rule break cannot be defined as written, therefore, enforcement of the rules is subject to staff interpretation of the rule's intention. -[color=#a4885c]1.[/color] Erotic Roleplay (ERP), erotic content, or 18+ sexual content is [color=#ff0000]not allowed under any circumstance[/color]. +[color=#a4885c][head=3]1. Erotic Roleplay (ERP), erotic content, or 18+ sexual content is[/color] [color=#ff0000]not allowed under any circumstance.[/head][/color] -[color=#a4885c]2.[/color] Follow the community expectations. This includes both in game and elsewhere in our community. - - Don't be a dick nor harass other players. - - Do not evade bans. - - Don't be racist or bigoted. - - Do not attempt to cause lag to the server. - - Do not grief as a non-antagonist; this includes against AFK and SSD/Catatonic Players. - - Do not leave the server to avoid punishment from Admin staff. - - Do not respawn to avoid punishment from Security Forces, or respawn as the same character if given a permanent confinement sentence. - - Exploits, abusing bugs, cheating, power-gaming, and other extremely lame behavior are forbidden. +[color=#a4885c][head=3]2. Follow the community expectations. This includes both in game and elsewhere in our community.[/head][/color] + • Don't be a dick nor harass other players. + • Do not evade bans. + • Don't be racist or bigoted. + • Do not attempt to cause lag to the server. + • Do not grief as a non-antagonist; this includes against AFK and SSD/Catatonic Players. + • Do not leave the server to avoid punishment from Admin staff. + • Do not respawn to avoid punishment from Security Forces, or respawn as the same character if given a permanent confinement sentence. + • Exploits, abusing bugs, cheating, power-gaming, and other extremely lame behavior are forbidden. -[color=#a4885c]3.[/color] Do not use information gained outside of in-character means, and do not say In Character (IC) things in the Local Out Of Character (LOOC) chat channel. - - I.e. metagaming. This especially refers to communication between players outside of the game via things like Discord, known as meta-comms. Characters are otherwise allowed to know everything about in-game mechanics or antagonists, as well as keep persistent friendships and relationships with other characters when not for the purpose of unfair advantage by teaming up together for little IC reason. - - Do not say LOOC things in IC either, like saying you “need to go afk because your dog wants to go outside,” in the IC chat. +[color=#a4885c][head=3]3. Do not use information gained outside of in-character means, and do not say In Character (IC) things in the Local Out Of Character (LOOC) chat channel.[/head][/color] + • Voice Chat with other players currently playing on the server is [color=#ff0000]not allowed under any circumstance. [/color] + • I.e. metagaming. This especially refers to communication between players outside of the game via things like Discord, known as meta-comms. Characters are otherwise allowed to know everything about in-game mechanics or antagonists, as well as keep persistent friendships and relationships with other characters when not for the purpose of unfair advantage by teaming up together for little IC reason. + • Do not say LOOC things in IC either, like saying you “need to go afk because your dog wants to go outside,” in the IC chat. -[color=#a4885c]4.[/color] After cloning, respawning, or taking a ghost role, you must follow the new life rule. - - If cloned, resuscitated, or respawned, you don't have amnesia, but you can only recall vague details of who or what had killed you. - - If taking a ghost role, you have no memories from any past lives for the duration of playing as a ghost role. - - A 15 minute non-aggression period is required after respawning, so you can’t immediately get in a ship and try to go kill whoever killed you. - - Don't act on anything you saw while ghosted. +[color=#a4885c][head=3]4. After cloning, respawning, or taking a ghost role, you must follow the new life rule.[/head][/color] + • If cloned, resuscitated, or respawned, you don't have amnesia, but you can only recall vague details of who or what had killed you. + • If taking a ghost role, you have no memories from any past lives for the duration of playing as a ghost role. + • A 15 minute non-aggression period is required after respawning, so you can’t immediately get in a ship and try to go kill whoever killed you. + • Don't act on anything you saw while ghosted. -[color=#a4885c]5.[/color] Follow Chat Guidelines - - Only speak in English. - - Do not spam. - - Do not advertise. - - Do not use Netspeak (i.e. LOL, ROFL, XD, FR). - - Hate speech, slurs and bigotry are [color=#ff0000]not allowed[/color]. Words that are closely tied to, or intended to replace/imitate, real life slurs are [color=#ff0000]not allowed[/color]. +[color=#a4885c][head=3]5. Follow Chat Guidelines[/head][/color] + • Only speak in English. + • Do not spam. + • Do not advertise. + • Do not use Netspeak (i.e. LOL, ROFL, XD, FR). + • Hate speech, slurs and bigotry are [color=#ff0000]not allowed.[/color] Words that are closely tied to, or intended to replace/imitate, real life slurs are [color=#ff0000]not allowed.[/color] -[color=#a4885c]6.[/color] Follow Roleplay Guidelines - - Your IC name must be realistic. Avoid joke names and names of fictional or real people, or names playing off of them (e.g. Saul Badman.) Additionally, avoid using the character names of other well-known players, you may not impersonate other players this way. (e.g. Bill Carson.) If your species has a naming convention, be sure to generally follow it. - - Treat your character as a separate entity from you, the player. Your character's actions, feelings, and knowledge in-game should be based solely on the character's experiences and not your own as the player. Low roleplay actions that have no regard for your character or the setting (Memes, silly copy paste spam IC) are not acceptable. - - Previous experiences with other characters are allowed to lead to meta-friending, but you may not meta-grudge another character. +[color=#a4885c][head=3]6. Follow Roleplay Guidelines[/head][/color] + • Your IC name must be realistic and fit into the game's setting. Avoid joke names and names of locations, brands, fictional/real people or names parodying off from them (e.g. Baul Sadman, Tom Ford.) Additionally: + - Do not use numbers, symbols, titles or adjectives (i.e Mr ,Dr ,Big ,Old). + - Avoid using character names of other well-known players, do not impersonate players this way. + - All species have a naming convention, be sure to generally follow it. + • Treat your character as a separate entity from you, the player. Your character's actions, feelings, and knowledge in-game should be based solely on the character's experiences and not your own as the player. Low roleplay actions that have no regard for your character or the setting (Memes, silly copy paste spam IC) are not acceptable. + • Previous experiences with other characters are allowed to lead to meta-friending, but you may not meta-grudge another character. -[color=#a4885c]7.[/color] Follow Antagonist Guidelines - - All ghost roles have a set description for how the role should be played, you must follow the ghost role description unless told otherwise by an admin. Spamming ahelp asking for an exception will likely lead to being banned. - - Antagonists are not necessarily your friends. Traitors, rat kings, and sometimes wizards are free agents, but no one should be working together with xenomorphs, nuclear operatives, space dragons, or zombies. - - Non-pirates may not assist or work with pirate crews, examples are such as watching mass scanners and tipping them off who to attack, pretending to be hostages, or knowingly funding the pirates for equipment/ships. +[color=#a4885c][head=3]7. Follow Antagonist Guidelines[/head][/color] + • All ghost roles have a set description for how the role should be played, you must follow the ghost role description unless told otherwise by an admin. Spamming ahelp asking for an exception will likely lead to being banned. + • Antagonists are not necessarily your friends. Traitors, rat kings, and sometimes wizards are free agents, but no one should be working together with xenomorphs, nuclear operatives, space dragons, or zombies. + • Non-pirates may not assist or work with pirate crews, examples are such as watching mass scanners and tipping them off who to attack, pretending to be hostages, or knowingly funding the pirates for equipment/ships. -[color=#a4885c]8.[/color] Security Forces and Station Staff roles are held to a higher standard of roleplay and are strictly non-antagonists. - - Security Forces roleplaying as ‘bad cops’ and intentionally violating space law is forbidden. Space Law is not optional for these roles, and strong knowledge is required before taking a security position. - - Assets seized from criminals may only be used to make victims whole and to pay for any fines under the law. Any excess financials received from the sale of criminal assets is to be returned to their original owners, and are not to be plundered or extorted by security forces. This is a strict zero-tolerance policy. - - All players that are hired on as crew to the station as security or service staff, or through other direct jobs working for paychecks from the station, are considered non-antags and official Nanotrasen employees. Engaging in any hostile antagonistic activities, or abuse of the equipment provided while working in these roles, is strictly prohibited. +[color=#a4885c][head=3]8. Follow Station Safezone Guidelines[/head][/color] + • [color=#ff0000] The immediate 200 meters around the Frontier and the Frontier itself is considered a safe zone and absolutely no antag activity or griefing is permitted within that zone.[/color] This includes but is not limited to destruction, modification, removal, or otherwise restriction of use of any machine or device designed for public use, and the structure of the station itself. + • For any non-antagonistic or roleplay modifications of the station, Station Rep's approval is always required. + • Fights and confrontations is completely disallowed on the safezone such as shooting, attacking or any forms of harm. + • Pirate actions may not begin on the Frontier. This includes stowing away while at the Frontier with intentions to steal the ship, outright stealing the ship or its cargo from the dock, selling someone else’s ship you hadn’t pirated outside the safe zone, or joining the crew under false pretenses with the intention to mutiny and take the ship. + • Dangerous research like artifacts and anomalies must not be done while inside the safezone boundaries. + • Do not transport any kind of dangerous creature inside the station. -[color=#a4885c]9.[/color] Sector Command roles such as HoP and HoS are vital to the operation of the sector and are held to a much higher degree of roleplay and role handling. - - Sector Command is expected and [color=#ff0000]required[/color] to maintain pay for their respective staff as a part of their job. Payroll should be a minimum of 10,000 for station crew, 20,000 for Station Rep and Sheriff, and 15,000 for security per hour. Embezzlement of station funds is strictly forbidden. - - Both of these roles have higher access to station resources than should be allowed for most crew members. As such, if you must ever end your shift early, always bring your ID with you, and always return to cryosleep so that your access cannot be stolen and the station funds embezzled. If for any reason you cannot (disconnect, crash, power outage, etc.) Please ping the game admins in Discord and we will handle your in-game character accordingly. - - Sector Command is permitted and expected to issue and enforce any docking fines related to loitering in the terminal for shuttles that have been idle for more than 10 minutes in the station docks without a valid reason, up to and including forced eviction of shuttles. Fines collected in this way are permitted to be used as payroll or the acquisition of station supplies. Time spent docked and waiting at the station is to be kept at a minimum. - - You may not tax, lease, rent, or otherwise reserve the free and fair usage of station resources to the detriment of the public. That includes but not limited to, charging docking fees, basic cloning services, vending access, and moving station resources behind access locked doors to restrict access, etc. +[color=#a4885c][head=3]9. Security Forces and Station Staff roles are held to a higher standard of roleplay and are strictly non-antagonists.[/head][/color] + • Security Forces roleplaying as ‘bad cops’ and intentionally violating space law is forbidden. Space Law is not optional for these roles, and strong knowledge is required before taking a security position. + • Assets seized from criminals may only be used to make victims whole and to pay for any fines under the law. Any excess financials received from the sale of criminal assets is to be returned to their original owners, and are not to be plundered or extorted by security forces. This is a strict zero-tolerance policy. + • All players that are hired on as crew to the station as security or service staff, or through other direct jobs working for paychecks from the station, are considered non-antags and official Nanotrasen employees. Engaging in any hostile antagonistic activities, or abuse of the equipment provided while working in these roles, is strictly prohibited. -[color=#a4885c]10.[/color] Follow Escalation Guidelines - - Antagonistic ghost roles, and pest ghost roles like mice are always fair game for attack. Don't grief nanotrasen-aligned ghost roles like familiars, drones, or pets without provocation. - - Do not attack another player without a legitimate, explainable roleplay reason that could be applied in a similar, real-life scenario. A fistfight does not suddenly escalate into a gunfight. - - If a fight results in someone being critically injured or killed, seek medical help for them. - - If at any point combat is disengaged and both parties leave the area, you cannot skip escalation and plunge back into a fight. What’s done is done. - - Security Forces are expected to resolve situations with non-lethal force and to de-escalate IC confrontation except in cases where there is a reasonable chance of harm/death. - - Do not End of Round Grief (EORG), attacking/killing/griefing other players is not permitted after the shift ends. +[color=#a4885c][head=3]10. Sector Command roles such as Station Rep and Sheriff are vital to the operation of the sector and are held to a much higher degree of roleplay and role handling.[/head][/color] + • Sector Command is expected and [color=#ff0000]required [/color] to maintain pay for their respective staff as a part of their job. Payroll should be a minimum of 10,000 for station crew, 20,000 for Station Rep and Sheriff, and 15,000 for security per hour. Embezzlement of station funds is strictly forbidden. + • Both of these roles have higher access to station resources than should be allowed for most crew members. As such, if you must ever end your shift early, always bring your ID with you, and always return to cryosleep so that your access cannot be stolen and the station funds embezzled. If for any reason you cannot (disconnect, crash, power outage, etc.) Please ping the game admins in Discord and we will handle your in-game character accordingly. + • Sector Command is permitted and expected to issue and enforce any docking fines related to loitering in the terminal for shuttles that have been idle for more than 10 minutes in the station docks without a valid reason, up to and including forced eviction of shuttles. Fines collected in this way are permitted to be used as payroll or the acquisition of station supplies. Time spent docked and waiting at the station is to be kept at a minimum. + • You may not tax, lease, rent, or otherwise reserve the free and fair usage of station resources to the detriment of the public. That includes but not limited to, charging docking fees, basic cloning services, vending access, and moving station resources behind access locked doors to restrict access, etc. -[color=#a4885c]11.[/color] Follow PVP & Piracy Guidelines - - Pirates/antagonists must ahelp before starting a crew and receive permission to begin antag activity. When permitted, admins will announce to all ships via. fax that a ship has gone rogue. Spamming ahelp asking to be a pirate or pirating without permission will likely lead to being banned. - - The immediate 200 meters around the Frontier and the Frontier itself is considered a safe zone and absolutely no antag activity or griefing is permitted within that zone. This includes but is not limited to destruction, modification, removal, or otherwise restriction of use of any machine or device designed for public use, and the structure of the station itself. For any non-antagonistic or roleplay modifications of the station, HoP's approval is always required. - - Pirate actions may not begin on the Frontier. This includes stowing away while at the Frontier with intentions to steal the ship, outright stealing the ship or its cargo from the dock, selling someone else’s ship you hadn’t pirated outside the safe zone, or joining the crew under false pretenses with the intention to mutiny and take the ship. - - Pirate crews may never exceed a total force of four members, including the Captain. - - Non-hostile vessels that surrender: cannot be killed, left stranded, completely bankrupt, or otherwise. The safety of non-hostile merchant vessels is to be guaranteed by all parties. All vessels being boarded must first attempt to negotiate before any hostile actions may take place. - - Hostile forces that are known, declared, and confirmed, may be considered 'belligerent', boarded non-conventionally, and have their systems disabled in attempts to bring them to justice. All suspects taken alive must be adequately cared for and unharmed according to Space Law. +[color=#a4885c][head=3]11. Follow Escalation Guidelines[/head][/color] + • Antagonistic ghost roles, and pest ghost roles like mice are always fair game for attack. Don't grief nanotrasen-aligned ghost roles like familiars, drones, or pets without provocation. + • Do not attack another player without a legitimate, explainable roleplay reason that could be applied in a similar, real-life scenario. A fistfight does not suddenly escalate into a gunfight. + • If a fight results in someone being critically injured or killed, seek medical help for them. + • If at any point combat is disengaged and both parties leave the area, you cannot skip escalation and plunge back into a fight. What’s done is done. + • Security Forces are expected to resolve situations with non-lethal force and to de-escalate IC confrontation except in cases where there is a reasonable chance of harm/death. + • Do not End of Round Grief (EORG), attacking/killing/griefing other players is not permitted after the shift ends. + +[color=#a4885c][head=3]12. Follow PVP & Piracy Guidelines[/head][/color] + • Pirates/antagonists must ahelp before starting a crew and receive permission to begin antag activity. When permitted, admins will announce to all ships via. fax that a ship has gone rogue. Spamming ahelp asking to be a pirate or pirating without permission will likely lead to being banned. + • Pirate crews may never exceed a total force of four members, including the Captain. + • Non-hostile vessels that surrender: cannot be killed, left stranded, completely bankrupt, or otherwise. The safety of non-hostile merchant vessels is to be guaranteed by all parties. All vessels being boarded must first attempt to negotiate before any hostile actions may take place. + • Hostile forces that are known, declared, and confirmed, may be considered 'belligerent', boarded non-conventionally, and have their systems disabled in attempts to bring them to justice. All suspects taken alive must be adequately cared for and unharmed according to Space Law. + • You must finish any and all smuggling activities before approval. diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/maxim_prototype.rsi/icon-flash.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/maxim_prototype.rsi/icon-flash.png new file mode 100644 index 00000000000..72f6dc5bc3c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/maxim_prototype.rsi/icon-flash.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/maxim_prototype.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/maxim_prototype.rsi/icon.png new file mode 100644 index 00000000000..bc45bc74474 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/maxim_prototype.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/maxim_prototype.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hardsuits/maxim_prototype.rsi/meta.json new file mode 100644 index 00000000000..1167a7e127e --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Hardsuits/maxim_prototype.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6b3f58d7de4d4e374282819a7001eaa9bde1676d | Edited by erhardsteinhauer", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "off-equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/maxim_prototype.rsi/off-equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/maxim_prototype.rsi/off-equipped-HELMET.png new file mode 100644 index 00000000000..3c245516713 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/maxim_prototype.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/maxim_prototype.rsi/on-equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/maxim_prototype.rsi/on-equipped-HELMET.png new file mode 100644 index 00000000000..457f560c823 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/maxim_prototype.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Helmets/eva_hydro.rsi/equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Helmets/eva_hydro.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..a7ce86979ac Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Helmets/eva_hydro.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Helmets/eva_hydro.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Helmets/eva_hydro.rsi/icon.png new file mode 100644 index 00000000000..3d1df61f390 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Helmets/eva_hydro.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Helmets/eva_hydro.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Helmets/eva_hydro.rsi/meta.json new file mode 100644 index 00000000000..90c6d89f347 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Helmets/eva_hydro.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Head/Helmets/eva_mailman.rsi/equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Helmets/eva_mailman.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..1595232f526 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Helmets/eva_mailman.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Helmets/eva_mailman.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Helmets/eva_mailman.rsi/icon.png new file mode 100644 index 00000000000..cf2ccb722d0 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Helmets/eva_mailman.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Helmets/eva_mailman.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Helmets/eva_mailman.rsi/meta.json new file mode 100644 index 00000000000..90c6d89f347 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Helmets/eva_mailman.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/maxim_prototype.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/maxim_prototype.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..6f64a4d59bf Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/maxim_prototype.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/maxim_prototype.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/maxim_prototype.rsi/icon.png new file mode 100644 index 00000000000..f9778449b59 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/maxim_prototype.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/maxim_prototype.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/maxim_prototype.rsi/inhand-left.png new file mode 100644 index 00000000000..cff37095092 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/maxim_prototype.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/maxim_prototype.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/maxim_prototype.rsi/inhand-right.png new file mode 100644 index 00000000000..4c7913540d2 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/maxim_prototype.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/maxim_prototype.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/maxim_prototype.rsi/meta.json new file mode 100644 index 00000000000..3641da6f505 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/maxim_prototype.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6b3f58d7de4d4e374282819a7001eaa9bde1676d", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_hydro.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_hydro.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..0fd59fca1d4 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_hydro.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_hydro.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_hydro.rsi/icon.png new file mode 100644 index 00000000000..a666a95c5a7 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_hydro.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_hydro.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_hydro.rsi/inhand-left.png new file mode 100644 index 00000000000..7f766081c79 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_hydro.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_hydro.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_hydro.rsi/inhand-right.png new file mode 100644 index 00000000000..b2a0ee111ae Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_hydro.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_hydro.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_hydro.rsi/meta.json new file mode 100644 index 00000000000..c89f7524564 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_hydro.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Original sprites by Flareguy & cboyjet, heavily edited from space suit sprites found in https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34, resprited botany variant by erhardsteinhauer for Frontier", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_mailman.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_mailman.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..a61cee2d18c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_mailman.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_mailman.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_mailman.rsi/icon.png new file mode 100644 index 00000000000..18b22fe36c5 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_mailman.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_mailman.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_mailman.rsi/inhand-left.png new file mode 100644 index 00000000000..3b47eee91aa Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_mailman.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_mailman.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_mailman.rsi/inhand-right.png new file mode 100644 index 00000000000..19b161c8b91 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_mailman.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_mailman.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_mailman.rsi/meta.json new file mode 100644 index 00000000000..c89f7524564 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Suits/eva_mailman.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Original sprites by Flareguy & cboyjet, heavily edited from space suit sprites found in https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34, resprited botany variant by erhardsteinhauer for Frontier", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +}